blob: 73a8aeefb92a46d13a4c73be6cade2c5d694e00f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29/* ethtool support for e1000 */
30
31#include "e1000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
33
Ajit Khaparde8328c382009-10-13 01:45:48 +000034enum {NETDEV_STATS, E1000_STATS};
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036struct e1000_stats {
37 char stat_string[ETH_GSTRING_LEN];
Ajit Khaparde8328c382009-10-13 01:45:48 +000038 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int sizeof_stat;
40 int stat_offset;
41};
42
Ajit Khaparde8328c382009-10-13 01:45:48 +000043#define E1000_STAT(m) E1000_STATS, \
44 sizeof(((struct e1000_adapter *)0)->m), \
45 offsetof(struct e1000_adapter, m)
46#define E1000_NETDEV_STAT(m) NETDEV_STATS, \
47 sizeof(((struct net_device *)0)->m), \
48 offsetof(struct net_device, m)
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static const struct e1000_stats e1000_gstrings_stats[] = {
Mitch Williams49559852006-09-27 12:53:37 -070051 { "rx_packets", E1000_STAT(stats.gprc) },
52 { "tx_packets", E1000_STAT(stats.gptc) },
53 { "rx_bytes", E1000_STAT(stats.gorcl) },
54 { "tx_bytes", E1000_STAT(stats.gotcl) },
55 { "rx_broadcast", E1000_STAT(stats.bprc) },
56 { "tx_broadcast", E1000_STAT(stats.bptc) },
57 { "rx_multicast", E1000_STAT(stats.mprc) },
58 { "tx_multicast", E1000_STAT(stats.mptc) },
59 { "rx_errors", E1000_STAT(stats.rxerrc) },
60 { "tx_errors", E1000_STAT(stats.txerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000061 { "tx_dropped", E1000_NETDEV_STAT(stats.tx_dropped) },
Mitch Williams49559852006-09-27 12:53:37 -070062 { "multicast", E1000_STAT(stats.mprc) },
63 { "collisions", E1000_STAT(stats.colc) },
64 { "rx_length_errors", E1000_STAT(stats.rlerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000065 { "rx_over_errors", E1000_NETDEV_STAT(stats.rx_over_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070066 { "rx_crc_errors", E1000_STAT(stats.crcerrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000067 { "rx_frame_errors", E1000_NETDEV_STAT(stats.rx_frame_errors) },
Malli Chilakala26483452005-04-28 19:44:46 -070068 { "rx_no_buffer_count", E1000_STAT(stats.rnbc) },
Mitch Williams49559852006-09-27 12:53:37 -070069 { "rx_missed_errors", E1000_STAT(stats.mpc) },
70 { "tx_aborted_errors", E1000_STAT(stats.ecol) },
71 { "tx_carrier_errors", E1000_STAT(stats.tncrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000072 { "tx_fifo_errors", E1000_NETDEV_STAT(stats.tx_fifo_errors) },
73 { "tx_heartbeat_errors", E1000_NETDEV_STAT(stats.tx_heartbeat_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070074 { "tx_window_errors", E1000_STAT(stats.latecol) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 { "tx_abort_late_coll", E1000_STAT(stats.latecol) },
76 { "tx_deferred_ok", E1000_STAT(stats.dc) },
77 { "tx_single_coll_ok", E1000_STAT(stats.scc) },
78 { "tx_multi_coll_ok", E1000_STAT(stats.mcc) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080079 { "tx_timeout_count", E1000_STAT(tx_timeout_count) },
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -080080 { "tx_restart_queue", E1000_STAT(restart_queue) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 { "rx_long_length_errors", E1000_STAT(stats.roc) },
82 { "rx_short_length_errors", E1000_STAT(stats.ruc) },
83 { "rx_align_errors", E1000_STAT(stats.algnerrc) },
84 { "tx_tcp_seg_good", E1000_STAT(stats.tsctc) },
85 { "tx_tcp_seg_failed", E1000_STAT(stats.tsctfc) },
86 { "rx_flow_control_xon", E1000_STAT(stats.xonrxc) },
87 { "rx_flow_control_xoff", E1000_STAT(stats.xoffrxc) },
88 { "tx_flow_control_xon", E1000_STAT(stats.xontxc) },
89 { "tx_flow_control_xoff", E1000_STAT(stats.xofftxc) },
90 { "rx_long_byte_count", E1000_STAT(stats.gorcl) },
91 { "rx_csum_offload_good", E1000_STAT(hw_csum_good) },
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -040092 { "rx_csum_offload_errors", E1000_STAT(hw_csum_err) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080093 { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
Jeff Garzik15e376b2006-12-15 11:16:33 -050094 { "tx_smbus", E1000_STAT(stats.mgptc) },
95 { "rx_smbus", E1000_STAT(stats.mgprc) },
96 { "dropped_smbus", E1000_STAT(stats.mgpdc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080098
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080099#define E1000_QUEUE_STATS_LEN 0
Denis Chengff8ac602007-09-02 18:30:18 +0800100#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800101#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
103 "Register test (offline)", "Eeprom test (offline)",
104 "Interrupt test (offline)", "Loopback test (offline)",
105 "Link test (on/offline)"
106};
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +0200107#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Joe Perches64798842008-07-11 15:17:02 -0700109static int e1000_get_settings(struct net_device *netdev,
110 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700112 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct e1000_hw *hw = &adapter->hw;
114
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800115 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 ecmd->supported = (SUPPORTED_10baseT_Half |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000118 SUPPORTED_10baseT_Full |
119 SUPPORTED_100baseT_Half |
120 SUPPORTED_100baseT_Full |
121 SUPPORTED_1000baseT_Full|
122 SUPPORTED_Autoneg |
123 SUPPORTED_TP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 ecmd->advertising = ADVERTISED_TP;
125
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800126 if (hw->autoneg == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 ecmd->advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* the e1000 autoneg seems to match ethtool nicely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 ecmd->advertising |= hw->autoneg_advertised;
130 }
131
132 ecmd->port = PORT_TP;
133 ecmd->phy_address = hw->phy_addr;
134
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800135 if (hw->mac_type == e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 ecmd->transceiver = XCVR_EXTERNAL;
137 else
138 ecmd->transceiver = XCVR_INTERNAL;
139
140 } else {
141 ecmd->supported = (SUPPORTED_1000baseT_Full |
142 SUPPORTED_FIBRE |
143 SUPPORTED_Autoneg);
144
Malli Chilakala012609a2005-06-17 17:43:06 -0700145 ecmd->advertising = (ADVERTISED_1000baseT_Full |
146 ADVERTISED_FIBRE |
147 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 ecmd->port = PORT_FIBRE;
150
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800151 if (hw->mac_type >= e1000_82545)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 ecmd->transceiver = XCVR_INTERNAL;
153 else
154 ecmd->transceiver = XCVR_EXTERNAL;
155 }
156
Joe Perches1dc32912008-07-11 15:17:08 -0700157 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
160 &adapter->link_duplex);
David Decotigny70739492011-04-27 18:32:40 +0000161 ethtool_cmd_speed_set(ecmd, adapter->link_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300163 /* unfortunately FULL_DUPLEX != DUPLEX_FULL
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000164 * and HALF_DUPLEX != DUPLEX_HALF
165 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800166 if (adapter->link_duplex == FULL_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ecmd->duplex = DUPLEX_FULL;
168 else
169 ecmd->duplex = DUPLEX_HALF;
170 } else {
David Decotigny70739492011-04-27 18:32:40 +0000171 ethtool_cmd_speed_set(ecmd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 ecmd->duplex = -1;
173 }
174
175 ecmd->autoneg = ((hw->media_type == e1000_media_type_fiber) ||
176 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000177
178 /* MDI-X => 1; MDI => 0 */
179 if ((hw->media_type == e1000_media_type_copper) &&
180 netif_carrier_ok(netdev))
181 ecmd->eth_tp_mdix = (!!adapter->phy_info.mdix_mode ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000182 ETH_TP_MDI_X : ETH_TP_MDI);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000183 else
184 ecmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
185
186 if (hw->mdix == AUTO_ALL_MODES)
187 ecmd->eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
188 else
189 ecmd->eth_tp_mdix_ctrl = hw->mdix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 0;
191}
192
Joe Perches64798842008-07-11 15:17:02 -0700193static int e1000_set_settings(struct net_device *netdev,
194 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700196 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 struct e1000_hw *hw = &adapter->hw;
198
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000199 /* MDI setting is only allowed when autoneg enabled because
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000200 * some hardware doesn't allow MDI setting when speed or
201 * duplex is forced.
202 */
203 if (ecmd->eth_tp_mdix_ctrl) {
204 if (hw->media_type != e1000_media_type_copper)
205 return -EOPNOTSUPP;
206
207 if ((ecmd->eth_tp_mdix_ctrl != ETH_TP_MDI_AUTO) &&
208 (ecmd->autoneg != AUTONEG_ENABLE)) {
209 e_err(drv, "forcing MDI/MDI-X state is not supported when link speed and/or duplex are forced\n");
210 return -EINVAL;
211 }
212 }
213
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700214 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
215 msleep(1);
216
Jeff Kirsher57128192006-01-12 16:50:28 -0800217 if (ecmd->autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800219 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700220 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
221 ADVERTISED_FIBRE |
222 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800223 else
Jeff Kirsher2f2ca262006-09-27 12:53:40 -0700224 hw->autoneg_advertised = ecmd->advertising |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000225 ADVERTISED_TP |
226 ADVERTISED_Autoneg;
Malli Chilakala012609a2005-06-17 17:43:06 -0700227 ecmd->advertising = hw->autoneg_advertised;
David Decotigny25db0332011-04-27 18:32:39 +0000228 } else {
229 u32 speed = ethtool_cmd_speed(ecmd);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000230 /* calling this overrides forced MDI setting */
David Decotigny14ad2512011-04-27 18:32:43 +0000231 if (e1000_set_spd_dplx(adapter, speed, ecmd->duplex)) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700232 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700234 }
David Decotigny25db0332011-04-27 18:32:39 +0000235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000237 /* MDI-X => 2; MDI => 1; Auto => 3 */
238 if (ecmd->eth_tp_mdix_ctrl) {
239 if (ecmd->eth_tp_mdix_ctrl == ETH_TP_MDI_AUTO)
240 hw->mdix = AUTO_ALL_MODES;
241 else
242 hw->mdix = ecmd->eth_tp_mdix_ctrl;
243 }
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* reset the link */
246
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700247 if (netif_running(adapter->netdev)) {
248 e1000_down(adapter);
249 e1000_up(adapter);
250 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 e1000_reset(adapter);
252
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700253 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255}
256
Nick Nunleyb5481922010-02-03 14:49:28 +0000257static u32 e1000_get_link(struct net_device *netdev)
258{
259 struct e1000_adapter *adapter = netdev_priv(netdev);
260
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000261 /* If the link is not reported up to netdev, interrupts are disabled,
Nick Nunleyb5481922010-02-03 14:49:28 +0000262 * and so the physical link state may have changed since we last
263 * looked. Set get_link_status to make sure that the true link
264 * state is interrogated, rather than pulling a cached and possibly
265 * stale link state from the driver.
266 */
267 if (!netif_carrier_ok(netdev))
268 adapter->hw.get_link_status = 1;
269
270 return e1000_has_link(adapter);
271}
272
Joe Perches64798842008-07-11 15:17:02 -0700273static void e1000_get_pauseparam(struct net_device *netdev,
274 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700276 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct e1000_hw *hw = &adapter->hw;
278
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800279 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800281
Jeff Kirsher11241b12006-09-27 12:53:28 -0700282 if (hw->fc == E1000_FC_RX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 pause->rx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700284 else if (hw->fc == E1000_FC_TX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 pause->tx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700286 else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 pause->rx_pause = 1;
288 pause->tx_pause = 1;
289 }
290}
291
Joe Perches64798842008-07-11 15:17:02 -0700292static int e1000_set_pauseparam(struct net_device *netdev,
293 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700295 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700297 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 adapter->fc_autoneg = pause->autoneg;
300
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700301 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
302 msleep(1);
303
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800304 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700305 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800306 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700307 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800308 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700309 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800310 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700311 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 hw->original_fc = hw->fc;
314
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800315 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700316 if (netif_running(adapter->netdev)) {
317 e1000_down(adapter);
318 e1000_up(adapter);
319 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800321 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700322 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800323 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800324
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700325 clear_bit(__E1000_RESETTING, &adapter->flags);
326 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Joe Perches64798842008-07-11 15:17:02 -0700329static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700331 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return adapter->msg_enable;
333}
334
Joe Perches64798842008-07-11 15:17:02 -0700335static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700337 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 adapter->msg_enable = data;
339}
340
Joe Perches64798842008-07-11 15:17:02 -0700341static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700344 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Joe Perches64798842008-07-11 15:17:02 -0700347static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
348 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700350 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700352 u32 *regs_buff = p;
353 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Joe Perches406874a2008-04-03 10:06:32 -0700355 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
358
Joe Perches1dc32912008-07-11 15:17:08 -0700359 regs_buff[0] = er32(CTRL);
360 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Joe Perches1dc32912008-07-11 15:17:08 -0700362 regs_buff[2] = er32(RCTL);
363 regs_buff[3] = er32(RDLEN);
364 regs_buff[4] = er32(RDH);
365 regs_buff[5] = er32(RDT);
366 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Joe Perches1dc32912008-07-11 15:17:08 -0700368 regs_buff[7] = er32(TCTL);
369 regs_buff[8] = er32(TDLEN);
370 regs_buff[9] = er32(TDH);
371 regs_buff[10] = er32(TDT);
372 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Joe Perches1dc32912008-07-11 15:17:08 -0700374 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800375 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
377 IGP01E1000_PHY_AGC_A);
378 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
379 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700380 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
382 IGP01E1000_PHY_AGC_B);
383 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
384 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700385 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
387 IGP01E1000_PHY_AGC_C);
388 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
389 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700390 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
392 IGP01E1000_PHY_AGC_D);
393 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
394 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700395 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
397 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
398 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
399 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700400 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
402 IGP01E1000_PHY_PCS_INIT_REG);
403 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
404 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700405 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 regs_buff[20] = 0; /* polarity correction enabled (always) */
407 regs_buff[22] = 0; /* phy receive errors (unavailable) */
408 regs_buff[23] = regs_buff[18]; /* mdix mode */
409 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
410 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700411 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700412 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
414 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
415 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700416 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700417 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 regs_buff[18] = regs_buff[13]; /* cable polarity */
419 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
420 regs_buff[20] = regs_buff[17]; /* polarity correction */
421 /* phy receive errors */
422 regs_buff[22] = adapter->phy_stats.receive_errors;
423 regs_buff[23] = regs_buff[13]; /* mdix mode */
424 }
425 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
426 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700427 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800429 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700430 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700431 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433}
434
Joe Perches64798842008-07-11 15:17:02 -0700435static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700437 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700438 struct e1000_hw *hw = &adapter->hw;
439
440 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Joe Perches64798842008-07-11 15:17:02 -0700443static int e1000_get_eeprom(struct net_device *netdev,
444 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700446 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700448 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int first_word, last_word;
450 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700451 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800453 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return -EINVAL;
455
456 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
457
458 first_word = eeprom->offset >> 1;
459 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
460
Joe Perches406874a2008-04-03 10:06:32 -0700461 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800463 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -ENOMEM;
465
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800466 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 ret_val = e1000_read_eeprom(hw, first_word,
468 last_word - first_word + 1,
469 eeprom_buff);
470 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700471 for (i = 0; i < last_word - first_word + 1; i++) {
472 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
473 &eeprom_buff[i]);
474 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
479 /* Device's eeprom is always little-endian, word addressable */
480 for (i = 0; i < last_word - first_word + 1; i++)
481 le16_to_cpus(&eeprom_buff[i]);
482
Joe Perches406874a2008-04-03 10:06:32 -0700483 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000484 eeprom->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 kfree(eeprom_buff);
486
487 return ret_val;
488}
489
Joe Perches64798842008-07-11 15:17:02 -0700490static int e1000_set_eeprom(struct net_device *netdev,
491 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700493 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700495 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 void *ptr;
497 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700498 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800500 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EOPNOTSUPP;
502
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800503 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return -EFAULT;
505
506 max_len = hw->eeprom.word_size * 2;
507
508 first_word = eeprom->offset >> 1;
509 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
510 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800511 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -ENOMEM;
513
514 ptr = (void *)eeprom_buff;
515
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800516 if (eeprom->offset & 1) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000517 /* need read/modify/write of first changed EEPROM word
518 * only the second byte of the word is being modified
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 ret_val = e1000_read_eeprom(hw, first_word, 1,
521 &eeprom_buff[0]);
522 ptr++;
523 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800524 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000525 /* need read/modify/write of last changed EEPROM word
526 * only the first byte of the word is being modified
527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ret_val = e1000_read_eeprom(hw, last_word, 1,
529 &eeprom_buff[last_word - first_word]);
530 }
531
532 /* Device's eeprom is always little-endian, word addressable */
533 for (i = 0; i < last_word - first_word + 1; i++)
534 le16_to_cpus(&eeprom_buff[i]);
535
536 memcpy(ptr, bytes, eeprom->len);
537
538 for (i = 0; i < last_word - first_word + 1; i++)
539 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
540
541 ret_val = e1000_write_eeprom(hw, first_word,
542 last_word - first_word + 1, eeprom_buff);
543
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000544 /* Update the checksum over the first part of the EEPROM if needed */
545 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 e1000_update_eeprom_checksum(hw);
547
548 kfree(eeprom_buff);
549 return ret_val;
550}
551
Joe Perches64798842008-07-11 15:17:02 -0700552static void e1000_get_drvinfo(struct net_device *netdev,
553 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700555 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Rick Jones612a94d2011-11-14 08:13:25 +0000557 strlcpy(drvinfo->driver, e1000_driver_name,
558 sizeof(drvinfo->driver));
559 strlcpy(drvinfo->version, e1000_driver_version,
560 sizeof(drvinfo->version));
Jeff Kirshera2917e22006-01-12 16:51:23 -0800561
Rick Jones612a94d2011-11-14 08:13:25 +0000562 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
563 sizeof(drvinfo->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 drvinfo->regdump_len = e1000_get_regs_len(netdev);
565 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
566}
567
Joe Perches64798842008-07-11 15:17:02 -0700568static void e1000_get_ringparam(struct net_device *netdev,
569 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700571 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700572 struct e1000_hw *hw = &adapter->hw;
573 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400574 struct e1000_tx_ring *txdr = adapter->tx_ring;
575 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
578 E1000_MAX_82544_RXD;
579 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
580 E1000_MAX_82544_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 ring->rx_pending = rxdr->count;
582 ring->tx_pending = txdr->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Joe Perches64798842008-07-11 15:17:02 -0700585static int e1000_set_ringparam(struct net_device *netdev,
586 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700588 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700589 struct e1000_hw *hw = &adapter->hw;
590 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700591 struct e1000_tx_ring *txdr, *tx_old;
592 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800593 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400594
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800595 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
596 return -EINVAL;
597
Auke Kok2db10a02006-06-27 09:06:28 -0700598 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
599 msleep(1);
600
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400601 if (netif_running(adapter->netdev))
602 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 tx_old = adapter->tx_ring;
605 rx_old = adapter->rx_ring;
606
Vasily Averin793fab722006-09-27 12:54:14 -0700607 err = -ENOMEM;
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000608 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring),
609 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700610 if (!txdr)
611 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400612
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000613 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring),
614 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700615 if (!rxdr)
616 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400617
Vasily Averin793fab722006-09-27 12:54:14 -0700618 adapter->tx_ring = txdr;
619 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400620
Joe Perches406874a2008-04-03 10:06:32 -0700621 rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
622 rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000623 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700624 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Joe Perches406874a2008-04-03 10:06:32 -0700626 txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
627 txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000628 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700629 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800631 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400632 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800633 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400634 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400635
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800636 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700638 err = e1000_setup_all_rx_resources(adapter);
639 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700641 err = e1000_setup_all_tx_resources(adapter);
642 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto err_setup_tx;
644
645 /* save the new, restore the old in order to free it,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000646 * then restore the new back again
647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 adapter->rx_ring = rx_old;
650 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400651 e1000_free_all_rx_resources(adapter);
652 e1000_free_all_tx_resources(adapter);
653 kfree(tx_old);
654 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700655 adapter->rx_ring = rxdr;
656 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700657 err = e1000_up(adapter);
658 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700659 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
Auke Kok2db10a02006-06-27 09:06:28 -0700662 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400665 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666err_setup_rx:
667 adapter->rx_ring = rx_old;
668 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700669 kfree(rxdr);
670err_alloc_rx:
671 kfree(txdr);
672err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700674err_setup:
675 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return err;
677}
678
Joe Perches64798842008-07-11 15:17:02 -0700679static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
680 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800681{
Joe Perches1dc32912008-07-11 15:17:08 -0700682 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700683 static const u32 test[] =
Joe Perches7e643002007-11-13 20:52:05 -0800684 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Joe Perches1dc32912008-07-11 15:17:08 -0700685 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700686 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800687 int i;
688
689 for (i = 0; i < ARRAY_SIZE(test); i++) {
690 writel(write & test[i], address);
691 read = readl(address);
692 if (read != (write & test[i] & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700693 e_err(drv, "pattern test reg %04X failed: "
694 "got 0x%08X expected 0x%08X\n",
695 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800696 *data = reg;
697 return true;
698 }
699 }
700 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Joe Perches64798842008-07-11 15:17:02 -0700703static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
704 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800705{
Joe Perches1dc32912008-07-11 15:17:08 -0700706 struct e1000_hw *hw = &adapter->hw;
707 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700708 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800709
710 writel(write & mask, address);
711 read = readl(address);
712 if ((read & mask) != (write & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700713 e_err(drv, "set/check reg %04X test failed: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000714 "got 0x%08X expected 0x%08X\n",
715 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800716 *data = reg;
717 return true;
718 }
719 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Joe Perches7e643002007-11-13 20:52:05 -0800722#define REG_PATTERN_TEST(reg, mask, write) \
723 do { \
724 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700725 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800726 ? E1000_##reg : E1000_82542_##reg, \
727 mask, write)) \
728 return 1; \
729 } while (0)
730
731#define REG_SET_AND_CHECK(reg, mask, write) \
732 do { \
733 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700734 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800735 ? E1000_##reg : E1000_82542_##reg, \
736 mask, write)) \
737 return 1; \
738 } while (0)
739
Joe Perches64798842008-07-11 15:17:02 -0700740static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Joe Perches406874a2008-04-03 10:06:32 -0700742 u32 value, before, after;
743 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700744 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* The status register is Read Only, so a write should fail.
747 * Some bits that get toggled are ignored.
748 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000749
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400750 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000751 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700752
Joe Perches1dc32912008-07-11 15:17:08 -0700753 before = er32(STATUS);
754 value = (er32(STATUS) & toggle);
755 ew32(STATUS, toggle);
756 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800757 if (value != after) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700758 e_err(drv, "failed STATUS register test got: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000759 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *data = 1;
761 return 1;
762 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700763 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700764 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800765
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000766 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
767 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
768 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
769 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
772 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
773 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
774 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
775 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
776 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
777 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
778 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
779 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
780 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
781
782 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800783
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000784 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700785 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
787
Joe Perches1dc32912008-07-11 15:17:08 -0700788 if (hw->mac_type >= e1000_82543) {
Auke Kokcd94dd02006-06-27 09:08:22 -0700789 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000791 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
793 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000794 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700795 for (i = 0; i < value; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
Auke Kok90fb5132006-11-01 08:47:30 -0800797 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
801 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
802 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
803 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000806 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700807 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
809
810 *data = 0;
811 return 0;
812}
813
Joe Perches64798842008-07-11 15:17:02 -0700814static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Joe Perches1dc32912008-07-11 15:17:08 -0700816 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700817 u16 temp;
818 u16 checksum = 0;
819 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 *data = 0;
822 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800823 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700824 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 *data = 1;
826 break;
827 }
828 checksum += temp;
829 }
830
831 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700832 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 *data = 2;
834
835 return *data;
836}
837
Joe Perches64798842008-07-11 15:17:02 -0700838static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Joe Perchese982f172008-07-11 15:17:18 -0700840 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700841 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700842 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Joe Perches1dc32912008-07-11 15:17:08 -0700844 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 return IRQ_HANDLED;
847}
848
Joe Perches64798842008-07-11 15:17:02 -0700849static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700852 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700853 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700854 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700855 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 *data = 0;
858
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000859 /* NOTE: we don't test MSI interrupts here, yet
860 * Hook up test interrupt handler just for this test
861 */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800862 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000863 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700864 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800865 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000866 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 *data = 1;
868 return -1;
869 }
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700870 e_info(hw, "testing %s interrupt\n", (shared_int ?
871 "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700874 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000875 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400876 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800879 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 /* Interrupt to test */
882 mask = 1 << i;
883
Auke Kok76c224b2006-05-23 13:36:06 -0700884 if (!shared_int) {
885 /* Disable the interrupt to be reported in
886 * the cause register and then force the same
887 * interrupt and see if one gets posted. If
888 * an interrupt was posted to the bus, the
889 * test failed.
890 */
891 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700892 ew32(IMC, mask);
893 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000894 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400895 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800896
Auke Kok76c224b2006-05-23 13:36:06 -0700897 if (adapter->test_icr & mask) {
898 *data = 3;
899 break;
900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 /* Enable the interrupt to be reported in
904 * the cause register and then force the same
905 * interrupt and see if one gets posted. If
906 * an interrupt was not posted to the bus, the
907 * test failed.
908 */
909 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700910 ew32(IMS, mask);
911 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000912 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400913 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800915 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 *data = 4;
917 break;
918 }
919
Auke Kok76c224b2006-05-23 13:36:06 -0700920 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 /* Disable the other interrupts to be reported in
922 * the cause register and then force the other
923 * interrupts and see if any get posted. If
924 * an interrupt was posted to the bus, the
925 * test failed.
926 */
927 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700928 ew32(IMC, ~mask & 0x00007FFF);
929 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000930 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400931 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800933 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 *data = 5;
935 break;
936 }
937 }
938 }
939
940 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700941 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000942 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400943 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 /* Unhook test interrupt handler */
946 free_irq(irq, netdev);
947
948 return *data;
949}
950
Joe Perches64798842008-07-11 15:17:02 -0700951static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400953 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
954 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct pci_dev *pdev = adapter->pdev;
956 int i;
957
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800958 if (txdr->desc && txdr->buffer_info) {
959 for (i = 0; i < txdr->count; i++) {
960 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000961 dma_unmap_single(&pdev->dev,
962 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000964 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800965 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 dev_kfree_skb(txdr->buffer_info[i].skb);
967 }
968 }
969
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800970 if (rxdr->desc && rxdr->buffer_info) {
971 for (i = 0; i < rxdr->count; i++) {
972 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000973 dma_unmap_single(&pdev->dev,
974 rxdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 rxdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000976 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800977 if (rxdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dev_kfree_skb(rxdr->buffer_info[i].skb);
979 }
980 }
981
Jeff Kirsherf5645112006-01-12 16:51:01 -0800982 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000983 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
984 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500985 txdr->desc = NULL;
986 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800987 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000988 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
989 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500990 rxdr->desc = NULL;
991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400993 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500994 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400995 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500996 rxdr->buffer_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Joe Perches64798842008-07-11 15:17:02 -0700999static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Joe Perches1dc32912008-07-11 15:17:08 -07001001 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001002 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1003 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -07001005 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -08001006 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 /* Setup Tx descriptor ring and Tx buffers */
1009
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001010 if (!txdr->count)
1011 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Joe Perchesc7be73b2008-07-11 15:17:28 -07001013 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
1014 GFP_KERNEL);
1015 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 ret_val = 1;
1017 goto err_nomem;
1018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001021 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesede23fa82013-08-26 22:45:23 -07001022 txdr->desc = dma_zalloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1023 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001024 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 ret_val = 2;
1026 goto err_nomem;
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 txdr->next_to_use = txdr->next_to_clean = 0;
1029
Joe Perchese982f172008-07-11 15:17:18 -07001030 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1031 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001032 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1033 ew32(TDH, 0);
1034 ew32(TDT, 0);
1035 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1036 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1037 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001039 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1041 struct sk_buff *skb;
1042 unsigned int size = 1024;
1043
Joe Perchesc7be73b2008-07-11 15:17:28 -07001044 skb = alloc_skb(size, GFP_KERNEL);
1045 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 ret_val = 3;
1047 goto err_nomem;
1048 }
1049 skb_put(skb, size);
1050 txdr->buffer_info[i].skb = skb;
1051 txdr->buffer_info[i].length = skb->len;
1052 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001053 dma_map_single(&pdev->dev, skb->data, skb->len,
1054 DMA_TO_DEVICE);
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001055 if (dma_mapping_error(&pdev->dev, txdr->buffer_info[i].dma)) {
1056 ret_val = 4;
1057 goto err_nomem;
1058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1060 tx_desc->lower.data = cpu_to_le32(skb->len);
1061 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1062 E1000_TXD_CMD_IFCS |
1063 E1000_TXD_CMD_RPS);
1064 tx_desc->upper.data = 0;
1065 }
1066
1067 /* Setup Rx descriptor ring and Rx buffers */
1068
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001069 if (!rxdr->count)
1070 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Joe Perchesc7be73b2008-07-11 15:17:28 -07001072 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1073 GFP_KERNEL);
1074 if (!rxdr->buffer_info) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001075 ret_val = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 goto err_nomem;
1077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesede23fa82013-08-26 22:45:23 -07001080 rxdr->desc = dma_zalloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1081 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001082 if (!rxdr->desc) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001083 ret_val = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 goto err_nomem;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 rxdr->next_to_use = rxdr->next_to_clean = 0;
1087
Joe Perches1dc32912008-07-11 15:17:08 -07001088 rctl = er32(RCTL);
1089 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001090 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1091 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001092 ew32(RDLEN, rxdr->size);
1093 ew32(RDH, 0);
1094 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1096 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001097 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1098 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001100 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1102 struct sk_buff *skb;
1103
Joe Perchesc7be73b2008-07-11 15:17:28 -07001104 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1105 if (!skb) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001106 ret_val = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 goto err_nomem;
1108 }
1109 skb_reserve(skb, NET_IP_ALIGN);
1110 rxdr->buffer_info[i].skb = skb;
1111 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1112 rxdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001113 dma_map_single(&pdev->dev, skb->data,
1114 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001115 if (dma_mapping_error(&pdev->dev, rxdr->buffer_info[i].dma)) {
1116 ret_val = 8;
1117 goto err_nomem;
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1120 memset(skb->data, 0x00, skb->len);
1121 }
1122
1123 return 0;
1124
1125err_nomem:
1126 e1000_free_desc_rings(adapter);
1127 return ret_val;
1128}
1129
Joe Perches64798842008-07-11 15:17:02 -07001130static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Joe Perches1dc32912008-07-11 15:17:08 -07001132 struct e1000_hw *hw = &adapter->hw;
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001135 e1000_write_phy_reg(hw, 29, 0x001F);
1136 e1000_write_phy_reg(hw, 30, 0x8FFC);
1137 e1000_write_phy_reg(hw, 29, 0x001A);
1138 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Joe Perches64798842008-07-11 15:17:02 -07001141static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Joe Perches1dc32912008-07-11 15:17:08 -07001143 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001144 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1147 * Extended PHY Specific Control Register to 25MHz clock. This
1148 * value defaults back to a 2.5MHz clock when the PHY is reset.
1149 */
Joe Perches1dc32912008-07-11 15:17:08 -07001150 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Joe Perches1dc32912008-07-11 15:17:08 -07001152 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1154
1155 /* In addition, because of the s/w reset above, we need to enable
1156 * CRS on TX. This must be set for both full and half duplex
1157 * operation.
1158 */
Joe Perches1dc32912008-07-11 15:17:08 -07001159 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Joe Perches1dc32912008-07-11 15:17:08 -07001161 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 M88E1000_PHY_SPEC_CTRL, phy_reg);
1163}
1164
Joe Perches64798842008-07-11 15:17:02 -07001165static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Joe Perches1dc32912008-07-11 15:17:08 -07001167 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001168 u32 ctrl_reg;
1169 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 /* Setup the Device Control Register for PHY loopback test. */
1172
Joe Perches1dc32912008-07-11 15:17:08 -07001173 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1175 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1176 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1177 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1178 E1000_CTRL_FD); /* Force Duplex to FULL */
1179
Joe Perches1dc32912008-07-11 15:17:08 -07001180 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001183 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /* Clear Auto-Crossover bits in PHY Specific Control Register
1186 * (bits 6:5).
1187 */
1188 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001189 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001192 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* Have to setup TX_CLK and TX_CRS after software reset */
1195 e1000_phy_reset_clk_and_crs(adapter);
1196
Joe Perches1dc32912008-07-11 15:17:08 -07001197 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* Wait for reset to complete. */
1200 udelay(500);
1201
1202 /* Have to setup TX_CLK and TX_CRS after software reset */
1203 e1000_phy_reset_clk_and_crs(adapter);
1204
1205 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1206 e1000_phy_disable_receiver(adapter);
1207
1208 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001209 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001211 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /* Setup TX_CLK and TX_CRS one more time. */
1214 e1000_phy_reset_clk_and_crs(adapter);
1215
1216 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001217 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001218 if (phy_reg != 0x4100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return 9;
1220
Joe Perches1dc32912008-07-11 15:17:08 -07001221 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001222 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return 10;
1224
Joe Perches1dc32912008-07-11 15:17:08 -07001225 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001226 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return 11;
1228
1229 return 0;
1230}
1231
Joe Perches64798842008-07-11 15:17:02 -07001232static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Joe Perches1dc32912008-07-11 15:17:08 -07001234 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001235 u32 ctrl_reg = 0;
1236 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Joe Perches1dc32912008-07-11 15:17:08 -07001238 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Joe Perches1dc32912008-07-11 15:17:08 -07001240 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001242 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 M88E1000_PHY_SPEC_CTRL, 0x0808);
1244 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001245 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001247 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Joe Perches1dc32912008-07-11 15:17:08 -07001250 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001251
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001252 /* force 1000, set loopback */
1253 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001254
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001255 /* Now set up the MAC to the same speed/duplex as the PHY. */
1256 ctrl_reg = er32(CTRL);
1257 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1258 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1259 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1260 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001261 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Joe Perches1dc32912008-07-11 15:17:08 -07001263 if (hw->media_type == e1000_media_type_copper &&
1264 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001266 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /* Set the ILOS bit on the fiber Nic is half
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001268 * duplex link is detected.
1269 */
Joe Perches1dc32912008-07-11 15:17:08 -07001270 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001271 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1273 }
1274
Joe Perches1dc32912008-07-11 15:17:08 -07001275 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 /* Disable the receiver on the PHY so when a cable is plugged in, the
1278 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1279 */
Joe Perches1dc32912008-07-11 15:17:08 -07001280 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 e1000_phy_disable_receiver(adapter);
1282
1283 udelay(500);
1284
1285 return 0;
1286}
1287
Joe Perches64798842008-07-11 15:17:02 -07001288static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Joe Perches1dc32912008-07-11 15:17:08 -07001290 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001291 u16 phy_reg = 0;
1292 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Joe Perches1dc32912008-07-11 15:17:08 -07001294 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001296 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* Attempt to setup Loopback mode on Non-integrated PHY.
1298 * Some PHY registers get corrupted at random, so
1299 * attempt this 10 times.
1300 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001301 while (e1000_nonintegrated_phy_loopback(adapter) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001303 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return 0;
1305 }
1306 break;
1307
1308 case e1000_82544:
1309 case e1000_82540:
1310 case e1000_82545:
1311 case e1000_82545_rev_3:
1312 case e1000_82546:
1313 case e1000_82546_rev_3:
1314 case e1000_82541:
1315 case e1000_82541_rev_2:
1316 case e1000_82547:
1317 case e1000_82547_rev_2:
1318 return e1000_integrated_phy_loopback(adapter);
1319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 default:
1321 /* Default PHY loopback work is to read the MII
1322 * control register and assert bit 14 (loopback mode).
1323 */
Joe Perches1dc32912008-07-11 15:17:08 -07001324 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001326 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return 0;
1328 break;
1329 }
1330
1331 return 8;
1332}
1333
Joe Perches64798842008-07-11 15:17:02 -07001334static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
Jeff Kirsher49273162006-01-12 16:50:44 -08001336 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001337 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Jeff Kirsher49273162006-01-12 16:50:44 -08001339 if (hw->media_type == e1000_media_type_fiber ||
1340 hw->media_type == e1000_media_type_internal_serdes) {
1341 switch (hw->mac_type) {
1342 case e1000_82545:
1343 case e1000_82546:
1344 case e1000_82545_rev_3:
1345 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001347 break;
Jeff Kirsher49273162006-01-12 16:50:44 -08001348 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001349 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001351 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return 0;
1353 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001354 } else if (hw->media_type == e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return e1000_set_phy_loopback(adapter);
1356
1357 return 7;
1358}
1359
Joe Perches64798842008-07-11 15:17:02 -07001360static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Jeff Kirsher49273162006-01-12 16:50:44 -08001362 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001363 u32 rctl;
1364 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Joe Perches1dc32912008-07-11 15:17:08 -07001366 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001368 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Jeff Kirsher49273162006-01-12 16:50:44 -08001370 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001371 case e1000_82545:
1372 case e1000_82546:
1373 case e1000_82545_rev_3:
1374 case e1000_82546_rev_3:
1375 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001376 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001377 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1378 if (phy_reg & MII_CR_LOOPBACK) {
1379 phy_reg &= ~MII_CR_LOOPBACK;
1380 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1381 e1000_phy_reset(hw);
1382 }
1383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385}
1386
Joe Perches64798842008-07-11 15:17:02 -07001387static void e1000_create_lbtest_frame(struct sk_buff *skb,
1388 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001391 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1393 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1394 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1395}
1396
Joe Perches64798842008-07-11 15:17:02 -07001397static int e1000_check_lbtest_frame(struct sk_buff *skb,
1398 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001400 frame_size &= ~1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001401 if (*(skb->data + 3) == 0xFF) {
1402 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1404 return 0;
1405 }
1406 }
1407 return 13;
1408}
1409
Joe Perches64798842008-07-11 15:17:02 -07001410static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Joe Perches1dc32912008-07-11 15:17:08 -07001412 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001413 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1414 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 struct pci_dev *pdev = adapter->pdev;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001416 int i, j, k, l, lc, good_cnt, ret_val=0;
1417 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Joe Perches1dc32912008-07-11 15:17:08 -07001419 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001421 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001422 * The idea is to wrap the largest ring a number of times using 64
1423 * send/receive pairs during each loop
1424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001426 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001427 lc = ((txdr->count / 64) * 2) + 1;
1428 else
1429 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Malli Chilakalae4eff722005-04-28 19:38:30 -07001431 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001432 for (j = 0; j <= lc; j++) { /* loop count loop */
1433 for (i = 0; i < 64; i++) { /* send the packets */
1434 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001435 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001436 dma_sync_single_for_device(&pdev->dev,
1437 txdr->buffer_info[k].dma,
1438 txdr->buffer_info[k].length,
1439 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001440 if (unlikely(++k == txdr->count)) k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001441 }
Joe Perches1dc32912008-07-11 15:17:08 -07001442 ew32(TDT, k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001443 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001444 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001445 time = jiffies; /* set the start time for the receive */
1446 good_cnt = 0;
1447 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001448 dma_sync_single_for_cpu(&pdev->dev,
1449 rxdr->buffer_info[l].dma,
1450 rxdr->buffer_info[l].length,
1451 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001452
Malli Chilakalae4eff722005-04-28 19:38:30 -07001453 ret_val = e1000_check_lbtest_frame(
1454 rxdr->buffer_info[l].skb,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001455 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001456 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001457 good_cnt++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001458 if (unlikely(++l == rxdr->count)) l = 0;
1459 /* time + 20 msecs (200 msecs on 2.4) is more than
1460 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001461 * exceeded, break and error off
1462 */
1463 } while (good_cnt < 64 && jiffies < (time + 20));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001464 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001465 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001466 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001467 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001468 if (jiffies >= (time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001469 ret_val = 14; /* error code for time out error */
1470 break;
1471 }
1472 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return ret_val;
1474}
1475
Joe Perches64798842008-07-11 15:17:02 -07001476static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001478 *data = e1000_setup_desc_rings(adapter);
1479 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001480 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001481 *data = e1000_setup_loopback_test(adapter);
1482 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001483 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 *data = e1000_run_loopback_test(adapter);
1485 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001488 e1000_free_desc_rings(adapter);
1489out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return *data;
1491}
1492
Joe Perches64798842008-07-11 15:17:02 -07001493static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Joe Perches1dc32912008-07-11 15:17:08 -07001495 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001497 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 int i = 0;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001499 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Malli Chilakala26483452005-04-28 19:44:46 -07001501 /* On some blade server designs, link establishment
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001502 * could take as long as 2-3 minutes
1503 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001505 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001506 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001508 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 } while (i++ < 3750);
1510
Malli Chilakala26483452005-04-28 19:44:46 -07001511 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001513 e1000_check_for_link(hw);
1514 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001515 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Joe Perches1dc32912008-07-11 15:17:08 -07001517 if (!(er32(STATUS) & E1000_STATUS_LU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 *data = 1;
1519 }
1520 }
1521 return *data;
1522}
1523
Joe Perches64798842008-07-11 15:17:02 -07001524static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001526 switch (sset) {
1527 case ETH_SS_TEST:
1528 return E1000_TEST_LEN;
1529 case ETH_SS_STATS:
1530 return E1000_STATS_LEN;
1531 default:
1532 return -EOPNOTSUPP;
1533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Joe Perches64798842008-07-11 15:17:02 -07001536static void e1000_diag_test(struct net_device *netdev,
1537 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001539 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001540 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001541 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Auke Kok1314bbf2006-09-27 12:54:02 -07001543 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001544 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /* Offline tests */
1546
1547 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001548 u16 autoneg_advertised = hw->autoneg_advertised;
1549 u8 forced_speed_duplex = hw->forced_speed_duplex;
1550 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001552 e_info(hw, "offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* Link test performed before hardware reset so autoneg doesn't
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001555 * interfere with test result
1556 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001557 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 eth_test->flags |= ETH_TEST_FL_FAILED;
1559
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001560 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001561 /* indicate we're in test mode */
1562 dev_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 else
1564 e1000_reset(adapter);
1565
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001566 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 eth_test->flags |= ETH_TEST_FL_FAILED;
1568
1569 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001570 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 eth_test->flags |= ETH_TEST_FL_FAILED;
1572
1573 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001574 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 eth_test->flags |= ETH_TEST_FL_FAILED;
1576
1577 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001578 /* make sure the phy is powered up */
1579 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001580 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 eth_test->flags |= ETH_TEST_FL_FAILED;
1582
1583 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001584 hw->autoneg_advertised = autoneg_advertised;
1585 hw->forced_speed_duplex = forced_speed_duplex;
1586 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001589 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001590 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001591 dev_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 } else {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001593 e_info(hw, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001595 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 eth_test->flags |= ETH_TEST_FL_FAILED;
1597
Auke Kok90fb5132006-11-01 08:47:30 -08001598 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 data[0] = 0;
1600 data[1] = 0;
1601 data[2] = 0;
1602 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001603
Auke Kok1314bbf2006-09-27 12:54:02 -07001604 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001606 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
Joe Perches64798842008-07-11 15:17:02 -07001609static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1610 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001613 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001615 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001616 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 case E1000_DEV_ID_82543GC_FIBER:
1618 case E1000_DEV_ID_82543GC_COPPER:
1619 case E1000_DEV_ID_82544EI_FIBER:
1620 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1621 case E1000_DEV_ID_82545EM_FIBER:
1622 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001623 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001624 case E1000_DEV_ID_82546GB_PCIE:
1625 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001627 break;
1628 case E1000_DEV_ID_82546EB_FIBER:
1629 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001630 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001631 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001632 wol->supported = 0;
1633 break;
1634 }
1635 /* return success for non excluded adapter ports */
1636 retval = 0;
1637 break;
1638 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1639 /* quad port adapters only support WoL on port A */
1640 if (!adapter->quad_port_a) {
1641 wol->supported = 0;
1642 break;
1643 }
1644 /* return success for non excluded adapter ports */
1645 retval = 0;
1646 break;
1647 default:
1648 /* dual port cards only support WoL on port A from now on
1649 * unless it was enabled in the eeprom for port B
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001650 * so exclude FUNC_1 ports from having WoL enabled
1651 */
Joe Perches1dc32912008-07-11 15:17:08 -07001652 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001653 !adapter->eeprom_wol) {
1654 wol->supported = 0;
1655 break;
1656 }
1657
1658 retval = 0;
1659 }
1660
1661 return retval;
1662}
1663
Joe Perches64798842008-07-11 15:17:02 -07001664static void e1000_get_wol(struct net_device *netdev,
1665 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001666{
1667 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001668 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001669
1670 wol->supported = WAKE_UCAST | WAKE_MCAST |
1671 WAKE_BCAST | WAKE_MAGIC;
1672 wol->wolopts = 0;
1673
1674 /* this function will set ->supported = 0 and return 1 if wol is not
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001675 * supported by this hardware
1676 */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001677 if (e1000_wol_exclusion(adapter, wol) ||
1678 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return;
1680
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001681 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001682 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001683 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Masanari Iidad7558142012-08-22 18:40:21 +09001684 /* KSP3 does not support UCAST wake-ups */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001685 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001686
1687 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001688 e_err(drv, "Interface does not support directed "
1689 "(unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001692 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001694
1695 if (adapter->wol & E1000_WUFC_EX)
1696 wol->wolopts |= WAKE_UCAST;
1697 if (adapter->wol & E1000_WUFC_MC)
1698 wol->wolopts |= WAKE_MCAST;
1699 if (adapter->wol & E1000_WUFC_BC)
1700 wol->wolopts |= WAKE_BCAST;
1701 if (adapter->wol & E1000_WUFC_MAG)
1702 wol->wolopts |= WAKE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
Joe Perches64798842008-07-11 15:17:02 -07001705static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001707 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 struct e1000_hw *hw = &adapter->hw;
1709
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001710 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1711 return -EOPNOTSUPP;
1712
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001713 if (e1000_wol_exclusion(adapter, wol) ||
1714 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return wol->wolopts ? -EOPNOTSUPP : 0;
1716
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001717 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001718 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001719 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001720 e_err(drv, "Interface does not support directed "
1721 "(unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001722 return -EOPNOTSUPP;
1723 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001724 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001729 /* these settings will always override what we currently have */
1730 adapter->wol = 0;
1731
1732 if (wol->wolopts & WAKE_UCAST)
1733 adapter->wol |= E1000_WUFC_EX;
1734 if (wol->wolopts & WAKE_MCAST)
1735 adapter->wol |= E1000_WUFC_MC;
1736 if (wol->wolopts & WAKE_BCAST)
1737 adapter->wol |= E1000_WUFC_BC;
1738 if (wol->wolopts & WAKE_MAGIC)
1739 adapter->wol |= E1000_WUFC_MAG;
1740
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001741 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return 0;
1744}
1745
Jeff Kirsher64359092011-05-03 05:26:13 +00001746static int e1000_set_phys_id(struct net_device *netdev,
1747 enum ethtool_phys_id_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001749 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001750 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Jeff Kirsher64359092011-05-03 05:26:13 +00001752 switch (state) {
1753 case ETHTOOL_ID_ACTIVE:
1754 e1000_setup_led(hw);
1755 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Jeff Kirsher64359092011-05-03 05:26:13 +00001757 case ETHTOOL_ID_ON:
1758 e1000_led_on(hw);
1759 break;
1760
1761 case ETHTOOL_ID_OFF:
1762 e1000_led_off(hw);
1763 break;
1764
1765 case ETHTOOL_ID_INACTIVE:
1766 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 return 0;
1770}
1771
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001772static int e1000_get_coalesce(struct net_device *netdev,
1773 struct ethtool_coalesce *ec)
1774{
1775 struct e1000_adapter *adapter = netdev_priv(netdev);
1776
1777 if (adapter->hw.mac_type < e1000_82545)
1778 return -EOPNOTSUPP;
1779
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001780 if (adapter->itr_setting <= 4)
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001781 ec->rx_coalesce_usecs = adapter->itr_setting;
1782 else
1783 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1784
1785 return 0;
1786}
1787
1788static int e1000_set_coalesce(struct net_device *netdev,
1789 struct ethtool_coalesce *ec)
1790{
1791 struct e1000_adapter *adapter = netdev_priv(netdev);
1792 struct e1000_hw *hw = &adapter->hw;
1793
1794 if (hw->mac_type < e1000_82545)
1795 return -EOPNOTSUPP;
1796
1797 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001798 ((ec->rx_coalesce_usecs > 4) &&
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001799 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1800 (ec->rx_coalesce_usecs == 2))
1801 return -EINVAL;
1802
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001803 if (ec->rx_coalesce_usecs == 4) {
1804 adapter->itr = adapter->itr_setting = 4;
1805 } else if (ec->rx_coalesce_usecs <= 3) {
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001806 adapter->itr = 20000;
1807 adapter->itr_setting = ec->rx_coalesce_usecs;
1808 } else {
1809 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1810 adapter->itr_setting = adapter->itr & ~3;
1811 }
1812
1813 if (adapter->itr_setting != 0)
1814 ew32(ITR, 1000000000 / (adapter->itr * 256));
1815 else
1816 ew32(ITR, 0);
1817
1818 return 0;
1819}
1820
Joe Perches64798842008-07-11 15:17:02 -07001821static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001823 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok2db10a02006-06-27 09:06:28 -07001824 if (netif_running(netdev))
1825 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return 0;
1827}
1828
Joe Perches64798842008-07-11 15:17:02 -07001829static void e1000_get_ethtool_stats(struct net_device *netdev,
1830 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001832 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 int i;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001834 char *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001837 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001838 switch (e1000_gstrings_stats[i].type) {
1839 case NETDEV_STATS:
1840 p = (char *) netdev +
1841 e1000_gstrings_stats[i].stat_offset;
1842 break;
1843 case E1000_STATS:
1844 p = (char *) adapter +
1845 e1000_gstrings_stats[i].stat_offset;
1846 break;
1847 }
1848
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001849 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Joe Perches406874a2008-04-03 10:06:32 -07001850 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
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:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001863 memcpy(data, *e1000_gstrings_test,
Roel Kluinc32bc6e2007-12-05 11:57:30 -08001864 sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 break;
1866 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001867 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1868 memcpy(p, e1000_gstrings_stats[i].stat_string,
1869 ETH_GSTRING_LEN);
1870 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001872 /* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 break;
1874 }
1875}
1876
Jeff Garzik7282d492006-09-13 14:30:00 -04001877static const struct ethtool_ops e1000_ethtool_ops = {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001878 .get_settings = e1000_get_settings,
1879 .set_settings = e1000_set_settings,
1880 .get_drvinfo = e1000_get_drvinfo,
1881 .get_regs_len = e1000_get_regs_len,
1882 .get_regs = e1000_get_regs,
1883 .get_wol = e1000_get_wol,
1884 .set_wol = e1000_set_wol,
1885 .get_msglevel = e1000_get_msglevel,
1886 .set_msglevel = e1000_set_msglevel,
1887 .nway_reset = e1000_nway_reset,
1888 .get_link = e1000_get_link,
1889 .get_eeprom_len = e1000_get_eeprom_len,
1890 .get_eeprom = e1000_get_eeprom,
1891 .set_eeprom = e1000_set_eeprom,
1892 .get_ringparam = e1000_get_ringparam,
1893 .set_ringparam = e1000_set_ringparam,
1894 .get_pauseparam = e1000_get_pauseparam,
1895 .set_pauseparam = e1000_set_pauseparam,
1896 .self_test = e1000_diag_test,
1897 .get_strings = e1000_get_strings,
1898 .set_phys_id = e1000_set_phys_id,
1899 .get_ethtool_stats = e1000_get_ethtool_stats,
1900 .get_sset_count = e1000_get_sset_count,
1901 .get_coalesce = e1000_get_coalesce,
1902 .set_coalesce = e1000_set_coalesce,
Richard Cochrane10df2c2012-07-22 07:15:40 +00001903 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904};
1905
1906void e1000_set_ethtool_ops(struct net_device *netdev)
1907{
1908 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1909}