blob: ec8aa4562cc90a90dff844872278722b24daec3c [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
Philippe Reynes5add2f92017-01-21 16:06:03 +0100106static int e1000_get_link_ksettings(struct net_device *netdev,
107 struct ethtool_link_ksettings *cmd)
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;
Philippe Reynes5add2f92017-01-21 16:06:03 +0100111 u32 supported, advertising;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800113 if (hw->media_type == e1000_media_type_copper) {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100114 supported = (SUPPORTED_10baseT_Half |
115 SUPPORTED_10baseT_Full |
116 SUPPORTED_100baseT_Half |
117 SUPPORTED_100baseT_Full |
118 SUPPORTED_1000baseT_Full|
119 SUPPORTED_Autoneg |
120 SUPPORTED_TP);
121 advertising = ADVERTISED_TP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800123 if (hw->autoneg == 1) {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100124 advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* the e1000 autoneg seems to match ethtool nicely */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100126 advertising |= hw->autoneg_advertised;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128
Philippe Reynes5add2f92017-01-21 16:06:03 +0100129 cmd->base.port = PORT_TP;
130 cmd->base.phy_address = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100132 supported = (SUPPORTED_1000baseT_Full |
133 SUPPORTED_FIBRE |
134 SUPPORTED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Philippe Reynes5add2f92017-01-21 16:06:03 +0100136 advertising = (ADVERTISED_1000baseT_Full |
137 ADVERTISED_FIBRE |
138 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Philippe Reynes5add2f92017-01-21 16:06:03 +0100140 cmd->base.port = PORT_FIBRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Joe Perches1dc32912008-07-11 15:17:08 -0700143 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000145 &adapter->link_duplex);
Philippe Reynes5add2f92017-01-21 16:06:03 +0100146 cmd->base.speed = adapter->link_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300148 /* unfortunately FULL_DUPLEX != DUPLEX_FULL
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000149 * and HALF_DUPLEX != DUPLEX_HALF
150 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800151 if (adapter->link_duplex == FULL_DUPLEX)
Philippe Reynes5add2f92017-01-21 16:06:03 +0100152 cmd->base.duplex = DUPLEX_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100154 cmd->base.duplex = DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100156 cmd->base.speed = SPEED_UNKNOWN;
157 cmd->base.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
Philippe Reynes5add2f92017-01-21 16:06:03 +0100160 cmd->base.autoneg = ((hw->media_type == e1000_media_type_fiber) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000162
163 /* MDI-X => 1; MDI => 0 */
164 if ((hw->media_type == e1000_media_type_copper) &&
165 netif_carrier_ok(netdev))
Philippe Reynes5add2f92017-01-21 16:06:03 +0100166 cmd->base.eth_tp_mdix = (!!adapter->phy_info.mdix_mode ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000167 ETH_TP_MDI_X : ETH_TP_MDI);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000168 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100169 cmd->base.eth_tp_mdix = ETH_TP_MDI_INVALID;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000170
171 if (hw->mdix == AUTO_ALL_MODES)
Philippe Reynes5add2f92017-01-21 16:06:03 +0100172 cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000173 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100174 cmd->base.eth_tp_mdix_ctrl = hw->mdix;
175
176 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
177 supported);
178 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
179 advertising);
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 0;
182}
183
Philippe Reynes5add2f92017-01-21 16:06:03 +0100184static int e1000_set_link_ksettings(struct net_device *netdev,
185 const struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700187 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct e1000_hw *hw = &adapter->hw;
Philippe Reynes5add2f92017-01-21 16:06:03 +0100189 u32 advertising;
190
191 ethtool_convert_link_mode_to_legacy_u32(&advertising,
192 cmd->link_modes.advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
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 */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100198 if (cmd->base.eth_tp_mdix_ctrl) {
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000199 if (hw->media_type != e1000_media_type_copper)
200 return -EOPNOTSUPP;
201
Philippe Reynes5add2f92017-01-21 16:06:03 +0100202 if ((cmd->base.eth_tp_mdix_ctrl != ETH_TP_MDI_AUTO) &&
203 (cmd->base.autoneg != AUTONEG_ENABLE)) {
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000204 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
Philippe Reynes5add2f92017-01-21 16:06:03 +0100212 if (cmd->base.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 |
Philippe Reynes5add2f92017-01-21 16:06:03 +0100216 ADVERTISED_FIBRE |
217 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800218 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100219 hw->autoneg_advertised = advertising |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000220 ADVERTISED_TP |
221 ADVERTISED_Autoneg;
David Decotigny25db0332011-04-27 18:32:39 +0000222 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100223 u32 speed = cmd->base.speed;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000224 /* calling this overrides forced MDI setting */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100225 if (e1000_set_spd_dplx(adapter, speed, cmd->base.duplex)) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700226 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700228 }
David Decotigny25db0332011-04-27 18:32:39 +0000229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000231 /* MDI-X => 2; MDI => 1; Auto => 3 */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100232 if (cmd->base.eth_tp_mdix_ctrl) {
233 if (cmd->base.eth_tp_mdix_ctrl == ETH_TP_MDI_AUTO)
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000234 hw->mdix = AUTO_ALL_MODES;
235 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100236 hw->mdix = cmd->base.eth_tp_mdix_ctrl;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000237 }
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* reset the link */
240
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700241 if (netif_running(adapter->netdev)) {
242 e1000_down(adapter);
243 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000244 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000246 }
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700247 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Nick Nunleyb5481922010-02-03 14:49:28 +0000251static u32 e1000_get_link(struct net_device *netdev)
252{
253 struct e1000_adapter *adapter = netdev_priv(netdev);
254
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000255 /* If the link is not reported up to netdev, interrupts are disabled,
Nick Nunleyb5481922010-02-03 14:49:28 +0000256 * and so the physical link state may have changed since we last
257 * looked. Set get_link_status to make sure that the true link
258 * state is interrogated, rather than pulling a cached and possibly
259 * stale link state from the driver.
260 */
261 if (!netif_carrier_ok(netdev))
262 adapter->hw.get_link_status = 1;
263
264 return e1000_has_link(adapter);
265}
266
Joe Perches64798842008-07-11 15:17:02 -0700267static void e1000_get_pauseparam(struct net_device *netdev,
268 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700270 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct e1000_hw *hw = &adapter->hw;
272
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800273 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800275
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000276 if (hw->fc == E1000_FC_RX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 pause->rx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000278 } else if (hw->fc == E1000_FC_TX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 pause->tx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000280 } else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 pause->rx_pause = 1;
282 pause->tx_pause = 1;
283 }
284}
285
Joe Perches64798842008-07-11 15:17:02 -0700286static int e1000_set_pauseparam(struct net_device *netdev,
287 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700289 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700291 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 adapter->fc_autoneg = pause->autoneg;
294
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700295 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
296 msleep(1);
297
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800298 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700299 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800300 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700301 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800302 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700303 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800304 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700305 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 hw->original_fc = hw->fc;
308
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800309 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700310 if (netif_running(adapter->netdev)) {
311 e1000_down(adapter);
312 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000313 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000315 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800316 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700317 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800318 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800319
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700320 clear_bit(__E1000_RESETTING, &adapter->flags);
321 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Joe Perches64798842008-07-11 15:17:02 -0700324static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700326 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return adapter->msg_enable;
329}
330
Joe Perches64798842008-07-11 15:17:02 -0700331static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700333 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 adapter->msg_enable = data;
336}
337
Joe Perches64798842008-07-11 15:17:02 -0700338static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700341 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Joe Perches64798842008-07-11 15:17:02 -0700344static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
345 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700347 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700349 u32 *regs_buff = p;
350 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Joe Perches406874a2008-04-03 10:06:32 -0700352 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
355
Joe Perches1dc32912008-07-11 15:17:08 -0700356 regs_buff[0] = er32(CTRL);
357 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Joe Perches1dc32912008-07-11 15:17:08 -0700359 regs_buff[2] = er32(RCTL);
360 regs_buff[3] = er32(RDLEN);
361 regs_buff[4] = er32(RDH);
362 regs_buff[5] = er32(RDT);
363 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Joe Perches1dc32912008-07-11 15:17:08 -0700365 regs_buff[7] = er32(TCTL);
366 regs_buff[8] = er32(TDLEN);
367 regs_buff[9] = er32(TDH);
368 regs_buff[10] = er32(TDT);
369 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Joe Perches1dc32912008-07-11 15:17:08 -0700371 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800372 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
374 IGP01E1000_PHY_AGC_A);
375 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
376 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700377 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
379 IGP01E1000_PHY_AGC_B);
380 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
381 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700382 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
384 IGP01E1000_PHY_AGC_C);
385 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
386 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700387 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
389 IGP01E1000_PHY_AGC_D);
390 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
391 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700392 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
394 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
395 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
396 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700397 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
399 IGP01E1000_PHY_PCS_INIT_REG);
400 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
401 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700402 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 regs_buff[20] = 0; /* polarity correction enabled (always) */
404 regs_buff[22] = 0; /* phy receive errors (unavailable) */
405 regs_buff[23] = regs_buff[18]; /* mdix mode */
406 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
407 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700408 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700409 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
411 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
412 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700413 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700414 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 regs_buff[18] = regs_buff[13]; /* cable polarity */
416 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
417 regs_buff[20] = regs_buff[17]; /* polarity correction */
418 /* phy receive errors */
419 regs_buff[22] = adapter->phy_stats.receive_errors;
420 regs_buff[23] = regs_buff[13]; /* mdix mode */
421 }
422 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
423 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700424 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800426 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700427 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700428 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430}
431
Joe Perches64798842008-07-11 15:17:02 -0700432static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700434 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700435 struct e1000_hw *hw = &adapter->hw;
436
437 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Joe Perches64798842008-07-11 15:17:02 -0700440static int e1000_get_eeprom(struct net_device *netdev,
441 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700443 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700445 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 int first_word, last_word;
447 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700448 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800450 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -EINVAL;
452
453 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
454
455 first_word = eeprom->offset >> 1;
456 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
457
Joe Perches406874a2008-04-03 10:06:32 -0700458 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800460 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return -ENOMEM;
462
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800463 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 ret_val = e1000_read_eeprom(hw, first_word,
465 last_word - first_word + 1,
466 eeprom_buff);
467 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700468 for (i = 0; i < last_word - first_word + 1; i++) {
469 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
470 &eeprom_buff[i]);
471 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475
476 /* Device's eeprom is always little-endian, word addressable */
477 for (i = 0; i < last_word - first_word + 1; i++)
478 le16_to_cpus(&eeprom_buff[i]);
479
Joe Perches406874a2008-04-03 10:06:32 -0700480 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000481 eeprom->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 kfree(eeprom_buff);
483
484 return ret_val;
485}
486
Joe Perches64798842008-07-11 15:17:02 -0700487static int e1000_set_eeprom(struct net_device *netdev,
488 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700490 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700492 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 void *ptr;
494 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700495 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800497 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return -EOPNOTSUPP;
499
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800500 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EFAULT;
502
503 max_len = hw->eeprom.word_size * 2;
504
505 first_word = eeprom->offset >> 1;
506 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
507 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800508 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -ENOMEM;
510
511 ptr = (void *)eeprom_buff;
512
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800513 if (eeprom->offset & 1) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000514 /* need read/modify/write of first changed EEPROM word
515 * only the second byte of the word is being modified
516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 ret_val = e1000_read_eeprom(hw, first_word, 1,
518 &eeprom_buff[0]);
519 ptr++;
520 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800521 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000522 /* need read/modify/write of last changed EEPROM word
523 * only the first byte of the word is being modified
524 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 ret_val = e1000_read_eeprom(hw, last_word, 1,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000526 &eeprom_buff[last_word - first_word]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
529 /* Device's eeprom is always little-endian, word addressable */
530 for (i = 0; i < last_word - first_word + 1; i++)
531 le16_to_cpus(&eeprom_buff[i]);
532
533 memcpy(ptr, bytes, eeprom->len);
534
535 for (i = 0; i < last_word - first_word + 1; i++)
536 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
537
538 ret_val = e1000_write_eeprom(hw, first_word,
539 last_word - first_word + 1, eeprom_buff);
540
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000541 /* Update the checksum over the first part of the EEPROM if needed */
542 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 e1000_update_eeprom_checksum(hw);
544
545 kfree(eeprom_buff);
546 return ret_val;
547}
548
Joe Perches64798842008-07-11 15:17:02 -0700549static void e1000_get_drvinfo(struct net_device *netdev,
550 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700552 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Rick Jones612a94d2011-11-14 08:13:25 +0000554 strlcpy(drvinfo->driver, e1000_driver_name,
555 sizeof(drvinfo->driver));
556 strlcpy(drvinfo->version, e1000_driver_version,
557 sizeof(drvinfo->version));
Jeff Kirshera2917e22006-01-12 16:51:23 -0800558
Rick Jones612a94d2011-11-14 08:13:25 +0000559 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
560 sizeof(drvinfo->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Joe Perches64798842008-07-11 15:17:02 -0700563static void e1000_get_ringparam(struct net_device *netdev,
564 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700566 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700567 struct e1000_hw *hw = &adapter->hw;
568 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400569 struct e1000_tx_ring *txdr = adapter->tx_ring;
570 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
573 E1000_MAX_82544_RXD;
574 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
575 E1000_MAX_82544_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 ring->rx_pending = rxdr->count;
577 ring->tx_pending = txdr->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Joe Perches64798842008-07-11 15:17:02 -0700580static int e1000_set_ringparam(struct net_device *netdev,
581 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700583 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700584 struct e1000_hw *hw = &adapter->hw;
585 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700586 struct e1000_tx_ring *txdr, *tx_old;
587 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800588 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400589
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800590 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
591 return -EINVAL;
592
Auke Kok2db10a02006-06-27 09:06:28 -0700593 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
594 msleep(1);
595
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400596 if (netif_running(adapter->netdev))
597 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 tx_old = adapter->tx_ring;
600 rx_old = adapter->rx_ring;
601
Vasily Averin793fab722006-09-27 12:54:14 -0700602 err = -ENOMEM;
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000603 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring),
604 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700605 if (!txdr)
606 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400607
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000608 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring),
609 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700610 if (!rxdr)
611 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400612
Vasily Averin793fab722006-09-27 12:54:14 -0700613 adapter->tx_ring = txdr;
614 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400615
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000616 rxdr->count = max(ring->rx_pending, (u32)E1000_MIN_RXD);
617 rxdr->count = min(rxdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000618 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700619 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000620 txdr->count = max(ring->tx_pending, (u32)E1000_MIN_TXD);
621 txdr->count = min(txdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000622 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700623 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800625 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400626 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800627 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400628 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400629
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800630 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700632 err = e1000_setup_all_rx_resources(adapter);
633 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700635 err = e1000_setup_all_tx_resources(adapter);
636 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto err_setup_tx;
638
639 /* save the new, restore the old in order to free it,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000640 * then restore the new back again
641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 adapter->rx_ring = rx_old;
644 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400645 e1000_free_all_rx_resources(adapter);
646 e1000_free_all_tx_resources(adapter);
647 kfree(tx_old);
648 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700649 adapter->rx_ring = rxdr;
650 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700651 err = e1000_up(adapter);
652 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700653 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Auke Kok2db10a02006-06-27 09:06:28 -0700656 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return 0;
658err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400659 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660err_setup_rx:
661 adapter->rx_ring = rx_old;
662 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700663 kfree(rxdr);
664err_alloc_rx:
665 kfree(txdr);
666err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700668err_setup:
669 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return err;
671}
672
Joe Perches64798842008-07-11 15:17:02 -0700673static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
674 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800675{
Joe Perches1dc32912008-07-11 15:17:08 -0700676 struct e1000_hw *hw = &adapter->hw;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000677 static const u32 test[] = {
678 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
679 };
Joe Perches1dc32912008-07-11 15:17:08 -0700680 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700681 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800682 int i;
683
684 for (i = 0; i < ARRAY_SIZE(test); i++) {
685 writel(write & test[i], address);
686 read = readl(address);
687 if (read != (write & test[i] & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700688 e_err(drv, "pattern test reg %04X failed: "
689 "got 0x%08X expected 0x%08X\n",
690 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800691 *data = reg;
692 return true;
693 }
694 }
695 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Joe Perches64798842008-07-11 15:17:02 -0700698static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
699 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800700{
Joe Perches1dc32912008-07-11 15:17:08 -0700701 struct e1000_hw *hw = &adapter->hw;
702 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700703 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800704
705 writel(write & mask, address);
706 read = readl(address);
707 if ((read & mask) != (write & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700708 e_err(drv, "set/check reg %04X test failed: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000709 "got 0x%08X expected 0x%08X\n",
710 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800711 *data = reg;
712 return true;
713 }
714 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Joe Perches7e643002007-11-13 20:52:05 -0800717#define REG_PATTERN_TEST(reg, mask, write) \
718 do { \
719 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700720 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800721 ? E1000_##reg : E1000_82542_##reg, \
722 mask, write)) \
723 return 1; \
724 } while (0)
725
726#define REG_SET_AND_CHECK(reg, mask, write) \
727 do { \
728 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700729 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800730 ? E1000_##reg : E1000_82542_##reg, \
731 mask, write)) \
732 return 1; \
733 } while (0)
734
Joe Perches64798842008-07-11 15:17:02 -0700735static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Joe Perches406874a2008-04-03 10:06:32 -0700737 u32 value, before, after;
738 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700739 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* The status register is Read Only, so a write should fail.
742 * Some bits that get toggled are ignored.
743 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000744
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400745 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000746 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700747
Joe Perches1dc32912008-07-11 15:17:08 -0700748 before = er32(STATUS);
749 value = (er32(STATUS) & toggle);
750 ew32(STATUS, toggle);
751 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800752 if (value != after) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700753 e_err(drv, "failed STATUS register test got: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000754 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 *data = 1;
756 return 1;
757 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700758 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700759 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800760
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000761 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
762 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
763 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
764 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
767 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
768 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
769 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
770 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
771 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
772 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
773 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
774 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
775 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
776
777 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800778
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000779 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700780 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
782
Joe Perches1dc32912008-07-11 15:17:08 -0700783 if (hw->mac_type >= e1000_82543) {
Auke Kokcd94dd02006-06-27 09:08:22 -0700784 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000786 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
788 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000789 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700790 for (i = 0; i < value; i++) {
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000791 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2),
792 0x8003FFFF, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
796 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
797 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
798 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000801 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700802 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
804
805 *data = 0;
806 return 0;
807}
808
Joe Perches64798842008-07-11 15:17:02 -0700809static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Joe Perches1dc32912008-07-11 15:17:08 -0700811 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700812 u16 temp;
813 u16 checksum = 0;
814 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 *data = 0;
817 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800818 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700819 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 *data = 1;
821 break;
822 }
823 checksum += temp;
824 }
825
826 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700827 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *data = 2;
829
830 return *data;
831}
832
Joe Perches64798842008-07-11 15:17:02 -0700833static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Joe Perchese982f172008-07-11 15:17:18 -0700835 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700836 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700837 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Joe Perches1dc32912008-07-11 15:17:08 -0700839 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 return IRQ_HANDLED;
842}
843
Joe Perches64798842008-07-11 15:17:02 -0700844static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700847 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700848 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700849 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700850 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 *data = 0;
853
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000854 /* NOTE: we don't test MSI interrupts here, yet
855 * Hook up test interrupt handler just for this test
856 */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800857 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000858 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700859 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800860 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000861 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 *data = 1;
863 return -1;
864 }
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700865 e_info(hw, "testing %s interrupt\n", (shared_int ?
866 "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700869 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000870 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400871 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800874 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* Interrupt to test */
876 mask = 1 << i;
877
Auke Kok76c224b2006-05-23 13:36:06 -0700878 if (!shared_int) {
879 /* Disable the interrupt to be reported in
880 * the cause register and then force the same
881 * interrupt and see if one gets posted. If
882 * an interrupt was posted to the bus, the
883 * test failed.
884 */
885 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700886 ew32(IMC, mask);
887 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000888 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400889 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800890
Auke Kok76c224b2006-05-23 13:36:06 -0700891 if (adapter->test_icr & mask) {
892 *data = 3;
893 break;
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
897 /* Enable the interrupt to be reported in
898 * the cause register and then force the same
899 * interrupt and see if one gets posted. If
900 * an interrupt was not posted to the bus, the
901 * test failed.
902 */
903 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700904 ew32(IMS, mask);
905 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000906 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400907 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800909 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 *data = 4;
911 break;
912 }
913
Auke Kok76c224b2006-05-23 13:36:06 -0700914 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /* Disable the other interrupts to be reported in
916 * the cause register and then force the other
917 * interrupts and see if any get posted. If
918 * an interrupt was posted to the bus, the
919 * test failed.
920 */
921 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700922 ew32(IMC, ~mask & 0x00007FFF);
923 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000924 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400925 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800927 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 *data = 5;
929 break;
930 }
931 }
932 }
933
934 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700935 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000936 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400937 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 /* Unhook test interrupt handler */
940 free_irq(irq, netdev);
941
942 return *data;
943}
944
Joe Perches64798842008-07-11 15:17:02 -0700945static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400947 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
948 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct pci_dev *pdev = adapter->pdev;
950 int i;
951
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800952 if (txdr->desc && txdr->buffer_info) {
953 for (i = 0; i < txdr->count; i++) {
954 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000955 dma_unmap_single(&pdev->dev,
956 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000958 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800959 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 dev_kfree_skb(txdr->buffer_info[i].skb);
961 }
962 }
963
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800964 if (rxdr->desc && rxdr->buffer_info) {
965 for (i = 0; i < rxdr->count; i++) {
966 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000967 dma_unmap_single(&pdev->dev,
968 rxdr->buffer_info[i].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +0000969 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000970 DMA_FROM_DEVICE);
Florian Westphal13809602014-09-03 13:34:36 +0000971 kfree(rxdr->buffer_info[i].rxbuf.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973 }
974
Jeff Kirsherf5645112006-01-12 16:51:01 -0800975 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000976 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
977 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500978 txdr->desc = NULL;
979 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800980 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000981 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
982 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500983 rxdr->desc = NULL;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400986 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500987 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400988 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500989 rxdr->buffer_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Joe Perches64798842008-07-11 15:17:02 -0700992static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Joe Perches1dc32912008-07-11 15:17:08 -0700994 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400995 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
996 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -0700998 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800999 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 /* Setup Tx descriptor ring and Tx buffers */
1002
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001003 if (!txdr->count)
1004 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Florian Westphal580f3212014-09-03 13:34:31 +00001006 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_tx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -07001007 GFP_KERNEL);
1008 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 ret_val = 1;
1010 goto err_nomem;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001014 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesede23fa2013-08-26 22:45:23 -07001015 txdr->desc = dma_zalloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1016 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001017 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 ret_val = 2;
1019 goto err_nomem;
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 txdr->next_to_use = txdr->next_to_clean = 0;
1022
Joe Perchese982f172008-07-11 15:17:18 -07001023 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1024 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001025 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1026 ew32(TDH, 0);
1027 ew32(TDT, 0);
1028 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1029 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1030 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001032 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1034 struct sk_buff *skb;
1035 unsigned int size = 1024;
1036
Joe Perchesc7be73b2008-07-11 15:17:28 -07001037 skb = alloc_skb(size, GFP_KERNEL);
1038 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 ret_val = 3;
1040 goto err_nomem;
1041 }
1042 skb_put(skb, size);
1043 txdr->buffer_info[i].skb = skb;
1044 txdr->buffer_info[i].length = skb->len;
1045 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001046 dma_map_single(&pdev->dev, skb->data, skb->len,
1047 DMA_TO_DEVICE);
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001048 if (dma_mapping_error(&pdev->dev, txdr->buffer_info[i].dma)) {
1049 ret_val = 4;
1050 goto err_nomem;
1051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1053 tx_desc->lower.data = cpu_to_le32(skb->len);
1054 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1055 E1000_TXD_CMD_IFCS |
1056 E1000_TXD_CMD_RPS);
1057 tx_desc->upper.data = 0;
1058 }
1059
1060 /* Setup Rx descriptor ring and Rx buffers */
1061
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001062 if (!rxdr->count)
1063 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Florian Westphal93f0afe2014-09-03 13:34:26 +00001065 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_rx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -07001066 GFP_KERNEL);
1067 if (!rxdr->buffer_info) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001068 ret_val = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 goto err_nomem;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesede23fa2013-08-26 22:45:23 -07001073 rxdr->desc = dma_zalloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1074 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001075 if (!rxdr->desc) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001076 ret_val = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto err_nomem;
1078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 rxdr->next_to_use = rxdr->next_to_clean = 0;
1080
Joe Perches1dc32912008-07-11 15:17:08 -07001081 rctl = er32(RCTL);
1082 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001083 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1084 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001085 ew32(RDLEN, rxdr->size);
1086 ew32(RDH, 0);
1087 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1089 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001090 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1091 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001093 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
Florian Westphal13809602014-09-03 13:34:36 +00001095 u8 *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Florian Westphal13809602014-09-03 13:34:36 +00001097 buf = kzalloc(E1000_RXBUFFER_2048 + NET_SKB_PAD + NET_IP_ALIGN,
1098 GFP_KERNEL);
1099 if (!buf) {
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001100 ret_val = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto err_nomem;
1102 }
Florian Westphal13809602014-09-03 13:34:36 +00001103 rxdr->buffer_info[i].rxbuf.data = buf;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 rxdr->buffer_info[i].dma =
Florian Westphal13809602014-09-03 13:34:36 +00001106 dma_map_single(&pdev->dev,
1107 buf + NET_SKB_PAD + NET_IP_ALIGN,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001108 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Christoph Paaschd6b057b2013-03-20 08:59:35 +00001109 if (dma_mapping_error(&pdev->dev, rxdr->buffer_info[i].dma)) {
1110 ret_val = 8;
1111 goto err_nomem;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115
1116 return 0;
1117
1118err_nomem:
1119 e1000_free_desc_rings(adapter);
1120 return ret_val;
1121}
1122
Joe Perches64798842008-07-11 15:17:02 -07001123static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Joe Perches1dc32912008-07-11 15:17:08 -07001125 struct e1000_hw *hw = &adapter->hw;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001128 e1000_write_phy_reg(hw, 29, 0x001F);
1129 e1000_write_phy_reg(hw, 30, 0x8FFC);
1130 e1000_write_phy_reg(hw, 29, 0x001A);
1131 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Joe Perches64798842008-07-11 15:17:02 -07001134static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Joe Perches1dc32912008-07-11 15:17:08 -07001136 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001137 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1140 * Extended PHY Specific Control Register to 25MHz clock. This
1141 * value defaults back to a 2.5MHz clock when the PHY is reset.
1142 */
Joe Perches1dc32912008-07-11 15:17:08 -07001143 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001145 e1000_write_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 /* In addition, because of the s/w reset above, we need to enable
1148 * CRS on TX. This must be set for both full and half duplex
1149 * operation.
1150 */
Joe Perches1dc32912008-07-11 15:17:08 -07001151 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001153 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
Joe Perches64798842008-07-11 15:17:02 -07001156static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Joe Perches1dc32912008-07-11 15:17:08 -07001158 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001159 u32 ctrl_reg;
1160 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 /* Setup the Device Control Register for PHY loopback test. */
1163
Joe Perches1dc32912008-07-11 15:17:08 -07001164 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1166 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1167 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1168 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1169 E1000_CTRL_FD); /* Force Duplex to FULL */
1170
Joe Perches1dc32912008-07-11 15:17:08 -07001171 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001174 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /* Clear Auto-Crossover bits in PHY Specific Control Register
1177 * (bits 6:5).
1178 */
1179 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001180 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001183 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /* Have to setup TX_CLK and TX_CRS after software reset */
1186 e1000_phy_reset_clk_and_crs(adapter);
1187
Joe Perches1dc32912008-07-11 15:17:08 -07001188 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* Wait for reset to complete. */
1191 udelay(500);
1192
1193 /* Have to setup TX_CLK and TX_CRS after software reset */
1194 e1000_phy_reset_clk_and_crs(adapter);
1195
1196 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1197 e1000_phy_disable_receiver(adapter);
1198
1199 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001200 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001202 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* Setup TX_CLK and TX_CRS one more time. */
1205 e1000_phy_reset_clk_and_crs(adapter);
1206
1207 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001208 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001209 if (phy_reg != 0x4100)
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001210 return 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Joe Perches1dc32912008-07-11 15:17:08 -07001212 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001213 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return 10;
1215
Joe Perches1dc32912008-07-11 15:17:08 -07001216 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001217 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 return 11;
1219
1220 return 0;
1221}
1222
Joe Perches64798842008-07-11 15:17:02 -07001223static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Joe Perches1dc32912008-07-11 15:17:08 -07001225 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001226 u32 ctrl_reg = 0;
1227 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Joe Perches1dc32912008-07-11 15:17:08 -07001229 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Joe Perches1dc32912008-07-11 15:17:08 -07001231 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001233 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 M88E1000_PHY_SPEC_CTRL, 0x0808);
1235 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001236 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001238 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Joe Perches1dc32912008-07-11 15:17:08 -07001241 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001242
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001243 /* force 1000, set loopback */
1244 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001245
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001246 /* Now set up the MAC to the same speed/duplex as the PHY. */
1247 ctrl_reg = er32(CTRL);
1248 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1249 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1250 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1251 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001252 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Joe Perches1dc32912008-07-11 15:17:08 -07001254 if (hw->media_type == e1000_media_type_copper &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001255 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001257 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /* Set the ILOS bit on the fiber Nic is half
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001259 * duplex link is detected.
1260 */
Joe Perches1dc32912008-07-11 15:17:08 -07001261 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001262 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1264 }
1265
Joe Perches1dc32912008-07-11 15:17:08 -07001266 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /* Disable the receiver on the PHY so when a cable is plugged in, the
1269 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1270 */
Joe Perches1dc32912008-07-11 15:17:08 -07001271 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 e1000_phy_disable_receiver(adapter);
1273
1274 udelay(500);
1275
1276 return 0;
1277}
1278
Joe Perches64798842008-07-11 15:17:02 -07001279static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Joe Perches1dc32912008-07-11 15:17:08 -07001281 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001282 u16 phy_reg = 0;
1283 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Joe Perches1dc32912008-07-11 15:17:08 -07001285 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001287 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /* Attempt to setup Loopback mode on Non-integrated PHY.
1289 * Some PHY registers get corrupted at random, so
1290 * attempt this 10 times.
1291 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001292 while (e1000_nonintegrated_phy_loopback(adapter) &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001293 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001294 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return 0;
1296 }
1297 break;
1298
1299 case e1000_82544:
1300 case e1000_82540:
1301 case e1000_82545:
1302 case e1000_82545_rev_3:
1303 case e1000_82546:
1304 case e1000_82546_rev_3:
1305 case e1000_82541:
1306 case e1000_82541_rev_2:
1307 case e1000_82547:
1308 case e1000_82547_rev_2:
1309 return e1000_integrated_phy_loopback(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 default:
1311 /* Default PHY loopback work is to read the MII
1312 * control register and assert bit 14 (loopback mode).
1313 */
Joe Perches1dc32912008-07-11 15:17:08 -07001314 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001316 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319
1320 return 8;
1321}
1322
Joe Perches64798842008-07-11 15:17:02 -07001323static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Jeff Kirsher49273162006-01-12 16:50:44 -08001325 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001326 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jeff Kirsher49273162006-01-12 16:50:44 -08001328 if (hw->media_type == e1000_media_type_fiber ||
1329 hw->media_type == e1000_media_type_internal_serdes) {
1330 switch (hw->mac_type) {
1331 case e1000_82545:
1332 case e1000_82546:
1333 case e1000_82545_rev_3:
1334 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001336 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001337 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001339 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return 0;
1341 }
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001342 } else if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return e1000_set_phy_loopback(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 return 7;
1347}
1348
Joe Perches64798842008-07-11 15:17:02 -07001349static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Jeff Kirsher49273162006-01-12 16:50:44 -08001351 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001352 u32 rctl;
1353 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Joe Perches1dc32912008-07-11 15:17:08 -07001355 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001357 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Jeff Kirsher49273162006-01-12 16:50:44 -08001359 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001360 case e1000_82545:
1361 case e1000_82546:
1362 case e1000_82545_rev_3:
1363 case e1000_82546_rev_3:
1364 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001365 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001366 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1367 if (phy_reg & MII_CR_LOOPBACK) {
1368 phy_reg &= ~MII_CR_LOOPBACK;
1369 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1370 e1000_phy_reset(hw);
1371 }
1372 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374}
1375
Joe Perches64798842008-07-11 15:17:02 -07001376static void e1000_create_lbtest_frame(struct sk_buff *skb,
1377 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001380 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1382 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1383 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1384}
1385
Florian Westphal13809602014-09-03 13:34:36 +00001386static int e1000_check_lbtest_frame(const unsigned char *data,
Joe Perches64798842008-07-11 15:17:02 -07001387 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001389 frame_size &= ~1;
Florian Westphal13809602014-09-03 13:34:36 +00001390 if (*(data + 3) == 0xFF) {
1391 if ((*(data + frame_size / 2 + 10) == 0xBE) &&
1392 (*(data + frame_size / 2 + 12) == 0xAF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return 0;
1394 }
1395 }
1396 return 13;
1397}
1398
Joe Perches64798842008-07-11 15:17:02 -07001399static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Joe Perches1dc32912008-07-11 15:17:08 -07001401 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001402 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1403 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 struct pci_dev *pdev = adapter->pdev;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001405 int i, j, k, l, lc, good_cnt, ret_val = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001406 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Joe Perches1dc32912008-07-11 15:17:08 -07001408 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001410 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001411 * The idea is to wrap the largest ring a number of times using 64
1412 * send/receive pairs during each loop
1413 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001415 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001416 lc = ((txdr->count / 64) * 2) + 1;
1417 else
1418 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Malli Chilakalae4eff722005-04-28 19:38:30 -07001420 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001421 for (j = 0; j <= lc; j++) { /* loop count loop */
1422 for (i = 0; i < 64; i++) { /* send the packets */
1423 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001424 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001425 dma_sync_single_for_device(&pdev->dev,
1426 txdr->buffer_info[k].dma,
1427 txdr->buffer_info[k].length,
1428 DMA_TO_DEVICE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001429 if (unlikely(++k == txdr->count))
1430 k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001431 }
Joe Perches1dc32912008-07-11 15:17:08 -07001432 ew32(TDT, k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001433 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001434 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001435 time = jiffies; /* set the start time for the receive */
1436 good_cnt = 0;
1437 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001438 dma_sync_single_for_cpu(&pdev->dev,
1439 rxdr->buffer_info[l].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +00001440 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001441 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001442
Malli Chilakalae4eff722005-04-28 19:38:30 -07001443 ret_val = e1000_check_lbtest_frame(
Florian Westphal13809602014-09-03 13:34:36 +00001444 rxdr->buffer_info[l].rxbuf.data +
1445 NET_SKB_PAD + NET_IP_ALIGN,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001446 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001447 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001448 good_cnt++;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001449 if (unlikely(++l == rxdr->count))
1450 l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001451 /* time + 20 msecs (200 msecs on 2.4) is more than
1452 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001453 * exceeded, break and error off
1454 */
Manuel Schölling1aa65f42014-05-23 18:04:17 +00001455 } while (good_cnt < 64 && time_after(time + 20, jiffies));
1456
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001457 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001458 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001459 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001460 }
Asaf Vertzd5c7d7f2015-01-08 06:01:00 +00001461 if (time_after_eq(jiffies, time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001462 ret_val = 14; /* error code for time out error */
1463 break;
1464 }
1465 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return ret_val;
1467}
1468
Joe Perches64798842008-07-11 15:17:02 -07001469static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001471 *data = e1000_setup_desc_rings(adapter);
1472 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001473 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001474 *data = e1000_setup_loopback_test(adapter);
1475 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001476 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 *data = e1000_run_loopback_test(adapter);
1478 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001481 e1000_free_desc_rings(adapter);
1482out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return *data;
1484}
1485
Joe Perches64798842008-07-11 15:17:02 -07001486static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Joe Perches1dc32912008-07-11 15:17:08 -07001488 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001490 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 int i = 0;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001492
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001493 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Malli Chilakala26483452005-04-28 19:44:46 -07001495 /* On some blade server designs, link establishment
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001496 * could take as long as 2-3 minutes
1497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001499 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001500 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001502 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 } while (i++ < 3750);
1504
Malli Chilakala26483452005-04-28 19:44:46 -07001505 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001507 e1000_check_for_link(hw);
1508 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001509 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001511 if (!(er32(STATUS) & E1000_STATUS_LU))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514 return *data;
1515}
1516
Joe Perches64798842008-07-11 15:17:02 -07001517static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001519 switch (sset) {
1520 case ETH_SS_TEST:
1521 return E1000_TEST_LEN;
1522 case ETH_SS_STATS:
1523 return E1000_STATS_LEN;
1524 default:
1525 return -EOPNOTSUPP;
1526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
Joe Perches64798842008-07-11 15:17:02 -07001529static void e1000_diag_test(struct net_device *netdev,
1530 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001532 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001533 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001534 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Auke Kok1314bbf2006-09-27 12:54:02 -07001536 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001537 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 /* Offline tests */
1539
1540 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001541 u16 autoneg_advertised = hw->autoneg_advertised;
1542 u8 forced_speed_duplex = hw->forced_speed_duplex;
1543 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001545 e_info(hw, "offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 /* Link test performed before hardware reset so autoneg doesn't
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001548 * interfere with test result
1549 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001550 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 eth_test->flags |= ETH_TEST_FL_FAILED;
1552
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001553 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001554 /* indicate we're in test mode */
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001555 e1000_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 else
1557 e1000_reset(adapter);
1558
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001559 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 eth_test->flags |= ETH_TEST_FL_FAILED;
1561
1562 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001563 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 eth_test->flags |= ETH_TEST_FL_FAILED;
1565
1566 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001567 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 eth_test->flags |= ETH_TEST_FL_FAILED;
1569
1570 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001571 /* make sure the phy is powered up */
1572 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001573 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 eth_test->flags |= ETH_TEST_FL_FAILED;
1575
1576 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001577 hw->autoneg_advertised = autoneg_advertised;
1578 hw->forced_speed_duplex = forced_speed_duplex;
1579 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001582 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001583 if (if_running)
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001584 e1000_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 } else {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001586 e_info(hw, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001588 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 eth_test->flags |= ETH_TEST_FL_FAILED;
1590
Auke Kok90fb5132006-11-01 08:47:30 -08001591 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 data[0] = 0;
1593 data[1] = 0;
1594 data[2] = 0;
1595 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001596
Auke Kok1314bbf2006-09-27 12:54:02 -07001597 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001599 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Joe Perches64798842008-07-11 15:17:02 -07001602static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1603 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001606 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001608 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001609 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 case E1000_DEV_ID_82543GC_FIBER:
1611 case E1000_DEV_ID_82543GC_COPPER:
1612 case E1000_DEV_ID_82544EI_FIBER:
1613 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1614 case E1000_DEV_ID_82545EM_FIBER:
1615 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001616 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001617 case E1000_DEV_ID_82546GB_PCIE:
1618 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001620 break;
1621 case E1000_DEV_ID_82546EB_FIBER:
1622 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001623 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001624 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001625 wol->supported = 0;
1626 break;
1627 }
1628 /* return success for non excluded adapter ports */
1629 retval = 0;
1630 break;
1631 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1632 /* quad port adapters only support WoL on port A */
1633 if (!adapter->quad_port_a) {
1634 wol->supported = 0;
1635 break;
1636 }
1637 /* return success for non excluded adapter ports */
1638 retval = 0;
1639 break;
1640 default:
1641 /* dual port cards only support WoL on port A from now on
1642 * unless it was enabled in the eeprom for port B
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001643 * so exclude FUNC_1 ports from having WoL enabled
1644 */
Joe Perches1dc32912008-07-11 15:17:08 -07001645 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001646 !adapter->eeprom_wol) {
1647 wol->supported = 0;
1648 break;
1649 }
1650
1651 retval = 0;
1652 }
1653
1654 return retval;
1655}
1656
Joe Perches64798842008-07-11 15:17:02 -07001657static void e1000_get_wol(struct net_device *netdev,
1658 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001659{
1660 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001661 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001662
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001663 wol->supported = WAKE_UCAST | WAKE_MCAST | WAKE_BCAST | WAKE_MAGIC;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001664 wol->wolopts = 0;
1665
1666 /* this function will set ->supported = 0 and return 1 if wol is not
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001667 * supported by this hardware
1668 */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001669 if (e1000_wol_exclusion(adapter, wol) ||
1670 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 return;
1672
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001673 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001674 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001675 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Masanari Iidad7558142012-08-22 18:40:21 +09001676 /* KSP3 does not support UCAST wake-ups */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001677 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001678
1679 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001680 e_err(drv, "Interface does not support directed "
1681 "(unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001682 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001684 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001686
1687 if (adapter->wol & E1000_WUFC_EX)
1688 wol->wolopts |= WAKE_UCAST;
1689 if (adapter->wol & E1000_WUFC_MC)
1690 wol->wolopts |= WAKE_MCAST;
1691 if (adapter->wol & E1000_WUFC_BC)
1692 wol->wolopts |= WAKE_BCAST;
1693 if (adapter->wol & E1000_WUFC_MAG)
1694 wol->wolopts |= WAKE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Joe Perches64798842008-07-11 15:17:02 -07001697static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001699 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 struct e1000_hw *hw = &adapter->hw;
1701
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001702 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1703 return -EOPNOTSUPP;
1704
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001705 if (e1000_wol_exclusion(adapter, wol) ||
1706 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return wol->wolopts ? -EOPNOTSUPP : 0;
1708
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001709 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001710 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001711 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001712 e_err(drv, "Interface does not support directed "
1713 "(unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001714 return -EOPNOTSUPP;
1715 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001718 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001721 /* these settings will always override what we currently have */
1722 adapter->wol = 0;
1723
1724 if (wol->wolopts & WAKE_UCAST)
1725 adapter->wol |= E1000_WUFC_EX;
1726 if (wol->wolopts & WAKE_MCAST)
1727 adapter->wol |= E1000_WUFC_MC;
1728 if (wol->wolopts & WAKE_BCAST)
1729 adapter->wol |= E1000_WUFC_BC;
1730 if (wol->wolopts & WAKE_MAGIC)
1731 adapter->wol |= E1000_WUFC_MAG;
1732
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001733 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return 0;
1736}
1737
Jeff Kirsher64359092011-05-03 05:26:13 +00001738static int e1000_set_phys_id(struct net_device *netdev,
1739 enum ethtool_phys_id_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001741 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001742 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Jeff Kirsher64359092011-05-03 05:26:13 +00001744 switch (state) {
1745 case ETHTOOL_ID_ACTIVE:
1746 e1000_setup_led(hw);
1747 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Jeff Kirsher64359092011-05-03 05:26:13 +00001749 case ETHTOOL_ID_ON:
1750 e1000_led_on(hw);
1751 break;
1752
1753 case ETHTOOL_ID_OFF:
1754 e1000_led_off(hw);
1755 break;
1756
1757 case ETHTOOL_ID_INACTIVE:
1758 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 return 0;
1762}
1763
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001764static int e1000_get_coalesce(struct net_device *netdev,
1765 struct ethtool_coalesce *ec)
1766{
1767 struct e1000_adapter *adapter = netdev_priv(netdev);
1768
1769 if (adapter->hw.mac_type < e1000_82545)
1770 return -EOPNOTSUPP;
1771
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001772 if (adapter->itr_setting <= 4)
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001773 ec->rx_coalesce_usecs = adapter->itr_setting;
1774 else
1775 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1776
1777 return 0;
1778}
1779
1780static int e1000_set_coalesce(struct net_device *netdev,
1781 struct ethtool_coalesce *ec)
1782{
1783 struct e1000_adapter *adapter = netdev_priv(netdev);
1784 struct e1000_hw *hw = &adapter->hw;
1785
1786 if (hw->mac_type < e1000_82545)
1787 return -EOPNOTSUPP;
1788
1789 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001790 ((ec->rx_coalesce_usecs > 4) &&
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001791 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1792 (ec->rx_coalesce_usecs == 2))
1793 return -EINVAL;
1794
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001795 if (ec->rx_coalesce_usecs == 4) {
1796 adapter->itr = adapter->itr_setting = 4;
1797 } else if (ec->rx_coalesce_usecs <= 3) {
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001798 adapter->itr = 20000;
1799 adapter->itr_setting = ec->rx_coalesce_usecs;
1800 } else {
1801 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1802 adapter->itr_setting = adapter->itr & ~3;
1803 }
1804
1805 if (adapter->itr_setting != 0)
1806 ew32(ITR, 1000000000 / (adapter->itr * 256));
1807 else
1808 ew32(ITR, 0);
1809
1810 return 0;
1811}
1812
Joe Perches64798842008-07-11 15:17:02 -07001813static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001815 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001816
Auke Kok2db10a02006-06-27 09:06:28 -07001817 if (netif_running(netdev))
1818 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return 0;
1820}
1821
Joe Perches64798842008-07-11 15:17:02 -07001822static void e1000_get_ethtool_stats(struct net_device *netdev,
1823 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001825 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 int i;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001827 char *p = NULL;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001828 const struct e1000_stats *stat = e1000_gstrings_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001831 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001832 switch (stat->type) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001833 case NETDEV_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001834 p = (char *)netdev + stat->stat_offset;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001835 break;
1836 case E1000_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001837 p = (char *)adapter + stat->stat_offset;
1838 break;
1839 default:
1840 WARN_ONCE(1, "Invalid E1000 stat type: %u index %d\n",
1841 stat->type, i);
Ajit Khaparde8328c382009-10-13 01:45:48 +00001842 break;
1843 }
1844
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001845 if (stat->sizeof_stat == sizeof(u64))
1846 data[i] = *(u64 *)p;
1847 else
1848 data[i] = *(u32 *)p;
1849
1850 stat++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001852/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Joe Perches64798842008-07-11 15:17:02 -07001855static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1856 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Joe Perches406874a2008-04-03 10:06:32 -07001858 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 int i;
1860
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001861 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 case ETH_SS_TEST:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001863 memcpy(data, e1000_gstrings_test, sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 break;
1865 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001866 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1867 memcpy(p, e1000_gstrings_stats[i].stat_string,
1868 ETH_GSTRING_LEN);
1869 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001871 /* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 break;
1873 }
1874}
1875
Jeff Garzik7282d492006-09-13 14:30:00 -04001876static const struct ethtool_ops e1000_ethtool_ops = {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001877 .get_drvinfo = e1000_get_drvinfo,
1878 .get_regs_len = e1000_get_regs_len,
1879 .get_regs = e1000_get_regs,
1880 .get_wol = e1000_get_wol,
1881 .set_wol = e1000_set_wol,
1882 .get_msglevel = e1000_get_msglevel,
1883 .set_msglevel = e1000_set_msglevel,
1884 .nway_reset = e1000_nway_reset,
1885 .get_link = e1000_get_link,
1886 .get_eeprom_len = e1000_get_eeprom_len,
1887 .get_eeprom = e1000_get_eeprom,
1888 .set_eeprom = e1000_set_eeprom,
1889 .get_ringparam = e1000_get_ringparam,
1890 .set_ringparam = e1000_set_ringparam,
1891 .get_pauseparam = e1000_get_pauseparam,
1892 .set_pauseparam = e1000_set_pauseparam,
1893 .self_test = e1000_diag_test,
1894 .get_strings = e1000_get_strings,
1895 .set_phys_id = e1000_set_phys_id,
1896 .get_ethtool_stats = e1000_get_ethtool_stats,
1897 .get_sset_count = e1000_get_sset_count,
1898 .get_coalesce = e1000_get_coalesce,
1899 .set_coalesce = e1000_set_coalesce,
Richard Cochrane10df2c2012-07-22 07:15:40 +00001900 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes5add2f92017-01-21 16:06:03 +01001901 .get_link_ksettings = e1000_get_link_ksettings,
1902 .set_link_ksettings = e1000_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903};
1904
1905void e1000_set_ethtool_ops(struct net_device *netdev)
1906{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001907 netdev->ethtool_ops = &e1000_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}