blob: d14c8f53384cd415c3933015c02bf9d2a369ba11 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -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:
23 Linux NICS <linux.nics@intel.com>
24 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 e1000 */
30
31#include <linux/netdevice.h>
Bruce Allan9fb7a5f2011-07-29 05:52:51 +000032#include <linux/interrupt.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070033#include <linux/ethtool.h>
34#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070036#include <linux/delay.h>
David S. Millerc85c21a2012-01-26 16:25:55 -050037#include <linux/vmalloc.h>
Konstantin Khlebnikove60b22c2013-03-05 09:43:09 +000038#include <linux/pm_runtime.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070039
40#include "e1000.h"
41
Bruce Allan362e20c2013-02-20 04:05:45 +000042enum { NETDEV_STATS, E1000_STATS };
Ajit Khapardee0f36a92009-10-13 01:45:09 +000043
Auke Kokbc7f75f2007-09-17 12:30:59 -070044struct e1000_stats {
45 char stat_string[ETH_GSTRING_LEN];
Ajit Khapardee0f36a92009-10-13 01:45:09 +000046 int type;
Auke Kokbc7f75f2007-09-17 12:30:59 -070047 int sizeof_stat;
48 int stat_offset;
49};
50
Bruce Allanf0f1a172010-12-11 05:53:32 +000051#define E1000_STAT(str, m) { \
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000052 .stat_string = str, \
53 .type = E1000_STATS, \
54 .sizeof_stat = sizeof(((struct e1000_adapter *)0)->m), \
55 .stat_offset = offsetof(struct e1000_adapter, m) }
Bruce Allanf0f1a172010-12-11 05:53:32 +000056#define E1000_NETDEV_STAT(str, m) { \
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000057 .stat_string = str, \
58 .type = NETDEV_STATS, \
59 .sizeof_stat = sizeof(((struct rtnl_link_stats64 *)0)->m), \
60 .stat_offset = offsetof(struct rtnl_link_stats64, m) }
Ajit Khapardee0f36a92009-10-13 01:45:09 +000061
Auke Kokbc7f75f2007-09-17 12:30:59 -070062static const struct e1000_stats e1000_gstrings_stats[] = {
Bruce Allanf0f1a172010-12-11 05:53:32 +000063 E1000_STAT("rx_packets", stats.gprc),
64 E1000_STAT("tx_packets", stats.gptc),
65 E1000_STAT("rx_bytes", stats.gorc),
66 E1000_STAT("tx_bytes", stats.gotc),
67 E1000_STAT("rx_broadcast", stats.bprc),
68 E1000_STAT("tx_broadcast", stats.bptc),
69 E1000_STAT("rx_multicast", stats.mprc),
70 E1000_STAT("tx_multicast", stats.mptc),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000071 E1000_NETDEV_STAT("rx_errors", rx_errors),
72 E1000_NETDEV_STAT("tx_errors", tx_errors),
73 E1000_NETDEV_STAT("tx_dropped", tx_dropped),
Bruce Allanf0f1a172010-12-11 05:53:32 +000074 E1000_STAT("multicast", stats.mprc),
75 E1000_STAT("collisions", stats.colc),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000076 E1000_NETDEV_STAT("rx_length_errors", rx_length_errors),
77 E1000_NETDEV_STAT("rx_over_errors", rx_over_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000078 E1000_STAT("rx_crc_errors", stats.crcerrs),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000079 E1000_NETDEV_STAT("rx_frame_errors", rx_frame_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000080 E1000_STAT("rx_no_buffer_count", stats.rnbc),
81 E1000_STAT("rx_missed_errors", stats.mpc),
82 E1000_STAT("tx_aborted_errors", stats.ecol),
83 E1000_STAT("tx_carrier_errors", stats.tncrs),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000084 E1000_NETDEV_STAT("tx_fifo_errors", tx_fifo_errors),
85 E1000_NETDEV_STAT("tx_heartbeat_errors", tx_heartbeat_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000086 E1000_STAT("tx_window_errors", stats.latecol),
87 E1000_STAT("tx_abort_late_coll", stats.latecol),
88 E1000_STAT("tx_deferred_ok", stats.dc),
89 E1000_STAT("tx_single_coll_ok", stats.scc),
90 E1000_STAT("tx_multi_coll_ok", stats.mcc),
91 E1000_STAT("tx_timeout_count", tx_timeout_count),
92 E1000_STAT("tx_restart_queue", restart_queue),
93 E1000_STAT("rx_long_length_errors", stats.roc),
94 E1000_STAT("rx_short_length_errors", stats.ruc),
95 E1000_STAT("rx_align_errors", stats.algnerrc),
96 E1000_STAT("tx_tcp_seg_good", stats.tsctc),
97 E1000_STAT("tx_tcp_seg_failed", stats.tsctfc),
98 E1000_STAT("rx_flow_control_xon", stats.xonrxc),
99 E1000_STAT("rx_flow_control_xoff", stats.xoffrxc),
100 E1000_STAT("tx_flow_control_xon", stats.xontxc),
101 E1000_STAT("tx_flow_control_xoff", stats.xofftxc),
Bruce Allanf0f1a172010-12-11 05:53:32 +0000102 E1000_STAT("rx_csum_offload_good", hw_csum_good),
103 E1000_STAT("rx_csum_offload_errors", hw_csum_err),
104 E1000_STAT("rx_header_split", rx_hdr_split),
105 E1000_STAT("alloc_rx_buff_failed", alloc_rx_buff_failed),
106 E1000_STAT("tx_smbus", stats.mgptc),
107 E1000_STAT("rx_smbus", stats.mgprc),
108 E1000_STAT("dropped_smbus", stats.mgpdc),
109 E1000_STAT("rx_dma_failed", rx_dma_failed),
110 E1000_STAT("tx_dma_failed", tx_dma_failed),
Bruce Allanb67e1912012-12-27 08:32:33 +0000111 E1000_STAT("rx_hwtstamp_cleared", rx_hwtstamp_cleared),
Bruce Allan94fb8482013-01-23 09:00:03 +0000112 E1000_STAT("uncorr_ecc_errors", uncorr_errors),
113 E1000_STAT("corr_ecc_errors", corr_errors),
Auke Kokbc7f75f2007-09-17 12:30:59 -0700114};
115
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +0200116#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700117#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN)
118static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
119 "Register test (offline)", "Eeprom test (offline)",
120 "Interrupt test (offline)", "Loopback test (offline)",
121 "Link test (on/offline)"
122};
Bruce Allanfc830b72013-02-20 04:06:11 +0000123
Bruce Allanad680762008-03-28 09:15:03 -0700124#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700125
126static int e1000_get_settings(struct net_device *netdev,
127 struct ethtool_cmd *ecmd)
128{
129 struct e1000_adapter *adapter = netdev_priv(netdev);
130 struct e1000_hw *hw = &adapter->hw;
David Decotigny70739492011-04-27 18:32:40 +0000131 u32 speed;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700133 if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700134 ecmd->supported = (SUPPORTED_10baseT_Half |
135 SUPPORTED_10baseT_Full |
136 SUPPORTED_100baseT_Half |
137 SUPPORTED_100baseT_Full |
138 SUPPORTED_1000baseT_Full |
139 SUPPORTED_Autoneg |
140 SUPPORTED_TP);
141 if (hw->phy.type == e1000_phy_ife)
142 ecmd->supported &= ~SUPPORTED_1000baseT_Full;
143 ecmd->advertising = ADVERTISED_TP;
144
145 if (hw->mac.autoneg == 1) {
146 ecmd->advertising |= ADVERTISED_Autoneg;
147 /* the e1000 autoneg seems to match ethtool nicely */
148 ecmd->advertising |= hw->phy.autoneg_advertised;
149 }
150
151 ecmd->port = PORT_TP;
152 ecmd->phy_address = hw->phy.addr;
153 ecmd->transceiver = XCVR_INTERNAL;
154
155 } else {
156 ecmd->supported = (SUPPORTED_1000baseT_Full |
157 SUPPORTED_FIBRE |
158 SUPPORTED_Autoneg);
159
160 ecmd->advertising = (ADVERTISED_1000baseT_Full |
161 ADVERTISED_FIBRE |
162 ADVERTISED_Autoneg);
163
164 ecmd->port = PORT_FIBRE;
165 ecmd->transceiver = XCVR_EXTERNAL;
166 }
167
David Decotigny70739492011-04-27 18:32:40 +0000168 speed = -1;
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000169 ecmd->duplex = -1;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700170
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000171 if (netif_running(netdev)) {
172 if (netif_carrier_ok(netdev)) {
David Decotigny70739492011-04-27 18:32:40 +0000173 speed = adapter->link_speed;
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000174 ecmd->duplex = adapter->link_duplex - 1;
175 }
Bruce Allan3ef672a2013-06-27 02:44:44 +0000176 } else if (!pm_runtime_suspended(netdev->dev.parent)) {
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000177 u32 status = er32(STATUS);
178 if (status & E1000_STATUS_LU) {
179 if (status & E1000_STATUS_SPEED_1000)
David Decotigny70739492011-04-27 18:32:40 +0000180 speed = SPEED_1000;
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000181 else if (status & E1000_STATUS_SPEED_100)
David Decotigny70739492011-04-27 18:32:40 +0000182 speed = SPEED_100;
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000183 else
David Decotigny70739492011-04-27 18:32:40 +0000184 speed = SPEED_10;
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000185
186 if (status & E1000_STATUS_FD)
187 ecmd->duplex = DUPLEX_FULL;
188 else
189 ecmd->duplex = DUPLEX_HALF;
190 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700191 }
192
David Decotigny70739492011-04-27 18:32:40 +0000193 ethtool_cmd_speed_set(ecmd, speed);
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700194 ecmd->autoneg = ((hw->phy.media_type == e1000_media_type_fiber) ||
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 hw->mac.autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Chaitanya Lala18760f12009-06-08 14:28:54 +0000196
197 /* MDI-X => 2; MDI =>1; Invalid =>0 */
198 if ((hw->phy.media_type == e1000_media_type_copper) &&
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000199 netif_carrier_ok(netdev))
Bruce Allanf0ff4392013-02-20 04:05:39 +0000200 ecmd->eth_tp_mdix = hw->phy.is_mdix ? ETH_TP_MDI_X : ETH_TP_MDI;
Chaitanya Lala18760f12009-06-08 14:28:54 +0000201 else
202 ecmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
203
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000204 if (hw->phy.mdix == AUTO_ALL_MODES)
205 ecmd->eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
206 else
207 ecmd->eth_tp_mdix_ctrl = hw->phy.mdix;
208
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 return 0;
210}
211
David Decotigny14ad2512011-04-27 18:32:43 +0000212static int e1000_set_spd_dplx(struct e1000_adapter *adapter, u32 spd, u8 dplx)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700213{
214 struct e1000_mac_info *mac = &adapter->hw.mac;
215
216 mac->autoneg = 0;
217
David Decotigny14ad2512011-04-27 18:32:43 +0000218 /* Make sure dplx is at most 1 bit and lsb of speed is not set
Bruce Allane921eb12012-11-28 09:28:37 +0000219 * for the switch() below to work
220 */
David Decotigny14ad2512011-04-27 18:32:43 +0000221 if ((spd & 1) || (dplx & ~1))
222 goto err_inval;
223
Auke Kokbc7f75f2007-09-17 12:30:59 -0700224 /* Fiber NICs only allow 1000 gbps Full duplex */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700225 if ((adapter->hw.phy.media_type == e1000_media_type_fiber) &&
Bruce Allane5fe2542013-02-20 04:06:27 +0000226 (spd != SPEED_1000) && (dplx != DUPLEX_FULL)) {
David Decotigny14ad2512011-04-27 18:32:43 +0000227 goto err_inval;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700228 }
229
David Decotigny14ad2512011-04-27 18:32:43 +0000230 switch (spd + dplx) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700231 case SPEED_10 + DUPLEX_HALF:
232 mac->forced_speed_duplex = ADVERTISE_10_HALF;
233 break;
234 case SPEED_10 + DUPLEX_FULL:
235 mac->forced_speed_duplex = ADVERTISE_10_FULL;
236 break;
237 case SPEED_100 + DUPLEX_HALF:
238 mac->forced_speed_duplex = ADVERTISE_100_HALF;
239 break;
240 case SPEED_100 + DUPLEX_FULL:
241 mac->forced_speed_duplex = ADVERTISE_100_FULL;
242 break;
243 case SPEED_1000 + DUPLEX_FULL:
244 mac->autoneg = 1;
245 adapter->hw.phy.autoneg_advertised = ADVERTISE_1000_FULL;
246 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +0000247 case SPEED_1000 + DUPLEX_HALF: /* not supported */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700248 default:
David Decotigny14ad2512011-04-27 18:32:43 +0000249 goto err_inval;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700250 }
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000251
252 /* clear MDI, MDI(-X) override is only allowed when autoneg enabled */
253 adapter->hw.phy.mdix = AUTO_ALL_MODES;
254
Auke Kokbc7f75f2007-09-17 12:30:59 -0700255 return 0;
David Decotigny14ad2512011-04-27 18:32:43 +0000256
257err_inval:
258 e_err("Unsupported Speed/Duplex configuration\n");
259 return -EINVAL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700260}
261
262static int e1000_set_settings(struct net_device *netdev,
263 struct ethtool_cmd *ecmd)
264{
265 struct e1000_adapter *adapter = netdev_priv(netdev);
266 struct e1000_hw *hw = &adapter->hw;
Bruce Allan3ef672a2013-06-27 02:44:44 +0000267 int ret_val = 0;
268
269 pm_runtime_get_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700270
Bruce Allane921eb12012-11-28 09:28:37 +0000271 /* When SoL/IDER sessions are active, autoneg/speed/duplex
Bruce Allanad680762008-03-28 09:15:03 -0700272 * cannot be changed
273 */
Bruce Allan470a5422012-05-26 06:08:48 +0000274 if (hw->phy.ops.check_reset_block &&
275 hw->phy.ops.check_reset_block(hw)) {
Bruce Allan6ad65142012-04-12 05:47:09 +0000276 e_err("Cannot change link characteristics when SoL/IDER is active.\n");
Bruce Allan3ef672a2013-06-27 02:44:44 +0000277 ret_val = -EINVAL;
278 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700279 }
280
Bruce Allane921eb12012-11-28 09:28:37 +0000281 /* MDI setting is only allowed when autoneg enabled because
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000282 * some hardware doesn't allow MDI setting when speed or
283 * duplex is forced.
284 */
285 if (ecmd->eth_tp_mdix_ctrl) {
Bruce Allan3ef672a2013-06-27 02:44:44 +0000286 if (hw->phy.media_type != e1000_media_type_copper) {
287 ret_val = -EOPNOTSUPP;
288 goto out;
289 }
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000290
291 if ((ecmd->eth_tp_mdix_ctrl != ETH_TP_MDI_AUTO) &&
292 (ecmd->autoneg != AUTONEG_ENABLE)) {
293 e_err("forcing MDI/MDI-X state is not supported when link speed and/or duplex are forced\n");
Bruce Allan3ef672a2013-06-27 02:44:44 +0000294 ret_val = -EINVAL;
295 goto out;
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000296 }
297 }
298
Auke Kokbc7f75f2007-09-17 12:30:59 -0700299 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +0000300 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700301
302 if (ecmd->autoneg == AUTONEG_ENABLE) {
303 hw->mac.autoneg = 1;
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700304 if (hw->phy.media_type == e1000_media_type_fiber)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700305 hw->phy.autoneg_advertised = ADVERTISED_1000baseT_Full |
Bruce Allanf0ff4392013-02-20 04:05:39 +0000306 ADVERTISED_FIBRE | ADVERTISED_Autoneg;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700307 else
308 hw->phy.autoneg_advertised = ecmd->advertising |
Bruce Allanf0ff4392013-02-20 04:05:39 +0000309 ADVERTISED_TP | ADVERTISED_Autoneg;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700310 ecmd->advertising = hw->phy.autoneg_advertised;
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700311 if (adapter->fc_autoneg)
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800312 hw->fc.requested_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700313 } else {
David Decotigny25db0332011-04-27 18:32:39 +0000314 u32 speed = ethtool_cmd_speed(ecmd);
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000315 /* calling this overrides forced MDI setting */
David Decotigny14ad2512011-04-27 18:32:43 +0000316 if (e1000_set_spd_dplx(adapter, speed, ecmd->duplex)) {
Bruce Allan3ef672a2013-06-27 02:44:44 +0000317 ret_val = -EINVAL;
318 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700319 }
320 }
321
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000322 /* MDI-X => 2; MDI => 1; Auto => 3 */
323 if (ecmd->eth_tp_mdix_ctrl) {
Bruce Allane921eb12012-11-28 09:28:37 +0000324 /* fix up the value for auto (3 => 0) as zero is mapped
Jesse Brandeburg4e8186b2012-07-26 02:31:14 +0000325 * internally to auto
326 */
327 if (ecmd->eth_tp_mdix_ctrl == ETH_TP_MDI_AUTO)
328 hw->phy.mdix = AUTO_ALL_MODES;
329 else
330 hw->phy.mdix = ecmd->eth_tp_mdix_ctrl;
331 }
332
Auke Kokbc7f75f2007-09-17 12:30:59 -0700333 /* reset the link */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700334 if (netif_running(adapter->netdev)) {
335 e1000e_down(adapter);
336 e1000e_up(adapter);
Bruce Allana7a1d9d2013-01-24 00:50:18 +0000337 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700338 e1000e_reset(adapter);
Bruce Allana7a1d9d2013-01-24 00:50:18 +0000339 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700340
Bruce Allan3ef672a2013-06-27 02:44:44 +0000341out:
342 pm_runtime_put_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700343 clear_bit(__E1000_RESETTING, &adapter->state);
Bruce Allan3ef672a2013-06-27 02:44:44 +0000344 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700345}
346
347static void e1000_get_pauseparam(struct net_device *netdev,
348 struct ethtool_pauseparam *pause)
349{
350 struct e1000_adapter *adapter = netdev_priv(netdev);
351 struct e1000_hw *hw = &adapter->hw;
352
353 pause->autoneg =
Bruce Allanf0ff4392013-02-20 04:05:39 +0000354 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700355
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800356 if (hw->fc.current_mode == e1000_fc_rx_pause) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700357 pause->rx_pause = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800358 } else if (hw->fc.current_mode == e1000_fc_tx_pause) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700359 pause->tx_pause = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800360 } else if (hw->fc.current_mode == e1000_fc_full) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700361 pause->rx_pause = 1;
362 pause->tx_pause = 1;
363 }
364}
365
366static int e1000_set_pauseparam(struct net_device *netdev,
367 struct ethtool_pauseparam *pause)
368{
369 struct e1000_adapter *adapter = netdev_priv(netdev);
370 struct e1000_hw *hw = &adapter->hw;
371 int retval = 0;
372
373 adapter->fc_autoneg = pause->autoneg;
374
375 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +0000376 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700377
Bruce Allan3ef672a2013-06-27 02:44:44 +0000378 pm_runtime_get_sync(netdev->dev.parent);
379
Auke Kokbc7f75f2007-09-17 12:30:59 -0700380 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800381 hw->fc.requested_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700382 if (netif_running(adapter->netdev)) {
383 e1000e_down(adapter);
384 e1000e_up(adapter);
385 } else {
386 e1000e_reset(adapter);
387 }
388 } else {
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800389 if (pause->rx_pause && pause->tx_pause)
390 hw->fc.requested_mode = e1000_fc_full;
391 else if (pause->rx_pause && !pause->tx_pause)
392 hw->fc.requested_mode = e1000_fc_rx_pause;
393 else if (!pause->rx_pause && pause->tx_pause)
394 hw->fc.requested_mode = e1000_fc_tx_pause;
395 else if (!pause->rx_pause && !pause->tx_pause)
396 hw->fc.requested_mode = e1000_fc_none;
397
398 hw->fc.current_mode = hw->fc.requested_mode;
399
Bruce Allan945eb312009-10-28 18:28:30 +0000400 if (hw->phy.media_type == e1000_media_type_fiber) {
401 retval = hw->mac.ops.setup_link(hw);
402 /* implicit goto out */
403 } else {
404 retval = e1000e_force_mac_fc(hw);
405 if (retval)
406 goto out;
407 e1000e_set_fc_watermarks(hw);
408 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700409 }
410
Bruce Allan945eb312009-10-28 18:28:30 +0000411out:
Bruce Allan3ef672a2013-06-27 02:44:44 +0000412 pm_runtime_put_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700413 clear_bit(__E1000_RESETTING, &adapter->state);
414 return retval;
415}
416
Auke Kokbc7f75f2007-09-17 12:30:59 -0700417static u32 e1000_get_msglevel(struct net_device *netdev)
418{
419 struct e1000_adapter *adapter = netdev_priv(netdev);
420 return adapter->msg_enable;
421}
422
423static void e1000_set_msglevel(struct net_device *netdev, u32 data)
424{
425 struct e1000_adapter *adapter = netdev_priv(netdev);
426 adapter->msg_enable = data;
427}
428
Bruce Allan8bb62862013-01-16 08:46:49 +0000429static int e1000_get_regs_len(struct net_device __always_unused *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700430{
Bruce Allane80bd1d2013-05-01 01:19:46 +0000431#define E1000_REGS_LEN 32 /* overestimate */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700432 return E1000_REGS_LEN * sizeof(u32);
433}
434
435static void e1000_get_regs(struct net_device *netdev,
436 struct ethtool_regs *regs, void *p)
437{
438 struct e1000_adapter *adapter = netdev_priv(netdev);
439 struct e1000_hw *hw = &adapter->hw;
440 u32 *regs_buff = p;
441 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700442
Bruce Allan3ef672a2013-06-27 02:44:44 +0000443 pm_runtime_get_sync(netdev->dev.parent);
444
Auke Kokbc7f75f2007-09-17 12:30:59 -0700445 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
446
Sergei Shtylyovff938e42011-02-28 11:57:33 -0800447 regs->version = (1 << 24) | (adapter->pdev->revision << 16) |
Bruce Allanf0ff4392013-02-20 04:05:39 +0000448 adapter->pdev->device;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700449
Bruce Allane80bd1d2013-05-01 01:19:46 +0000450 regs_buff[0] = er32(CTRL);
451 regs_buff[1] = er32(STATUS);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700452
Bruce Allane80bd1d2013-05-01 01:19:46 +0000453 regs_buff[2] = er32(RCTL);
454 regs_buff[3] = er32(RDLEN(0));
455 regs_buff[4] = er32(RDH(0));
456 regs_buff[5] = er32(RDT(0));
457 regs_buff[6] = er32(RDTR);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700458
Bruce Allane80bd1d2013-05-01 01:19:46 +0000459 regs_buff[7] = er32(TCTL);
460 regs_buff[8] = er32(TDLEN(0));
461 regs_buff[9] = er32(TDH(0));
Bruce Allan1e360522012-03-20 03:48:13 +0000462 regs_buff[10] = er32(TDT(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700463 regs_buff[11] = er32(TIDV);
464
Bruce Allane80bd1d2013-05-01 01:19:46 +0000465 regs_buff[12] = adapter->hw.phy.type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg23033fa2008-10-02 16:33:30 -0700466
467 /* ethtool doesn't use anything past this point, so all this
Bruce Allane921eb12012-11-28 09:28:37 +0000468 * code is likely legacy junk for apps that may or may not exist
469 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700470 if (hw->phy.type == e1000_phy_m88) {
471 e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
472 regs_buff[13] = (u32)phy_data; /* cable length */
473 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
474 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
475 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
476 e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
477 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
478 regs_buff[18] = regs_buff[13]; /* cable polarity */
479 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
480 regs_buff[20] = regs_buff[17]; /* polarity correction */
481 /* phy receive errors */
482 regs_buff[22] = adapter->phy_stats.receive_errors;
483 regs_buff[23] = regs_buff[13]; /* mdix mode */
484 }
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000485 regs_buff[21] = 0; /* was idle_errors */
486 e1e_rphy(hw, MII_STAT1000, &phy_data);
487 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
488 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Bruce Allan3ef672a2013-06-27 02:44:44 +0000489
490 pm_runtime_put_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700491}
492
493static int e1000_get_eeprom_len(struct net_device *netdev)
494{
495 struct e1000_adapter *adapter = netdev_priv(netdev);
496 return adapter->hw.nvm.word_size * 2;
497}
498
499static int e1000_get_eeprom(struct net_device *netdev,
500 struct ethtool_eeprom *eeprom, u8 *bytes)
501{
502 struct e1000_adapter *adapter = netdev_priv(netdev);
503 struct e1000_hw *hw = &adapter->hw;
504 u16 *eeprom_buff;
505 int first_word;
506 int last_word;
507 int ret_val = 0;
508 u16 i;
509
510 if (eeprom->len == 0)
511 return -EINVAL;
512
513 eeprom->magic = adapter->pdev->vendor | (adapter->pdev->device << 16);
514
515 first_word = eeprom->offset >> 1;
516 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
517
Bruce Allan17e813e2013-02-20 04:06:01 +0000518 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
519 GFP_KERNEL);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700520 if (!eeprom_buff)
521 return -ENOMEM;
522
Bruce Allan3ef672a2013-06-27 02:44:44 +0000523 pm_runtime_get_sync(netdev->dev.parent);
524
Auke Kokbc7f75f2007-09-17 12:30:59 -0700525 if (hw->nvm.type == e1000_nvm_eeprom_spi) {
526 ret_val = e1000_read_nvm(hw, first_word,
527 last_word - first_word + 1,
528 eeprom_buff);
529 } else {
530 for (i = 0; i < last_word - first_word + 1; i++) {
531 ret_val = e1000_read_nvm(hw, first_word + i, 1,
Bruce Allan17e813e2013-02-20 04:06:01 +0000532 &eeprom_buff[i]);
Bruce Allane2434552008-11-21 17:02:41 -0800533 if (ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700534 break;
535 }
536 }
537
Bruce Allan3ef672a2013-06-27 02:44:44 +0000538 pm_runtime_put_sync(netdev->dev.parent);
539
Bruce Allane2434552008-11-21 17:02:41 -0800540 if (ret_val) {
541 /* a read error occurred, throw away the result */
Roel Kluin8528b012009-12-01 15:54:24 +0000542 memset(eeprom_buff, 0xff, sizeof(u16) *
543 (last_word - first_word + 1));
Bruce Allane2434552008-11-21 17:02:41 -0800544 } else {
545 /* Device's eeprom is always little-endian, word addressable */
546 for (i = 0; i < last_word - first_word + 1; i++)
547 le16_to_cpus(&eeprom_buff[i]);
548 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700549
550 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
551 kfree(eeprom_buff);
552
553 return ret_val;
554}
555
556static int e1000_set_eeprom(struct net_device *netdev,
557 struct ethtool_eeprom *eeprom, u8 *bytes)
558{
559 struct e1000_adapter *adapter = netdev_priv(netdev);
560 struct e1000_hw *hw = &adapter->hw;
561 u16 *eeprom_buff;
562 void *ptr;
563 int max_len;
564 int first_word;
565 int last_word;
566 int ret_val = 0;
567 u16 i;
568
569 if (eeprom->len == 0)
570 return -EOPNOTSUPP;
571
Bruce Allanc29c3ba2013-02-20 04:05:50 +0000572 if (eeprom->magic !=
573 (adapter->pdev->vendor | (adapter->pdev->device << 16)))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700574 return -EFAULT;
575
Bruce Allan4a770352008-10-01 17:18:35 -0700576 if (adapter->flags & FLAG_READ_ONLY_NVM)
577 return -EINVAL;
578
Auke Kokbc7f75f2007-09-17 12:30:59 -0700579 max_len = hw->nvm.word_size * 2;
580
581 first_word = eeprom->offset >> 1;
582 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
583 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
584 if (!eeprom_buff)
585 return -ENOMEM;
586
587 ptr = (void *)eeprom_buff;
588
Bruce Allan3ef672a2013-06-27 02:44:44 +0000589 pm_runtime_get_sync(netdev->dev.parent);
590
Auke Kokbc7f75f2007-09-17 12:30:59 -0700591 if (eeprom->offset & 1) {
592 /* need read/modify/write of first changed EEPROM word */
593 /* only the second byte of the word is being modified */
594 ret_val = e1000_read_nvm(hw, first_word, 1, &eeprom_buff[0]);
595 ptr++;
596 }
Bruce Allan9e2d7652012-01-31 06:37:27 +0000597 if (((eeprom->offset + eeprom->len) & 1) && (!ret_val))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598 /* need read/modify/write of last changed EEPROM word */
599 /* only the first byte of the word is being modified */
600 ret_val = e1000_read_nvm(hw, last_word, 1,
Bruce Allan17e813e2013-02-20 04:06:01 +0000601 &eeprom_buff[last_word - first_word]);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700602
Bruce Allane2434552008-11-21 17:02:41 -0800603 if (ret_val)
604 goto out;
605
Auke Kokbc7f75f2007-09-17 12:30:59 -0700606 /* Device's eeprom is always little-endian, word addressable */
607 for (i = 0; i < last_word - first_word + 1; i++)
608 le16_to_cpus(&eeprom_buff[i]);
609
610 memcpy(ptr, bytes, eeprom->len);
611
612 for (i = 0; i < last_word - first_word + 1; i++)
Bruce Allane885d762012-01-31 06:37:32 +0000613 cpu_to_le16s(&eeprom_buff[i]);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700614
615 ret_val = e1000_write_nvm(hw, first_word,
616 last_word - first_word + 1, eeprom_buff);
617
Bruce Allane2434552008-11-21 17:02:41 -0800618 if (ret_val)
619 goto out;
620
Bruce Allane921eb12012-11-28 09:28:37 +0000621 /* Update the checksum over the first part of the EEPROM if needed
Bruce Allane2434552008-11-21 17:02:41 -0800622 * and flush shadow RAM for applicable controllers
Bruce Allanad680762008-03-28 09:15:03 -0700623 */
Bruce Allane2434552008-11-21 17:02:41 -0800624 if ((first_word <= NVM_CHECKSUM_REG) ||
Bruce Allanf89271dd2009-11-20 23:22:20 +0000625 (hw->mac.type == e1000_82583) ||
626 (hw->mac.type == e1000_82574) ||
627 (hw->mac.type == e1000_82573))
Bruce Allane2434552008-11-21 17:02:41 -0800628 ret_val = e1000e_update_nvm_checksum(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700629
Bruce Allane2434552008-11-21 17:02:41 -0800630out:
Bruce Allan3ef672a2013-06-27 02:44:44 +0000631 pm_runtime_put_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700632 kfree(eeprom_buff);
633 return ret_val;
634}
635
636static void e1000_get_drvinfo(struct net_device *netdev,
637 struct ethtool_drvinfo *drvinfo)
638{
639 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700640
Bruce Allane5fe2542013-02-20 04:06:27 +0000641 strlcpy(drvinfo->driver, e1000e_driver_name, sizeof(drvinfo->driver));
Rick Jones33a5ba12011-11-15 14:59:53 +0000642 strlcpy(drvinfo->version, e1000e_driver_version,
Rick Jones612a94d2011-11-14 08:13:25 +0000643 sizeof(drvinfo->version));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644
Bruce Allane921eb12012-11-28 09:28:37 +0000645 /* EEPROM image version # is reported as firmware version # for
Bruce Allanad680762008-03-28 09:15:03 -0700646 * PCI-E controllers
647 */
Rick Jones612a94d2011-11-14 08:13:25 +0000648 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
Bruce Allan17e813e2013-02-20 04:06:01 +0000649 "%d.%d-%d",
650 (adapter->eeprom_vers & 0xF000) >> 12,
651 (adapter->eeprom_vers & 0x0FF0) >> 4,
652 (adapter->eeprom_vers & 0x000F));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700653
Rick Jones612a94d2011-11-14 08:13:25 +0000654 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
655 sizeof(drvinfo->bus_info));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700656 drvinfo->regdump_len = e1000_get_regs_len(netdev);
657 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
658}
659
660static void e1000_get_ringparam(struct net_device *netdev,
661 struct ethtool_ringparam *ring)
662{
663 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700664
665 ring->rx_max_pending = E1000_MAX_RXD;
666 ring->tx_max_pending = E1000_MAX_TXD;
Bruce Allan508da422011-12-16 00:45:51 +0000667 ring->rx_pending = adapter->rx_ring_count;
668 ring->tx_pending = adapter->tx_ring_count;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700669}
670
671static int e1000_set_ringparam(struct net_device *netdev,
672 struct ethtool_ringparam *ring)
673{
674 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan508da422011-12-16 00:45:51 +0000675 struct e1000_ring *temp_tx = NULL, *temp_rx = NULL;
676 int err = 0, size = sizeof(struct e1000_ring);
677 bool set_tx = false, set_rx = false;
678 u16 new_rx_count, new_tx_count;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700679
680 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
681 return -EINVAL;
682
Bruce Allan508da422011-12-16 00:45:51 +0000683 new_rx_count = clamp_t(u32, ring->rx_pending, E1000_MIN_RXD,
684 E1000_MAX_RXD);
685 new_rx_count = ALIGN(new_rx_count, REQ_RX_DESCRIPTOR_MULTIPLE);
686
687 new_tx_count = clamp_t(u32, ring->tx_pending, E1000_MIN_TXD,
688 E1000_MAX_TXD);
689 new_tx_count = ALIGN(new_tx_count, REQ_TX_DESCRIPTOR_MULTIPLE);
690
691 if ((new_tx_count == adapter->tx_ring_count) &&
692 (new_rx_count == adapter->rx_ring_count))
693 /* nothing to do */
694 return 0;
695
Auke Kokbc7f75f2007-09-17 12:30:59 -0700696 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +0000697 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700698
Bruce Allan508da422011-12-16 00:45:51 +0000699 if (!netif_running(adapter->netdev)) {
700 /* Set counts now and allocate resources during open() */
701 adapter->tx_ring->count = new_tx_count;
702 adapter->rx_ring->count = new_rx_count;
703 adapter->tx_ring_count = new_tx_count;
704 adapter->rx_ring_count = new_rx_count;
705 goto clear_reset;
706 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700707
Bruce Allan508da422011-12-16 00:45:51 +0000708 set_tx = (new_tx_count != adapter->tx_ring_count);
709 set_rx = (new_rx_count != adapter->rx_ring_count);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700710
Bruce Allan508da422011-12-16 00:45:51 +0000711 /* Allocate temporary storage for ring updates */
712 if (set_tx) {
713 temp_tx = vmalloc(size);
714 if (!temp_tx) {
715 err = -ENOMEM;
716 goto free_temp;
717 }
718 }
719 if (set_rx) {
720 temp_rx = vmalloc(size);
721 if (!temp_rx) {
722 err = -ENOMEM;
723 goto free_temp;
724 }
725 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700726
Bruce Allan3ef672a2013-06-27 02:44:44 +0000727 pm_runtime_get_sync(netdev->dev.parent);
728
Bruce Allan508da422011-12-16 00:45:51 +0000729 e1000e_down(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700730
Bruce Allane921eb12012-11-28 09:28:37 +0000731 /* We can't just free everything and then setup again, because the
Bruce Allan508da422011-12-16 00:45:51 +0000732 * ISRs in MSI-X mode get passed pointers to the Tx and Rx ring
733 * structs. First, attempt to allocate new resources...
734 */
735 if (set_tx) {
736 memcpy(temp_tx, adapter->tx_ring, size);
737 temp_tx->count = new_tx_count;
738 err = e1000e_setup_tx_resources(temp_tx);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700739 if (err)
740 goto err_setup;
741 }
Bruce Allan508da422011-12-16 00:45:51 +0000742 if (set_rx) {
743 memcpy(temp_rx, adapter->rx_ring, size);
744 temp_rx->count = new_rx_count;
745 err = e1000e_setup_rx_resources(temp_rx);
746 if (err)
747 goto err_setup_rx;
748 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700749
Bruce Allan508da422011-12-16 00:45:51 +0000750 /* ...then free the old resources and copy back any new ring data */
751 if (set_tx) {
752 e1000e_free_tx_resources(adapter->tx_ring);
753 memcpy(adapter->tx_ring, temp_tx, size);
754 adapter->tx_ring_count = new_tx_count;
755 }
756 if (set_rx) {
757 e1000e_free_rx_resources(adapter->rx_ring);
758 memcpy(adapter->rx_ring, temp_rx, size);
759 adapter->rx_ring_count = new_rx_count;
760 }
761
Auke Kokbc7f75f2007-09-17 12:30:59 -0700762err_setup_rx:
Bruce Allan508da422011-12-16 00:45:51 +0000763 if (err && set_tx)
764 e1000e_free_tx_resources(temp_tx);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700765err_setup:
Bruce Allan508da422011-12-16 00:45:51 +0000766 e1000e_up(adapter);
Bruce Allan3ef672a2013-06-27 02:44:44 +0000767 pm_runtime_put_sync(netdev->dev.parent);
Bruce Allan508da422011-12-16 00:45:51 +0000768free_temp:
769 vfree(temp_tx);
770 vfree(temp_rx);
771clear_reset:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700772 clear_bit(__E1000_RESETTING, &adapter->state);
773 return err;
774}
775
Bruce Allancef8c792008-04-02 13:48:23 -0700776static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data,
777 int reg, int offset, u32 mask, u32 write)
Joe Perches2a887192007-11-13 20:53:51 -0800778{
Bruce Allancef8c792008-04-02 13:48:23 -0700779 u32 pat, val;
Bruce Allan64806412010-12-11 05:53:42 +0000780 static const u32 test[] = {
Bruce Allan04e115c2013-02-20 04:06:22 +0000781 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
782 };
Bruce Allancef8c792008-04-02 13:48:23 -0700783 for (pat = 0; pat < ARRAY_SIZE(test); pat++) {
Joe Perches2a887192007-11-13 20:53:51 -0800784 E1000_WRITE_REG_ARRAY(&adapter->hw, reg, offset,
Bruce Allancef8c792008-04-02 13:48:23 -0700785 (test[pat] & write));
786 val = E1000_READ_REG_ARRAY(&adapter->hw, reg, offset);
787 if (val != (test[pat] & write & mask)) {
Bruce Allana8fc1892012-12-05 06:25:36 +0000788 e_err("pattern test failed (reg 0x%05X): got 0x%08X expected 0x%08X\n",
789 reg + (offset << 2), val,
790 (test[pat] & write & mask));
Joe Perches2a887192007-11-13 20:53:51 -0800791 *data = reg;
Bruce Allancef8c792008-04-02 13:48:23 -0700792 return 1;
Joe Perches2a887192007-11-13 20:53:51 -0800793 }
794 }
Bruce Allancef8c792008-04-02 13:48:23 -0700795 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700796}
797
Joe Perches2a887192007-11-13 20:53:51 -0800798static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data,
799 int reg, u32 mask, u32 write)
800{
Bruce Allancef8c792008-04-02 13:48:23 -0700801 u32 val;
Joe Perches2a887192007-11-13 20:53:51 -0800802 __ew32(&adapter->hw, reg, write & mask);
Bruce Allancef8c792008-04-02 13:48:23 -0700803 val = __er32(&adapter->hw, reg);
804 if ((write & mask) != (val & mask)) {
Bruce Allana8fc1892012-12-05 06:25:36 +0000805 e_err("set/check test failed (reg 0x%05X): got 0x%08X expected 0x%08X\n",
Bruce Allan6ad65142012-04-12 05:47:09 +0000806 reg, (val & mask), (write & mask));
Joe Perches2a887192007-11-13 20:53:51 -0800807 *data = reg;
Bruce Allancef8c792008-04-02 13:48:23 -0700808 return 1;
Joe Perches2a887192007-11-13 20:53:51 -0800809 }
Bruce Allancef8c792008-04-02 13:48:23 -0700810 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700811}
Bruce Allanfc830b72013-02-20 04:06:11 +0000812
Bruce Allancef8c792008-04-02 13:48:23 -0700813#define REG_PATTERN_TEST_ARRAY(reg, offset, mask, write) \
814 do { \
815 if (reg_pattern_test(adapter, data, reg, offset, mask, write)) \
816 return 1; \
Joe Perches2a887192007-11-13 20:53:51 -0800817 } while (0)
Bruce Allancef8c792008-04-02 13:48:23 -0700818#define REG_PATTERN_TEST(reg, mask, write) \
819 REG_PATTERN_TEST_ARRAY(reg, 0, mask, write)
Joe Perches2a887192007-11-13 20:53:51 -0800820
Bruce Allancef8c792008-04-02 13:48:23 -0700821#define REG_SET_AND_CHECK(reg, mask, write) \
822 do { \
823 if (reg_set_and_check(adapter, data, reg, mask, write)) \
824 return 1; \
Joe Perches2a887192007-11-13 20:53:51 -0800825 } while (0)
826
Auke Kokbc7f75f2007-09-17 12:30:59 -0700827static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
828{
829 struct e1000_hw *hw = &adapter->hw;
830 struct e1000_mac_info *mac = &adapter->hw.mac;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700831 u32 value;
832 u32 before;
833 u32 after;
834 u32 i;
835 u32 toggle;
Bruce Allana4f58f52009-06-02 11:29:18 +0000836 u32 mask;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000837 u32 wlock_mac = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700838
Bruce Allane921eb12012-11-28 09:28:37 +0000839 /* The status register is Read Only, so a write should fail.
Bruce Allan33550ce2013-02-20 04:06:16 +0000840 * Some bits that get toggled are ignored. There are several bits
841 * on newer hardware that are r/w.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700842 */
843 switch (mac->type) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700844 case e1000_82571:
845 case e1000_82572:
846 case e1000_80003es2lan:
847 toggle = 0x7FFFF3FF;
848 break;
Bruce Allanf0ff4392013-02-20 04:05:39 +0000849 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700850 toggle = 0x7FFFF033;
851 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700852 }
853
854 before = er32(STATUS);
855 value = (er32(STATUS) & toggle);
856 ew32(STATUS, toggle);
857 after = er32(STATUS) & toggle;
858 if (value != after) {
Bruce Allan6ad65142012-04-12 05:47:09 +0000859 e_err("failed STATUS register test got: 0x%08X expected: 0x%08X\n",
860 after, value);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700861 *data = 1;
862 return 1;
863 }
864 /* restore previous status */
865 ew32(STATUS, before);
866
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700867 if (!(adapter->flags & FLAG_IS_ICH)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700868 REG_PATTERN_TEST(E1000_FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
869 REG_PATTERN_TEST(E1000_FCAH, 0x0000FFFF, 0xFFFFFFFF);
870 REG_PATTERN_TEST(E1000_FCT, 0x0000FFFF, 0xFFFFFFFF);
871 REG_PATTERN_TEST(E1000_VET, 0x0000FFFF, 0xFFFFFFFF);
872 }
873
874 REG_PATTERN_TEST(E1000_RDTR, 0x0000FFFF, 0xFFFFFFFF);
Bruce Allan1e360522012-03-20 03:48:13 +0000875 REG_PATTERN_TEST(E1000_RDBAH(0), 0xFFFFFFFF, 0xFFFFFFFF);
876 REG_PATTERN_TEST(E1000_RDLEN(0), 0x000FFF80, 0x000FFFFF);
877 REG_PATTERN_TEST(E1000_RDH(0), 0x0000FFFF, 0x0000FFFF);
878 REG_PATTERN_TEST(E1000_RDT(0), 0x0000FFFF, 0x0000FFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700879 REG_PATTERN_TEST(E1000_FCRTH, 0x0000FFF8, 0x0000FFF8);
880 REG_PATTERN_TEST(E1000_FCTTV, 0x0000FFFF, 0x0000FFFF);
881 REG_PATTERN_TEST(E1000_TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
Bruce Allan1e360522012-03-20 03:48:13 +0000882 REG_PATTERN_TEST(E1000_TDBAH(0), 0xFFFFFFFF, 0xFFFFFFFF);
883 REG_PATTERN_TEST(E1000_TDLEN(0), 0x000FFF80, 0x000FFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700884
885 REG_SET_AND_CHECK(E1000_RCTL, 0xFFFFFFFF, 0x00000000);
886
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700887 before = ((adapter->flags & FLAG_IS_ICH) ? 0x06C3B33E : 0x06DFB3FE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700888 REG_SET_AND_CHECK(E1000_RCTL, before, 0x003FFFFB);
889 REG_SET_AND_CHECK(E1000_TCTL, 0xFFFFFFFF, 0x00000000);
890
Auke Kok86582512007-10-04 15:00:08 -0700891 REG_SET_AND_CHECK(E1000_RCTL, before, 0xFFFFFFFF);
Bruce Allan1e360522012-03-20 03:48:13 +0000892 REG_PATTERN_TEST(E1000_RDBAL(0), 0xFFFFFFF0, 0xFFFFFFFF);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700893 if (!(adapter->flags & FLAG_IS_ICH))
Auke Kok86582512007-10-04 15:00:08 -0700894 REG_PATTERN_TEST(E1000_TXCW, 0xC000FFFF, 0x0000FFFF);
Bruce Allan1e360522012-03-20 03:48:13 +0000895 REG_PATTERN_TEST(E1000_TDBAL(0), 0xFFFFFFF0, 0xFFFFFFFF);
Auke Kok86582512007-10-04 15:00:08 -0700896 REG_PATTERN_TEST(E1000_TIDV, 0x0000FFFF, 0x0000FFFF);
Bruce Allana4f58f52009-06-02 11:29:18 +0000897 mask = 0x8003FFFF;
898 switch (mac->type) {
899 case e1000_ich10lan:
900 case e1000_pchlan:
Bruce Alland3738bb2010-06-16 13:27:28 +0000901 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +0000902 case e1000_pch_lpt:
Bruce Allana4f58f52009-06-02 11:29:18 +0000903 mask |= (1 << 18);
904 break;
905 default:
906 break;
907 }
Bruce Allan2fbe4522012-04-19 03:21:47 +0000908
909 if (mac->type == e1000_pch_lpt)
910 wlock_mac = (er32(FWSM) & E1000_FWSM_WLOCK_MAC_MASK) >>
911 E1000_FWSM_WLOCK_MAC_SHIFT;
912
913 for (i = 0; i < mac->rar_entry_count; i++) {
Bruce Allana8fc1892012-12-05 06:25:36 +0000914 if (mac->type == e1000_pch_lpt) {
915 /* Cannot test write-protected SHRAL[n] registers */
916 if ((wlock_mac == 1) || (wlock_mac && (i > wlock_mac)))
917 continue;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000918
Bruce Allana8fc1892012-12-05 06:25:36 +0000919 /* SHRAH[9] different than the others */
920 if (i == 10)
921 mask |= (1 << 30);
922 else
923 mask &= ~(1 << 30);
924 }
David Ertmanc3a0dce2013-09-05 04:24:25 +0000925 if (mac->type == e1000_pch2lan) {
926 /* SHRAH[0,1,2] different than previous */
927 if (i == 7)
928 mask &= 0xFFF4FFFF;
929 /* SHRAH[3] different than SHRAH[0,1,2] */
930 if (i == 10)
931 mask |= (1 << 30);
932 }
Bruce Allana8fc1892012-12-05 06:25:36 +0000933
934 REG_PATTERN_TEST_ARRAY(E1000_RA, ((i << 1) + 1), mask,
935 0xFFFFFFFF);
Bruce Allan2fbe4522012-04-19 03:21:47 +0000936 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700937
938 for (i = 0; i < mac->mta_reg_count; i++)
939 REG_PATTERN_TEST_ARRAY(E1000_MTA, i, 0xFFFFFFFF, 0xFFFFFFFF);
940
941 *data = 0;
Bruce Allan2fbe4522012-04-19 03:21:47 +0000942
Auke Kokbc7f75f2007-09-17 12:30:59 -0700943 return 0;
944}
945
946static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
947{
948 u16 temp;
949 u16 checksum = 0;
950 u16 i;
951
952 *data = 0;
953 /* Read and add up the contents of the EEPROM */
954 for (i = 0; i < (NVM_CHECKSUM_REG + 1); i++) {
955 if ((e1000_read_nvm(&adapter->hw, i, 1, &temp)) < 0) {
956 *data = 1;
Bruce Allane2434552008-11-21 17:02:41 -0800957 return *data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700958 }
959 checksum += temp;
960 }
961
962 /* If Checksum is not Correct return error else test passed */
Bruce Allan53aa82d2013-02-20 04:06:06 +0000963 if ((checksum != (u16)NVM_SUM) && !(*data))
Auke Kokbc7f75f2007-09-17 12:30:59 -0700964 *data = 2;
965
966 return *data;
967}
968
Bruce Allan8bb62862013-01-16 08:46:49 +0000969static irqreturn_t e1000_test_intr(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700970{
Bruce Allan53aa82d2013-02-20 04:06:06 +0000971 struct net_device *netdev = (struct net_device *)data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700972 struct e1000_adapter *adapter = netdev_priv(netdev);
973 struct e1000_hw *hw = &adapter->hw;
974
975 adapter->test_icr |= er32(ICR);
976
977 return IRQ_HANDLED;
978}
979
980static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
981{
982 struct net_device *netdev = adapter->netdev;
983 struct e1000_hw *hw = &adapter->hw;
984 u32 mask;
985 u32 shared_int = 1;
986 u32 irq = adapter->pdev->irq;
987 int i;
Bruce Allan4662e822008-08-26 18:37:06 -0700988 int ret_val = 0;
989 int int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700990
991 *data = 0;
992
Bruce Allan4662e822008-08-26 18:37:06 -0700993 /* NOTE: we don't test MSI/MSI-X interrupts here, yet */
994 if (adapter->int_mode == E1000E_INT_MODE_MSIX) {
995 int_mode = adapter->int_mode;
996 e1000e_reset_interrupt_capability(adapter);
997 adapter->int_mode = E1000E_INT_MODE_LEGACY;
998 e1000e_set_interrupt_capability(adapter);
999 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001000 /* Hook up test interrupt handler just for this test */
Joe Perchesa0607fd2009-11-18 23:29:17 -08001001 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001002 netdev)) {
1003 shared_int = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00001004 } else if (request_irq(irq, e1000_test_intr, IRQF_SHARED, netdev->name,
1005 netdev)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001006 *data = 1;
Bruce Allan4662e822008-08-26 18:37:06 -07001007 ret_val = -1;
1008 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001009 }
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001010 e_info("testing %s interrupt\n", (shared_int ? "shared" : "unshared"));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001011
1012 /* Disable all the interrupts */
1013 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001014 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001015 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001016
1017 /* Test each interrupt */
1018 for (i = 0; i < 10; i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001019 /* Interrupt to test */
1020 mask = 1 << i;
1021
Bruce Allanf4187b52008-08-26 18:36:50 -07001022 if (adapter->flags & FLAG_IS_ICH) {
1023 switch (mask) {
1024 case E1000_ICR_RXSEQ:
1025 continue;
1026 case 0x00000100:
1027 if (adapter->hw.mac.type == e1000_ich8lan ||
1028 adapter->hw.mac.type == e1000_ich9lan)
1029 continue;
1030 break;
1031 default:
1032 break;
1033 }
1034 }
1035
Auke Kokbc7f75f2007-09-17 12:30:59 -07001036 if (!shared_int) {
Bruce Allane921eb12012-11-28 09:28:37 +00001037 /* Disable the interrupt to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -07001038 * the cause register and then force the same
1039 * interrupt and see if one gets posted. If
1040 * an interrupt was posted to the bus, the
1041 * test failed.
1042 */
1043 adapter->test_icr = 0;
1044 ew32(IMC, mask);
1045 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001046 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001047 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001048
1049 if (adapter->test_icr & mask) {
1050 *data = 3;
1051 break;
1052 }
1053 }
1054
Bruce Allane921eb12012-11-28 09:28:37 +00001055 /* Enable the interrupt to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -07001056 * the cause register and then force the same
1057 * interrupt and see if one gets posted. If
1058 * an interrupt was not posted to the bus, the
1059 * test failed.
1060 */
1061 adapter->test_icr = 0;
1062 ew32(IMS, mask);
1063 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001064 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001065 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001066
1067 if (!(adapter->test_icr & mask)) {
1068 *data = 4;
1069 break;
1070 }
1071
1072 if (!shared_int) {
Bruce Allane921eb12012-11-28 09:28:37 +00001073 /* Disable the other interrupts to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -07001074 * the cause register and then force the other
1075 * interrupts and see if any get posted. If
1076 * an interrupt was posted to the bus, the
1077 * test failed.
1078 */
1079 adapter->test_icr = 0;
1080 ew32(IMC, ~mask & 0x00007FFF);
1081 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001082 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001083 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001084
1085 if (adapter->test_icr) {
1086 *data = 5;
1087 break;
1088 }
1089 }
1090 }
1091
1092 /* Disable all the interrupts */
1093 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001094 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001095 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001096
1097 /* Unhook test interrupt handler */
1098 free_irq(irq, netdev);
1099
Bruce Allan4662e822008-08-26 18:37:06 -07001100out:
1101 if (int_mode == E1000E_INT_MODE_MSIX) {
1102 e1000e_reset_interrupt_capability(adapter);
1103 adapter->int_mode = int_mode;
1104 e1000e_set_interrupt_capability(adapter);
1105 }
1106
1107 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001108}
1109
1110static void e1000_free_desc_rings(struct e1000_adapter *adapter)
1111{
1112 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1113 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1114 struct pci_dev *pdev = adapter->pdev;
Bruce Allan17e813e2013-02-20 04:06:01 +00001115 struct e1000_buffer *buffer_info;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001116 int i;
1117
1118 if (tx_ring->desc && tx_ring->buffer_info) {
1119 for (i = 0; i < tx_ring->count; i++) {
Bruce Allan17e813e2013-02-20 04:06:01 +00001120 buffer_info = &tx_ring->buffer_info[i];
1121
1122 if (buffer_info->dma)
Nick Nunley0be3f552010-04-27 13:09:05 +00001123 dma_unmap_single(&pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00001124 buffer_info->dma,
1125 buffer_info->length,
1126 DMA_TO_DEVICE);
1127 if (buffer_info->skb)
1128 dev_kfree_skb(buffer_info->skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001129 }
1130 }
1131
1132 if (rx_ring->desc && rx_ring->buffer_info) {
1133 for (i = 0; i < rx_ring->count; i++) {
Bruce Allan17e813e2013-02-20 04:06:01 +00001134 buffer_info = &rx_ring->buffer_info[i];
1135
1136 if (buffer_info->dma)
Nick Nunley0be3f552010-04-27 13:09:05 +00001137 dma_unmap_single(&pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00001138 buffer_info->dma,
1139 2048, DMA_FROM_DEVICE);
1140 if (buffer_info->skb)
1141 dev_kfree_skb(buffer_info->skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001142 }
1143 }
1144
1145 if (tx_ring->desc) {
1146 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1147 tx_ring->dma);
1148 tx_ring->desc = NULL;
1149 }
1150 if (rx_ring->desc) {
1151 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1152 rx_ring->dma);
1153 rx_ring->desc = NULL;
1154 }
1155
1156 kfree(tx_ring->buffer_info);
1157 tx_ring->buffer_info = NULL;
1158 kfree(rx_ring->buffer_info);
1159 rx_ring->buffer_info = NULL;
1160}
1161
1162static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
1163{
1164 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1165 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1166 struct pci_dev *pdev = adapter->pdev;
1167 struct e1000_hw *hw = &adapter->hw;
1168 u32 rctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001169 int i;
1170 int ret_val;
1171
1172 /* Setup Tx descriptor ring and Tx buffers */
1173
1174 if (!tx_ring->count)
1175 tx_ring->count = E1000_DEFAULT_TXD;
1176
Bruce Allancef8c792008-04-02 13:48:23 -07001177 tx_ring->buffer_info = kcalloc(tx_ring->count,
Bruce Allane5fe2542013-02-20 04:06:27 +00001178 sizeof(struct e1000_buffer), GFP_KERNEL);
Bruce Allan668018d2012-01-31 07:02:56 +00001179 if (!tx_ring->buffer_info) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001180 ret_val = 1;
1181 goto err_nomem;
1182 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001183
1184 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
1185 tx_ring->size = ALIGN(tx_ring->size, 4096);
1186 tx_ring->desc = dma_alloc_coherent(&pdev->dev, tx_ring->size,
1187 &tx_ring->dma, GFP_KERNEL);
1188 if (!tx_ring->desc) {
1189 ret_val = 2;
1190 goto err_nomem;
1191 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001192 tx_ring->next_to_use = 0;
1193 tx_ring->next_to_clean = 0;
1194
Bruce Allan53aa82d2013-02-20 04:06:06 +00001195 ew32(TDBAL(0), ((u64)tx_ring->dma & 0x00000000FFFFFFFF));
1196 ew32(TDBAH(0), ((u64)tx_ring->dma >> 32));
Bruce Allan1e360522012-03-20 03:48:13 +00001197 ew32(TDLEN(0), tx_ring->count * sizeof(struct e1000_tx_desc));
1198 ew32(TDH(0), 0);
1199 ew32(TDT(0), 0);
Bruce Allancef8c792008-04-02 13:48:23 -07001200 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN | E1000_TCTL_MULR |
1201 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1202 E1000_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001203
1204 for (i = 0; i < tx_ring->count; i++) {
1205 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*tx_ring, i);
1206 struct sk_buff *skb;
1207 unsigned int skb_size = 1024;
1208
1209 skb = alloc_skb(skb_size, GFP_KERNEL);
1210 if (!skb) {
1211 ret_val = 3;
1212 goto err_nomem;
1213 }
1214 skb_put(skb, skb_size);
1215 tx_ring->buffer_info[i].skb = skb;
1216 tx_ring->buffer_info[i].length = skb->len;
1217 tx_ring->buffer_info[i].dma =
Bruce Allanf0ff4392013-02-20 04:05:39 +00001218 dma_map_single(&pdev->dev, skb->data, skb->len,
1219 DMA_TO_DEVICE);
Nick Nunley0be3f552010-04-27 13:09:05 +00001220 if (dma_mapping_error(&pdev->dev,
1221 tx_ring->buffer_info[i].dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001222 ret_val = 4;
1223 goto err_nomem;
1224 }
Bruce Allancef8c792008-04-02 13:48:23 -07001225 tx_desc->buffer_addr = cpu_to_le64(tx_ring->buffer_info[i].dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001226 tx_desc->lower.data = cpu_to_le32(skb->len);
1227 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1228 E1000_TXD_CMD_IFCS |
Bruce Allancef8c792008-04-02 13:48:23 -07001229 E1000_TXD_CMD_RS);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001230 tx_desc->upper.data = 0;
1231 }
1232
1233 /* Setup Rx descriptor ring and Rx buffers */
1234
1235 if (!rx_ring->count)
1236 rx_ring->count = E1000_DEFAULT_RXD;
1237
Bruce Allancef8c792008-04-02 13:48:23 -07001238 rx_ring->buffer_info = kcalloc(rx_ring->count,
Bruce Allane5fe2542013-02-20 04:06:27 +00001239 sizeof(struct e1000_buffer), GFP_KERNEL);
Bruce Allan668018d2012-01-31 07:02:56 +00001240 if (!rx_ring->buffer_info) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001241 ret_val = 5;
1242 goto err_nomem;
1243 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001244
Bruce Allan5f450212011-07-22 06:21:46 +00001245 rx_ring->size = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001246 rx_ring->desc = dma_alloc_coherent(&pdev->dev, rx_ring->size,
1247 &rx_ring->dma, GFP_KERNEL);
1248 if (!rx_ring->desc) {
1249 ret_val = 6;
1250 goto err_nomem;
1251 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001252 rx_ring->next_to_use = 0;
1253 rx_ring->next_to_clean = 0;
1254
1255 rctl = er32(RCTL);
Bruce Allan7f99ae62011-07-22 06:21:35 +00001256 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
1257 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan53aa82d2013-02-20 04:06:06 +00001258 ew32(RDBAL(0), ((u64)rx_ring->dma & 0xFFFFFFFF));
1259 ew32(RDBAH(0), ((u64)rx_ring->dma >> 32));
Bruce Allan1e360522012-03-20 03:48:13 +00001260 ew32(RDLEN(0), rx_ring->size);
1261 ew32(RDH(0), 0);
1262 ew32(RDT(0), 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001263 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
Bruce Allanf0ff4392013-02-20 04:05:39 +00001264 E1000_RCTL_UPE | E1000_RCTL_MPE | E1000_RCTL_LPE |
1265 E1000_RCTL_SBP | E1000_RCTL_SECRC |
1266 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
1267 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001268 ew32(RCTL, rctl);
1269
1270 for (i = 0; i < rx_ring->count; i++) {
Bruce Allan5f450212011-07-22 06:21:46 +00001271 union e1000_rx_desc_extended *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001272 struct sk_buff *skb;
1273
1274 skb = alloc_skb(2048 + NET_IP_ALIGN, GFP_KERNEL);
1275 if (!skb) {
1276 ret_val = 7;
1277 goto err_nomem;
1278 }
1279 skb_reserve(skb, NET_IP_ALIGN);
1280 rx_ring->buffer_info[i].skb = skb;
1281 rx_ring->buffer_info[i].dma =
Bruce Allanf0ff4392013-02-20 04:05:39 +00001282 dma_map_single(&pdev->dev, skb->data, 2048,
1283 DMA_FROM_DEVICE);
Nick Nunley0be3f552010-04-27 13:09:05 +00001284 if (dma_mapping_error(&pdev->dev,
1285 rx_ring->buffer_info[i].dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001286 ret_val = 8;
1287 goto err_nomem;
1288 }
Bruce Allan5f450212011-07-22 06:21:46 +00001289 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
1290 rx_desc->read.buffer_addr =
1291 cpu_to_le64(rx_ring->buffer_info[i].dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001292 memset(skb->data, 0x00, skb->len);
1293 }
1294
1295 return 0;
1296
1297err_nomem:
1298 e1000_free_desc_rings(adapter);
1299 return ret_val;
1300}
1301
1302static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
1303{
1304 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1305 e1e_wphy(&adapter->hw, 29, 0x001F);
1306 e1e_wphy(&adapter->hw, 30, 0x8FFC);
1307 e1e_wphy(&adapter->hw, 29, 0x001A);
1308 e1e_wphy(&adapter->hw, 30, 0x8FF0);
1309}
1310
1311static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
1312{
1313 struct e1000_hw *hw = &adapter->hw;
1314 u32 ctrl_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001315 u16 phy_reg = 0;
Bruce Allancbd006c2010-11-24 06:01:30 +00001316 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001317
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001318 hw->mac.autoneg = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001319
Bruce Allan3af50482010-06-16 13:25:55 +00001320 if (hw->phy.type == e1000_phy_ife) {
1321 /* force 100, set loopback */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001322 e1e_wphy(hw, MII_BMCR, 0x6100);
Bruce Allanbb436b22009-11-20 23:24:11 +00001323
Bruce Allan3af50482010-06-16 13:25:55 +00001324 /* Now set up the MAC to the same speed/duplex as the PHY. */
1325 ctrl_reg = er32(CTRL);
1326 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1327 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1328 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1329 E1000_CTRL_SPD_100 |/* Force Speed to 100 */
1330 E1000_CTRL_FD); /* Force Duplex to FULL */
1331
1332 ew32(CTRL, ctrl_reg);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001333 e1e_flush();
Bruce Allance43a212013-02-20 04:06:32 +00001334 usleep_range(500, 1000);
Bruce Allan3af50482010-06-16 13:25:55 +00001335
1336 return 0;
1337 }
1338
1339 /* Specific PHY configuration for loopback */
1340 switch (hw->phy.type) {
1341 case e1000_phy_m88:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001342 /* Auto-MDI/MDIX Off */
1343 e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, 0x0808);
1344 /* reset to update Auto-MDI/MDIX */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001345 e1e_wphy(hw, MII_BMCR, 0x9140);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001346 /* autoneg off */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001347 e1e_wphy(hw, MII_BMCR, 0x8140);
Bruce Allan3af50482010-06-16 13:25:55 +00001348 break;
1349 case e1000_phy_gg82563:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001350 e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, 0x1CC);
Bruce Allancef8c792008-04-02 13:48:23 -07001351 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001352 case e1000_phy_bm:
1353 /* Set Default MAC Interface speed to 1GB */
1354 e1e_rphy(hw, PHY_REG(2, 21), &phy_reg);
1355 phy_reg &= ~0x0007;
1356 phy_reg |= 0x006;
1357 e1e_wphy(hw, PHY_REG(2, 21), phy_reg);
1358 /* Assert SW reset for above settings to take effect */
Bruce Allan6b598e12013-01-23 06:50:05 +00001359 hw->phy.ops.commit(hw);
Bruce Allance43a212013-02-20 04:06:32 +00001360 usleep_range(1000, 2000);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001361 /* Force Full Duplex */
1362 e1e_rphy(hw, PHY_REG(769, 16), &phy_reg);
1363 e1e_wphy(hw, PHY_REG(769, 16), phy_reg | 0x000C);
1364 /* Set Link Up (in force link) */
1365 e1e_rphy(hw, PHY_REG(776, 16), &phy_reg);
1366 e1e_wphy(hw, PHY_REG(776, 16), phy_reg | 0x0040);
1367 /* Force Link */
1368 e1e_rphy(hw, PHY_REG(769, 16), &phy_reg);
1369 e1e_wphy(hw, PHY_REG(769, 16), phy_reg | 0x0040);
1370 /* Set Early Link Enable */
1371 e1e_rphy(hw, PHY_REG(769, 20), &phy_reg);
1372 e1e_wphy(hw, PHY_REG(769, 20), phy_reg | 0x0400);
Bruce Allan3af50482010-06-16 13:25:55 +00001373 break;
1374 case e1000_phy_82577:
1375 case e1000_phy_82578:
1376 /* Workaround: K1 must be disabled for stable 1Gbps operation */
Bruce Allancbd006c2010-11-24 06:01:30 +00001377 ret_val = hw->phy.ops.acquire(hw);
1378 if (ret_val) {
1379 e_err("Cannot setup 1Gbps loopback.\n");
1380 return ret_val;
1381 }
Bruce Allan3af50482010-06-16 13:25:55 +00001382 e1000_configure_k1_ich8lan(hw, false);
Bruce Allancbd006c2010-11-24 06:01:30 +00001383 hw->phy.ops.release(hw);
Bruce Allan3af50482010-06-16 13:25:55 +00001384 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00001385 case e1000_phy_82579:
1386 /* Disable PHY energy detect power down */
1387 e1e_rphy(hw, PHY_REG(0, 21), &phy_reg);
1388 e1e_wphy(hw, PHY_REG(0, 21), phy_reg & ~(1 << 3));
1389 /* Disable full chip energy detect */
1390 e1e_rphy(hw, PHY_REG(776, 18), &phy_reg);
1391 e1e_wphy(hw, PHY_REG(776, 18), phy_reg | 1);
1392 /* Enable loopback on the PHY */
Bruce Alland3738bb2010-06-16 13:27:28 +00001393 e1e_wphy(hw, I82577_PHY_LBK_CTRL, 0x8001);
1394 break;
Bruce Allancef8c792008-04-02 13:48:23 -07001395 default:
Bruce Allan3af50482010-06-16 13:25:55 +00001396 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001397 }
1398
Bruce Allan3af50482010-06-16 13:25:55 +00001399 /* force 1000, set loopback */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001400 e1e_wphy(hw, MII_BMCR, 0x4140);
Bruce Allance43a212013-02-20 04:06:32 +00001401 msleep(250);
Bruce Allan3af50482010-06-16 13:25:55 +00001402
1403 /* Now set up the MAC to the same speed/duplex as the PHY. */
1404 ctrl_reg = er32(CTRL);
1405 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1406 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1407 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1408 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1409 E1000_CTRL_FD); /* Force Duplex to FULL */
1410
1411 if (adapter->flags & FLAG_IS_ICH)
1412 ctrl_reg |= E1000_CTRL_SLU; /* Set Link Up */
1413
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001414 if (hw->phy.media_type == e1000_media_type_copper &&
1415 hw->phy.type == e1000_phy_m88) {
Bruce Allane80bd1d2013-05-01 01:19:46 +00001416 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001417 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001418 /* Set the ILOS bit on the fiber Nic if half duplex link is
Bruce Allanad680762008-03-28 09:15:03 -07001419 * detected.
1420 */
Bruce Allan90da0662011-01-06 07:02:53 +00001421 if ((er32(STATUS) & E1000_STATUS_FD) == 0)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001422 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1423 }
1424
1425 ew32(CTRL, ctrl_reg);
1426
Bruce Allane921eb12012-11-28 09:28:37 +00001427 /* Disable the receiver on the PHY so when a cable is plugged in, the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001428 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1429 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001430 if (hw->phy.type == e1000_phy_m88)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001431 e1000_phy_disable_receiver(adapter);
1432
Bruce Allance43a212013-02-20 04:06:32 +00001433 usleep_range(500, 1000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001434
1435 return 0;
1436}
1437
1438static int e1000_set_82571_fiber_loopback(struct e1000_adapter *adapter)
1439{
1440 struct e1000_hw *hw = &adapter->hw;
1441 u32 ctrl = er32(CTRL);
Bruce Allan70806a72013-01-05 05:08:37 +00001442 int link;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001443
1444 /* special requirements for 82571/82572 fiber adapters */
1445
Bruce Allane921eb12012-11-28 09:28:37 +00001446 /* jump through hoops to make sure link is up because serdes
Bruce Allanad680762008-03-28 09:15:03 -07001447 * link is hardwired up
1448 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001449 ctrl |= E1000_CTRL_SLU;
1450 ew32(CTRL, ctrl);
1451
1452 /* disable autoneg */
1453 ctrl = er32(TXCW);
1454 ctrl &= ~(1 << 31);
1455 ew32(TXCW, ctrl);
1456
1457 link = (er32(STATUS) & E1000_STATUS_LU);
1458
1459 if (!link) {
1460 /* set invert loss of signal */
1461 ctrl = er32(CTRL);
1462 ctrl |= E1000_CTRL_ILOS;
1463 ew32(CTRL, ctrl);
1464 }
1465
Bruce Allane921eb12012-11-28 09:28:37 +00001466 /* special write to serdes control register to enable SerDes analog
Bruce Allanad680762008-03-28 09:15:03 -07001467 * loopback
1468 */
Bruce Allan3ffcf2c2013-02-20 04:06:43 +00001469 ew32(SCTL, E1000_SCTL_ENABLE_SERDES_LOOPBACK);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001470 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001471 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001472
1473 return 0;
1474}
1475
1476/* only call this for fiber/serdes connections to es2lan */
1477static int e1000_set_es2lan_mac_loopback(struct e1000_adapter *adapter)
1478{
1479 struct e1000_hw *hw = &adapter->hw;
1480 u32 ctrlext = er32(CTRL_EXT);
1481 u32 ctrl = er32(CTRL);
1482
Bruce Allane921eb12012-11-28 09:28:37 +00001483 /* save CTRL_EXT to restore later, reuse an empty variable (unused
Bruce Allanad680762008-03-28 09:15:03 -07001484 * on mac_type 80003es2lan)
1485 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001486 adapter->tx_fifo_head = ctrlext;
1487
1488 /* clear the serdes mode bits, putting the device into mac loopback */
1489 ctrlext &= ~E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES;
1490 ew32(CTRL_EXT, ctrlext);
1491
1492 /* force speed to 1000/FD, link up */
1493 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1494 ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX |
1495 E1000_CTRL_SPD_1000 | E1000_CTRL_FD);
1496 ew32(CTRL, ctrl);
1497
1498 /* set mac loopback */
1499 ctrl = er32(RCTL);
1500 ctrl |= E1000_RCTL_LBM_MAC;
1501 ew32(RCTL, ctrl);
1502
1503 /* set testing mode parameters (no need to reset later) */
1504#define KMRNCTRLSTA_OPMODE (0x1F << 16)
1505#define KMRNCTRLSTA_OPMODE_1GB_FD_GMII 0x0582
1506 ew32(KMRNCTRLSTA,
Bruce Allancef8c792008-04-02 13:48:23 -07001507 (KMRNCTRLSTA_OPMODE | KMRNCTRLSTA_OPMODE_1GB_FD_GMII));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001508
1509 return 0;
1510}
1511
1512static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
1513{
1514 struct e1000_hw *hw = &adapter->hw;
1515 u32 rctl;
1516
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001517 if (hw->phy.media_type == e1000_media_type_fiber ||
1518 hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001519 switch (hw->mac.type) {
1520 case e1000_80003es2lan:
1521 return e1000_set_es2lan_mac_loopback(adapter);
1522 break;
1523 case e1000_82571:
1524 case e1000_82572:
1525 return e1000_set_82571_fiber_loopback(adapter);
1526 break;
1527 default:
1528 rctl = er32(RCTL);
1529 rctl |= E1000_RCTL_LBM_TCVR;
1530 ew32(RCTL, rctl);
1531 return 0;
1532 }
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001533 } else if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001534 return e1000_integrated_phy_loopback(adapter);
1535 }
1536
1537 return 7;
1538}
1539
1540static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
1541{
1542 struct e1000_hw *hw = &adapter->hw;
1543 u32 rctl;
1544 u16 phy_reg;
1545
1546 rctl = er32(RCTL);
1547 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
1548 ew32(RCTL, rctl);
1549
1550 switch (hw->mac.type) {
1551 case e1000_80003es2lan:
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001552 if (hw->phy.media_type == e1000_media_type_fiber ||
1553 hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001554 /* restore CTRL_EXT, stealing space from tx_fifo_head */
Bruce Allanad680762008-03-28 09:15:03 -07001555 ew32(CTRL_EXT, adapter->tx_fifo_head);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001556 adapter->tx_fifo_head = 0;
1557 }
1558 /* fall through */
1559 case e1000_82571:
1560 case e1000_82572:
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001561 if (hw->phy.media_type == e1000_media_type_fiber ||
1562 hw->phy.media_type == e1000_media_type_internal_serdes) {
Bruce Allan3ffcf2c2013-02-20 04:06:43 +00001563 ew32(SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001564 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00001565 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001566 break;
1567 }
1568 /* Fall Through */
1569 default:
1570 hw->mac.autoneg = 1;
1571 if (hw->phy.type == e1000_phy_gg82563)
1572 e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, 0x180);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001573 e1e_rphy(hw, MII_BMCR, &phy_reg);
1574 if (phy_reg & BMCR_LOOPBACK) {
1575 phy_reg &= ~BMCR_LOOPBACK;
1576 e1e_wphy(hw, MII_BMCR, phy_reg);
Bruce Allan6b598e12013-01-23 06:50:05 +00001577 if (hw->phy.ops.commit)
1578 hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001579 }
1580 break;
1581 }
1582}
1583
1584static void e1000_create_lbtest_frame(struct sk_buff *skb,
1585 unsigned int frame_size)
1586{
1587 memset(skb->data, 0xFF, frame_size);
1588 frame_size &= ~1;
1589 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1590 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1591 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1592}
1593
1594static int e1000_check_lbtest_frame(struct sk_buff *skb,
1595 unsigned int frame_size)
1596{
1597 frame_size &= ~1;
1598 if (*(skb->data + 3) == 0xFF)
1599 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Bruce Allan17e813e2013-02-20 04:06:01 +00001600 (*(skb->data + frame_size / 2 + 12) == 0xAF))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001601 return 0;
1602 return 13;
1603}
1604
1605static int e1000_run_loopback_test(struct e1000_adapter *adapter)
1606{
1607 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1608 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1609 struct pci_dev *pdev = adapter->pdev;
1610 struct e1000_hw *hw = &adapter->hw;
Bruce Allan17e813e2013-02-20 04:06:01 +00001611 struct e1000_buffer *buffer_info;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001612 int i, j, k, l;
1613 int lc;
1614 int good_cnt;
1615 int ret_val = 0;
1616 unsigned long time;
1617
Bruce Allan1e360522012-03-20 03:48:13 +00001618 ew32(RDT(0), rx_ring->count - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001619
Bruce Allane921eb12012-11-28 09:28:37 +00001620 /* Calculate the loop count based on the largest descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001621 * The idea is to wrap the largest ring a number of times using 64
1622 * send/receive pairs during each loop
1623 */
1624
1625 if (rx_ring->count <= tx_ring->count)
1626 lc = ((tx_ring->count / 64) * 2) + 1;
1627 else
1628 lc = ((rx_ring->count / 64) * 2) + 1;
1629
1630 k = 0;
1631 l = 0;
Bruce Allan33550ce2013-02-20 04:06:16 +00001632 /* loop count loop */
1633 for (j = 0; j <= lc; j++) {
1634 /* send the packets */
1635 for (i = 0; i < 64; i++) {
Bruce Allan17e813e2013-02-20 04:06:01 +00001636 buffer_info = &tx_ring->buffer_info[k];
1637
1638 e1000_create_lbtest_frame(buffer_info->skb, 1024);
Nick Nunley0be3f552010-04-27 13:09:05 +00001639 dma_sync_single_for_device(&pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00001640 buffer_info->dma,
1641 buffer_info->length,
1642 DMA_TO_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001643 k++;
1644 if (k == tx_ring->count)
1645 k = 0;
1646 }
Bruce Allan1e360522012-03-20 03:48:13 +00001647 ew32(TDT(0), k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001648 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07001649 msleep(200);
Bruce Allane80bd1d2013-05-01 01:19:46 +00001650 time = jiffies; /* set the start time for the receive */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001651 good_cnt = 0;
Bruce Allan33550ce2013-02-20 04:06:16 +00001652 /* receive the sent packets */
1653 do {
Bruce Allan17e813e2013-02-20 04:06:01 +00001654 buffer_info = &rx_ring->buffer_info[l];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001655
Bruce Allan17e813e2013-02-20 04:06:01 +00001656 dma_sync_single_for_cpu(&pdev->dev,
1657 buffer_info->dma, 2048,
1658 DMA_FROM_DEVICE);
1659
1660 ret_val = e1000_check_lbtest_frame(buffer_info->skb,
1661 1024);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001662 if (!ret_val)
1663 good_cnt++;
1664 l++;
1665 if (l == rx_ring->count)
1666 l = 0;
Bruce Allane921eb12012-11-28 09:28:37 +00001667 /* time + 20 msecs (200 msecs on 2.4) is more than
Auke Kokbc7f75f2007-09-17 12:30:59 -07001668 * enough time to complete the receives, if it's
1669 * exceeded, break and error off
1670 */
1671 } while ((good_cnt < 64) && !time_after(jiffies, time + 20));
1672 if (good_cnt != 64) {
Bruce Allane80bd1d2013-05-01 01:19:46 +00001673 ret_val = 13; /* ret_val is the same as mis-compare */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001674 break;
1675 }
Bruce Allan22f8aba2013-08-15 03:43:24 +00001676 if (time_after(jiffies, time + 20)) {
Bruce Allane80bd1d2013-05-01 01:19:46 +00001677 ret_val = 14; /* error code for time out error */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001678 break;
1679 }
Bruce Allan33550ce2013-02-20 04:06:16 +00001680 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001681 return ret_val;
1682}
1683
1684static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
1685{
Bruce Allan44abd5c2012-02-22 09:02:37 +00001686 struct e1000_hw *hw = &adapter->hw;
1687
Bruce Allane921eb12012-11-28 09:28:37 +00001688 /* PHY loopback cannot be performed if SoL/IDER sessions are active */
Bruce Allan470a5422012-05-26 06:08:48 +00001689 if (hw->phy.ops.check_reset_block &&
1690 hw->phy.ops.check_reset_block(hw)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001691 e_err("Cannot do PHY loopback test when SoL/IDER is active.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001692 *data = 0;
1693 goto out;
1694 }
1695
1696 *data = e1000_setup_desc_rings(adapter);
Adrian Bunke2655222007-10-15 14:02:21 -07001697 if (*data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001698 goto out;
1699
1700 *data = e1000_setup_loopback_test(adapter);
Adrian Bunke2655222007-10-15 14:02:21 -07001701 if (*data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001702 goto err_loopback;
1703
1704 *data = e1000_run_loopback_test(adapter);
1705 e1000_loopback_cleanup(adapter);
1706
1707err_loopback:
1708 e1000_free_desc_rings(adapter);
1709out:
1710 return *data;
1711}
1712
1713static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
1714{
1715 struct e1000_hw *hw = &adapter->hw;
1716
1717 *data = 0;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001718 if (hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001719 int i = 0;
Alex Chiang612e2442009-02-05 23:55:45 -08001720 hw->mac.serdes_has_link = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001721
Bruce Allane921eb12012-11-28 09:28:37 +00001722 /* On some blade server designs, link establishment
Bruce Allanad680762008-03-28 09:15:03 -07001723 * could take as long as 2-3 minutes
1724 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001725 do {
1726 hw->mac.ops.check_for_link(hw);
1727 if (hw->mac.serdes_has_link)
1728 return *data;
1729 msleep(20);
1730 } while (i++ < 3750);
1731
1732 *data = 1;
1733 } else {
1734 hw->mac.ops.check_for_link(hw);
1735 if (hw->mac.autoneg)
Bruce Allane921eb12012-11-28 09:28:37 +00001736 /* On some Phy/switch combinations, link establishment
Bruce Allan5661aeb2011-02-25 06:36:25 +00001737 * can take a few seconds more than expected.
1738 */
Bruce Allance43a212013-02-20 04:06:32 +00001739 msleep_interruptible(5000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001740
Bruce Allan5661aeb2011-02-25 06:36:25 +00001741 if (!(er32(STATUS) & E1000_STATUS_LU))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001742 *data = 1;
1743 }
1744 return *data;
1745}
1746
Bruce Allan8bb62862013-01-16 08:46:49 +00001747static int e1000e_get_sset_count(struct net_device __always_unused *netdev,
1748 int sset)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001749{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001750 switch (sset) {
1751 case ETH_SS_TEST:
1752 return E1000_TEST_LEN;
1753 case ETH_SS_STATS:
1754 return E1000_STATS_LEN;
1755 default:
1756 return -EOPNOTSUPP;
1757 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001758}
1759
1760static void e1000_diag_test(struct net_device *netdev,
1761 struct ethtool_test *eth_test, u64 *data)
1762{
1763 struct e1000_adapter *adapter = netdev_priv(netdev);
1764 u16 autoneg_advertised;
1765 u8 forced_speed_duplex;
1766 u8 autoneg;
1767 bool if_running = netif_running(netdev);
1768
Bruce Allan3ef672a2013-06-27 02:44:44 +00001769 pm_runtime_get_sync(netdev->dev.parent);
1770
Auke Kokbc7f75f2007-09-17 12:30:59 -07001771 set_bit(__E1000_TESTING, &adapter->state);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001772
1773 if (!if_running) {
1774 /* Get control of and reset hardware */
1775 if (adapter->flags & FLAG_HAS_AMT)
1776 e1000e_get_hw_control(adapter);
1777
1778 e1000e_power_up_phy(adapter);
1779
1780 adapter->hw.phy.autoneg_wait_to_complete = 1;
1781 e1000e_reset(adapter);
1782 adapter->hw.phy.autoneg_wait_to_complete = 0;
1783 }
1784
Auke Kokbc7f75f2007-09-17 12:30:59 -07001785 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
1786 /* Offline tests */
1787
1788 /* save speed, duplex, autoneg settings */
1789 autoneg_advertised = adapter->hw.phy.autoneg_advertised;
1790 forced_speed_duplex = adapter->hw.mac.forced_speed_duplex;
1791 autoneg = adapter->hw.mac.autoneg;
1792
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001793 e_info("offline testing starting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001794
Auke Kokbc7f75f2007-09-17 12:30:59 -07001795 if (if_running)
1796 /* indicate we're in test mode */
1797 dev_close(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001798
1799 if (e1000_reg_test(adapter, &data[0]))
1800 eth_test->flags |= ETH_TEST_FL_FAILED;
1801
1802 e1000e_reset(adapter);
1803 if (e1000_eeprom_test(adapter, &data[1]))
1804 eth_test->flags |= ETH_TEST_FL_FAILED;
1805
1806 e1000e_reset(adapter);
1807 if (e1000_intr_test(adapter, &data[2]))
1808 eth_test->flags |= ETH_TEST_FL_FAILED;
1809
1810 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001811 if (e1000_loopback_test(adapter, &data[3]))
1812 eth_test->flags |= ETH_TEST_FL_FAILED;
1813
Auke Kokbc7f75f2007-09-17 12:30:59 -07001814 /* force this routine to wait until autoneg complete/timeout */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001815 adapter->hw.phy.autoneg_wait_to_complete = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001816 e1000e_reset(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001817 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001818
Carolyn Wybornyc6ce3852010-10-15 17:35:31 +00001819 if (e1000_link_test(adapter, &data[4]))
1820 eth_test->flags |= ETH_TEST_FL_FAILED;
1821
1822 /* restore speed, duplex, autoneg settings */
1823 adapter->hw.phy.autoneg_advertised = autoneg_advertised;
1824 adapter->hw.mac.forced_speed_duplex = forced_speed_duplex;
1825 adapter->hw.mac.autoneg = autoneg;
1826 e1000e_reset(adapter);
1827
Auke Kokbc7f75f2007-09-17 12:30:59 -07001828 clear_bit(__E1000_TESTING, &adapter->state);
1829 if (if_running)
1830 dev_open(netdev);
1831 } else {
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001832 /* Online tests */
Bruce Allan11b08be2010-05-10 14:59:31 +00001833
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001834 e_info("online testing starting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001835
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001836 /* register, eeprom, intr and loopback tests not run online */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001837 data[0] = 0;
1838 data[1] = 0;
1839 data[2] = 0;
1840 data[3] = 0;
1841
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001842 if (e1000_link_test(adapter, &data[4]))
1843 eth_test->flags |= ETH_TEST_FL_FAILED;
Bruce Allan11b08be2010-05-10 14:59:31 +00001844
Auke Kokbc7f75f2007-09-17 12:30:59 -07001845 clear_bit(__E1000_TESTING, &adapter->state);
1846 }
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001847
1848 if (!if_running) {
1849 e1000e_reset(adapter);
1850
1851 if (adapter->flags & FLAG_HAS_AMT)
1852 e1000e_release_hw_control(adapter);
1853 }
1854
Auke Kokbc7f75f2007-09-17 12:30:59 -07001855 msleep_interruptible(4 * 1000);
Bruce Allan3ef672a2013-06-27 02:44:44 +00001856
1857 pm_runtime_put_sync(netdev->dev.parent);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001858}
1859
1860static void e1000_get_wol(struct net_device *netdev,
1861 struct ethtool_wolinfo *wol)
1862{
1863 struct e1000_adapter *adapter = netdev_priv(netdev);
1864
1865 wol->supported = 0;
1866 wol->wolopts = 0;
1867
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001868 if (!(adapter->flags & FLAG_HAS_WOL) ||
1869 !device_can_wakeup(&adapter->pdev->dev))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001870 return;
1871
1872 wol->supported = WAKE_UCAST | WAKE_MCAST |
Bruce Allan4a29e152011-03-04 09:07:01 +00001873 WAKE_BCAST | WAKE_MAGIC | WAKE_PHY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001874
1875 /* apply any specific unsupported masks here */
1876 if (adapter->flags & FLAG_NO_WAKE_UCAST) {
1877 wol->supported &= ~WAKE_UCAST;
1878
1879 if (adapter->wol & E1000_WUFC_EX)
Bruce Allan6ad65142012-04-12 05:47:09 +00001880 e_err("Interface does not support directed (unicast) frame wake-up packets\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001881 }
1882
1883 if (adapter->wol & E1000_WUFC_EX)
1884 wol->wolopts |= WAKE_UCAST;
1885 if (adapter->wol & E1000_WUFC_MC)
1886 wol->wolopts |= WAKE_MCAST;
1887 if (adapter->wol & E1000_WUFC_BC)
1888 wol->wolopts |= WAKE_BCAST;
1889 if (adapter->wol & E1000_WUFC_MAG)
1890 wol->wolopts |= WAKE_MAGIC;
Mitch Williamsefb90e42008-01-29 12:43:02 -08001891 if (adapter->wol & E1000_WUFC_LNKC)
1892 wol->wolopts |= WAKE_PHY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001893}
1894
Bruce Allan4a29e152011-03-04 09:07:01 +00001895static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001896{
1897 struct e1000_adapter *adapter = netdev_priv(netdev);
1898
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001899 if (!(adapter->flags & FLAG_HAS_WOL) ||
Bruce Allan1fbfca32009-11-20 23:22:01 +00001900 !device_can_wakeup(&adapter->pdev->dev) ||
1901 (wol->wolopts & ~(WAKE_UCAST | WAKE_MCAST | WAKE_BCAST |
Bruce Allan4a29e152011-03-04 09:07:01 +00001902 WAKE_MAGIC | WAKE_PHY)))
Bruce Allan1fbfca32009-11-20 23:22:01 +00001903 return -EOPNOTSUPP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001904
1905 /* these settings will always override what we currently have */
1906 adapter->wol = 0;
1907
1908 if (wol->wolopts & WAKE_UCAST)
1909 adapter->wol |= E1000_WUFC_EX;
1910 if (wol->wolopts & WAKE_MCAST)
1911 adapter->wol |= E1000_WUFC_MC;
1912 if (wol->wolopts & WAKE_BCAST)
1913 adapter->wol |= E1000_WUFC_BC;
1914 if (wol->wolopts & WAKE_MAGIC)
1915 adapter->wol |= E1000_WUFC_MAG;
Mitch Williamsefb90e42008-01-29 12:43:02 -08001916 if (wol->wolopts & WAKE_PHY)
1917 adapter->wol |= E1000_WUFC_LNKC;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001918
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001919 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1920
Auke Kokbc7f75f2007-09-17 12:30:59 -07001921 return 0;
1922}
1923
Bruce Allandbf80dc2011-04-16 00:34:40 +00001924static int e1000_set_phys_id(struct net_device *netdev,
1925 enum ethtool_phys_id_state state)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001926{
1927 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001928 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001929
Bruce Allandbf80dc2011-04-16 00:34:40 +00001930 switch (state) {
1931 case ETHTOOL_ID_ACTIVE:
Bruce Allan3ef672a2013-06-27 02:44:44 +00001932 pm_runtime_get_sync(netdev->dev.parent);
1933
Bruce Allandbf80dc2011-04-16 00:34:40 +00001934 if (!hw->mac.ops.blink_led)
1935 return 2; /* cycle on/off twice per second */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001936
Bruce Allandbf80dc2011-04-16 00:34:40 +00001937 hw->mac.ops.blink_led(hw);
1938 break;
1939
1940 case ETHTOOL_ID_INACTIVE:
Bruce Allan4662e822008-08-26 18:37:06 -07001941 if (hw->phy.type == e1000_phy_ife)
1942 e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
Bruce Allandbf80dc2011-04-16 00:34:40 +00001943 hw->mac.ops.led_off(hw);
1944 hw->mac.ops.cleanup_led(hw);
Bruce Allan3ef672a2013-06-27 02:44:44 +00001945 pm_runtime_put_sync(netdev->dev.parent);
Bruce Allandbf80dc2011-04-16 00:34:40 +00001946 break;
1947
1948 case ETHTOOL_ID_ON:
Bruce Allanf23efdf2012-01-31 06:37:38 +00001949 hw->mac.ops.led_on(hw);
Bruce Allandbf80dc2011-04-16 00:34:40 +00001950 break;
1951
1952 case ETHTOOL_ID_OFF:
Bruce Allanf23efdf2012-01-31 06:37:38 +00001953 hw->mac.ops.led_off(hw);
Bruce Allandbf80dc2011-04-16 00:34:40 +00001954 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001955 }
Bruce Allan3ef672a2013-06-27 02:44:44 +00001956
Auke Kokbc7f75f2007-09-17 12:30:59 -07001957 return 0;
1958}
1959
Auke Kokde5b3072008-04-23 11:09:08 -07001960static int e1000_get_coalesce(struct net_device *netdev,
1961 struct ethtool_coalesce *ec)
1962{
1963 struct e1000_adapter *adapter = netdev_priv(netdev);
1964
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001965 if (adapter->itr_setting <= 4)
Auke Kokde5b3072008-04-23 11:09:08 -07001966 ec->rx_coalesce_usecs = adapter->itr_setting;
1967 else
1968 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1969
1970 return 0;
1971}
1972
1973static int e1000_set_coalesce(struct net_device *netdev,
1974 struct ethtool_coalesce *ec)
1975{
1976 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokde5b3072008-04-23 11:09:08 -07001977
1978 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001979 ((ec->rx_coalesce_usecs > 4) &&
Auke Kokde5b3072008-04-23 11:09:08 -07001980 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1981 (ec->rx_coalesce_usecs == 2))
1982 return -EINVAL;
1983
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001984 if (ec->rx_coalesce_usecs == 4) {
Bruce Allan06a402e2012-08-17 06:17:57 +00001985 adapter->itr_setting = 4;
1986 adapter->itr = adapter->itr_setting;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001987 } else if (ec->rx_coalesce_usecs <= 3) {
Auke Kokde5b3072008-04-23 11:09:08 -07001988 adapter->itr = 20000;
1989 adapter->itr_setting = ec->rx_coalesce_usecs;
1990 } else {
1991 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1992 adapter->itr_setting = adapter->itr & ~3;
1993 }
1994
Bruce Allan3ef672a2013-06-27 02:44:44 +00001995 pm_runtime_get_sync(netdev->dev.parent);
1996
Auke Kokde5b3072008-04-23 11:09:08 -07001997 if (adapter->itr_setting != 0)
Matthew Vick22a4cca2012-07-12 00:02:42 +00001998 e1000e_write_itr(adapter, adapter->itr);
Auke Kokde5b3072008-04-23 11:09:08 -07001999 else
Matthew Vick22a4cca2012-07-12 00:02:42 +00002000 e1000e_write_itr(adapter, 0);
Auke Kokde5b3072008-04-23 11:09:08 -07002001
Bruce Allan3ef672a2013-06-27 02:44:44 +00002002 pm_runtime_put_sync(netdev->dev.parent);
2003
Auke Kokde5b3072008-04-23 11:09:08 -07002004 return 0;
2005}
2006
Auke Kokbc7f75f2007-09-17 12:30:59 -07002007static int e1000_nway_reset(struct net_device *netdev)
2008{
2009 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan5962bc22011-01-20 06:58:07 +00002010
2011 if (!netif_running(netdev))
2012 return -EAGAIN;
2013
2014 if (!adapter->hw.mac.autoneg)
2015 return -EINVAL;
2016
Bruce Allan3ef672a2013-06-27 02:44:44 +00002017 pm_runtime_get_sync(netdev->dev.parent);
Bruce Allan5962bc22011-01-20 06:58:07 +00002018 e1000e_reinit_locked(adapter);
Bruce Allan3ef672a2013-06-27 02:44:44 +00002019 pm_runtime_put_sync(netdev->dev.parent);
Bruce Allan5962bc22011-01-20 06:58:07 +00002020
Auke Kokbc7f75f2007-09-17 12:30:59 -07002021 return 0;
2022}
2023
Auke Kokbc7f75f2007-09-17 12:30:59 -07002024static void e1000_get_ethtool_stats(struct net_device *netdev,
Bruce Allan8bb62862013-01-16 08:46:49 +00002025 struct ethtool_stats __always_unused *stats,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002026 u64 *data)
2027{
2028 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00002029 struct rtnl_link_stats64 net_stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002030 int i;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002031 char *p = NULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002032
Bruce Allan3ef672a2013-06-27 02:44:44 +00002033 pm_runtime_get_sync(netdev->dev.parent);
2034
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00002035 e1000e_get_stats64(netdev, &net_stats);
Bruce Allan3ef672a2013-06-27 02:44:44 +00002036
2037 pm_runtime_put_sync(netdev->dev.parent);
2038
Auke Kokbc7f75f2007-09-17 12:30:59 -07002039 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002040 switch (e1000_gstrings_stats[i].type) {
2041 case NETDEV_STATS:
Bruce Allan53aa82d2013-02-20 04:06:06 +00002042 p = (char *)&net_stats +
Bruce Allanf0ff4392013-02-20 04:05:39 +00002043 e1000_gstrings_stats[i].stat_offset;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002044 break;
2045 case E1000_STATS:
Bruce Allan53aa82d2013-02-20 04:06:06 +00002046 p = (char *)adapter +
Bruce Allanf0ff4392013-02-20 04:05:39 +00002047 e1000_gstrings_stats[i].stat_offset;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002048 break;
Bruce Allan61c75812010-12-09 23:04:25 +00002049 default:
2050 data[i] = 0;
2051 continue;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002052 }
2053
Auke Kokbc7f75f2007-09-17 12:30:59 -07002054 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Bruce Allanf0ff4392013-02-20 04:05:39 +00002055 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002056 }
2057}
2058
Bruce Allan8bb62862013-01-16 08:46:49 +00002059static void e1000_get_strings(struct net_device __always_unused *netdev,
2060 u32 stringset, u8 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002061{
2062 u8 *p = data;
2063 int i;
2064
2065 switch (stringset) {
2066 case ETH_SS_TEST:
Bruce Allan5c1bda02011-01-19 04:23:39 +00002067 memcpy(data, e1000_gstrings_test, sizeof(e1000_gstrings_test));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002068 break;
2069 case ETH_SS_STATS:
2070 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
2071 memcpy(p, e1000_gstrings_stats[i].stat_string,
2072 ETH_GSTRING_LEN);
2073 p += ETH_GSTRING_LEN;
2074 }
2075 break;
2076 }
2077}
2078
Bruce Allan70495a52012-01-11 01:26:50 +00002079static int e1000_get_rxnfc(struct net_device *netdev,
Bruce Allan8bb62862013-01-16 08:46:49 +00002080 struct ethtool_rxnfc *info,
2081 u32 __always_unused *rule_locs)
Bruce Allan70495a52012-01-11 01:26:50 +00002082{
2083 info->data = 0;
2084
2085 switch (info->cmd) {
2086 case ETHTOOL_GRXFH: {
2087 struct e1000_adapter *adapter = netdev_priv(netdev);
2088 struct e1000_hw *hw = &adapter->hw;
Bruce Allan3ef672a2013-06-27 02:44:44 +00002089 u32 mrqc;
2090
2091 pm_runtime_get_sync(netdev->dev.parent);
2092 mrqc = er32(MRQC);
2093 pm_runtime_put_sync(netdev->dev.parent);
Bruce Allan70495a52012-01-11 01:26:50 +00002094
2095 if (!(mrqc & E1000_MRQC_RSS_FIELD_MASK))
2096 return 0;
2097
2098 switch (info->flow_type) {
2099 case TCP_V4_FLOW:
2100 if (mrqc & E1000_MRQC_RSS_FIELD_IPV4_TCP)
2101 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2102 /* fall through */
2103 case UDP_V4_FLOW:
2104 case SCTP_V4_FLOW:
2105 case AH_ESP_V4_FLOW:
2106 case IPV4_FLOW:
2107 if (mrqc & E1000_MRQC_RSS_FIELD_IPV4)
2108 info->data |= RXH_IP_SRC | RXH_IP_DST;
2109 break;
2110 case TCP_V6_FLOW:
2111 if (mrqc & E1000_MRQC_RSS_FIELD_IPV6_TCP)
2112 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2113 /* fall through */
2114 case UDP_V6_FLOW:
2115 case SCTP_V6_FLOW:
2116 case AH_ESP_V6_FLOW:
2117 case IPV6_FLOW:
2118 if (mrqc & E1000_MRQC_RSS_FIELD_IPV6)
2119 info->data |= RXH_IP_SRC | RXH_IP_DST;
2120 break;
2121 default:
2122 break;
2123 }
2124 return 0;
2125 }
2126 default:
2127 return -EOPNOTSUPP;
2128 }
2129}
2130
Bruce Allan203e4152012-12-05 08:40:59 +00002131static int e1000e_get_eee(struct net_device *netdev, struct ethtool_eee *edata)
2132{
2133 struct e1000_adapter *adapter = netdev_priv(netdev);
2134 struct e1000_hw *hw = &adapter->hw;
Bruce Alland495bcb2013-03-20 07:23:11 +00002135 u16 cap_addr, lpa_addr, pcs_stat_addr, phy_data;
2136 u32 ret_val;
Bruce Allan203e4152012-12-05 08:40:59 +00002137
Bruce Alland495bcb2013-03-20 07:23:11 +00002138 if (!(adapter->flags2 & FLAG2_HAS_EEE))
Bruce Allan203e4152012-12-05 08:40:59 +00002139 return -EOPNOTSUPP;
2140
2141 switch (hw->phy.type) {
2142 case e1000_phy_82579:
2143 cap_addr = I82579_EEE_CAPABILITY;
Bruce Allan203e4152012-12-05 08:40:59 +00002144 lpa_addr = I82579_EEE_LP_ABILITY;
2145 pcs_stat_addr = I82579_EEE_PCS_STATUS;
2146 break;
2147 case e1000_phy_i217:
2148 cap_addr = I217_EEE_CAPABILITY;
Bruce Allan203e4152012-12-05 08:40:59 +00002149 lpa_addr = I217_EEE_LP_ABILITY;
2150 pcs_stat_addr = I217_EEE_PCS_STATUS;
2151 break;
2152 default:
2153 return -EOPNOTSUPP;
2154 }
2155
Bruce Allan3ef672a2013-06-27 02:44:44 +00002156 pm_runtime_get_sync(netdev->dev.parent);
2157
Bruce Allan203e4152012-12-05 08:40:59 +00002158 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan3ef672a2013-06-27 02:44:44 +00002159 if (ret_val) {
2160 pm_runtime_put_sync(netdev->dev.parent);
Bruce Allan203e4152012-12-05 08:40:59 +00002161 return -EBUSY;
Bruce Allan3ef672a2013-06-27 02:44:44 +00002162 }
Bruce Allan203e4152012-12-05 08:40:59 +00002163
2164 /* EEE Capability */
2165 ret_val = e1000_read_emi_reg_locked(hw, cap_addr, &phy_data);
2166 if (ret_val)
2167 goto release;
2168 edata->supported = mmd_eee_cap_to_ethtool_sup_t(phy_data);
2169
2170 /* EEE Advertised */
Bruce Alland495bcb2013-03-20 07:23:11 +00002171 edata->advertised = mmd_eee_adv_to_ethtool_adv_t(adapter->eee_advert);
Bruce Allan203e4152012-12-05 08:40:59 +00002172
2173 /* EEE Link Partner Advertised */
2174 ret_val = e1000_read_emi_reg_locked(hw, lpa_addr, &phy_data);
2175 if (ret_val)
2176 goto release;
2177 edata->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(phy_data);
2178
2179 /* EEE PCS Status */
2180 ret_val = e1000_read_emi_reg_locked(hw, pcs_stat_addr, &phy_data);
Bruce Allan3ef672a2013-06-27 02:44:44 +00002181 if (ret_val)
2182 goto release;
Bruce Allan203e4152012-12-05 08:40:59 +00002183 if (hw->phy.type == e1000_phy_82579)
2184 phy_data <<= 8;
2185
Bruce Allan203e4152012-12-05 08:40:59 +00002186 /* Result of the EEE auto negotiation - there is no register that
2187 * has the status of the EEE negotiation so do a best-guess based
Bruce Alland495bcb2013-03-20 07:23:11 +00002188 * on whether Tx or Rx LPI indications have been received.
Bruce Allan203e4152012-12-05 08:40:59 +00002189 */
Bruce Alland495bcb2013-03-20 07:23:11 +00002190 if (phy_data & (E1000_EEE_TX_LPI_RCVD | E1000_EEE_RX_LPI_RCVD))
Bruce Allan203e4152012-12-05 08:40:59 +00002191 edata->eee_active = true;
2192
2193 edata->eee_enabled = !hw->dev_spec.ich8lan.eee_disable;
2194 edata->tx_lpi_enabled = true;
2195 edata->tx_lpi_timer = er32(LPIC) >> E1000_LPIC_LPIET_SHIFT;
2196
Bruce Allan3ef672a2013-06-27 02:44:44 +00002197release:
2198 hw->phy.ops.release(hw);
2199 if (ret_val)
2200 ret_val = -ENODATA;
2201
2202 pm_runtime_put_sync(netdev->dev.parent);
2203
2204 return ret_val;
Bruce Allan203e4152012-12-05 08:40:59 +00002205}
2206
2207static int e1000e_set_eee(struct net_device *netdev, struct ethtool_eee *edata)
2208{
2209 struct e1000_adapter *adapter = netdev_priv(netdev);
2210 struct e1000_hw *hw = &adapter->hw;
2211 struct ethtool_eee eee_curr;
2212 s32 ret_val;
2213
Bruce Allan203e4152012-12-05 08:40:59 +00002214 ret_val = e1000e_get_eee(netdev, &eee_curr);
2215 if (ret_val)
2216 return ret_val;
2217
Bruce Allan203e4152012-12-05 08:40:59 +00002218 if (eee_curr.tx_lpi_enabled != edata->tx_lpi_enabled) {
2219 e_err("Setting EEE tx-lpi is not supported\n");
2220 return -EINVAL;
2221 }
2222
2223 if (eee_curr.tx_lpi_timer != edata->tx_lpi_timer) {
2224 e_err("Setting EEE Tx LPI timer is not supported\n");
2225 return -EINVAL;
2226 }
2227
Bruce Alland495bcb2013-03-20 07:23:11 +00002228 if (edata->advertised & ~(ADVERTISE_100_FULL | ADVERTISE_1000_FULL)) {
2229 e_err("EEE advertisement supports only 100TX and/or 1000T full-duplex\n");
2230 return -EINVAL;
Bruce Allan203e4152012-12-05 08:40:59 +00002231 }
2232
Bruce Alland495bcb2013-03-20 07:23:11 +00002233 adapter->eee_advert = ethtool_adv_to_mmd_eee_adv_t(edata->advertised);
2234
2235 hw->dev_spec.ich8lan.eee_disable = !edata->eee_enabled;
2236
Bruce Allan3ef672a2013-06-27 02:44:44 +00002237 pm_runtime_get_sync(netdev->dev.parent);
2238
Bruce Alland495bcb2013-03-20 07:23:11 +00002239 /* reset the link */
2240 if (netif_running(netdev))
2241 e1000e_reinit_locked(adapter);
2242 else
2243 e1000e_reset(adapter);
2244
Bruce Allan3ef672a2013-06-27 02:44:44 +00002245 pm_runtime_put_sync(netdev->dev.parent);
2246
Bruce Allan203e4152012-12-05 08:40:59 +00002247 return 0;
2248}
2249
Bruce Allanb67e1912012-12-27 08:32:33 +00002250static int e1000e_get_ts_info(struct net_device *netdev,
2251 struct ethtool_ts_info *info)
2252{
2253 struct e1000_adapter *adapter = netdev_priv(netdev);
2254
2255 ethtool_op_get_ts_info(netdev, info);
2256
2257 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
2258 return 0;
2259
2260 info->so_timestamping |= (SOF_TIMESTAMPING_TX_HARDWARE |
2261 SOF_TIMESTAMPING_RX_HARDWARE |
2262 SOF_TIMESTAMPING_RAW_HARDWARE);
2263
2264 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
2265
2266 info->rx_filters = ((1 << HWTSTAMP_FILTER_NONE) |
Bruce Alland89777b2013-01-19 01:09:58 +00002267 (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
2268 (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
2269 (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC) |
2270 (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ) |
2271 (1 << HWTSTAMP_FILTER_PTP_V2_L2_SYNC) |
2272 (1 << HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ) |
2273 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT) |
2274 (1 << HWTSTAMP_FILTER_PTP_V2_SYNC) |
2275 (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) |
Bruce Allanb67e1912012-12-27 08:32:33 +00002276 (1 << HWTSTAMP_FILTER_ALL));
2277
Bruce Alland89777b2013-01-19 01:09:58 +00002278 if (adapter->ptp_clock)
2279 info->phc_index = ptp_clock_index(adapter->ptp_clock);
2280
Bruce Allanb67e1912012-12-27 08:32:33 +00002281 return 0;
2282}
2283
Auke Kokbc7f75f2007-09-17 12:30:59 -07002284static const struct ethtool_ops e1000_ethtool_ops = {
2285 .get_settings = e1000_get_settings,
2286 .set_settings = e1000_set_settings,
2287 .get_drvinfo = e1000_get_drvinfo,
2288 .get_regs_len = e1000_get_regs_len,
2289 .get_regs = e1000_get_regs,
2290 .get_wol = e1000_get_wol,
2291 .set_wol = e1000_set_wol,
2292 .get_msglevel = e1000_get_msglevel,
2293 .set_msglevel = e1000_set_msglevel,
2294 .nway_reset = e1000_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00002295 .get_link = ethtool_op_get_link,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002296 .get_eeprom_len = e1000_get_eeprom_len,
2297 .get_eeprom = e1000_get_eeprom,
2298 .set_eeprom = e1000_set_eeprom,
2299 .get_ringparam = e1000_get_ringparam,
2300 .set_ringparam = e1000_set_ringparam,
2301 .get_pauseparam = e1000_get_pauseparam,
2302 .set_pauseparam = e1000_set_pauseparam,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002303 .self_test = e1000_diag_test,
2304 .get_strings = e1000_get_strings,
Bruce Allandbf80dc2011-04-16 00:34:40 +00002305 .set_phys_id = e1000_set_phys_id,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002306 .get_ethtool_stats = e1000_get_ethtool_stats,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002307 .get_sset_count = e1000e_get_sset_count,
Auke Kokde5b3072008-04-23 11:09:08 -07002308 .get_coalesce = e1000_get_coalesce,
2309 .set_coalesce = e1000_set_coalesce,
Bruce Allan70495a52012-01-11 01:26:50 +00002310 .get_rxnfc = e1000_get_rxnfc,
Bruce Allanb67e1912012-12-27 08:32:33 +00002311 .get_ts_info = e1000e_get_ts_info,
Bruce Allan203e4152012-12-05 08:40:59 +00002312 .get_eee = e1000e_get_eee,
2313 .set_eee = e1000e_set_eee,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002314};
2315
2316void e1000e_set_ethtool_ops(struct net_device *netdev)
2317{
2318 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
2319}