blob: e84574b1eae75997ede4d7307d035232fe041ada [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00002 * Intel PRO/1000 Linux driver
3 * Copyright(c) 1999 - 2006 Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * The full GNU General Public License is included in this distribution in
15 * the file called "COPYING".
16 *
17 * Contact Information:
18 * Linux NICS <linux.nics@intel.com>
19 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
20 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
21 *
22 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* ethtool support for e1000 */
25
26#include "e1000.h"
Asaf Vertzd5c7d7f2015-01-08 06:01:00 +000027#include <linux/jiffies.h>
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +000028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Ajit Khaparde8328c382009-10-13 01:45:48 +000030enum {NETDEV_STATS, E1000_STATS};
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct e1000_stats {
33 char stat_string[ETH_GSTRING_LEN];
Ajit Khaparde8328c382009-10-13 01:45:48 +000034 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 int sizeof_stat;
36 int stat_offset;
37};
38
Ajit Khaparde8328c382009-10-13 01:45:48 +000039#define E1000_STAT(m) E1000_STATS, \
40 sizeof(((struct e1000_adapter *)0)->m), \
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +000041 offsetof(struct e1000_adapter, m)
Ajit Khaparde8328c382009-10-13 01:45:48 +000042#define E1000_NETDEV_STAT(m) NETDEV_STATS, \
43 sizeof(((struct net_device *)0)->m), \
44 offsetof(struct net_device, m)
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static const struct e1000_stats e1000_gstrings_stats[] = {
Mitch Williams49559852006-09-27 12:53:37 -070047 { "rx_packets", E1000_STAT(stats.gprc) },
48 { "tx_packets", E1000_STAT(stats.gptc) },
49 { "rx_bytes", E1000_STAT(stats.gorcl) },
50 { "tx_bytes", E1000_STAT(stats.gotcl) },
51 { "rx_broadcast", E1000_STAT(stats.bprc) },
52 { "tx_broadcast", E1000_STAT(stats.bptc) },
53 { "rx_multicast", E1000_STAT(stats.mprc) },
54 { "tx_multicast", E1000_STAT(stats.mptc) },
55 { "rx_errors", E1000_STAT(stats.rxerrc) },
56 { "tx_errors", E1000_STAT(stats.txerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000057 { "tx_dropped", E1000_NETDEV_STAT(stats.tx_dropped) },
Mitch Williams49559852006-09-27 12:53:37 -070058 { "multicast", E1000_STAT(stats.mprc) },
59 { "collisions", E1000_STAT(stats.colc) },
60 { "rx_length_errors", E1000_STAT(stats.rlerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000061 { "rx_over_errors", E1000_NETDEV_STAT(stats.rx_over_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070062 { "rx_crc_errors", E1000_STAT(stats.crcerrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000063 { "rx_frame_errors", E1000_NETDEV_STAT(stats.rx_frame_errors) },
Malli Chilakala26483452005-04-28 19:44:46 -070064 { "rx_no_buffer_count", E1000_STAT(stats.rnbc) },
Mitch Williams49559852006-09-27 12:53:37 -070065 { "rx_missed_errors", E1000_STAT(stats.mpc) },
66 { "tx_aborted_errors", E1000_STAT(stats.ecol) },
67 { "tx_carrier_errors", E1000_STAT(stats.tncrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000068 { "tx_fifo_errors", E1000_NETDEV_STAT(stats.tx_fifo_errors) },
69 { "tx_heartbeat_errors", E1000_NETDEV_STAT(stats.tx_heartbeat_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070070 { "tx_window_errors", E1000_STAT(stats.latecol) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 { "tx_abort_late_coll", E1000_STAT(stats.latecol) },
72 { "tx_deferred_ok", E1000_STAT(stats.dc) },
73 { "tx_single_coll_ok", E1000_STAT(stats.scc) },
74 { "tx_multi_coll_ok", E1000_STAT(stats.mcc) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080075 { "tx_timeout_count", E1000_STAT(tx_timeout_count) },
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -080076 { "tx_restart_queue", E1000_STAT(restart_queue) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 { "rx_long_length_errors", E1000_STAT(stats.roc) },
78 { "rx_short_length_errors", E1000_STAT(stats.ruc) },
79 { "rx_align_errors", E1000_STAT(stats.algnerrc) },
80 { "tx_tcp_seg_good", E1000_STAT(stats.tsctc) },
81 { "tx_tcp_seg_failed", E1000_STAT(stats.tsctfc) },
82 { "rx_flow_control_xon", E1000_STAT(stats.xonrxc) },
83 { "rx_flow_control_xoff", E1000_STAT(stats.xoffrxc) },
84 { "tx_flow_control_xon", E1000_STAT(stats.xontxc) },
85 { "tx_flow_control_xoff", E1000_STAT(stats.xofftxc) },
86 { "rx_long_byte_count", E1000_STAT(stats.gorcl) },
87 { "rx_csum_offload_good", E1000_STAT(hw_csum_good) },
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -040088 { "rx_csum_offload_errors", E1000_STAT(hw_csum_err) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080089 { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
Jeff Garzik15e376b2006-12-15 11:16:33 -050090 { "tx_smbus", E1000_STAT(stats.mgptc) },
91 { "rx_smbus", E1000_STAT(stats.mgprc) },
92 { "dropped_smbus", E1000_STAT(stats.mgpdc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080094
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080095#define E1000_QUEUE_STATS_LEN 0
Denis Chengff8ac602007-09-02 18:30:18 +080096#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080097#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
99 "Register test (offline)", "Eeprom test (offline)",
100 "Interrupt test (offline)", "Loopback test (offline)",
101 "Link test (on/offline)"
102};
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000103
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +0200104#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Joe Perches64798842008-07-11 15:17:02 -0700106static int e1000_get_settings(struct net_device *netdev,
107 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700109 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct e1000_hw *hw = &adapter->hw;
111
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800112 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 ecmd->supported = (SUPPORTED_10baseT_Half |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000114 SUPPORTED_10baseT_Full |
115 SUPPORTED_100baseT_Half |
116 SUPPORTED_100baseT_Full |
117 SUPPORTED_1000baseT_Full|
118 SUPPORTED_Autoneg |
119 SUPPORTED_TP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 ecmd->advertising = ADVERTISED_TP;
121
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800122 if (hw->autoneg == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 ecmd->advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* the e1000 autoneg seems to match ethtool nicely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 ecmd->advertising |= hw->autoneg_advertised;
126 }
127
128 ecmd->port = PORT_TP;
129 ecmd->phy_address = hw->phy_addr;
130
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800131 if (hw->mac_type == e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 ecmd->transceiver = XCVR_EXTERNAL;
133 else
134 ecmd->transceiver = XCVR_INTERNAL;
135
136 } else {
137 ecmd->supported = (SUPPORTED_1000baseT_Full |
138 SUPPORTED_FIBRE |
139 SUPPORTED_Autoneg);
140
Malli Chilakala012609a2005-06-17 17:43:06 -0700141 ecmd->advertising = (ADVERTISED_1000baseT_Full |
142 ADVERTISED_FIBRE |
143 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 ecmd->port = PORT_FIBRE;
146
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800147 if (hw->mac_type >= e1000_82545)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 ecmd->transceiver = XCVR_INTERNAL;
149 else
150 ecmd->transceiver = XCVR_EXTERNAL;
151 }
152
Joe Perches1dc32912008-07-11 15:17:08 -0700153 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000155 &adapter->link_duplex);
David Decotigny70739492011-04-27 18:32:40 +0000156 ethtool_cmd_speed_set(ecmd, adapter->link_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300158 /* unfortunately FULL_DUPLEX != DUPLEX_FULL
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000159 * and HALF_DUPLEX != DUPLEX_HALF
160 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800161 if (adapter->link_duplex == FULL_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ecmd->duplex = DUPLEX_FULL;
163 else
164 ecmd->duplex = DUPLEX_HALF;
165 } else {
Jiri Pirko537fae02014-06-06 14:17:00 +0200166 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
167 ecmd->duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
170 ecmd->autoneg = ((hw->media_type == e1000_media_type_fiber) ||
171 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000172
173 /* MDI-X => 1; MDI => 0 */
174 if ((hw->media_type == e1000_media_type_copper) &&
175 netif_carrier_ok(netdev))
176 ecmd->eth_tp_mdix = (!!adapter->phy_info.mdix_mode ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000177 ETH_TP_MDI_X : ETH_TP_MDI);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000178 else
179 ecmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
180
181 if (hw->mdix == AUTO_ALL_MODES)
182 ecmd->eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
183 else
184 ecmd->eth_tp_mdix_ctrl = hw->mdix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return 0;
186}
187
Joe Perches64798842008-07-11 15:17:02 -0700188static int e1000_set_settings(struct net_device *netdev,
189 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700191 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct e1000_hw *hw = &adapter->hw;
193
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000194 /* MDI setting is only allowed when autoneg enabled because
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000195 * some hardware doesn't allow MDI setting when speed or
196 * duplex is forced.
197 */
198 if (ecmd->eth_tp_mdix_ctrl) {
199 if (hw->media_type != e1000_media_type_copper)
200 return -EOPNOTSUPP;
201
202 if ((ecmd->eth_tp_mdix_ctrl != ETH_TP_MDI_AUTO) &&
203 (ecmd->autoneg != AUTONEG_ENABLE)) {
204 e_err(drv, "forcing MDI/MDI-X state is not supported when link speed and/or duplex are forced\n");
205 return -EINVAL;
206 }
207 }
208
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700209 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
210 msleep(1);
211
Jeff Kirsher57128192006-01-12 16:50:28 -0800212 if (ecmd->autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800214 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700215 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
216 ADVERTISED_FIBRE |
217 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800218 else
Jeff Kirsher2f2ca262006-09-27 12:53:40 -0700219 hw->autoneg_advertised = ecmd->advertising |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000220 ADVERTISED_TP |
221 ADVERTISED_Autoneg;
Malli Chilakala012609a2005-06-17 17:43:06 -0700222 ecmd->advertising = hw->autoneg_advertised;
David Decotigny25db0332011-04-27 18:32:39 +0000223 } else {
224 u32 speed = ethtool_cmd_speed(ecmd);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000225 /* calling this overrides forced MDI setting */
David Decotigny14ad2512011-04-27 18:32:43 +0000226 if (e1000_set_spd_dplx(adapter, speed, ecmd->duplex)) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700227 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700229 }
David Decotigny25db0332011-04-27 18:32:39 +0000230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000232 /* MDI-X => 2; MDI => 1; Auto => 3 */
233 if (ecmd->eth_tp_mdix_ctrl) {
234 if (ecmd->eth_tp_mdix_ctrl == ETH_TP_MDI_AUTO)
235 hw->mdix = AUTO_ALL_MODES;
236 else
237 hw->mdix = ecmd->eth_tp_mdix_ctrl;
238 }
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* reset the link */
241
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700242 if (netif_running(adapter->netdev)) {
243 e1000_down(adapter);
244 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000245 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000247 }
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700248 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return 0;
250}
251
Nick Nunleyb5481922010-02-03 14:49:28 +0000252static u32 e1000_get_link(struct net_device *netdev)
253{
254 struct e1000_adapter *adapter = netdev_priv(netdev);
255
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000256 /* If the link is not reported up to netdev, interrupts are disabled,
Nick Nunleyb5481922010-02-03 14:49:28 +0000257 * and so the physical link state may have changed since we last
258 * looked. Set get_link_status to make sure that the true link
259 * state is interrogated, rather than pulling a cached and possibly
260 * stale link state from the driver.
261 */
262 if (!netif_carrier_ok(netdev))
263 adapter->hw.get_link_status = 1;
264
265 return e1000_has_link(adapter);
266}
267
Joe Perches64798842008-07-11 15:17:02 -0700268static void e1000_get_pauseparam(struct net_device *netdev,
269 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700271 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct e1000_hw *hw = &adapter->hw;
273
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800274 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800276
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000277 if (hw->fc == E1000_FC_RX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 pause->rx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000279 } else if (hw->fc == E1000_FC_TX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 pause->tx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000281 } else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 pause->rx_pause = 1;
283 pause->tx_pause = 1;
284 }
285}
286
Joe Perches64798842008-07-11 15:17:02 -0700287static int e1000_set_pauseparam(struct net_device *netdev,
288 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700290 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700292 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 adapter->fc_autoneg = pause->autoneg;
295
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700296 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
297 msleep(1);
298
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800299 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700300 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800301 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700302 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800303 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700304 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800305 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700306 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 hw->original_fc = hw->fc;
309
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800310 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700311 if (netif_running(adapter->netdev)) {
312 e1000_down(adapter);
313 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000314 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000316 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800317 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700318 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800319 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800320
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700321 clear_bit(__E1000_RESETTING, &adapter->flags);
322 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Joe Perches64798842008-07-11 15:17:02 -0700325static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700327 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return adapter->msg_enable;
330}
331
Joe Perches64798842008-07-11 15:17:02 -0700332static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700334 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 adapter->msg_enable = data;
337}
338
Joe Perches64798842008-07-11 15:17:02 -0700339static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700342 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Joe Perches64798842008-07-11 15:17:02 -0700345static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
346 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700348 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700350 u32 *regs_buff = p;
351 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Joe Perches406874a2008-04-03 10:06:32 -0700353 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
356
Joe Perches1dc32912008-07-11 15:17:08 -0700357 regs_buff[0] = er32(CTRL);
358 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Joe Perches1dc32912008-07-11 15:17:08 -0700360 regs_buff[2] = er32(RCTL);
361 regs_buff[3] = er32(RDLEN);
362 regs_buff[4] = er32(RDH);
363 regs_buff[5] = er32(RDT);
364 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Joe Perches1dc32912008-07-11 15:17:08 -0700366 regs_buff[7] = er32(TCTL);
367 regs_buff[8] = er32(TDLEN);
368 regs_buff[9] = er32(TDH);
369 regs_buff[10] = er32(TDT);
370 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Joe Perches1dc32912008-07-11 15:17:08 -0700372 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800373 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
375 IGP01E1000_PHY_AGC_A);
376 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
377 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700378 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
380 IGP01E1000_PHY_AGC_B);
381 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
382 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700383 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
385 IGP01E1000_PHY_AGC_C);
386 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
387 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700388 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
390 IGP01E1000_PHY_AGC_D);
391 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
392 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700393 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
395 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
396 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
397 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700398 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
400 IGP01E1000_PHY_PCS_INIT_REG);
401 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
402 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700403 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 regs_buff[20] = 0; /* polarity correction enabled (always) */
405 regs_buff[22] = 0; /* phy receive errors (unavailable) */
406 regs_buff[23] = regs_buff[18]; /* mdix mode */
407 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
408 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700409 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700410 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
412 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
413 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700414 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700415 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 regs_buff[18] = regs_buff[13]; /* cable polarity */
417 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
418 regs_buff[20] = regs_buff[17]; /* polarity correction */
419 /* phy receive errors */
420 regs_buff[22] = adapter->phy_stats.receive_errors;
421 regs_buff[23] = regs_buff[13]; /* mdix mode */
422 }
423 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
424 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700425 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800427 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700428 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700429 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431}
432
Joe Perches64798842008-07-11 15:17:02 -0700433static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700435 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700436 struct e1000_hw *hw = &adapter->hw;
437
438 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Joe Perches64798842008-07-11 15:17:02 -0700441static int e1000_get_eeprom(struct net_device *netdev,
442 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700444 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700446 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 int first_word, last_word;
448 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700449 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800451 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -EINVAL;
453
454 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
455
456 first_word = eeprom->offset >> 1;
457 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
458
Joe Perches406874a2008-04-03 10:06:32 -0700459 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800461 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -ENOMEM;
463
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800464 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 ret_val = e1000_read_eeprom(hw, first_word,
466 last_word - first_word + 1,
467 eeprom_buff);
468 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700469 for (i = 0; i < last_word - first_word + 1; i++) {
470 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
471 &eeprom_buff[i]);
472 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
477 /* Device's eeprom is always little-endian, word addressable */
478 for (i = 0; i < last_word - first_word + 1; i++)
479 le16_to_cpus(&eeprom_buff[i]);
480
Joe Perches406874a2008-04-03 10:06:32 -0700481 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000482 eeprom->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 kfree(eeprom_buff);
484
485 return ret_val;
486}
487
Joe Perches64798842008-07-11 15:17:02 -0700488static int e1000_set_eeprom(struct net_device *netdev,
489 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700491 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700493 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 void *ptr;
495 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700496 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800498 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return -EOPNOTSUPP;
500
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800501 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return -EFAULT;
503
504 max_len = hw->eeprom.word_size * 2;
505
506 first_word = eeprom->offset >> 1;
507 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
508 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800509 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return -ENOMEM;
511
512 ptr = (void *)eeprom_buff;
513
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800514 if (eeprom->offset & 1) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000515 /* need read/modify/write of first changed EEPROM word
516 * only the second byte of the word is being modified
517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 ret_val = e1000_read_eeprom(hw, first_word, 1,
519 &eeprom_buff[0]);
520 ptr++;
521 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800522 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000523 /* need read/modify/write of last changed EEPROM word
524 * only the first byte of the word is being modified
525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 ret_val = e1000_read_eeprom(hw, last_word, 1,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000527 &eeprom_buff[last_word - first_word]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 /* Device's eeprom is always little-endian, word addressable */
531 for (i = 0; i < last_word - first_word + 1; i++)
532 le16_to_cpus(&eeprom_buff[i]);
533
534 memcpy(ptr, bytes, eeprom->len);
535
536 for (i = 0; i < last_word - first_word + 1; i++)
537 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
538
539 ret_val = e1000_write_eeprom(hw, first_word,
540 last_word - first_word + 1, eeprom_buff);
541
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000542 /* Update the checksum over the first part of the EEPROM if needed */
543 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 e1000_update_eeprom_checksum(hw);
545
546 kfree(eeprom_buff);
547 return ret_val;
548}
549
Joe Perches64798842008-07-11 15:17:02 -0700550static void e1000_get_drvinfo(struct net_device *netdev,
551 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700553 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Rick Jones612a94d2011-11-14 08:13:25 +0000555 strlcpy(drvinfo->driver, e1000_driver_name,
556 sizeof(drvinfo->driver));
557 strlcpy(drvinfo->version, e1000_driver_version,
558 sizeof(drvinfo->version));
Jeff Kirshera2917e22006-01-12 16:51:23 -0800559
Rick Jones612a94d2011-11-14 08:13:25 +0000560 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
561 sizeof(drvinfo->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Joe Perches64798842008-07-11 15:17:02 -0700564static void e1000_get_ringparam(struct net_device *netdev,
565 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700567 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700568 struct e1000_hw *hw = &adapter->hw;
569 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400570 struct e1000_tx_ring *txdr = adapter->tx_ring;
571 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
574 E1000_MAX_82544_RXD;
575 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
576 E1000_MAX_82544_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 ring->rx_pending = rxdr->count;
578 ring->tx_pending = txdr->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Joe Perches64798842008-07-11 15:17:02 -0700581static int e1000_set_ringparam(struct net_device *netdev,
582 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700584 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700585 struct e1000_hw *hw = &adapter->hw;
586 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700587 struct e1000_tx_ring *txdr, *tx_old;
588 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800589 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400590
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800591 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
592 return -EINVAL;
593
Auke Kok2db10a02006-06-27 09:06:28 -0700594 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
595 msleep(1);
596
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400597 if (netif_running(adapter->netdev))
598 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 tx_old = adapter->tx_ring;
601 rx_old = adapter->rx_ring;
602
Vasily Averin793fab722006-09-27 12:54:14 -0700603 err = -ENOMEM;
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000604 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring),
605 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700606 if (!txdr)
607 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400608
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000609 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring),
610 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700611 if (!rxdr)
612 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400613
Vasily Averin793fab722006-09-27 12:54:14 -0700614 adapter->tx_ring = txdr;
615 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400616
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000617 rxdr->count = max(ring->rx_pending, (u32)E1000_MIN_RXD);
618 rxdr->count = min(rxdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000619 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700620 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000621 txdr->count = max(ring->tx_pending, (u32)E1000_MIN_TXD);
622 txdr->count = min(txdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000623 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700624 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800626 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400627 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800628 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400629 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400630
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800631 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700633 err = e1000_setup_all_rx_resources(adapter);
634 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700636 err = e1000_setup_all_tx_resources(adapter);
637 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 goto err_setup_tx;
639
640 /* save the new, restore the old in order to free it,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000641 * then restore the new back again
642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 adapter->rx_ring = rx_old;
645 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400646 e1000_free_all_rx_resources(adapter);
647 e1000_free_all_tx_resources(adapter);
Vasily Averin793fab722006-09-27 12:54:14 -0700648 adapter->rx_ring = rxdr;
649 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700650 err = e1000_up(adapter);
651 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700652 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Bo Chen11589612018-07-23 09:01:30 -0700654 kfree(tx_old);
655 kfree(rx_old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Auke Kok2db10a02006-06-27 09:06:28 -0700657 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400660 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661err_setup_rx:
662 adapter->rx_ring = rx_old;
663 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700664 kfree(rxdr);
665err_alloc_rx:
666 kfree(txdr);
667err_alloc_tx:
Bo Chen17c3ad92018-07-23 09:01:29 -0700668 if (netif_running(adapter->netdev))
669 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700670err_setup:
671 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return err;
673}
674
Joe Perches64798842008-07-11 15:17:02 -0700675static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
676 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800677{
Joe Perches1dc32912008-07-11 15:17:08 -0700678 struct e1000_hw *hw = &adapter->hw;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000679 static const u32 test[] = {
680 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
681 };
Joe Perches1dc32912008-07-11 15:17:08 -0700682 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700683 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800684 int i;
685
686 for (i = 0; i < ARRAY_SIZE(test); i++) {
687 writel(write & test[i], address);
688 read = readl(address);
689 if (read != (write & test[i] & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700690 e_err(drv, "pattern test reg %04X failed: "
691 "got 0x%08X expected 0x%08X\n",
692 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800693 *data = reg;
694 return true;
695 }
696 }
697 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Joe Perches64798842008-07-11 15:17:02 -0700700static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
701 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800702{
Joe Perches1dc32912008-07-11 15:17:08 -0700703 struct e1000_hw *hw = &adapter->hw;
704 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700705 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800706
707 writel(write & mask, address);
708 read = readl(address);
709 if ((read & mask) != (write & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700710 e_err(drv, "set/check reg %04X test failed: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000711 "got 0x%08X expected 0x%08X\n",
712 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800713 *data = reg;
714 return true;
715 }
716 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Joe Perches7e643002007-11-13 20:52:05 -0800719#define REG_PATTERN_TEST(reg, mask, write) \
720 do { \
721 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700722 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800723 ? E1000_##reg : E1000_82542_##reg, \
724 mask, write)) \
725 return 1; \
726 } while (0)
727
728#define REG_SET_AND_CHECK(reg, mask, write) \
729 do { \
730 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700731 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800732 ? E1000_##reg : E1000_82542_##reg, \
733 mask, write)) \
734 return 1; \
735 } while (0)
736
Joe Perches64798842008-07-11 15:17:02 -0700737static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Joe Perches406874a2008-04-03 10:06:32 -0700739 u32 value, before, after;
740 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700741 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /* The status register is Read Only, so a write should fail.
744 * Some bits that get toggled are ignored.
745 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000746
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400747 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000748 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700749
Joe Perches1dc32912008-07-11 15:17:08 -0700750 before = er32(STATUS);
751 value = (er32(STATUS) & toggle);
752 ew32(STATUS, toggle);
753 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800754 if (value != after) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700755 e_err(drv, "failed STATUS register test got: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000756 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 *data = 1;
758 return 1;
759 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700760 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700761 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800762
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000763 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
764 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
765 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
766 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
769 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
770 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
771 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
772 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
773 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
774 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
775 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
776 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
777 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
778
779 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800780
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000781 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700782 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
784
Joe Perches1dc32912008-07-11 15:17:08 -0700785 if (hw->mac_type >= e1000_82543) {
Auke Kokcd94dd02006-06-27 09:08:22 -0700786 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000788 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
790 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000791 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700792 for (i = 0; i < value; i++) {
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000793 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2),
794 0x8003FFFF, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
798 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
799 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
800 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000803 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700804 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
806
807 *data = 0;
808 return 0;
809}
810
Joe Perches64798842008-07-11 15:17:02 -0700811static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Joe Perches1dc32912008-07-11 15:17:08 -0700813 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700814 u16 temp;
815 u16 checksum = 0;
816 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 *data = 0;
819 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800820 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700821 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 *data = 1;
823 break;
824 }
825 checksum += temp;
826 }
827
828 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700829 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 *data = 2;
831
832 return *data;
833}
834
Joe Perches64798842008-07-11 15:17:02 -0700835static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Joe Perchese982f172008-07-11 15:17:18 -0700837 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700838 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700839 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Joe Perches1dc32912008-07-11 15:17:08 -0700841 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 return IRQ_HANDLED;
844}
845
Joe Perches64798842008-07-11 15:17:02 -0700846static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700849 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700850 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700851 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700852 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 *data = 0;
855
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000856 /* NOTE: we don't test MSI interrupts here, yet
857 * Hook up test interrupt handler just for this test
858 */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800859 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000860 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700861 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800862 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000863 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 *data = 1;
865 return -1;
866 }
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700867 e_info(hw, "testing %s interrupt\n", (shared_int ?
868 "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700871 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000872 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400873 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800876 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* Interrupt to test */
878 mask = 1 << i;
879
Auke Kok76c224b2006-05-23 13:36:06 -0700880 if (!shared_int) {
881 /* Disable the interrupt to be reported in
882 * the cause register and then force the same
883 * interrupt and see if one gets posted. If
884 * an interrupt was posted to the bus, the
885 * test failed.
886 */
887 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700888 ew32(IMC, mask);
889 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000890 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400891 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800892
Auke Kok76c224b2006-05-23 13:36:06 -0700893 if (adapter->test_icr & mask) {
894 *data = 3;
895 break;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
899 /* Enable the interrupt to be reported in
900 * the cause register and then force the same
901 * interrupt and see if one gets posted. If
902 * an interrupt was not posted to the bus, the
903 * test failed.
904 */
905 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700906 ew32(IMS, mask);
907 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000908 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400909 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800911 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 *data = 4;
913 break;
914 }
915
Auke Kok76c224b2006-05-23 13:36:06 -0700916 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /* Disable the other interrupts to be reported in
918 * the cause register and then force the other
919 * interrupts and see if any get posted. If
920 * an interrupt was posted to the bus, the
921 * test failed.
922 */
923 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700924 ew32(IMC, ~mask & 0x00007FFF);
925 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000926 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400927 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800929 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 *data = 5;
931 break;
932 }
933 }
934 }
935
936 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700937 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000938 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400939 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /* Unhook test interrupt handler */
942 free_irq(irq, netdev);
943
944 return *data;
945}
946
Joe Perches64798842008-07-11 15:17:02 -0700947static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400949 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
950 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 struct pci_dev *pdev = adapter->pdev;
952 int i;
953
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800954 if (txdr->desc && txdr->buffer_info) {
955 for (i = 0; i < txdr->count; i++) {
956 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000957 dma_unmap_single(&pdev->dev,
958 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000960 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800961 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 dev_kfree_skb(txdr->buffer_info[i].skb);
963 }
964 }
965
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800966 if (rxdr->desc && rxdr->buffer_info) {
967 for (i = 0; i < rxdr->count; i++) {
968 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000969 dma_unmap_single(&pdev->dev,
970 rxdr->buffer_info[i].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +0000971 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000972 DMA_FROM_DEVICE);
Florian Westphal13809602014-09-03 13:34:36 +0000973 kfree(rxdr->buffer_info[i].rxbuf.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975 }
976
Jeff Kirsherf5645112006-01-12 16:51:01 -0800977 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000978 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
979 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500980 txdr->desc = NULL;
981 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800982 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000983 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
984 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500985 rxdr->desc = NULL;
986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400988 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500989 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400990 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500991 rxdr->buffer_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Joe Perches64798842008-07-11 15:17:02 -0700994static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Joe Perches1dc32912008-07-11 15:17:08 -0700996 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400997 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
998 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -07001000 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -08001001 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /* Setup Tx descriptor ring and Tx buffers */
1004
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001005 if (!txdr->count)
1006 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Florian Westphal580f3212014-09-03 13:34:31 +00001008 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_tx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -07001009 GFP_KERNEL);
1010 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 ret_val = 1;
1012 goto err_nomem;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001016 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesede23fa2013-08-26 22:45:23 -07001017 txdr->desc = dma_zalloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1018 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001019 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 ret_val = 2;
1021 goto err_nomem;
1022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 txdr->next_to_use = txdr->next_to_clean = 0;
1024
Joe Perchese982f172008-07-11 15:17:18 -07001025 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1026 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001027 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1028 ew32(TDH, 0);
1029 ew32(TDT, 0);
1030 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1031 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1032 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001034 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1036 struct sk_buff *skb;
1037 unsigned int size = 1024;
1038
Joe Perchesc7be73b2008-07-11 15:17:28 -07001039 skb = alloc_skb(size, GFP_KERNEL);
1040 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 ret_val = 3;
1042 goto err_nomem;
1043 }
1044 skb_put(skb, size);
1045 txdr->buffer_info[i].skb = skb;
1046 txdr->buffer_info[i].length = skb->len;
1047 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001048 dma_map_single(&pdev->dev, skb->data, skb->len,
1049 DMA_TO_DEVICE);
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001050 if (dma_mapping_error(&pdev->dev, txdr->buffer_info[i].dma)) {
1051 ret_val = 4;
1052 goto err_nomem;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1055 tx_desc->lower.data = cpu_to_le32(skb->len);
1056 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1057 E1000_TXD_CMD_IFCS |
1058 E1000_TXD_CMD_RPS);
1059 tx_desc->upper.data = 0;
1060 }
1061
1062 /* Setup Rx descriptor ring and Rx buffers */
1063
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001064 if (!rxdr->count)
1065 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Florian Westphal93f0afe2014-09-03 13:34:26 +00001067 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_rx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -07001068 GFP_KERNEL);
1069 if (!rxdr->buffer_info) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001070 ret_val = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 goto err_nomem;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesede23fa2013-08-26 22:45:23 -07001075 rxdr->desc = dma_zalloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1076 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001077 if (!rxdr->desc) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001078 ret_val = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto err_nomem;
1080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 rxdr->next_to_use = rxdr->next_to_clean = 0;
1082
Joe Perches1dc32912008-07-11 15:17:08 -07001083 rctl = er32(RCTL);
1084 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001085 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1086 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001087 ew32(RDLEN, rxdr->size);
1088 ew32(RDH, 0);
1089 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1091 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001092 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1093 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001095 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
Florian Westphal13809602014-09-03 13:34:36 +00001097 u8 *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Florian Westphal13809602014-09-03 13:34:36 +00001099 buf = kzalloc(E1000_RXBUFFER_2048 + NET_SKB_PAD + NET_IP_ALIGN,
1100 GFP_KERNEL);
1101 if (!buf) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001102 ret_val = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 goto err_nomem;
1104 }
Florian Westphal13809602014-09-03 13:34:36 +00001105 rxdr->buffer_info[i].rxbuf.data = buf;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 rxdr->buffer_info[i].dma =
Florian Westphal13809602014-09-03 13:34:36 +00001108 dma_map_single(&pdev->dev,
1109 buf + NET_SKB_PAD + NET_IP_ALIGN,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001110 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001111 if (dma_mapping_error(&pdev->dev, rxdr->buffer_info[i].dma)) {
1112 ret_val = 8;
1113 goto err_nomem;
1114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
1118 return 0;
1119
1120err_nomem:
1121 e1000_free_desc_rings(adapter);
1122 return ret_val;
1123}
1124
Joe Perches64798842008-07-11 15:17:02 -07001125static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Joe Perches1dc32912008-07-11 15:17:08 -07001127 struct e1000_hw *hw = &adapter->hw;
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001130 e1000_write_phy_reg(hw, 29, 0x001F);
1131 e1000_write_phy_reg(hw, 30, 0x8FFC);
1132 e1000_write_phy_reg(hw, 29, 0x001A);
1133 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Joe Perches64798842008-07-11 15:17:02 -07001136static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Joe Perches1dc32912008-07-11 15:17:08 -07001138 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001139 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1142 * Extended PHY Specific Control Register to 25MHz clock. This
1143 * value defaults back to a 2.5MHz clock when the PHY is reset.
1144 */
Joe Perches1dc32912008-07-11 15:17:08 -07001145 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001147 e1000_write_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 /* In addition, because of the s/w reset above, we need to enable
1150 * CRS on TX. This must be set for both full and half duplex
1151 * operation.
1152 */
Joe Perches1dc32912008-07-11 15:17:08 -07001153 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001155 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Joe Perches64798842008-07-11 15:17:02 -07001158static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Joe Perches1dc32912008-07-11 15:17:08 -07001160 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001161 u32 ctrl_reg;
1162 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /* Setup the Device Control Register for PHY loopback test. */
1165
Joe Perches1dc32912008-07-11 15:17:08 -07001166 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1168 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1169 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1170 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1171 E1000_CTRL_FD); /* Force Duplex to FULL */
1172
Joe Perches1dc32912008-07-11 15:17:08 -07001173 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001176 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /* Clear Auto-Crossover bits in PHY Specific Control Register
1179 * (bits 6:5).
1180 */
1181 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001182 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001185 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 /* Have to setup TX_CLK and TX_CRS after software reset */
1188 e1000_phy_reset_clk_and_crs(adapter);
1189
Joe Perches1dc32912008-07-11 15:17:08 -07001190 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /* Wait for reset to complete. */
1193 udelay(500);
1194
1195 /* Have to setup TX_CLK and TX_CRS after software reset */
1196 e1000_phy_reset_clk_and_crs(adapter);
1197
1198 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1199 e1000_phy_disable_receiver(adapter);
1200
1201 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001202 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001204 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 /* Setup TX_CLK and TX_CRS one more time. */
1207 e1000_phy_reset_clk_and_crs(adapter);
1208
1209 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001210 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001211 if (phy_reg != 0x4100)
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001212 return 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Joe Perches1dc32912008-07-11 15:17:08 -07001214 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001215 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return 10;
1217
Joe Perches1dc32912008-07-11 15:17:08 -07001218 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001219 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return 11;
1221
1222 return 0;
1223}
1224
Joe Perches64798842008-07-11 15:17:02 -07001225static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Joe Perches1dc32912008-07-11 15:17:08 -07001227 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001228 u32 ctrl_reg = 0;
1229 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Joe Perches1dc32912008-07-11 15:17:08 -07001231 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Joe Perches1dc32912008-07-11 15:17:08 -07001233 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001235 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 M88E1000_PHY_SPEC_CTRL, 0x0808);
1237 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001238 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001240 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Joe Perches1dc32912008-07-11 15:17:08 -07001243 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001244
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001245 /* force 1000, set loopback */
1246 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001247
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001248 /* Now set up the MAC to the same speed/duplex as the PHY. */
1249 ctrl_reg = er32(CTRL);
1250 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1251 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1252 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1253 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001254 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Joe Perches1dc32912008-07-11 15:17:08 -07001256 if (hw->media_type == e1000_media_type_copper &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001257 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001259 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 /* Set the ILOS bit on the fiber Nic is half
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001261 * duplex link is detected.
1262 */
Joe Perches1dc32912008-07-11 15:17:08 -07001263 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001264 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1266 }
1267
Joe Perches1dc32912008-07-11 15:17:08 -07001268 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /* Disable the receiver on the PHY so when a cable is plugged in, the
1271 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1272 */
Joe Perches1dc32912008-07-11 15:17:08 -07001273 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 e1000_phy_disable_receiver(adapter);
1275
1276 udelay(500);
1277
1278 return 0;
1279}
1280
Joe Perches64798842008-07-11 15:17:02 -07001281static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Joe Perches1dc32912008-07-11 15:17:08 -07001283 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001284 u16 phy_reg = 0;
1285 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Joe Perches1dc32912008-07-11 15:17:08 -07001287 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001289 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /* Attempt to setup Loopback mode on Non-integrated PHY.
1291 * Some PHY registers get corrupted at random, so
1292 * attempt this 10 times.
1293 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001294 while (e1000_nonintegrated_phy_loopback(adapter) &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001295 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001296 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return 0;
1298 }
1299 break;
1300
1301 case e1000_82544:
1302 case e1000_82540:
1303 case e1000_82545:
1304 case e1000_82545_rev_3:
1305 case e1000_82546:
1306 case e1000_82546_rev_3:
1307 case e1000_82541:
1308 case e1000_82541_rev_2:
1309 case e1000_82547:
1310 case e1000_82547_rev_2:
1311 return e1000_integrated_phy_loopback(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 default:
1313 /* Default PHY loopback work is to read the MII
1314 * control register and assert bit 14 (loopback mode).
1315 */
Joe Perches1dc32912008-07-11 15:17:08 -07001316 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001318 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
1322 return 8;
1323}
1324
Joe Perches64798842008-07-11 15:17:02 -07001325static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Jeff Kirsher49273162006-01-12 16:50:44 -08001327 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001328 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Jeff Kirsher49273162006-01-12 16:50:44 -08001330 if (hw->media_type == e1000_media_type_fiber ||
1331 hw->media_type == e1000_media_type_internal_serdes) {
1332 switch (hw->mac_type) {
1333 case e1000_82545:
1334 case e1000_82546:
1335 case e1000_82545_rev_3:
1336 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001338 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001339 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001341 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return 0;
1343 }
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001344 } else if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return e1000_set_phy_loopback(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 return 7;
1349}
1350
Joe Perches64798842008-07-11 15:17:02 -07001351static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Jeff Kirsher49273162006-01-12 16:50:44 -08001353 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001354 u32 rctl;
1355 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Joe Perches1dc32912008-07-11 15:17:08 -07001357 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001359 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Jeff Kirsher49273162006-01-12 16:50:44 -08001361 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001362 case e1000_82545:
1363 case e1000_82546:
1364 case e1000_82545_rev_3:
1365 case e1000_82546_rev_3:
1366 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001367 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001368 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1369 if (phy_reg & MII_CR_LOOPBACK) {
1370 phy_reg &= ~MII_CR_LOOPBACK;
1371 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1372 e1000_phy_reset(hw);
1373 }
1374 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376}
1377
Joe Perches64798842008-07-11 15:17:02 -07001378static void e1000_create_lbtest_frame(struct sk_buff *skb,
1379 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001382 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1384 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1385 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1386}
1387
Florian Westphal13809602014-09-03 13:34:36 +00001388static int e1000_check_lbtest_frame(const unsigned char *data,
Joe Perches64798842008-07-11 15:17:02 -07001389 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001391 frame_size &= ~1;
Florian Westphal13809602014-09-03 13:34:36 +00001392 if (*(data + 3) == 0xFF) {
1393 if ((*(data + frame_size / 2 + 10) == 0xBE) &&
1394 (*(data + frame_size / 2 + 12) == 0xAF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return 0;
1396 }
1397 }
1398 return 13;
1399}
1400
Joe Perches64798842008-07-11 15:17:02 -07001401static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Joe Perches1dc32912008-07-11 15:17:08 -07001403 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001404 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1405 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct pci_dev *pdev = adapter->pdev;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001407 int i, j, k, l, lc, good_cnt, ret_val = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001408 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Joe Perches1dc32912008-07-11 15:17:08 -07001410 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001412 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001413 * The idea is to wrap the largest ring a number of times using 64
1414 * send/receive pairs during each loop
1415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001417 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001418 lc = ((txdr->count / 64) * 2) + 1;
1419 else
1420 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Malli Chilakalae4eff722005-04-28 19:38:30 -07001422 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001423 for (j = 0; j <= lc; j++) { /* loop count loop */
1424 for (i = 0; i < 64; i++) { /* send the packets */
1425 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001426 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001427 dma_sync_single_for_device(&pdev->dev,
1428 txdr->buffer_info[k].dma,
1429 txdr->buffer_info[k].length,
1430 DMA_TO_DEVICE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001431 if (unlikely(++k == txdr->count))
1432 k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001433 }
Joe Perches1dc32912008-07-11 15:17:08 -07001434 ew32(TDT, k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001435 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001436 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001437 time = jiffies; /* set the start time for the receive */
1438 good_cnt = 0;
1439 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001440 dma_sync_single_for_cpu(&pdev->dev,
1441 rxdr->buffer_info[l].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +00001442 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001443 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001444
Malli Chilakalae4eff722005-04-28 19:38:30 -07001445 ret_val = e1000_check_lbtest_frame(
Florian Westphal13809602014-09-03 13:34:36 +00001446 rxdr->buffer_info[l].rxbuf.data +
1447 NET_SKB_PAD + NET_IP_ALIGN,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001448 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001449 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001450 good_cnt++;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001451 if (unlikely(++l == rxdr->count))
1452 l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001453 /* time + 20 msecs (200 msecs on 2.4) is more than
1454 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001455 * exceeded, break and error off
1456 */
Manuel Schölling1aa65f42014-05-23 18:04:17 +00001457 } while (good_cnt < 64 && time_after(time + 20, jiffies));
1458
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001459 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001460 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001461 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001462 }
Asaf Vertzd5c7d7f2015-01-08 06:01:00 +00001463 if (time_after_eq(jiffies, time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001464 ret_val = 14; /* error code for time out error */
1465 break;
1466 }
1467 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return ret_val;
1469}
1470
Joe Perches64798842008-07-11 15:17:02 -07001471static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001473 *data = e1000_setup_desc_rings(adapter);
1474 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001475 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001476 *data = e1000_setup_loopback_test(adapter);
1477 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001478 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 *data = e1000_run_loopback_test(adapter);
1480 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001483 e1000_free_desc_rings(adapter);
1484out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return *data;
1486}
1487
Joe Perches64798842008-07-11 15:17:02 -07001488static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Joe Perches1dc32912008-07-11 15:17:08 -07001490 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001492 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 int i = 0;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001494
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001495 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Malli Chilakala26483452005-04-28 19:44:46 -07001497 /* On some blade server designs, link establishment
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001498 * could take as long as 2-3 minutes
1499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001501 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001502 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001504 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 } while (i++ < 3750);
1506
Malli Chilakala26483452005-04-28 19:44:46 -07001507 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001509 e1000_check_for_link(hw);
1510 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001511 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001513 if (!(er32(STATUS) & E1000_STATUS_LU))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516 return *data;
1517}
1518
Joe Perches64798842008-07-11 15:17:02 -07001519static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001521 switch (sset) {
1522 case ETH_SS_TEST:
1523 return E1000_TEST_LEN;
1524 case ETH_SS_STATS:
1525 return E1000_STATS_LEN;
1526 default:
1527 return -EOPNOTSUPP;
1528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Joe Perches64798842008-07-11 15:17:02 -07001531static void e1000_diag_test(struct net_device *netdev,
1532 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001534 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001535 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001536 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Auke Kok1314bbf2006-09-27 12:54:02 -07001538 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001539 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 /* Offline tests */
1541
1542 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001543 u16 autoneg_advertised = hw->autoneg_advertised;
1544 u8 forced_speed_duplex = hw->forced_speed_duplex;
1545 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001547 e_info(hw, "offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /* Link test performed before hardware reset so autoneg doesn't
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001550 * interfere with test result
1551 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001552 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 eth_test->flags |= ETH_TEST_FL_FAILED;
1554
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001555 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001556 /* indicate we're in test mode */
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001557 e1000_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 else
1559 e1000_reset(adapter);
1560
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001561 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 eth_test->flags |= ETH_TEST_FL_FAILED;
1563
1564 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001565 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 eth_test->flags |= ETH_TEST_FL_FAILED;
1567
1568 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001569 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 eth_test->flags |= ETH_TEST_FL_FAILED;
1571
1572 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001573 /* make sure the phy is powered up */
1574 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001575 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 eth_test->flags |= ETH_TEST_FL_FAILED;
1577
1578 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001579 hw->autoneg_advertised = autoneg_advertised;
1580 hw->forced_speed_duplex = forced_speed_duplex;
1581 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001584 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001585 if (if_running)
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001586 e1000_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 } else {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001588 e_info(hw, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001590 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 eth_test->flags |= ETH_TEST_FL_FAILED;
1592
Auke Kok90fb5132006-11-01 08:47:30 -08001593 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 data[0] = 0;
1595 data[1] = 0;
1596 data[2] = 0;
1597 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001598
Auke Kok1314bbf2006-09-27 12:54:02 -07001599 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001601 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
Joe Perches64798842008-07-11 15:17:02 -07001604static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1605 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001608 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001610 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001611 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 case E1000_DEV_ID_82543GC_FIBER:
1613 case E1000_DEV_ID_82543GC_COPPER:
1614 case E1000_DEV_ID_82544EI_FIBER:
1615 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1616 case E1000_DEV_ID_82545EM_FIBER:
1617 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001618 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001619 case E1000_DEV_ID_82546GB_PCIE:
1620 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001622 break;
1623 case E1000_DEV_ID_82546EB_FIBER:
1624 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001625 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001626 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001627 wol->supported = 0;
1628 break;
1629 }
1630 /* return success for non excluded adapter ports */
1631 retval = 0;
1632 break;
1633 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1634 /* quad port adapters only support WoL on port A */
1635 if (!adapter->quad_port_a) {
1636 wol->supported = 0;
1637 break;
1638 }
1639 /* return success for non excluded adapter ports */
1640 retval = 0;
1641 break;
1642 default:
1643 /* dual port cards only support WoL on port A from now on
1644 * unless it was enabled in the eeprom for port B
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001645 * so exclude FUNC_1 ports from having WoL enabled
1646 */
Joe Perches1dc32912008-07-11 15:17:08 -07001647 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001648 !adapter->eeprom_wol) {
1649 wol->supported = 0;
1650 break;
1651 }
1652
1653 retval = 0;
1654 }
1655
1656 return retval;
1657}
1658
Joe Perches64798842008-07-11 15:17:02 -07001659static void e1000_get_wol(struct net_device *netdev,
1660 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001661{
1662 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001663 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001664
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001665 wol->supported = WAKE_UCAST | WAKE_MCAST | WAKE_BCAST | WAKE_MAGIC;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001666 wol->wolopts = 0;
1667
1668 /* this function will set ->supported = 0 and return 1 if wol is not
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001669 * supported by this hardware
1670 */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001671 if (e1000_wol_exclusion(adapter, wol) ||
1672 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return;
1674
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001675 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001676 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001677 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Masanari Iidad7558142012-08-22 18:40:21 +09001678 /* KSP3 does not support UCAST wake-ups */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001679 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001680
1681 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001682 e_err(drv, "Interface does not support directed "
1683 "(unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001684 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001686 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001688
1689 if (adapter->wol & E1000_WUFC_EX)
1690 wol->wolopts |= WAKE_UCAST;
1691 if (adapter->wol & E1000_WUFC_MC)
1692 wol->wolopts |= WAKE_MCAST;
1693 if (adapter->wol & E1000_WUFC_BC)
1694 wol->wolopts |= WAKE_BCAST;
1695 if (adapter->wol & E1000_WUFC_MAG)
1696 wol->wolopts |= WAKE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
Joe Perches64798842008-07-11 15:17:02 -07001699static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001701 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 struct e1000_hw *hw = &adapter->hw;
1703
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001704 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1705 return -EOPNOTSUPP;
1706
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001707 if (e1000_wol_exclusion(adapter, wol) ||
1708 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return wol->wolopts ? -EOPNOTSUPP : 0;
1710
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001711 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001712 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001713 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001714 e_err(drv, "Interface does not support directed "
1715 "(unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001716 return -EOPNOTSUPP;
1717 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001718 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001720 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
1722
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001723 /* these settings will always override what we currently have */
1724 adapter->wol = 0;
1725
1726 if (wol->wolopts & WAKE_UCAST)
1727 adapter->wol |= E1000_WUFC_EX;
1728 if (wol->wolopts & WAKE_MCAST)
1729 adapter->wol |= E1000_WUFC_MC;
1730 if (wol->wolopts & WAKE_BCAST)
1731 adapter->wol |= E1000_WUFC_BC;
1732 if (wol->wolopts & WAKE_MAGIC)
1733 adapter->wol |= E1000_WUFC_MAG;
1734
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001735 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return 0;
1738}
1739
Jeff Kirsher64359092011-05-03 05:26:13 +00001740static int e1000_set_phys_id(struct net_device *netdev,
1741 enum ethtool_phys_id_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001743 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001744 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Jeff Kirsher64359092011-05-03 05:26:13 +00001746 switch (state) {
1747 case ETHTOOL_ID_ACTIVE:
1748 e1000_setup_led(hw);
1749 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Jeff Kirsher64359092011-05-03 05:26:13 +00001751 case ETHTOOL_ID_ON:
1752 e1000_led_on(hw);
1753 break;
1754
1755 case ETHTOOL_ID_OFF:
1756 e1000_led_off(hw);
1757 break;
1758
1759 case ETHTOOL_ID_INACTIVE:
1760 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 return 0;
1764}
1765
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001766static int e1000_get_coalesce(struct net_device *netdev,
1767 struct ethtool_coalesce *ec)
1768{
1769 struct e1000_adapter *adapter = netdev_priv(netdev);
1770
1771 if (adapter->hw.mac_type < e1000_82545)
1772 return -EOPNOTSUPP;
1773
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001774 if (adapter->itr_setting <= 4)
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001775 ec->rx_coalesce_usecs = adapter->itr_setting;
1776 else
1777 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1778
1779 return 0;
1780}
1781
1782static int e1000_set_coalesce(struct net_device *netdev,
1783 struct ethtool_coalesce *ec)
1784{
1785 struct e1000_adapter *adapter = netdev_priv(netdev);
1786 struct e1000_hw *hw = &adapter->hw;
1787
1788 if (hw->mac_type < e1000_82545)
1789 return -EOPNOTSUPP;
1790
1791 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001792 ((ec->rx_coalesce_usecs > 4) &&
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001793 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1794 (ec->rx_coalesce_usecs == 2))
1795 return -EINVAL;
1796
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001797 if (ec->rx_coalesce_usecs == 4) {
1798 adapter->itr = adapter->itr_setting = 4;
1799 } else if (ec->rx_coalesce_usecs <= 3) {
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001800 adapter->itr = 20000;
1801 adapter->itr_setting = ec->rx_coalesce_usecs;
1802 } else {
1803 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1804 adapter->itr_setting = adapter->itr & ~3;
1805 }
1806
1807 if (adapter->itr_setting != 0)
1808 ew32(ITR, 1000000000 / (adapter->itr * 256));
1809 else
1810 ew32(ITR, 0);
1811
1812 return 0;
1813}
1814
Joe Perches64798842008-07-11 15:17:02 -07001815static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001817 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001818
Auke Kok2db10a02006-06-27 09:06:28 -07001819 if (netif_running(netdev))
1820 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return 0;
1822}
1823
Joe Perches64798842008-07-11 15:17:02 -07001824static void e1000_get_ethtool_stats(struct net_device *netdev,
1825 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001827 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 int i;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001829 char *p = NULL;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001830 const struct e1000_stats *stat = e1000_gstrings_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001833 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001834 switch (stat->type) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001835 case NETDEV_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001836 p = (char *)netdev + stat->stat_offset;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001837 break;
1838 case E1000_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001839 p = (char *)adapter + stat->stat_offset;
1840 break;
1841 default:
1842 WARN_ONCE(1, "Invalid E1000 stat type: %u index %d\n",
1843 stat->type, i);
Ajit Khaparde8328c382009-10-13 01:45:48 +00001844 break;
1845 }
1846
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001847 if (stat->sizeof_stat == sizeof(u64))
1848 data[i] = *(u64 *)p;
1849 else
1850 data[i] = *(u32 *)p;
1851
1852 stat++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001854/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Joe Perches64798842008-07-11 15:17:02 -07001857static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1858 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Joe Perches406874a2008-04-03 10:06:32 -07001860 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 int i;
1862
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001863 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 case ETH_SS_TEST:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001865 memcpy(data, e1000_gstrings_test, sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 break;
1867 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001868 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1869 memcpy(p, e1000_gstrings_stats[i].stat_string,
1870 ETH_GSTRING_LEN);
1871 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001873 /* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 break;
1875 }
1876}
1877
Jeff Garzik7282d492006-09-13 14:30:00 -04001878static const struct ethtool_ops e1000_ethtool_ops = {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001879 .get_settings = e1000_get_settings,
1880 .set_settings = e1000_set_settings,
1881 .get_drvinfo = e1000_get_drvinfo,
1882 .get_regs_len = e1000_get_regs_len,
1883 .get_regs = e1000_get_regs,
1884 .get_wol = e1000_get_wol,
1885 .set_wol = e1000_set_wol,
1886 .get_msglevel = e1000_get_msglevel,
1887 .set_msglevel = e1000_set_msglevel,
1888 .nway_reset = e1000_nway_reset,
1889 .get_link = e1000_get_link,
1890 .get_eeprom_len = e1000_get_eeprom_len,
1891 .get_eeprom = e1000_get_eeprom,
1892 .set_eeprom = e1000_set_eeprom,
1893 .get_ringparam = e1000_get_ringparam,
1894 .set_ringparam = e1000_set_ringparam,
1895 .get_pauseparam = e1000_get_pauseparam,
1896 .set_pauseparam = e1000_set_pauseparam,
1897 .self_test = e1000_diag_test,
1898 .get_strings = e1000_get_strings,
1899 .set_phys_id = e1000_set_phys_id,
1900 .get_ethtool_stats = e1000_get_ethtool_stats,
1901 .get_sset_count = e1000_get_sset_count,
1902 .get_coalesce = e1000_get_coalesce,
1903 .set_coalesce = e1000_set_coalesce,
Richard Cochrane10df2c2012-07-22 07:15:40 +00001904 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905};
1906
1907void e1000_set_ethtool_ops(struct net_device *netdev)
1908{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001909 netdev->ethtool_ops = &e1000_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}