blob: d6931cabe421e4e4f60b61f77198faea59efe58e [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);
161 ecmd->speed = adapter->link_speed;
162
163 /* unfortunatly FULL_DUPLEX != DUPLEX_FULL
164 * 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 {
171 ecmd->speed = -1;
172 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700201 if (e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) {
202 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* reset the link */
207
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700208 if (netif_running(adapter->netdev)) {
209 e1000_down(adapter);
210 e1000_up(adapter);
211 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 e1000_reset(adapter);
213
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700214 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return 0;
216}
217
Nick Nunleyb5481922010-02-03 14:49:28 +0000218static u32 e1000_get_link(struct net_device *netdev)
219{
220 struct e1000_adapter *adapter = netdev_priv(netdev);
221
222 /*
223 * If the link is not reported up to netdev, interrupts are disabled,
224 * and so the physical link state may have changed since we last
225 * looked. Set get_link_status to make sure that the true link
226 * state is interrogated, rather than pulling a cached and possibly
227 * stale link state from the driver.
228 */
229 if (!netif_carrier_ok(netdev))
230 adapter->hw.get_link_status = 1;
231
232 return e1000_has_link(adapter);
233}
234
Joe Perches64798842008-07-11 15:17:02 -0700235static void e1000_get_pauseparam(struct net_device *netdev,
236 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700238 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct e1000_hw *hw = &adapter->hw;
240
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800241 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800243
Jeff Kirsher11241b12006-09-27 12:53:28 -0700244 if (hw->fc == E1000_FC_RX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 pause->rx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700246 else if (hw->fc == E1000_FC_TX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 pause->tx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700248 else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 pause->rx_pause = 1;
250 pause->tx_pause = 1;
251 }
252}
253
Joe Perches64798842008-07-11 15:17:02 -0700254static int e1000_set_pauseparam(struct net_device *netdev,
255 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700257 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700259 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 adapter->fc_autoneg = pause->autoneg;
262
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700263 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
264 msleep(1);
265
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800266 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700267 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800268 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700269 hw->fc = E1000_FC_RX_PAUSE;
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_TX_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_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 hw->original_fc = hw->fc;
276
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800277 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700278 if (netif_running(adapter->netdev)) {
279 e1000_down(adapter);
280 e1000_up(adapter);
281 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800283 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700284 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800285 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800286
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700287 clear_bit(__E1000_RESETTING, &adapter->flags);
288 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Joe Perches64798842008-07-11 15:17:02 -0700291static u32 e1000_get_rx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700293 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return adapter->rx_csum;
295}
296
Joe Perches64798842008-07-11 15:17:02 -0700297static int e1000_set_rx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700299 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 adapter->rx_csum = data;
301
Auke Kok2db10a02006-06-27 09:06:28 -0700302 if (netif_running(netdev))
303 e1000_reinit_locked(adapter);
304 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 e1000_reset(adapter);
306 return 0;
307}
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800308
Joe Perches64798842008-07-11 15:17:02 -0700309static u32 e1000_get_tx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 return (netdev->features & NETIF_F_HW_CSUM) != 0;
312}
313
Joe Perches64798842008-07-11 15:17:02 -0700314static int e1000_set_tx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700316 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700317 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Joe Perches1dc32912008-07-11 15:17:08 -0700319 if (hw->mac_type < e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (!data)
321 return -EINVAL;
322 return 0;
323 }
324
325 if (data)
326 netdev->features |= NETIF_F_HW_CSUM;
327 else
328 netdev->features &= ~NETIF_F_HW_CSUM;
329
330 return 0;
331}
332
Joe Perches64798842008-07-11 15:17:02 -0700333static int e1000_set_tso(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700335 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700336 struct e1000_hw *hw = &adapter->hw;
337
338 if ((hw->mac_type < e1000_82544) ||
339 (hw->mac_type == e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return data ? -EINVAL : 0;
341
342 if (data)
343 netdev->features |= NETIF_F_TSO;
344 else
345 netdev->features &= ~NETIF_F_TSO;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -0800346
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000347 netdev->features &= ~NETIF_F_TSO6;
Auke Kok87ca4e52006-11-01 08:47:36 -0800348
Emil Tantilov675ad472010-04-27 14:02:58 +0000349 e_info("TSO is %s\n", data ? "Enabled" : "Disabled");
Joe Perchesc3033b02008-03-21 11:06:25 -0700350 adapter->tso_force = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Joe Perches64798842008-07-11 15:17:02 -0700354static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700356 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return adapter->msg_enable;
358}
359
Joe Perches64798842008-07-11 15:17:02 -0700360static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700362 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 adapter->msg_enable = data;
364}
365
Joe Perches64798842008-07-11 15:17:02 -0700366static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700369 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Joe Perches64798842008-07-11 15:17:02 -0700372static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
373 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700375 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700377 u32 *regs_buff = p;
378 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Joe Perches406874a2008-04-03 10:06:32 -0700380 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
383
Joe Perches1dc32912008-07-11 15:17:08 -0700384 regs_buff[0] = er32(CTRL);
385 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Joe Perches1dc32912008-07-11 15:17:08 -0700387 regs_buff[2] = er32(RCTL);
388 regs_buff[3] = er32(RDLEN);
389 regs_buff[4] = er32(RDH);
390 regs_buff[5] = er32(RDT);
391 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Joe Perches1dc32912008-07-11 15:17:08 -0700393 regs_buff[7] = er32(TCTL);
394 regs_buff[8] = er32(TDLEN);
395 regs_buff[9] = er32(TDH);
396 regs_buff[10] = er32(TDT);
397 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Joe Perches1dc32912008-07-11 15:17:08 -0700399 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800400 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
402 IGP01E1000_PHY_AGC_A);
403 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
404 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700405 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
407 IGP01E1000_PHY_AGC_B);
408 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
409 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700410 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
412 IGP01E1000_PHY_AGC_C);
413 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
414 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700415 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
417 IGP01E1000_PHY_AGC_D);
418 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
419 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700420 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
422 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
423 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
424 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700425 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
427 IGP01E1000_PHY_PCS_INIT_REG);
428 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
429 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700430 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 regs_buff[20] = 0; /* polarity correction enabled (always) */
432 regs_buff[22] = 0; /* phy receive errors (unavailable) */
433 regs_buff[23] = regs_buff[18]; /* mdix mode */
434 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
435 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700436 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700437 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
439 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
440 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700441 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700442 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 regs_buff[18] = regs_buff[13]; /* cable polarity */
444 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
445 regs_buff[20] = regs_buff[17]; /* polarity correction */
446 /* phy receive errors */
447 regs_buff[22] = adapter->phy_stats.receive_errors;
448 regs_buff[23] = regs_buff[13]; /* mdix mode */
449 }
450 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
451 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700452 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800454 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700455 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700456 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458}
459
Joe Perches64798842008-07-11 15:17:02 -0700460static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700462 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700463 struct e1000_hw *hw = &adapter->hw;
464
465 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Joe Perches64798842008-07-11 15:17:02 -0700468static int e1000_get_eeprom(struct net_device *netdev,
469 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700471 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700473 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int first_word, last_word;
475 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700476 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800478 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -EINVAL;
480
481 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
482
483 first_word = eeprom->offset >> 1;
484 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
485
Joe Perches406874a2008-04-03 10:06:32 -0700486 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800488 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return -ENOMEM;
490
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800491 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 ret_val = e1000_read_eeprom(hw, first_word,
493 last_word - first_word + 1,
494 eeprom_buff);
495 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700496 for (i = 0; i < last_word - first_word + 1; i++) {
497 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
498 &eeprom_buff[i]);
499 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
504 /* Device's eeprom is always little-endian, word addressable */
505 for (i = 0; i < last_word - first_word + 1; i++)
506 le16_to_cpus(&eeprom_buff[i]);
507
Joe Perches406874a2008-04-03 10:06:32 -0700508 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 eeprom->len);
510 kfree(eeprom_buff);
511
512 return ret_val;
513}
514
Joe Perches64798842008-07-11 15:17:02 -0700515static int e1000_set_eeprom(struct net_device *netdev,
516 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700518 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700520 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 void *ptr;
522 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700523 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800525 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -EOPNOTSUPP;
527
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800528 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return -EFAULT;
530
531 max_len = hw->eeprom.word_size * 2;
532
533 first_word = eeprom->offset >> 1;
534 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
535 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800536 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -ENOMEM;
538
539 ptr = (void *)eeprom_buff;
540
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800541 if (eeprom->offset & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* need read/modify/write of first changed EEPROM word */
543 /* only the second byte of the word is being modified */
544 ret_val = e1000_read_eeprom(hw, first_word, 1,
545 &eeprom_buff[0]);
546 ptr++;
547 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800548 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* need read/modify/write of last changed EEPROM word */
550 /* only the first byte of the word is being modified */
551 ret_val = e1000_read_eeprom(hw, last_word, 1,
552 &eeprom_buff[last_word - first_word]);
553 }
554
555 /* Device's eeprom is always little-endian, word addressable */
556 for (i = 0; i < last_word - first_word + 1; i++)
557 le16_to_cpus(&eeprom_buff[i]);
558
559 memcpy(ptr, bytes, eeprom->len);
560
561 for (i = 0; i < last_word - first_word + 1; i++)
562 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
563
564 ret_val = e1000_write_eeprom(hw, first_word,
565 last_word - first_word + 1, eeprom_buff);
566
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000567 /* Update the checksum over the first part of the EEPROM if needed */
568 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 e1000_update_eeprom_checksum(hw);
570
571 kfree(eeprom_buff);
572 return ret_val;
573}
574
Joe Perches64798842008-07-11 15:17:02 -0700575static void e1000_get_drvinfo(struct net_device *netdev,
576 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700578 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Kirshera2917e22006-01-12 16:51:23 -0800579 char firmware_version[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 strncpy(drvinfo->driver, e1000_driver_name, 32);
582 strncpy(drvinfo->version, e1000_driver_version, 32);
Jeff Kirshera2917e22006-01-12 16:51:23 -0800583
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000584 sprintf(firmware_version, "N/A");
Jeff Kirshera2917e22006-01-12 16:51:23 -0800585 strncpy(drvinfo->fw_version, firmware_version, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 drvinfo->regdump_len = e1000_get_regs_len(netdev);
588 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
589}
590
Joe Perches64798842008-07-11 15:17:02 -0700591static void e1000_get_ringparam(struct net_device *netdev,
592 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700594 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700595 struct e1000_hw *hw = &adapter->hw;
596 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400597 struct e1000_tx_ring *txdr = adapter->tx_ring;
598 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
601 E1000_MAX_82544_RXD;
602 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
603 E1000_MAX_82544_TXD;
604 ring->rx_mini_max_pending = 0;
605 ring->rx_jumbo_max_pending = 0;
606 ring->rx_pending = rxdr->count;
607 ring->tx_pending = txdr->count;
608 ring->rx_mini_pending = 0;
609 ring->rx_jumbo_pending = 0;
610}
611
Joe Perches64798842008-07-11 15:17:02 -0700612static int e1000_set_ringparam(struct net_device *netdev,
613 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700615 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700616 struct e1000_hw *hw = &adapter->hw;
617 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700618 struct e1000_tx_ring *txdr, *tx_old;
619 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800620 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400621
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800622 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
623 return -EINVAL;
624
Auke Kok2db10a02006-06-27 09:06:28 -0700625 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
626 msleep(1);
627
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400628 if (netif_running(adapter->netdev))
629 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 tx_old = adapter->tx_ring;
632 rx_old = adapter->rx_ring;
633
Vasily Averin793fab722006-09-27 12:54:14 -0700634 err = -ENOMEM;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800635 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700636 if (!txdr)
637 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400638
Yan Burman1c7e5b12007-03-06 08:58:04 -0800639 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700640 if (!rxdr)
641 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400642
Vasily Averin793fab722006-09-27 12:54:14 -0700643 adapter->tx_ring = txdr;
644 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400645
Joe Perches406874a2008-04-03 10:06:32 -0700646 rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
647 rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700649 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Joe Perches406874a2008-04-03 10:06:32 -0700651 txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
652 txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700654 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800656 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400657 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800658 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400659 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400660
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800661 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700663 err = e1000_setup_all_rx_resources(adapter);
664 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700666 err = e1000_setup_all_tx_resources(adapter);
667 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto err_setup_tx;
669
670 /* save the new, restore the old in order to free it,
671 * then restore the new back again */
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 adapter->rx_ring = rx_old;
674 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400675 e1000_free_all_rx_resources(adapter);
676 e1000_free_all_tx_resources(adapter);
677 kfree(tx_old);
678 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700679 adapter->rx_ring = rxdr;
680 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700681 err = e1000_up(adapter);
682 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700683 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Auke Kok2db10a02006-06-27 09:06:28 -0700686 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return 0;
688err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400689 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690err_setup_rx:
691 adapter->rx_ring = rx_old;
692 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700693 kfree(rxdr);
694err_alloc_rx:
695 kfree(txdr);
696err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700698err_setup:
699 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return err;
701}
702
Joe Perches64798842008-07-11 15:17:02 -0700703static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
704 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800705{
Joe Perches1dc32912008-07-11 15:17:08 -0700706 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700707 static const u32 test[] =
Joe Perches7e643002007-11-13 20:52:05 -0800708 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Joe Perches1dc32912008-07-11 15:17:08 -0700709 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700710 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800711 int i;
712
713 for (i = 0; i < ARRAY_SIZE(test); i++) {
714 writel(write & test[i], address);
715 read = readl(address);
716 if (read != (write & test[i] & mask)) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000717 e_info("pattern test reg %04X failed: "
718 "got 0x%08X expected 0x%08X\n",
719 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800720 *data = reg;
721 return true;
722 }
723 }
724 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Joe Perches64798842008-07-11 15:17:02 -0700727static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
728 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800729{
Joe Perches1dc32912008-07-11 15:17:08 -0700730 struct e1000_hw *hw = &adapter->hw;
731 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700732 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800733
734 writel(write & mask, address);
735 read = readl(address);
736 if ((read & mask) != (write & mask)) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000737 e_err("set/check reg %04X test failed: "
738 "got 0x%08X expected 0x%08X\n",
739 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800740 *data = reg;
741 return true;
742 }
743 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Joe Perches7e643002007-11-13 20:52:05 -0800746#define REG_PATTERN_TEST(reg, mask, write) \
747 do { \
748 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700749 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800750 ? E1000_##reg : E1000_82542_##reg, \
751 mask, write)) \
752 return 1; \
753 } while (0)
754
755#define REG_SET_AND_CHECK(reg, mask, write) \
756 do { \
757 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700758 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800759 ? E1000_##reg : E1000_82542_##reg, \
760 mask, write)) \
761 return 1; \
762 } while (0)
763
Joe Perches64798842008-07-11 15:17:02 -0700764static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Joe Perches406874a2008-04-03 10:06:32 -0700766 u32 value, before, after;
767 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700768 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* The status register is Read Only, so a write should fail.
771 * Some bits that get toggled are ignored.
772 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000773
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400774 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000775 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700776
Joe Perches1dc32912008-07-11 15:17:08 -0700777 before = er32(STATUS);
778 value = (er32(STATUS) & toggle);
779 ew32(STATUS, toggle);
780 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800781 if (value != after) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000782 e_err("failed STATUS register test got: "
783 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *data = 1;
785 return 1;
786 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700787 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700788 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800789
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000790 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
791 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
792 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
793 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
796 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
797 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
798 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
799 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
800 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
801 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
802 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
803 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
804 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
805
806 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800807
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000808 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700809 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
811
Joe Perches1dc32912008-07-11 15:17:08 -0700812 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Auke Kokcd94dd02006-06-27 09:08:22 -0700814 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000816 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
818 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000819 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700820 for (i = 0; i < value; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
Auke Kok90fb5132006-11-01 08:47:30 -0800822 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
825 } else {
826
827 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
828 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
829 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
830 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
831
832 }
833
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000834 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700835 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
837
838 *data = 0;
839 return 0;
840}
841
Joe Perches64798842008-07-11 15:17:02 -0700842static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Joe Perches1dc32912008-07-11 15:17:08 -0700844 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700845 u16 temp;
846 u16 checksum = 0;
847 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 *data = 0;
850 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800851 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700852 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 *data = 1;
854 break;
855 }
856 checksum += temp;
857 }
858
859 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700860 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 *data = 2;
862
863 return *data;
864}
865
Joe Perches64798842008-07-11 15:17:02 -0700866static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Joe Perchese982f172008-07-11 15:17:18 -0700868 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700869 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700870 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Joe Perches1dc32912008-07-11 15:17:08 -0700872 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return IRQ_HANDLED;
875}
876
Joe Perches64798842008-07-11 15:17:02 -0700877static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700880 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700881 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700882 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700883 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 *data = 0;
886
Auke Kok8fc897b2006-08-28 14:56:16 -0700887 /* NOTE: we don't test MSI interrupts here, yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* Hook up test interrupt handler just for this test */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800889 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Auke Kok90fb5132006-11-01 08:47:30 -0800890 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700891 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800892 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Auke Kok90fb5132006-11-01 08:47:30 -0800893 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 *data = 1;
895 return -1;
896 }
Emil Tantilov675ad472010-04-27 14:02:58 +0000897 e_info("testing %s interrupt\n", (shared_int ? "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700900 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400901 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800904 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 /* Interrupt to test */
907 mask = 1 << i;
908
Auke Kok76c224b2006-05-23 13:36:06 -0700909 if (!shared_int) {
910 /* Disable the interrupt to be reported in
911 * the cause register and then force the same
912 * interrupt and see if one gets posted. If
913 * an interrupt was posted to the bus, the
914 * test failed.
915 */
916 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700917 ew32(IMC, mask);
918 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400919 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800920
Auke Kok76c224b2006-05-23 13:36:06 -0700921 if (adapter->test_icr & mask) {
922 *data = 3;
923 break;
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
927 /* Enable the interrupt to be reported in
928 * the cause register and then force the same
929 * interrupt and see if one gets posted. If
930 * an interrupt was not posted to the bus, the
931 * test failed.
932 */
933 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700934 ew32(IMS, mask);
935 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400936 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800938 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 *data = 4;
940 break;
941 }
942
Auke Kok76c224b2006-05-23 13:36:06 -0700943 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /* Disable the other interrupts to be reported in
945 * the cause register and then force the other
946 * interrupts and see if any get posted. If
947 * an interrupt was posted to the bus, the
948 * test failed.
949 */
950 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700951 ew32(IMC, ~mask & 0x00007FFF);
952 ew32(ICS, ~mask & 0x00007FFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400953 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800955 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 *data = 5;
957 break;
958 }
959 }
960 }
961
962 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700963 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400964 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /* Unhook test interrupt handler */
967 free_irq(irq, netdev);
968
969 return *data;
970}
971
Joe Perches64798842008-07-11 15:17:02 -0700972static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400974 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
975 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct pci_dev *pdev = adapter->pdev;
977 int i;
978
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800979 if (txdr->desc && txdr->buffer_info) {
980 for (i = 0; i < txdr->count; i++) {
981 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000982 dma_unmap_single(&pdev->dev,
983 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000985 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800986 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 dev_kfree_skb(txdr->buffer_info[i].skb);
988 }
989 }
990
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800991 if (rxdr->desc && rxdr->buffer_info) {
992 for (i = 0; i < rxdr->count; i++) {
993 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000994 dma_unmap_single(&pdev->dev,
995 rxdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 rxdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000997 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800998 if (rxdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 dev_kfree_skb(rxdr->buffer_info[i].skb);
1000 }
1001 }
1002
Jeff Kirsherf5645112006-01-12 16:51:01 -08001003 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001004 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
1005 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -05001006 txdr->desc = NULL;
1007 }
Jeff Kirsherf5645112006-01-12 16:51:01 -08001008 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001009 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
1010 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -05001011 rxdr->desc = NULL;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001014 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -05001015 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001016 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -05001017 rxdr->buffer_info = NULL;
Jeff Kirsherf5645112006-01-12 16:51:01 -08001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020}
1021
Joe Perches64798842008-07-11 15:17:02 -07001022static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Joe Perches1dc32912008-07-11 15:17:08 -07001024 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001025 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1026 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -07001028 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -08001029 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /* Setup Tx descriptor ring and Tx buffers */
1032
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001033 if (!txdr->count)
1034 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Joe Perchesc7be73b2008-07-11 15:17:28 -07001036 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
1037 GFP_KERNEL);
1038 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 ret_val = 1;
1040 goto err_nomem;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001044 txdr->size = ALIGN(txdr->size, 4096);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001045 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1046 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001047 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 ret_val = 2;
1049 goto err_nomem;
1050 }
1051 memset(txdr->desc, 0, txdr->size);
1052 txdr->next_to_use = txdr->next_to_clean = 0;
1053
Joe Perchese982f172008-07-11 15:17:18 -07001054 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1055 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001056 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1057 ew32(TDH, 0);
1058 ew32(TDT, 0);
1059 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1060 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1061 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001063 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1065 struct sk_buff *skb;
1066 unsigned int size = 1024;
1067
Joe Perchesc7be73b2008-07-11 15:17:28 -07001068 skb = alloc_skb(size, GFP_KERNEL);
1069 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 ret_val = 3;
1071 goto err_nomem;
1072 }
1073 skb_put(skb, size);
1074 txdr->buffer_info[i].skb = skb;
1075 txdr->buffer_info[i].length = skb->len;
1076 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001077 dma_map_single(&pdev->dev, skb->data, skb->len,
1078 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1080 tx_desc->lower.data = cpu_to_le32(skb->len);
1081 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1082 E1000_TXD_CMD_IFCS |
1083 E1000_TXD_CMD_RPS);
1084 tx_desc->upper.data = 0;
1085 }
1086
1087 /* Setup Rx descriptor ring and Rx buffers */
1088
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001089 if (!rxdr->count)
1090 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Joe Perchesc7be73b2008-07-11 15:17:28 -07001092 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1093 GFP_KERNEL);
1094 if (!rxdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ret_val = 4;
1096 goto err_nomem;
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001100 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1101 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001102 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ret_val = 5;
1104 goto err_nomem;
1105 }
1106 memset(rxdr->desc, 0, rxdr->size);
1107 rxdr->next_to_use = rxdr->next_to_clean = 0;
1108
Joe Perches1dc32912008-07-11 15:17:08 -07001109 rctl = er32(RCTL);
1110 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001111 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1112 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001113 ew32(RDLEN, rxdr->size);
1114 ew32(RDH, 0);
1115 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1117 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001118 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1119 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001121 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1123 struct sk_buff *skb;
1124
Joe Perchesc7be73b2008-07-11 15:17:28 -07001125 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1126 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 ret_val = 6;
1128 goto err_nomem;
1129 }
1130 skb_reserve(skb, NET_IP_ALIGN);
1131 rxdr->buffer_info[i].skb = skb;
1132 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1133 rxdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001134 dma_map_single(&pdev->dev, skb->data,
1135 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1137 memset(skb->data, 0x00, skb->len);
1138 }
1139
1140 return 0;
1141
1142err_nomem:
1143 e1000_free_desc_rings(adapter);
1144 return ret_val;
1145}
1146
Joe Perches64798842008-07-11 15:17:02 -07001147static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Joe Perches1dc32912008-07-11 15:17:08 -07001149 struct e1000_hw *hw = &adapter->hw;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001152 e1000_write_phy_reg(hw, 29, 0x001F);
1153 e1000_write_phy_reg(hw, 30, 0x8FFC);
1154 e1000_write_phy_reg(hw, 29, 0x001A);
1155 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Joe Perches64798842008-07-11 15:17:02 -07001158static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Joe Perches1dc32912008-07-11 15:17:08 -07001160 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001161 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1164 * Extended PHY Specific Control Register to 25MHz clock. This
1165 * value defaults back to a 2.5MHz clock when the PHY is reset.
1166 */
Joe Perches1dc32912008-07-11 15:17:08 -07001167 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Joe Perches1dc32912008-07-11 15:17:08 -07001169 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1171
1172 /* In addition, because of the s/w reset above, we need to enable
1173 * CRS on TX. This must be set for both full and half duplex
1174 * operation.
1175 */
Joe Perches1dc32912008-07-11 15:17:08 -07001176 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Joe Perches1dc32912008-07-11 15:17:08 -07001178 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 M88E1000_PHY_SPEC_CTRL, phy_reg);
1180}
1181
Joe Perches64798842008-07-11 15:17:02 -07001182static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Joe Perches1dc32912008-07-11 15:17:08 -07001184 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001185 u32 ctrl_reg;
1186 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /* Setup the Device Control Register for PHY loopback test. */
1189
Joe Perches1dc32912008-07-11 15:17:08 -07001190 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1192 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1193 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1194 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1195 E1000_CTRL_FD); /* Force Duplex to FULL */
1196
Joe Perches1dc32912008-07-11 15:17:08 -07001197 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001200 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /* Clear Auto-Crossover bits in PHY Specific Control Register
1203 * (bits 6:5).
1204 */
1205 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001206 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001209 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 /* Have to setup TX_CLK and TX_CRS after software reset */
1212 e1000_phy_reset_clk_and_crs(adapter);
1213
Joe Perches1dc32912008-07-11 15:17:08 -07001214 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /* Wait for reset to complete. */
1217 udelay(500);
1218
1219 /* Have to setup TX_CLK and TX_CRS after software reset */
1220 e1000_phy_reset_clk_and_crs(adapter);
1221
1222 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1223 e1000_phy_disable_receiver(adapter);
1224
1225 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001226 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001228 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* Setup TX_CLK and TX_CRS one more time. */
1231 e1000_phy_reset_clk_and_crs(adapter);
1232
1233 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001234 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001235 if (phy_reg != 0x4100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return 9;
1237
Joe Perches1dc32912008-07-11 15:17:08 -07001238 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001239 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return 10;
1241
Joe Perches1dc32912008-07-11 15:17:08 -07001242 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001243 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return 11;
1245
1246 return 0;
1247}
1248
Joe Perches64798842008-07-11 15:17:02 -07001249static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Joe Perches1dc32912008-07-11 15:17:08 -07001251 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001252 u32 ctrl_reg = 0;
1253 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Joe Perches1dc32912008-07-11 15:17:08 -07001255 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Joe Perches1dc32912008-07-11 15:17:08 -07001257 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001259 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 M88E1000_PHY_SPEC_CTRL, 0x0808);
1261 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001262 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001264 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Joe Perches1dc32912008-07-11 15:17:08 -07001267 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001268
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001269 /* force 1000, set loopback */
1270 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001271
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001272 /* Now set up the MAC to the same speed/duplex as the PHY. */
1273 ctrl_reg = er32(CTRL);
1274 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1275 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1276 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1277 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1278 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Joe Perches1dc32912008-07-11 15:17:08 -07001280 if (hw->media_type == e1000_media_type_copper &&
1281 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001283 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* Set the ILOS bit on the fiber Nic is half
1285 * duplex link is detected. */
Joe Perches1dc32912008-07-11 15:17:08 -07001286 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001287 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1289 }
1290
Joe Perches1dc32912008-07-11 15:17:08 -07001291 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 /* Disable the receiver on the PHY so when a cable is plugged in, the
1294 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1295 */
Joe Perches1dc32912008-07-11 15:17:08 -07001296 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 e1000_phy_disable_receiver(adapter);
1298
1299 udelay(500);
1300
1301 return 0;
1302}
1303
Joe Perches64798842008-07-11 15:17:02 -07001304static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Joe Perches1dc32912008-07-11 15:17:08 -07001306 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001307 u16 phy_reg = 0;
1308 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Joe Perches1dc32912008-07-11 15:17:08 -07001310 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001312 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* Attempt to setup Loopback mode on Non-integrated PHY.
1314 * Some PHY registers get corrupted at random, so
1315 * attempt this 10 times.
1316 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001317 while (e1000_nonintegrated_phy_loopback(adapter) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001319 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return 0;
1321 }
1322 break;
1323
1324 case e1000_82544:
1325 case e1000_82540:
1326 case e1000_82545:
1327 case e1000_82545_rev_3:
1328 case e1000_82546:
1329 case e1000_82546_rev_3:
1330 case e1000_82541:
1331 case e1000_82541_rev_2:
1332 case e1000_82547:
1333 case e1000_82547_rev_2:
1334 return e1000_integrated_phy_loopback(adapter);
1335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 default:
1337 /* Default PHY loopback work is to read the MII
1338 * control register and assert bit 14 (loopback mode).
1339 */
Joe Perches1dc32912008-07-11 15:17:08 -07001340 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001342 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344 break;
1345 }
1346
1347 return 8;
1348}
1349
Joe Perches64798842008-07-11 15:17:02 -07001350static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Jeff Kirsher49273162006-01-12 16:50:44 -08001352 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001353 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Jeff Kirsher49273162006-01-12 16:50:44 -08001355 if (hw->media_type == e1000_media_type_fiber ||
1356 hw->media_type == e1000_media_type_internal_serdes) {
1357 switch (hw->mac_type) {
1358 case e1000_82545:
1359 case e1000_82546:
1360 case e1000_82545_rev_3:
1361 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001363 break;
Jeff Kirsher49273162006-01-12 16:50:44 -08001364 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001365 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001367 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001370 } else if (hw->media_type == e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return e1000_set_phy_loopback(adapter);
1372
1373 return 7;
1374}
1375
Joe Perches64798842008-07-11 15:17:02 -07001376static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Jeff Kirsher49273162006-01-12 16:50:44 -08001378 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001379 u32 rctl;
1380 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Joe Perches1dc32912008-07-11 15:17:08 -07001382 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001384 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Jeff Kirsher49273162006-01-12 16:50:44 -08001386 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001387 case e1000_82545:
1388 case e1000_82546:
1389 case e1000_82545_rev_3:
1390 case e1000_82546_rev_3:
1391 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001392 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001393 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1394 if (phy_reg & MII_CR_LOOPBACK) {
1395 phy_reg &= ~MII_CR_LOOPBACK;
1396 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1397 e1000_phy_reset(hw);
1398 }
1399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401}
1402
Joe Perches64798842008-07-11 15:17:02 -07001403static void e1000_create_lbtest_frame(struct sk_buff *skb,
1404 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001407 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1409 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1410 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1411}
1412
Joe Perches64798842008-07-11 15:17:02 -07001413static int e1000_check_lbtest_frame(struct sk_buff *skb,
1414 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001416 frame_size &= ~1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001417 if (*(skb->data + 3) == 0xFF) {
1418 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1420 return 0;
1421 }
1422 }
1423 return 13;
1424}
1425
Joe Perches64798842008-07-11 15:17:02 -07001426static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Joe Perches1dc32912008-07-11 15:17:08 -07001428 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001429 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1430 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 struct pci_dev *pdev = adapter->pdev;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001432 int i, j, k, l, lc, good_cnt, ret_val=0;
1433 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Joe Perches1dc32912008-07-11 15:17:08 -07001435 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001437 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001438 * The idea is to wrap the largest ring a number of times using 64
1439 * send/receive pairs during each loop
1440 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001442 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001443 lc = ((txdr->count / 64) * 2) + 1;
1444 else
1445 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Malli Chilakalae4eff722005-04-28 19:38:30 -07001447 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001448 for (j = 0; j <= lc; j++) { /* loop count loop */
1449 for (i = 0; i < 64; i++) { /* send the packets */
1450 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001451 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001452 dma_sync_single_for_device(&pdev->dev,
1453 txdr->buffer_info[k].dma,
1454 txdr->buffer_info[k].length,
1455 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001456 if (unlikely(++k == txdr->count)) k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001457 }
Joe Perches1dc32912008-07-11 15:17:08 -07001458 ew32(TDT, k);
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001459 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001460 time = jiffies; /* set the start time for the receive */
1461 good_cnt = 0;
1462 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001463 dma_sync_single_for_cpu(&pdev->dev,
1464 rxdr->buffer_info[l].dma,
1465 rxdr->buffer_info[l].length,
1466 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001467
Malli Chilakalae4eff722005-04-28 19:38:30 -07001468 ret_val = e1000_check_lbtest_frame(
1469 rxdr->buffer_info[l].skb,
1470 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001471 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001472 good_cnt++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001473 if (unlikely(++l == rxdr->count)) l = 0;
1474 /* time + 20 msecs (200 msecs on 2.4) is more than
1475 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001476 * exceeded, break and error off
1477 */
1478 } while (good_cnt < 64 && jiffies < (time + 20));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001479 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001480 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001481 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001482 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001483 if (jiffies >= (time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001484 ret_val = 14; /* error code for time out error */
1485 break;
1486 }
1487 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return ret_val;
1489}
1490
Joe Perches64798842008-07-11 15:17:02 -07001491static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001493 *data = e1000_setup_desc_rings(adapter);
1494 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001495 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001496 *data = e1000_setup_loopback_test(adapter);
1497 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001498 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 *data = e1000_run_loopback_test(adapter);
1500 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001503 e1000_free_desc_rings(adapter);
1504out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return *data;
1506}
1507
Joe Perches64798842008-07-11 15:17:02 -07001508static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Joe Perches1dc32912008-07-11 15:17:08 -07001510 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001512 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 int i = 0;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001514 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Malli Chilakala26483452005-04-28 19:44:46 -07001516 /* On some blade server designs, link establishment
1517 * could take as long as 2-3 minutes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001519 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001520 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001522 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 } while (i++ < 3750);
1524
Malli Chilakala26483452005-04-28 19:44:46 -07001525 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001527 e1000_check_for_link(hw);
1528 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001529 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Joe Perches1dc32912008-07-11 15:17:08 -07001531 if (!(er32(STATUS) & E1000_STATUS_LU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 *data = 1;
1533 }
1534 }
1535 return *data;
1536}
1537
Joe Perches64798842008-07-11 15:17:02 -07001538static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001540 switch (sset) {
1541 case ETH_SS_TEST:
1542 return E1000_TEST_LEN;
1543 case ETH_SS_STATS:
1544 return E1000_STATS_LEN;
1545 default:
1546 return -EOPNOTSUPP;
1547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Joe Perches64798842008-07-11 15:17:02 -07001550static void e1000_diag_test(struct net_device *netdev,
1551 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001553 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001554 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001555 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Auke Kok1314bbf2006-09-27 12:54:02 -07001557 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001558 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /* Offline tests */
1560
1561 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001562 u16 autoneg_advertised = hw->autoneg_advertised;
1563 u8 forced_speed_duplex = hw->forced_speed_duplex;
1564 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Emil Tantilov675ad472010-04-27 14:02:58 +00001566 e_info("offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* Link test performed before hardware reset so autoneg doesn't
1569 * interfere with test result */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001570 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 eth_test->flags |= ETH_TEST_FL_FAILED;
1572
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001573 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001574 /* indicate we're in test mode */
1575 dev_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 else
1577 e1000_reset(adapter);
1578
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001579 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 eth_test->flags |= ETH_TEST_FL_FAILED;
1581
1582 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001583 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 eth_test->flags |= ETH_TEST_FL_FAILED;
1585
1586 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001587 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 eth_test->flags |= ETH_TEST_FL_FAILED;
1589
1590 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001591 /* make sure the phy is powered up */
1592 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001593 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 eth_test->flags |= ETH_TEST_FL_FAILED;
1595
1596 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001597 hw->autoneg_advertised = autoneg_advertised;
1598 hw->forced_speed_duplex = forced_speed_duplex;
1599 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001602 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001603 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001604 dev_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +00001606 e_info("online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001608 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 eth_test->flags |= ETH_TEST_FL_FAILED;
1610
Auke Kok90fb5132006-11-01 08:47:30 -08001611 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 data[0] = 0;
1613 data[1] = 0;
1614 data[2] = 0;
1615 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001616
Auke Kok1314bbf2006-09-27 12:54:02 -07001617 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001619 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
Joe Perches64798842008-07-11 15:17:02 -07001622static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1623 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001626 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001628 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001629 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 case E1000_DEV_ID_82543GC_FIBER:
1631 case E1000_DEV_ID_82543GC_COPPER:
1632 case E1000_DEV_ID_82544EI_FIBER:
1633 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1634 case E1000_DEV_ID_82545EM_FIBER:
1635 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001636 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001637 case E1000_DEV_ID_82546GB_PCIE:
1638 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001640 break;
1641 case E1000_DEV_ID_82546EB_FIBER:
1642 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001643 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001644 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001645 wol->supported = 0;
1646 break;
1647 }
1648 /* return success for non excluded adapter ports */
1649 retval = 0;
1650 break;
1651 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1652 /* quad port adapters only support WoL on port A */
1653 if (!adapter->quad_port_a) {
1654 wol->supported = 0;
1655 break;
1656 }
1657 /* return success for non excluded adapter ports */
1658 retval = 0;
1659 break;
1660 default:
1661 /* dual port cards only support WoL on port A from now on
1662 * unless it was enabled in the eeprom for port B
1663 * so exclude FUNC_1 ports from having WoL enabled */
Joe Perches1dc32912008-07-11 15:17:08 -07001664 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001665 !adapter->eeprom_wol) {
1666 wol->supported = 0;
1667 break;
1668 }
1669
1670 retval = 0;
1671 }
1672
1673 return retval;
1674}
1675
Joe Perches64798842008-07-11 15:17:02 -07001676static void e1000_get_wol(struct net_device *netdev,
1677 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001678{
1679 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001680 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001681
1682 wol->supported = WAKE_UCAST | WAKE_MCAST |
1683 WAKE_BCAST | WAKE_MAGIC;
1684 wol->wolopts = 0;
1685
1686 /* this function will set ->supported = 0 and return 1 if wol is not
1687 * supported by this hardware */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001688 if (e1000_wol_exclusion(adapter, wol) ||
1689 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return;
1691
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001692 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001693 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001694 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001695 /* KSP3 does not suppport UCAST wake-ups */
1696 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001697
1698 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilov675ad472010-04-27 14:02:58 +00001699 e_err("Interface does not support "
Jeff Kirsher84916822006-03-02 18:18:48 -08001700 "directed (unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001701 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001703 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001705
1706 if (adapter->wol & E1000_WUFC_EX)
1707 wol->wolopts |= WAKE_UCAST;
1708 if (adapter->wol & E1000_WUFC_MC)
1709 wol->wolopts |= WAKE_MCAST;
1710 if (adapter->wol & E1000_WUFC_BC)
1711 wol->wolopts |= WAKE_BCAST;
1712 if (adapter->wol & E1000_WUFC_MAG)
1713 wol->wolopts |= WAKE_MAGIC;
1714
1715 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
Joe Perches64798842008-07-11 15:17:02 -07001718static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001720 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct e1000_hw *hw = &adapter->hw;
1722
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001723 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1724 return -EOPNOTSUPP;
1725
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001726 if (e1000_wol_exclusion(adapter, wol) ||
1727 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return wol->wolopts ? -EOPNOTSUPP : 0;
1729
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001730 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001731 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001732 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001733 e_err("Interface does not support "
1734 "directed (unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001735 return -EOPNOTSUPP;
1736 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001739 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001742 /* these settings will always override what we currently have */
1743 adapter->wol = 0;
1744
1745 if (wol->wolopts & WAKE_UCAST)
1746 adapter->wol |= E1000_WUFC_EX;
1747 if (wol->wolopts & WAKE_MCAST)
1748 adapter->wol |= E1000_WUFC_MC;
1749 if (wol->wolopts & WAKE_BCAST)
1750 adapter->wol |= E1000_WUFC_BC;
1751 if (wol->wolopts & WAKE_MAGIC)
1752 adapter->wol |= E1000_WUFC_MAG;
1753
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001754 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return 0;
1757}
1758
1759/* toggle LED 4 times per second = 2 "blinks" per second */
1760#define E1000_ID_INTERVAL (HZ/4)
1761
1762/* bit defines for adapter->led_status */
1763#define E1000_LED_ON 0
1764
Joe Perches64798842008-07-11 15:17:02 -07001765static void e1000_led_blink_callback(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
1767 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Joe Perches1dc32912008-07-11 15:17:08 -07001768 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001770 if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
Joe Perches1dc32912008-07-11 15:17:08 -07001771 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 else
Joe Perches1dc32912008-07-11 15:17:08 -07001773 e1000_led_on(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
1776}
1777
Joe Perches64798842008-07-11 15:17:02 -07001778static int e1000_phys_id(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001780 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001781 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Stephen Hemmingerabec42a2007-10-29 10:46:19 -07001783 if (!data)
1784 data = INT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001786 if (!adapter->blink_timer.function) {
1787 init_timer(&adapter->blink_timer);
1788 adapter->blink_timer.function = e1000_led_blink_callback;
1789 adapter->blink_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001791 e1000_setup_led(hw);
1792 mod_timer(&adapter->blink_timer, jiffies);
1793 msleep_interruptible(data * 1000);
1794 del_timer_sync(&adapter->blink_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Joe Perches1dc32912008-07-11 15:17:08 -07001796 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 clear_bit(E1000_LED_ON, &adapter->led_status);
Joe Perches1dc32912008-07-11 15:17:08 -07001798 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 return 0;
1801}
1802
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001803static int e1000_get_coalesce(struct net_device *netdev,
1804 struct ethtool_coalesce *ec)
1805{
1806 struct e1000_adapter *adapter = netdev_priv(netdev);
1807
1808 if (adapter->hw.mac_type < e1000_82545)
1809 return -EOPNOTSUPP;
1810
1811 if (adapter->itr_setting <= 3)
1812 ec->rx_coalesce_usecs = adapter->itr_setting;
1813 else
1814 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1815
1816 return 0;
1817}
1818
1819static int e1000_set_coalesce(struct net_device *netdev,
1820 struct ethtool_coalesce *ec)
1821{
1822 struct e1000_adapter *adapter = netdev_priv(netdev);
1823 struct e1000_hw *hw = &adapter->hw;
1824
1825 if (hw->mac_type < e1000_82545)
1826 return -EOPNOTSUPP;
1827
1828 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
1829 ((ec->rx_coalesce_usecs > 3) &&
1830 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1831 (ec->rx_coalesce_usecs == 2))
1832 return -EINVAL;
1833
1834 if (ec->rx_coalesce_usecs <= 3) {
1835 adapter->itr = 20000;
1836 adapter->itr_setting = ec->rx_coalesce_usecs;
1837 } else {
1838 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1839 adapter->itr_setting = adapter->itr & ~3;
1840 }
1841
1842 if (adapter->itr_setting != 0)
1843 ew32(ITR, 1000000000 / (adapter->itr * 256));
1844 else
1845 ew32(ITR, 0);
1846
1847 return 0;
1848}
1849
Joe Perches64798842008-07-11 15:17:02 -07001850static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001852 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok2db10a02006-06-27 09:06:28 -07001853 if (netif_running(netdev))
1854 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return 0;
1856}
1857
Joe Perches64798842008-07-11 15:17:02 -07001858static void e1000_get_ethtool_stats(struct net_device *netdev,
1859 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001861 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 int i;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001863 char *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001866 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001867 switch (e1000_gstrings_stats[i].type) {
1868 case NETDEV_STATS:
1869 p = (char *) netdev +
1870 e1000_gstrings_stats[i].stat_offset;
1871 break;
1872 case E1000_STATS:
1873 p = (char *) adapter +
1874 e1000_gstrings_stats[i].stat_offset;
1875 break;
1876 }
1877
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001878 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Joe Perches406874a2008-04-03 10:06:32 -07001879 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001881/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Joe Perches64798842008-07-11 15:17:02 -07001884static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1885 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
Joe Perches406874a2008-04-03 10:06:32 -07001887 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 int i;
1889
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001890 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 case ETH_SS_TEST:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001892 memcpy(data, *e1000_gstrings_test,
Roel Kluinc32bc6e2007-12-05 11:57:30 -08001893 sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 break;
1895 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001896 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1897 memcpy(p, e1000_gstrings_stats[i].stat_string,
1898 ETH_GSTRING_LEN);
1899 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001901/* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 break;
1903 }
1904}
1905
Jeff Garzik7282d492006-09-13 14:30:00 -04001906static const struct ethtool_ops e1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 .get_settings = e1000_get_settings,
1908 .set_settings = e1000_set_settings,
1909 .get_drvinfo = e1000_get_drvinfo,
1910 .get_regs_len = e1000_get_regs_len,
1911 .get_regs = e1000_get_regs,
1912 .get_wol = e1000_get_wol,
1913 .set_wol = e1000_set_wol,
Auke Kok8fc897b2006-08-28 14:56:16 -07001914 .get_msglevel = e1000_get_msglevel,
1915 .set_msglevel = e1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 .nway_reset = e1000_nway_reset,
Nick Nunleyb5481922010-02-03 14:49:28 +00001917 .get_link = e1000_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 .get_eeprom_len = e1000_get_eeprom_len,
1919 .get_eeprom = e1000_get_eeprom,
1920 .set_eeprom = e1000_set_eeprom,
1921 .get_ringparam = e1000_get_ringparam,
1922 .set_ringparam = e1000_set_ringparam,
Auke Kok8fc897b2006-08-28 14:56:16 -07001923 .get_pauseparam = e1000_get_pauseparam,
1924 .set_pauseparam = e1000_set_pauseparam,
1925 .get_rx_csum = e1000_get_rx_csum,
1926 .set_rx_csum = e1000_set_rx_csum,
1927 .get_tx_csum = e1000_get_tx_csum,
1928 .set_tx_csum = e1000_set_tx_csum,
Auke Kok8fc897b2006-08-28 14:56:16 -07001929 .set_sg = ethtool_op_set_sg,
Auke Kok8fc897b2006-08-28 14:56:16 -07001930 .set_tso = e1000_set_tso,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 .self_test = e1000_diag_test,
1932 .get_strings = e1000_get_strings,
1933 .phys_id = e1000_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 .get_ethtool_stats = e1000_get_ethtool_stats,
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001935 .get_sset_count = e1000_get_sset_count,
1936 .get_coalesce = e1000_get_coalesce,
1937 .set_coalesce = e1000_set_coalesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938};
1939
1940void e1000_set_ethtool_ops(struct net_device *netdev)
1941{
1942 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1943}