blob: 3103f0b6bf5ef02d0e6a980a2fbd4806a897e7d3 [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 |
118 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * 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;
177 return 0;
178}
179
Joe Perches64798842008-07-11 15:17:02 -0700180static int e1000_set_settings(struct net_device *netdev,
181 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700183 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct e1000_hw *hw = &adapter->hw;
185
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700186 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
187 msleep(1);
188
Jeff Kirsher57128192006-01-12 16:50:28 -0800189 if (ecmd->autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800191 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700192 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
193 ADVERTISED_FIBRE |
194 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800195 else
Jeff Kirsher2f2ca262006-09-27 12:53:40 -0700196 hw->autoneg_advertised = ecmd->advertising |
197 ADVERTISED_TP |
198 ADVERTISED_Autoneg;
Malli Chilakala012609a2005-06-17 17:43:06 -0700199 ecmd->advertising = hw->autoneg_advertised;
David Decotigny25db0332011-04-27 18:32:39 +0000200 } else {
201 u32 speed = ethtool_cmd_speed(ecmd);
David Decotigny14ad2512011-04-27 18:32:43 +0000202 if (e1000_set_spd_dplx(adapter, speed, ecmd->duplex)) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700203 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700205 }
David Decotigny25db0332011-04-27 18:32:39 +0000206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* reset the link */
209
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700210 if (netif_running(adapter->netdev)) {
211 e1000_down(adapter);
212 e1000_up(adapter);
213 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 e1000_reset(adapter);
215
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700216 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return 0;
218}
219
Nick Nunleyb5481922010-02-03 14:49:28 +0000220static u32 e1000_get_link(struct net_device *netdev)
221{
222 struct e1000_adapter *adapter = netdev_priv(netdev);
223
224 /*
225 * If the link is not reported up to netdev, interrupts are disabled,
226 * and so the physical link state may have changed since we last
227 * looked. Set get_link_status to make sure that the true link
228 * state is interrogated, rather than pulling a cached and possibly
229 * stale link state from the driver.
230 */
231 if (!netif_carrier_ok(netdev))
232 adapter->hw.get_link_status = 1;
233
234 return e1000_has_link(adapter);
235}
236
Joe Perches64798842008-07-11 15:17:02 -0700237static void e1000_get_pauseparam(struct net_device *netdev,
238 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700240 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct e1000_hw *hw = &adapter->hw;
242
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800243 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800245
Jeff Kirsher11241b12006-09-27 12:53:28 -0700246 if (hw->fc == E1000_FC_RX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 pause->rx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700248 else if (hw->fc == E1000_FC_TX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 pause->tx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700250 else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 pause->rx_pause = 1;
252 pause->tx_pause = 1;
253 }
254}
255
Joe Perches64798842008-07-11 15:17:02 -0700256static int e1000_set_pauseparam(struct net_device *netdev,
257 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700259 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700261 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 adapter->fc_autoneg = pause->autoneg;
264
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700265 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
266 msleep(1);
267
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800268 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700269 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800270 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700271 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800272 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700273 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800274 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700275 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 hw->original_fc = hw->fc;
278
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800279 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700280 if (netif_running(adapter->netdev)) {
281 e1000_down(adapter);
282 e1000_up(adapter);
283 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800285 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700286 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800287 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800288
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700289 clear_bit(__E1000_RESETTING, &adapter->flags);
290 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Joe Perches64798842008-07-11 15:17:02 -0700293static u32 e1000_get_msglevel(struct net_device *netdev)
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 return adapter->msg_enable;
297}
298
Joe Perches64798842008-07-11 15:17:02 -0700299static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700301 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 adapter->msg_enable = data;
303}
304
Joe Perches64798842008-07-11 15:17:02 -0700305static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700308 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Joe Perches64798842008-07-11 15:17:02 -0700311static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
312 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700314 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700316 u32 *regs_buff = p;
317 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Joe Perches406874a2008-04-03 10:06:32 -0700319 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
322
Joe Perches1dc32912008-07-11 15:17:08 -0700323 regs_buff[0] = er32(CTRL);
324 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Joe Perches1dc32912008-07-11 15:17:08 -0700326 regs_buff[2] = er32(RCTL);
327 regs_buff[3] = er32(RDLEN);
328 regs_buff[4] = er32(RDH);
329 regs_buff[5] = er32(RDT);
330 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Joe Perches1dc32912008-07-11 15:17:08 -0700332 regs_buff[7] = er32(TCTL);
333 regs_buff[8] = er32(TDLEN);
334 regs_buff[9] = er32(TDH);
335 regs_buff[10] = er32(TDT);
336 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Joe Perches1dc32912008-07-11 15:17:08 -0700338 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800339 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
341 IGP01E1000_PHY_AGC_A);
342 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
343 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700344 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
346 IGP01E1000_PHY_AGC_B);
347 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
348 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700349 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
351 IGP01E1000_PHY_AGC_C);
352 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
353 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700354 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
356 IGP01E1000_PHY_AGC_D);
357 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
358 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700359 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
361 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
362 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
363 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700364 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
366 IGP01E1000_PHY_PCS_INIT_REG);
367 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
368 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700369 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 regs_buff[20] = 0; /* polarity correction enabled (always) */
371 regs_buff[22] = 0; /* phy receive errors (unavailable) */
372 regs_buff[23] = regs_buff[18]; /* mdix mode */
373 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
374 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700375 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700376 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
378 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
379 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700380 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700381 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 regs_buff[18] = regs_buff[13]; /* cable polarity */
383 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
384 regs_buff[20] = regs_buff[17]; /* polarity correction */
385 /* phy receive errors */
386 regs_buff[22] = adapter->phy_stats.receive_errors;
387 regs_buff[23] = regs_buff[13]; /* mdix mode */
388 }
389 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
390 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700391 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800393 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700394 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700395 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397}
398
Joe Perches64798842008-07-11 15:17:02 -0700399static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700401 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700402 struct e1000_hw *hw = &adapter->hw;
403
404 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Joe Perches64798842008-07-11 15:17:02 -0700407static int e1000_get_eeprom(struct net_device *netdev,
408 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700410 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700412 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int first_word, last_word;
414 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700415 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800417 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return -EINVAL;
419
420 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
421
422 first_word = eeprom->offset >> 1;
423 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
424
Joe Perches406874a2008-04-03 10:06:32 -0700425 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800427 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return -ENOMEM;
429
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800430 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 ret_val = e1000_read_eeprom(hw, first_word,
432 last_word - first_word + 1,
433 eeprom_buff);
434 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700435 for (i = 0; i < last_word - first_word + 1; i++) {
436 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
437 &eeprom_buff[i]);
438 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 /* Device's eeprom is always little-endian, word addressable */
444 for (i = 0; i < last_word - first_word + 1; i++)
445 le16_to_cpus(&eeprom_buff[i]);
446
Joe Perches406874a2008-04-03 10:06:32 -0700447 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 eeprom->len);
449 kfree(eeprom_buff);
450
451 return ret_val;
452}
453
Joe Perches64798842008-07-11 15:17:02 -0700454static int e1000_set_eeprom(struct net_device *netdev,
455 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700457 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700459 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 void *ptr;
461 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700462 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800464 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -EOPNOTSUPP;
466
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800467 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return -EFAULT;
469
470 max_len = hw->eeprom.word_size * 2;
471
472 first_word = eeprom->offset >> 1;
473 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
474 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800475 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return -ENOMEM;
477
478 ptr = (void *)eeprom_buff;
479
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800480 if (eeprom->offset & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /* need read/modify/write of first changed EEPROM word */
482 /* only the second byte of the word is being modified */
483 ret_val = e1000_read_eeprom(hw, first_word, 1,
484 &eeprom_buff[0]);
485 ptr++;
486 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800487 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* need read/modify/write of last changed EEPROM word */
489 /* only the first byte of the word is being modified */
490 ret_val = e1000_read_eeprom(hw, last_word, 1,
491 &eeprom_buff[last_word - first_word]);
492 }
493
494 /* Device's eeprom is always little-endian, word addressable */
495 for (i = 0; i < last_word - first_word + 1; i++)
496 le16_to_cpus(&eeprom_buff[i]);
497
498 memcpy(ptr, bytes, eeprom->len);
499
500 for (i = 0; i < last_word - first_word + 1; i++)
501 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
502
503 ret_val = e1000_write_eeprom(hw, first_word,
504 last_word - first_word + 1, eeprom_buff);
505
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000506 /* Update the checksum over the first part of the EEPROM if needed */
507 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 e1000_update_eeprom_checksum(hw);
509
510 kfree(eeprom_buff);
511 return ret_val;
512}
513
Joe Perches64798842008-07-11 15:17:02 -0700514static void e1000_get_drvinfo(struct net_device *netdev,
515 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700517 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Rick Jones612a94d2011-11-14 08:13:25 +0000519 strlcpy(drvinfo->driver, e1000_driver_name,
520 sizeof(drvinfo->driver));
521 strlcpy(drvinfo->version, e1000_driver_version,
522 sizeof(drvinfo->version));
Jeff Kirshera2917e22006-01-12 16:51:23 -0800523
Rick Jones612a94d2011-11-14 08:13:25 +0000524 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
525 sizeof(drvinfo->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 drvinfo->regdump_len = e1000_get_regs_len(netdev);
527 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
528}
529
Joe Perches64798842008-07-11 15:17:02 -0700530static void e1000_get_ringparam(struct net_device *netdev,
531 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700533 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700534 struct e1000_hw *hw = &adapter->hw;
535 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400536 struct e1000_tx_ring *txdr = adapter->tx_ring;
537 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
540 E1000_MAX_82544_RXD;
541 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
542 E1000_MAX_82544_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 ring->rx_pending = rxdr->count;
544 ring->tx_pending = txdr->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Joe Perches64798842008-07-11 15:17:02 -0700547static int e1000_set_ringparam(struct net_device *netdev,
548 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700550 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700551 struct e1000_hw *hw = &adapter->hw;
552 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700553 struct e1000_tx_ring *txdr, *tx_old;
554 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800555 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400556
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800557 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
558 return -EINVAL;
559
Auke Kok2db10a02006-06-27 09:06:28 -0700560 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
561 msleep(1);
562
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400563 if (netif_running(adapter->netdev))
564 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 tx_old = adapter->tx_ring;
567 rx_old = adapter->rx_ring;
568
Vasily Averin793fab722006-09-27 12:54:14 -0700569 err = -ENOMEM;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800570 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700571 if (!txdr)
572 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400573
Yan Burman1c7e5b12007-03-06 08:58:04 -0800574 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700575 if (!rxdr)
576 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400577
Vasily Averin793fab722006-09-27 12:54:14 -0700578 adapter->tx_ring = txdr;
579 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400580
Joe Perches406874a2008-04-03 10:06:32 -0700581 rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
582 rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700584 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Joe Perches406874a2008-04-03 10:06:32 -0700586 txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
587 txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700589 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800591 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400592 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800593 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400594 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400595
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800596 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700598 err = e1000_setup_all_rx_resources(adapter);
599 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700601 err = e1000_setup_all_tx_resources(adapter);
602 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto err_setup_tx;
604
605 /* save the new, restore the old in order to free it,
606 * then restore the new back again */
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 adapter->rx_ring = rx_old;
609 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400610 e1000_free_all_rx_resources(adapter);
611 e1000_free_all_tx_resources(adapter);
612 kfree(tx_old);
613 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700614 adapter->rx_ring = rxdr;
615 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700616 err = e1000_up(adapter);
617 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700618 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
Auke Kok2db10a02006-06-27 09:06:28 -0700621 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400624 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625err_setup_rx:
626 adapter->rx_ring = rx_old;
627 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700628 kfree(rxdr);
629err_alloc_rx:
630 kfree(txdr);
631err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700633err_setup:
634 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return err;
636}
637
Joe Perches64798842008-07-11 15:17:02 -0700638static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
639 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800640{
Joe Perches1dc32912008-07-11 15:17:08 -0700641 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700642 static const u32 test[] =
Joe Perches7e643002007-11-13 20:52:05 -0800643 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Joe Perches1dc32912008-07-11 15:17:08 -0700644 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700645 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800646 int i;
647
648 for (i = 0; i < ARRAY_SIZE(test); i++) {
649 writel(write & test[i], address);
650 read = readl(address);
651 if (read != (write & test[i] & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700652 e_err(drv, "pattern test reg %04X failed: "
653 "got 0x%08X expected 0x%08X\n",
654 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800655 *data = reg;
656 return true;
657 }
658 }
659 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Joe Perches64798842008-07-11 15:17:02 -0700662static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
663 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800664{
Joe Perches1dc32912008-07-11 15:17:08 -0700665 struct e1000_hw *hw = &adapter->hw;
666 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700667 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800668
669 writel(write & mask, address);
670 read = readl(address);
671 if ((read & mask) != (write & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700672 e_err(drv, "set/check reg %04X test failed: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000673 "got 0x%08X expected 0x%08X\n",
674 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800675 *data = reg;
676 return true;
677 }
678 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Joe Perches7e643002007-11-13 20:52:05 -0800681#define REG_PATTERN_TEST(reg, mask, write) \
682 do { \
683 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700684 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800685 ? E1000_##reg : E1000_82542_##reg, \
686 mask, write)) \
687 return 1; \
688 } while (0)
689
690#define REG_SET_AND_CHECK(reg, mask, write) \
691 do { \
692 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700693 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800694 ? E1000_##reg : E1000_82542_##reg, \
695 mask, write)) \
696 return 1; \
697 } while (0)
698
Joe Perches64798842008-07-11 15:17:02 -0700699static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Joe Perches406874a2008-04-03 10:06:32 -0700701 u32 value, before, after;
702 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700703 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* The status register is Read Only, so a write should fail.
706 * Some bits that get toggled are ignored.
707 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000708
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400709 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000710 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700711
Joe Perches1dc32912008-07-11 15:17:08 -0700712 before = er32(STATUS);
713 value = (er32(STATUS) & toggle);
714 ew32(STATUS, toggle);
715 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800716 if (value != after) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700717 e_err(drv, "failed STATUS register test got: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000718 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 *data = 1;
720 return 1;
721 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700722 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700723 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800724
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000725 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
726 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
727 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
728 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
731 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
732 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
733 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
734 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
735 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
736 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
737 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
738 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
739 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
740
741 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800742
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000743 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700744 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
746
Joe Perches1dc32912008-07-11 15:17:08 -0700747 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Auke Kokcd94dd02006-06-27 09:08:22 -0700749 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000751 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
753 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000754 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700755 for (i = 0; i < value; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
Auke Kok90fb5132006-11-01 08:47:30 -0800757 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759
760 } else {
761
762 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
763 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
764 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
765 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
766
767 }
768
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000769 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700770 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
772
773 *data = 0;
774 return 0;
775}
776
Joe Perches64798842008-07-11 15:17:02 -0700777static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Joe Perches1dc32912008-07-11 15:17:08 -0700779 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700780 u16 temp;
781 u16 checksum = 0;
782 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 *data = 0;
785 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800786 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700787 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 *data = 1;
789 break;
790 }
791 checksum += temp;
792 }
793
794 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700795 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 *data = 2;
797
798 return *data;
799}
800
Joe Perches64798842008-07-11 15:17:02 -0700801static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Joe Perchese982f172008-07-11 15:17:18 -0700803 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700804 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700805 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Joe Perches1dc32912008-07-11 15:17:08 -0700807 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 return IRQ_HANDLED;
810}
811
Joe Perches64798842008-07-11 15:17:02 -0700812static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700815 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700816 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700817 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700818 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 *data = 0;
821
Auke Kok8fc897b2006-08-28 14:56:16 -0700822 /* NOTE: we don't test MSI interrupts here, yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* Hook up test interrupt handler just for this test */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800824 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Auke Kok90fb5132006-11-01 08:47:30 -0800825 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700826 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800827 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Auke Kok90fb5132006-11-01 08:47:30 -0800828 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 *data = 1;
830 return -1;
831 }
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700832 e_info(hw, "testing %s interrupt\n", (shared_int ?
833 "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700836 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000837 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400838 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800841 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 /* Interrupt to test */
844 mask = 1 << i;
845
Auke Kok76c224b2006-05-23 13:36:06 -0700846 if (!shared_int) {
847 /* Disable the interrupt to be reported in
848 * the cause register and then force the same
849 * interrupt and see if one gets posted. If
850 * an interrupt was posted to the bus, the
851 * test failed.
852 */
853 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700854 ew32(IMC, mask);
855 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000856 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400857 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800858
Auke Kok76c224b2006-05-23 13:36:06 -0700859 if (adapter->test_icr & mask) {
860 *data = 3;
861 break;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
865 /* Enable the interrupt to be reported in
866 * the cause register and then force the same
867 * interrupt and see if one gets posted. If
868 * an interrupt was not posted to the bus, the
869 * test failed.
870 */
871 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700872 ew32(IMS, mask);
873 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000874 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400875 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800877 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *data = 4;
879 break;
880 }
881
Auke Kok76c224b2006-05-23 13:36:06 -0700882 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* Disable the other interrupts to be reported in
884 * the cause register and then force the other
885 * interrupts and see if any get posted. If
886 * an interrupt was posted to the bus, the
887 * test failed.
888 */
889 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700890 ew32(IMC, ~mask & 0x00007FFF);
891 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000892 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400893 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800895 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 *data = 5;
897 break;
898 }
899 }
900 }
901
902 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700903 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000904 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400905 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /* Unhook test interrupt handler */
908 free_irq(irq, netdev);
909
910 return *data;
911}
912
Joe Perches64798842008-07-11 15:17:02 -0700913static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400915 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
916 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct pci_dev *pdev = adapter->pdev;
918 int i;
919
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800920 if (txdr->desc && txdr->buffer_info) {
921 for (i = 0; i < txdr->count; i++) {
922 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000923 dma_unmap_single(&pdev->dev,
924 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000926 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800927 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 dev_kfree_skb(txdr->buffer_info[i].skb);
929 }
930 }
931
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800932 if (rxdr->desc && rxdr->buffer_info) {
933 for (i = 0; i < rxdr->count; i++) {
934 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000935 dma_unmap_single(&pdev->dev,
936 rxdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 rxdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000938 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800939 if (rxdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dev_kfree_skb(rxdr->buffer_info[i].skb);
941 }
942 }
943
Jeff Kirsherf5645112006-01-12 16:51:01 -0800944 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000945 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
946 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500947 txdr->desc = NULL;
948 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800949 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000950 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
951 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500952 rxdr->desc = NULL;
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400955 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500956 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400957 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500958 rxdr->buffer_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Joe Perches64798842008-07-11 15:17:02 -0700961static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Joe Perches1dc32912008-07-11 15:17:08 -0700963 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400964 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
965 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -0700967 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800968 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 /* Setup Tx descriptor ring and Tx buffers */
971
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800972 if (!txdr->count)
973 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Joe Perchesc7be73b2008-07-11 15:17:28 -0700975 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
976 GFP_KERNEL);
977 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 ret_val = 1;
979 goto err_nomem;
980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700983 txdr->size = ALIGN(txdr->size, 4096);
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000984 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
985 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700986 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 ret_val = 2;
988 goto err_nomem;
989 }
990 memset(txdr->desc, 0, txdr->size);
991 txdr->next_to_use = txdr->next_to_clean = 0;
992
Joe Perchese982f172008-07-11 15:17:18 -0700993 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
994 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -0700995 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
996 ew32(TDH, 0);
997 ew32(TDT, 0);
998 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
999 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1000 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001002 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1004 struct sk_buff *skb;
1005 unsigned int size = 1024;
1006
Joe Perchesc7be73b2008-07-11 15:17:28 -07001007 skb = alloc_skb(size, GFP_KERNEL);
1008 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 ret_val = 3;
1010 goto err_nomem;
1011 }
1012 skb_put(skb, size);
1013 txdr->buffer_info[i].skb = skb;
1014 txdr->buffer_info[i].length = skb->len;
1015 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001016 dma_map_single(&pdev->dev, skb->data, skb->len,
1017 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1019 tx_desc->lower.data = cpu_to_le32(skb->len);
1020 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1021 E1000_TXD_CMD_IFCS |
1022 E1000_TXD_CMD_RPS);
1023 tx_desc->upper.data = 0;
1024 }
1025
1026 /* Setup Rx descriptor ring and Rx buffers */
1027
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001028 if (!rxdr->count)
1029 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Joe Perchesc7be73b2008-07-11 15:17:28 -07001031 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1032 GFP_KERNEL);
1033 if (!rxdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 ret_val = 4;
1035 goto err_nomem;
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001039 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1040 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001041 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ret_val = 5;
1043 goto err_nomem;
1044 }
1045 memset(rxdr->desc, 0, rxdr->size);
1046 rxdr->next_to_use = rxdr->next_to_clean = 0;
1047
Joe Perches1dc32912008-07-11 15:17:08 -07001048 rctl = er32(RCTL);
1049 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001050 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1051 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001052 ew32(RDLEN, rxdr->size);
1053 ew32(RDH, 0);
1054 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1056 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001057 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1058 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001060 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1062 struct sk_buff *skb;
1063
Joe Perchesc7be73b2008-07-11 15:17:28 -07001064 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1065 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 ret_val = 6;
1067 goto err_nomem;
1068 }
1069 skb_reserve(skb, NET_IP_ALIGN);
1070 rxdr->buffer_info[i].skb = skb;
1071 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1072 rxdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001073 dma_map_single(&pdev->dev, skb->data,
1074 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1076 memset(skb->data, 0x00, skb->len);
1077 }
1078
1079 return 0;
1080
1081err_nomem:
1082 e1000_free_desc_rings(adapter);
1083 return ret_val;
1084}
1085
Joe Perches64798842008-07-11 15:17:02 -07001086static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Joe Perches1dc32912008-07-11 15:17:08 -07001088 struct e1000_hw *hw = &adapter->hw;
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001091 e1000_write_phy_reg(hw, 29, 0x001F);
1092 e1000_write_phy_reg(hw, 30, 0x8FFC);
1093 e1000_write_phy_reg(hw, 29, 0x001A);
1094 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
Joe Perches64798842008-07-11 15:17:02 -07001097static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Joe Perches1dc32912008-07-11 15:17:08 -07001099 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001100 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1103 * Extended PHY Specific Control Register to 25MHz clock. This
1104 * value defaults back to a 2.5MHz clock when the PHY is reset.
1105 */
Joe Perches1dc32912008-07-11 15:17:08 -07001106 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Joe Perches1dc32912008-07-11 15:17:08 -07001108 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1110
1111 /* In addition, because of the s/w reset above, we need to enable
1112 * CRS on TX. This must be set for both full and half duplex
1113 * operation.
1114 */
Joe Perches1dc32912008-07-11 15:17:08 -07001115 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Joe Perches1dc32912008-07-11 15:17:08 -07001117 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 M88E1000_PHY_SPEC_CTRL, phy_reg);
1119}
1120
Joe Perches64798842008-07-11 15:17:02 -07001121static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Joe Perches1dc32912008-07-11 15:17:08 -07001123 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001124 u32 ctrl_reg;
1125 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /* Setup the Device Control Register for PHY loopback test. */
1128
Joe Perches1dc32912008-07-11 15:17:08 -07001129 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1131 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1132 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1133 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1134 E1000_CTRL_FD); /* Force Duplex to FULL */
1135
Joe Perches1dc32912008-07-11 15:17:08 -07001136 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001139 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 /* Clear Auto-Crossover bits in PHY Specific Control Register
1142 * (bits 6:5).
1143 */
1144 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001145 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001148 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 /* Have to setup TX_CLK and TX_CRS after software reset */
1151 e1000_phy_reset_clk_and_crs(adapter);
1152
Joe Perches1dc32912008-07-11 15:17:08 -07001153 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 /* Wait for reset to complete. */
1156 udelay(500);
1157
1158 /* Have to setup TX_CLK and TX_CRS after software reset */
1159 e1000_phy_reset_clk_and_crs(adapter);
1160
1161 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1162 e1000_phy_disable_receiver(adapter);
1163
1164 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001165 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001167 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 /* Setup TX_CLK and TX_CRS one more time. */
1170 e1000_phy_reset_clk_and_crs(adapter);
1171
1172 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001173 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001174 if (phy_reg != 0x4100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return 9;
1176
Joe Perches1dc32912008-07-11 15:17:08 -07001177 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001178 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return 10;
1180
Joe Perches1dc32912008-07-11 15:17:08 -07001181 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001182 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return 11;
1184
1185 return 0;
1186}
1187
Joe Perches64798842008-07-11 15:17:02 -07001188static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Joe Perches1dc32912008-07-11 15:17:08 -07001190 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001191 u32 ctrl_reg = 0;
1192 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Joe Perches1dc32912008-07-11 15:17:08 -07001194 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Joe Perches1dc32912008-07-11 15:17:08 -07001196 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001198 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 M88E1000_PHY_SPEC_CTRL, 0x0808);
1200 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001201 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001203 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Joe Perches1dc32912008-07-11 15:17:08 -07001206 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001207
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001208 /* force 1000, set loopback */
1209 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001210
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001211 /* Now set up the MAC to the same speed/duplex as the PHY. */
1212 ctrl_reg = er32(CTRL);
1213 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1214 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1215 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1216 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1217 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Joe Perches1dc32912008-07-11 15:17:08 -07001219 if (hw->media_type == e1000_media_type_copper &&
1220 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001222 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* Set the ILOS bit on the fiber Nic is half
1224 * duplex link is detected. */
Joe Perches1dc32912008-07-11 15:17:08 -07001225 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001226 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1228 }
1229
Joe Perches1dc32912008-07-11 15:17:08 -07001230 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /* Disable the receiver on the PHY so when a cable is plugged in, the
1233 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1234 */
Joe Perches1dc32912008-07-11 15:17:08 -07001235 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 e1000_phy_disable_receiver(adapter);
1237
1238 udelay(500);
1239
1240 return 0;
1241}
1242
Joe Perches64798842008-07-11 15:17:02 -07001243static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Joe Perches1dc32912008-07-11 15:17:08 -07001245 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001246 u16 phy_reg = 0;
1247 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Joe Perches1dc32912008-07-11 15:17:08 -07001249 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001251 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /* Attempt to setup Loopback mode on Non-integrated PHY.
1253 * Some PHY registers get corrupted at random, so
1254 * attempt this 10 times.
1255 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001256 while (e1000_nonintegrated_phy_loopback(adapter) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001258 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return 0;
1260 }
1261 break;
1262
1263 case e1000_82544:
1264 case e1000_82540:
1265 case e1000_82545:
1266 case e1000_82545_rev_3:
1267 case e1000_82546:
1268 case e1000_82546_rev_3:
1269 case e1000_82541:
1270 case e1000_82541_rev_2:
1271 case e1000_82547:
1272 case e1000_82547_rev_2:
1273 return e1000_integrated_phy_loopback(adapter);
1274 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 default:
1276 /* Default PHY loopback work is to read the MII
1277 * control register and assert bit 14 (loopback mode).
1278 */
Joe Perches1dc32912008-07-11 15:17:08 -07001279 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001281 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return 0;
1283 break;
1284 }
1285
1286 return 8;
1287}
1288
Joe Perches64798842008-07-11 15:17:02 -07001289static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Jeff Kirsher49273162006-01-12 16:50:44 -08001291 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001292 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jeff Kirsher49273162006-01-12 16:50:44 -08001294 if (hw->media_type == e1000_media_type_fiber ||
1295 hw->media_type == e1000_media_type_internal_serdes) {
1296 switch (hw->mac_type) {
1297 case e1000_82545:
1298 case e1000_82546:
1299 case e1000_82545_rev_3:
1300 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001302 break;
Jeff Kirsher49273162006-01-12 16:50:44 -08001303 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001304 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001306 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return 0;
1308 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001309 } else if (hw->media_type == e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return e1000_set_phy_loopback(adapter);
1311
1312 return 7;
1313}
1314
Joe Perches64798842008-07-11 15:17:02 -07001315static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Jeff Kirsher49273162006-01-12 16:50:44 -08001317 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001318 u32 rctl;
1319 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Joe Perches1dc32912008-07-11 15:17:08 -07001321 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001323 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Jeff Kirsher49273162006-01-12 16:50:44 -08001325 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001326 case e1000_82545:
1327 case e1000_82546:
1328 case e1000_82545_rev_3:
1329 case e1000_82546_rev_3:
1330 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001331 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001332 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1333 if (phy_reg & MII_CR_LOOPBACK) {
1334 phy_reg &= ~MII_CR_LOOPBACK;
1335 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1336 e1000_phy_reset(hw);
1337 }
1338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340}
1341
Joe Perches64798842008-07-11 15:17:02 -07001342static void e1000_create_lbtest_frame(struct sk_buff *skb,
1343 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
1345 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001346 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1348 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1349 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1350}
1351
Joe Perches64798842008-07-11 15:17:02 -07001352static int e1000_check_lbtest_frame(struct sk_buff *skb,
1353 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001355 frame_size &= ~1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001356 if (*(skb->data + 3) == 0xFF) {
1357 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1359 return 0;
1360 }
1361 }
1362 return 13;
1363}
1364
Joe Perches64798842008-07-11 15:17:02 -07001365static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Joe Perches1dc32912008-07-11 15:17:08 -07001367 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001368 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1369 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 struct pci_dev *pdev = adapter->pdev;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001371 int i, j, k, l, lc, good_cnt, ret_val=0;
1372 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Joe Perches1dc32912008-07-11 15:17:08 -07001374 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001376 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001377 * The idea is to wrap the largest ring a number of times using 64
1378 * send/receive pairs during each loop
1379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001381 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001382 lc = ((txdr->count / 64) * 2) + 1;
1383 else
1384 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Malli Chilakalae4eff722005-04-28 19:38:30 -07001386 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001387 for (j = 0; j <= lc; j++) { /* loop count loop */
1388 for (i = 0; i < 64; i++) { /* send the packets */
1389 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001390 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001391 dma_sync_single_for_device(&pdev->dev,
1392 txdr->buffer_info[k].dma,
1393 txdr->buffer_info[k].length,
1394 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001395 if (unlikely(++k == txdr->count)) k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001396 }
Joe Perches1dc32912008-07-11 15:17:08 -07001397 ew32(TDT, k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001398 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001399 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001400 time = jiffies; /* set the start time for the receive */
1401 good_cnt = 0;
1402 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001403 dma_sync_single_for_cpu(&pdev->dev,
1404 rxdr->buffer_info[l].dma,
1405 rxdr->buffer_info[l].length,
1406 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001407
Malli Chilakalae4eff722005-04-28 19:38:30 -07001408 ret_val = e1000_check_lbtest_frame(
1409 rxdr->buffer_info[l].skb,
1410 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001411 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001412 good_cnt++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001413 if (unlikely(++l == rxdr->count)) l = 0;
1414 /* time + 20 msecs (200 msecs on 2.4) is more than
1415 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001416 * exceeded, break and error off
1417 */
1418 } while (good_cnt < 64 && jiffies < (time + 20));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001419 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001420 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001421 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001422 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001423 if (jiffies >= (time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001424 ret_val = 14; /* error code for time out error */
1425 break;
1426 }
1427 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return ret_val;
1429}
1430
Joe Perches64798842008-07-11 15:17:02 -07001431static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001433 *data = e1000_setup_desc_rings(adapter);
1434 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001435 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001436 *data = e1000_setup_loopback_test(adapter);
1437 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001438 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 *data = e1000_run_loopback_test(adapter);
1440 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001443 e1000_free_desc_rings(adapter);
1444out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return *data;
1446}
1447
Joe Perches64798842008-07-11 15:17:02 -07001448static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Joe Perches1dc32912008-07-11 15:17:08 -07001450 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001452 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int i = 0;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001454 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Malli Chilakala26483452005-04-28 19:44:46 -07001456 /* On some blade server designs, link establishment
1457 * could take as long as 2-3 minutes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001459 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001460 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001462 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 } while (i++ < 3750);
1464
Malli Chilakala26483452005-04-28 19:44:46 -07001465 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001467 e1000_check_for_link(hw);
1468 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001469 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Joe Perches1dc32912008-07-11 15:17:08 -07001471 if (!(er32(STATUS) & E1000_STATUS_LU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 *data = 1;
1473 }
1474 }
1475 return *data;
1476}
1477
Joe Perches64798842008-07-11 15:17:02 -07001478static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001480 switch (sset) {
1481 case ETH_SS_TEST:
1482 return E1000_TEST_LEN;
1483 case ETH_SS_STATS:
1484 return E1000_STATS_LEN;
1485 default:
1486 return -EOPNOTSUPP;
1487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Joe Perches64798842008-07-11 15:17:02 -07001490static void e1000_diag_test(struct net_device *netdev,
1491 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001493 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001494 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001495 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Auke Kok1314bbf2006-09-27 12:54:02 -07001497 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001498 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* Offline tests */
1500
1501 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001502 u16 autoneg_advertised = hw->autoneg_advertised;
1503 u8 forced_speed_duplex = hw->forced_speed_duplex;
1504 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001506 e_info(hw, "offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /* Link test performed before hardware reset so autoneg doesn't
1509 * interfere with test result */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001510 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 eth_test->flags |= ETH_TEST_FL_FAILED;
1512
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001513 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001514 /* indicate we're in test mode */
1515 dev_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 else
1517 e1000_reset(adapter);
1518
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001519 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 eth_test->flags |= ETH_TEST_FL_FAILED;
1521
1522 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001523 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 eth_test->flags |= ETH_TEST_FL_FAILED;
1525
1526 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001527 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 eth_test->flags |= ETH_TEST_FL_FAILED;
1529
1530 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001531 /* make sure the phy is powered up */
1532 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001533 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 eth_test->flags |= ETH_TEST_FL_FAILED;
1535
1536 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001537 hw->autoneg_advertised = autoneg_advertised;
1538 hw->forced_speed_duplex = forced_speed_duplex;
1539 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001542 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001543 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001544 dev_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 } else {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001546 e_info(hw, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001548 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 eth_test->flags |= ETH_TEST_FL_FAILED;
1550
Auke Kok90fb5132006-11-01 08:47:30 -08001551 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 data[0] = 0;
1553 data[1] = 0;
1554 data[2] = 0;
1555 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001556
Auke Kok1314bbf2006-09-27 12:54:02 -07001557 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001559 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Joe Perches64798842008-07-11 15:17:02 -07001562static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1563 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001566 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001568 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001569 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 case E1000_DEV_ID_82543GC_FIBER:
1571 case E1000_DEV_ID_82543GC_COPPER:
1572 case E1000_DEV_ID_82544EI_FIBER:
1573 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1574 case E1000_DEV_ID_82545EM_FIBER:
1575 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001576 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001577 case E1000_DEV_ID_82546GB_PCIE:
1578 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001580 break;
1581 case E1000_DEV_ID_82546EB_FIBER:
1582 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001583 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001584 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001585 wol->supported = 0;
1586 break;
1587 }
1588 /* return success for non excluded adapter ports */
1589 retval = 0;
1590 break;
1591 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1592 /* quad port adapters only support WoL on port A */
1593 if (!adapter->quad_port_a) {
1594 wol->supported = 0;
1595 break;
1596 }
1597 /* return success for non excluded adapter ports */
1598 retval = 0;
1599 break;
1600 default:
1601 /* dual port cards only support WoL on port A from now on
1602 * unless it was enabled in the eeprom for port B
1603 * so exclude FUNC_1 ports from having WoL enabled */
Joe Perches1dc32912008-07-11 15:17:08 -07001604 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001605 !adapter->eeprom_wol) {
1606 wol->supported = 0;
1607 break;
1608 }
1609
1610 retval = 0;
1611 }
1612
1613 return retval;
1614}
1615
Joe Perches64798842008-07-11 15:17:02 -07001616static void e1000_get_wol(struct net_device *netdev,
1617 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001618{
1619 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001620 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001621
1622 wol->supported = WAKE_UCAST | WAKE_MCAST |
1623 WAKE_BCAST | WAKE_MAGIC;
1624 wol->wolopts = 0;
1625
1626 /* this function will set ->supported = 0 and return 1 if wol is not
1627 * supported by this hardware */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001628 if (e1000_wol_exclusion(adapter, wol) ||
1629 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return;
1631
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001632 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001633 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001634 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001635 /* KSP3 does not suppport UCAST wake-ups */
1636 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001637
1638 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001639 e_err(drv, "Interface does not support directed "
1640 "(unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001641 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001645
1646 if (adapter->wol & E1000_WUFC_EX)
1647 wol->wolopts |= WAKE_UCAST;
1648 if (adapter->wol & E1000_WUFC_MC)
1649 wol->wolopts |= WAKE_MCAST;
1650 if (adapter->wol & E1000_WUFC_BC)
1651 wol->wolopts |= WAKE_BCAST;
1652 if (adapter->wol & E1000_WUFC_MAG)
1653 wol->wolopts |= WAKE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
Joe Perches64798842008-07-11 15:17:02 -07001656static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001658 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct e1000_hw *hw = &adapter->hw;
1660
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001661 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1662 return -EOPNOTSUPP;
1663
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001664 if (e1000_wol_exclusion(adapter, wol) ||
1665 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return wol->wolopts ? -EOPNOTSUPP : 0;
1667
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001668 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001669 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001670 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001671 e_err(drv, "Interface does not support directed "
1672 "(unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001673 return -EOPNOTSUPP;
1674 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001675 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001680 /* these settings will always override what we currently have */
1681 adapter->wol = 0;
1682
1683 if (wol->wolopts & WAKE_UCAST)
1684 adapter->wol |= E1000_WUFC_EX;
1685 if (wol->wolopts & WAKE_MCAST)
1686 adapter->wol |= E1000_WUFC_MC;
1687 if (wol->wolopts & WAKE_BCAST)
1688 adapter->wol |= E1000_WUFC_BC;
1689 if (wol->wolopts & WAKE_MAGIC)
1690 adapter->wol |= E1000_WUFC_MAG;
1691
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001692 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return 0;
1695}
1696
Jeff Kirsher64359092011-05-03 05:26:13 +00001697static int e1000_set_phys_id(struct net_device *netdev,
1698 enum ethtool_phys_id_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001700 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001701 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jeff Kirsher64359092011-05-03 05:26:13 +00001703 switch (state) {
1704 case ETHTOOL_ID_ACTIVE:
1705 e1000_setup_led(hw);
1706 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Jeff Kirsher64359092011-05-03 05:26:13 +00001708 case ETHTOOL_ID_ON:
1709 e1000_led_on(hw);
1710 break;
1711
1712 case ETHTOOL_ID_OFF:
1713 e1000_led_off(hw);
1714 break;
1715
1716 case ETHTOOL_ID_INACTIVE:
1717 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 return 0;
1721}
1722
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001723static int e1000_get_coalesce(struct net_device *netdev,
1724 struct ethtool_coalesce *ec)
1725{
1726 struct e1000_adapter *adapter = netdev_priv(netdev);
1727
1728 if (adapter->hw.mac_type < e1000_82545)
1729 return -EOPNOTSUPP;
1730
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001731 if (adapter->itr_setting <= 4)
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001732 ec->rx_coalesce_usecs = adapter->itr_setting;
1733 else
1734 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1735
1736 return 0;
1737}
1738
1739static int e1000_set_coalesce(struct net_device *netdev,
1740 struct ethtool_coalesce *ec)
1741{
1742 struct e1000_adapter *adapter = netdev_priv(netdev);
1743 struct e1000_hw *hw = &adapter->hw;
1744
1745 if (hw->mac_type < e1000_82545)
1746 return -EOPNOTSUPP;
1747
1748 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001749 ((ec->rx_coalesce_usecs > 4) &&
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001750 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1751 (ec->rx_coalesce_usecs == 2))
1752 return -EINVAL;
1753
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001754 if (ec->rx_coalesce_usecs == 4) {
1755 adapter->itr = adapter->itr_setting = 4;
1756 } else if (ec->rx_coalesce_usecs <= 3) {
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001757 adapter->itr = 20000;
1758 adapter->itr_setting = ec->rx_coalesce_usecs;
1759 } else {
1760 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1761 adapter->itr_setting = adapter->itr & ~3;
1762 }
1763
1764 if (adapter->itr_setting != 0)
1765 ew32(ITR, 1000000000 / (adapter->itr * 256));
1766 else
1767 ew32(ITR, 0);
1768
1769 return 0;
1770}
1771
Joe Perches64798842008-07-11 15:17:02 -07001772static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001774 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok2db10a02006-06-27 09:06:28 -07001775 if (netif_running(netdev))
1776 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return 0;
1778}
1779
Joe Perches64798842008-07-11 15:17:02 -07001780static void e1000_get_ethtool_stats(struct net_device *netdev,
1781 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001783 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 int i;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001785 char *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001788 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001789 switch (e1000_gstrings_stats[i].type) {
1790 case NETDEV_STATS:
1791 p = (char *) netdev +
1792 e1000_gstrings_stats[i].stat_offset;
1793 break;
1794 case E1000_STATS:
1795 p = (char *) adapter +
1796 e1000_gstrings_stats[i].stat_offset;
1797 break;
1798 }
1799
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001800 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Joe Perches406874a2008-04-03 10:06:32 -07001801 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001803/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
Joe Perches64798842008-07-11 15:17:02 -07001806static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1807 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Joe Perches406874a2008-04-03 10:06:32 -07001809 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 int i;
1811
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001812 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 case ETH_SS_TEST:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001814 memcpy(data, *e1000_gstrings_test,
Roel Kluinc32bc6e2007-12-05 11:57:30 -08001815 sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 break;
1817 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001818 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1819 memcpy(p, e1000_gstrings_stats[i].stat_string,
1820 ETH_GSTRING_LEN);
1821 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001823/* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 break;
1825 }
1826}
1827
Jeff Garzik7282d492006-09-13 14:30:00 -04001828static const struct ethtool_ops e1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 .get_settings = e1000_get_settings,
1830 .set_settings = e1000_set_settings,
1831 .get_drvinfo = e1000_get_drvinfo,
1832 .get_regs_len = e1000_get_regs_len,
1833 .get_regs = e1000_get_regs,
1834 .get_wol = e1000_get_wol,
1835 .set_wol = e1000_set_wol,
Auke Kok8fc897b2006-08-28 14:56:16 -07001836 .get_msglevel = e1000_get_msglevel,
1837 .set_msglevel = e1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 .nway_reset = e1000_nway_reset,
Nick Nunleyb5481922010-02-03 14:49:28 +00001839 .get_link = e1000_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 .get_eeprom_len = e1000_get_eeprom_len,
1841 .get_eeprom = e1000_get_eeprom,
1842 .set_eeprom = e1000_set_eeprom,
1843 .get_ringparam = e1000_get_ringparam,
1844 .set_ringparam = e1000_set_ringparam,
Auke Kok8fc897b2006-08-28 14:56:16 -07001845 .get_pauseparam = e1000_get_pauseparam,
1846 .set_pauseparam = e1000_set_pauseparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 .self_test = e1000_diag_test,
1848 .get_strings = e1000_get_strings,
Jeff Kirsher64359092011-05-03 05:26:13 +00001849 .set_phys_id = e1000_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 .get_ethtool_stats = e1000_get_ethtool_stats,
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001851 .get_sset_count = e1000_get_sset_count,
1852 .get_coalesce = e1000_get_coalesce,
1853 .set_coalesce = e1000_set_coalesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854};
1855
1856void e1000_set_ethtool_ops(struct net_device *netdev)
1857{
1858 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1859}