blob: c854c96f5ab326af0ca3bf0093c1ad464169ab5a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct e1000_stats {
35 char stat_string[ETH_GSTRING_LEN];
36 int sizeof_stat;
37 int stat_offset;
38};
39
Julia Lawall030ed682008-02-11 09:25:40 -080040#define E1000_STAT(m) FIELD_SIZEOF(struct e1000_adapter, m), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 offsetof(struct e1000_adapter, m)
42static const struct e1000_stats e1000_gstrings_stats[] = {
Mitch Williams49559852006-09-27 12:53:37 -070043 { "rx_packets", E1000_STAT(stats.gprc) },
44 { "tx_packets", E1000_STAT(stats.gptc) },
45 { "rx_bytes", E1000_STAT(stats.gorcl) },
46 { "tx_bytes", E1000_STAT(stats.gotcl) },
47 { "rx_broadcast", E1000_STAT(stats.bprc) },
48 { "tx_broadcast", E1000_STAT(stats.bptc) },
49 { "rx_multicast", E1000_STAT(stats.mprc) },
50 { "tx_multicast", E1000_STAT(stats.mptc) },
51 { "rx_errors", E1000_STAT(stats.rxerrc) },
52 { "tx_errors", E1000_STAT(stats.txerrc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 { "tx_dropped", E1000_STAT(net_stats.tx_dropped) },
Mitch Williams49559852006-09-27 12:53:37 -070054 { "multicast", E1000_STAT(stats.mprc) },
55 { "collisions", E1000_STAT(stats.colc) },
56 { "rx_length_errors", E1000_STAT(stats.rlerrc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 { "rx_over_errors", E1000_STAT(net_stats.rx_over_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070058 { "rx_crc_errors", E1000_STAT(stats.crcerrs) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 { "rx_frame_errors", E1000_STAT(net_stats.rx_frame_errors) },
Malli Chilakala26483452005-04-28 19:44:46 -070060 { "rx_no_buffer_count", E1000_STAT(stats.rnbc) },
Mitch Williams49559852006-09-27 12:53:37 -070061 { "rx_missed_errors", E1000_STAT(stats.mpc) },
62 { "tx_aborted_errors", E1000_STAT(stats.ecol) },
63 { "tx_carrier_errors", E1000_STAT(stats.tncrs) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 { "tx_fifo_errors", E1000_STAT(net_stats.tx_fifo_errors) },
65 { "tx_heartbeat_errors", E1000_STAT(net_stats.tx_heartbeat_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070066 { "tx_window_errors", E1000_STAT(stats.latecol) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 { "tx_abort_late_coll", E1000_STAT(stats.latecol) },
68 { "tx_deferred_ok", E1000_STAT(stats.dc) },
69 { "tx_single_coll_ok", E1000_STAT(stats.scc) },
70 { "tx_multi_coll_ok", E1000_STAT(stats.mcc) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080071 { "tx_timeout_count", E1000_STAT(tx_timeout_count) },
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -080072 { "tx_restart_queue", E1000_STAT(restart_queue) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 { "rx_long_length_errors", E1000_STAT(stats.roc) },
74 { "rx_short_length_errors", E1000_STAT(stats.ruc) },
75 { "rx_align_errors", E1000_STAT(stats.algnerrc) },
76 { "tx_tcp_seg_good", E1000_STAT(stats.tsctc) },
77 { "tx_tcp_seg_failed", E1000_STAT(stats.tsctfc) },
78 { "rx_flow_control_xon", E1000_STAT(stats.xonrxc) },
79 { "rx_flow_control_xoff", E1000_STAT(stats.xoffrxc) },
80 { "tx_flow_control_xon", E1000_STAT(stats.xontxc) },
81 { "tx_flow_control_xoff", E1000_STAT(stats.xofftxc) },
82 { "rx_long_byte_count", E1000_STAT(stats.gorcl) },
83 { "rx_csum_offload_good", E1000_STAT(hw_csum_good) },
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -040084 { "rx_csum_offload_errors", E1000_STAT(hw_csum_err) },
85 { "rx_header_split", E1000_STAT(rx_hdr_split) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080086 { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
Jeff Garzik15e376b2006-12-15 11:16:33 -050087 { "tx_smbus", E1000_STAT(stats.mgptc) },
88 { "rx_smbus", E1000_STAT(stats.mgprc) },
89 { "dropped_smbus", E1000_STAT(stats.mgpdc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080091
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080092#define E1000_QUEUE_STATS_LEN 0
Denis Chengff8ac602007-09-02 18:30:18 +080093#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080094#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
96 "Register test (offline)", "Eeprom test (offline)",
97 "Interrupt test (offline)", "Loopback test (offline)",
98 "Link test (on/offline)"
99};
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +0200100#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Joe Perches64798842008-07-11 15:17:02 -0700102static int e1000_get_settings(struct net_device *netdev,
103 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700105 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct e1000_hw *hw = &adapter->hw;
107
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800108 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 ecmd->supported = (SUPPORTED_10baseT_Half |
111 SUPPORTED_10baseT_Full |
112 SUPPORTED_100baseT_Half |
113 SUPPORTED_100baseT_Full |
114 SUPPORTED_1000baseT_Full|
115 SUPPORTED_Autoneg |
116 SUPPORTED_TP);
Auke Kokcd94dd02006-06-27 09:08:22 -0700117 if (hw->phy_type == e1000_phy_ife)
118 ecmd->supported &= ~SUPPORTED_1000baseT_Full;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 ecmd->advertising = ADVERTISED_TP;
120
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800121 if (hw->autoneg == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 ecmd->advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* the e1000 autoneg seems to match ethtool nicely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 ecmd->advertising |= hw->autoneg_advertised;
125 }
126
127 ecmd->port = PORT_TP;
128 ecmd->phy_address = hw->phy_addr;
129
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800130 if (hw->mac_type == e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 ecmd->transceiver = XCVR_EXTERNAL;
132 else
133 ecmd->transceiver = XCVR_INTERNAL;
134
135 } else {
136 ecmd->supported = (SUPPORTED_1000baseT_Full |
137 SUPPORTED_FIBRE |
138 SUPPORTED_Autoneg);
139
Malli Chilakala012609a2005-06-17 17:43:06 -0700140 ecmd->advertising = (ADVERTISED_1000baseT_Full |
141 ADVERTISED_FIBRE |
142 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 ecmd->port = PORT_FIBRE;
145
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800146 if (hw->mac_type >= e1000_82545)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ecmd->transceiver = XCVR_INTERNAL;
148 else
149 ecmd->transceiver = XCVR_EXTERNAL;
150 }
151
Joe Perches1dc32912008-07-11 15:17:08 -0700152 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
155 &adapter->link_duplex);
156 ecmd->speed = adapter->link_speed;
157
158 /* unfortunatly FULL_DUPLEX != DUPLEX_FULL
159 * and HALF_DUPLEX != DUPLEX_HALF */
160
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800161 if (adapter->link_duplex == FULL_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ecmd->duplex = DUPLEX_FULL;
163 else
164 ecmd->duplex = DUPLEX_HALF;
165 } else {
166 ecmd->speed = -1;
167 ecmd->duplex = -1;
168 }
169
170 ecmd->autoneg = ((hw->media_type == e1000_media_type_fiber) ||
171 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
172 return 0;
173}
174
Joe Perches64798842008-07-11 15:17:02 -0700175static int e1000_set_settings(struct net_device *netdev,
176 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700178 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct e1000_hw *hw = &adapter->hw;
180
Jeff Kirsher57128192006-01-12 16:50:28 -0800181 /* When SoL/IDER sessions are active, autoneg/speed/duplex
182 * cannot be changed */
183 if (e1000_check_phy_reset_block(hw)) {
184 DPRINTK(DRV, ERR, "Cannot change link characteristics "
185 "when SoL/IDER is active.\n");
186 return -EINVAL;
187 }
188
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700189 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
190 msleep(1);
191
Jeff Kirsher57128192006-01-12 16:50:28 -0800192 if (ecmd->autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800194 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700195 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
196 ADVERTISED_FIBRE |
197 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800198 else
Jeff Kirsher2f2ca262006-09-27 12:53:40 -0700199 hw->autoneg_advertised = ecmd->advertising |
200 ADVERTISED_TP |
201 ADVERTISED_Autoneg;
Malli Chilakala012609a2005-06-17 17:43:06 -0700202 ecmd->advertising = hw->autoneg_advertised;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700204 if (e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) {
205 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* reset the link */
210
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700211 if (netif_running(adapter->netdev)) {
212 e1000_down(adapter);
213 e1000_up(adapter);
214 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 e1000_reset(adapter);
216
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700217 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 0;
219}
220
Joe Perches64798842008-07-11 15:17:02 -0700221static void e1000_get_pauseparam(struct net_device *netdev,
222 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700224 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct e1000_hw *hw = &adapter->hw;
226
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800227 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800229
Jeff Kirsher11241b12006-09-27 12:53:28 -0700230 if (hw->fc == E1000_FC_RX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 pause->rx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700232 else if (hw->fc == E1000_FC_TX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 pause->tx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700234 else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 pause->rx_pause = 1;
236 pause->tx_pause = 1;
237 }
238}
239
Joe Perches64798842008-07-11 15:17:02 -0700240static int e1000_set_pauseparam(struct net_device *netdev,
241 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700243 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700245 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 adapter->fc_autoneg = pause->autoneg;
248
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700249 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
250 msleep(1);
251
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800252 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700253 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800254 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700255 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800256 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700257 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800258 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700259 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 hw->original_fc = hw->fc;
262
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800263 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700264 if (netif_running(adapter->netdev)) {
265 e1000_down(adapter);
266 e1000_up(adapter);
267 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800269 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700270 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800271 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800272
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700273 clear_bit(__E1000_RESETTING, &adapter->flags);
274 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Joe Perches64798842008-07-11 15:17:02 -0700277static u32 e1000_get_rx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700279 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return adapter->rx_csum;
281}
282
Joe Perches64798842008-07-11 15:17:02 -0700283static int e1000_set_rx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700285 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 adapter->rx_csum = data;
287
Auke Kok2db10a02006-06-27 09:06:28 -0700288 if (netif_running(netdev))
289 e1000_reinit_locked(adapter);
290 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 e1000_reset(adapter);
292 return 0;
293}
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800294
Joe Perches64798842008-07-11 15:17:02 -0700295static u32 e1000_get_tx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 return (netdev->features & NETIF_F_HW_CSUM) != 0;
298}
299
Joe Perches64798842008-07-11 15:17:02 -0700300static int e1000_set_tx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700302 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700303 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Joe Perches1dc32912008-07-11 15:17:08 -0700305 if (hw->mac_type < e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!data)
307 return -EINVAL;
308 return 0;
309 }
310
311 if (data)
312 netdev->features |= NETIF_F_HW_CSUM;
313 else
314 netdev->features &= ~NETIF_F_HW_CSUM;
315
316 return 0;
317}
318
Joe Perches64798842008-07-11 15:17:02 -0700319static int e1000_set_tso(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700321 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700322 struct e1000_hw *hw = &adapter->hw;
323
324 if ((hw->mac_type < e1000_82544) ||
325 (hw->mac_type == e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return data ? -EINVAL : 0;
327
328 if (data)
329 netdev->features |= NETIF_F_TSO;
330 else
331 netdev->features &= ~NETIF_F_TSO;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -0800332
Andy Gospodarek581abbc2008-06-19 17:19:02 -0400333 if (data && (adapter->hw.mac_type > e1000_82547_rev_2))
Auke Kok87ca4e52006-11-01 08:47:36 -0800334 netdev->features |= NETIF_F_TSO6;
335 else
336 netdev->features &= ~NETIF_F_TSO6;
Auke Kok87ca4e52006-11-01 08:47:36 -0800337
Jeff Kirsher7e6c9862006-03-02 18:19:30 -0800338 DPRINTK(PROBE, INFO, "TSO is %s\n", data ? "Enabled" : "Disabled");
Joe Perchesc3033b02008-03-21 11:06:25 -0700339 adapter->tso_force = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800341}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Joe Perches64798842008-07-11 15:17:02 -0700343static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700345 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return adapter->msg_enable;
347}
348
Joe Perches64798842008-07-11 15:17:02 -0700349static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700351 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 adapter->msg_enable = data;
353}
354
Joe Perches64798842008-07-11 15:17:02 -0700355static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700358 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Joe Perches64798842008-07-11 15:17:02 -0700361static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
362 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700364 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700366 u32 *regs_buff = p;
367 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Joe Perches406874a2008-04-03 10:06:32 -0700369 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
372
Joe Perches1dc32912008-07-11 15:17:08 -0700373 regs_buff[0] = er32(CTRL);
374 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Joe Perches1dc32912008-07-11 15:17:08 -0700376 regs_buff[2] = er32(RCTL);
377 regs_buff[3] = er32(RDLEN);
378 regs_buff[4] = er32(RDH);
379 regs_buff[5] = er32(RDT);
380 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Joe Perches1dc32912008-07-11 15:17:08 -0700382 regs_buff[7] = er32(TCTL);
383 regs_buff[8] = er32(TDLEN);
384 regs_buff[9] = er32(TDH);
385 regs_buff[10] = er32(TDT);
386 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Joe Perches1dc32912008-07-11 15:17:08 -0700388 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800389 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
391 IGP01E1000_PHY_AGC_A);
392 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
393 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700394 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
396 IGP01E1000_PHY_AGC_B);
397 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
398 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700399 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
401 IGP01E1000_PHY_AGC_C);
402 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
403 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700404 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
406 IGP01E1000_PHY_AGC_D);
407 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
408 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700409 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
411 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
412 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
413 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700414 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
416 IGP01E1000_PHY_PCS_INIT_REG);
417 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
418 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700419 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 regs_buff[20] = 0; /* polarity correction enabled (always) */
421 regs_buff[22] = 0; /* phy receive errors (unavailable) */
422 regs_buff[23] = regs_buff[18]; /* mdix mode */
423 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
424 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700425 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700426 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
428 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
429 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700430 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700431 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 regs_buff[18] = regs_buff[13]; /* cable polarity */
433 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
434 regs_buff[20] = regs_buff[17]; /* polarity correction */
435 /* phy receive errors */
436 regs_buff[22] = adapter->phy_stats.receive_errors;
437 regs_buff[23] = regs_buff[13]; /* mdix mode */
438 }
439 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
440 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700441 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800443 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700444 hw->mac_type < e1000_82571 &&
445 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700446 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448}
449
Joe Perches64798842008-07-11 15:17:02 -0700450static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700452 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700453 struct e1000_hw *hw = &adapter->hw;
454
455 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Joe Perches64798842008-07-11 15:17:02 -0700458static int e1000_get_eeprom(struct net_device *netdev,
459 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700461 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700463 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 int first_word, last_word;
465 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700466 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800468 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -EINVAL;
470
471 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
472
473 first_word = eeprom->offset >> 1;
474 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
475
Joe Perches406874a2008-04-03 10:06:32 -0700476 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800478 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -ENOMEM;
480
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800481 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 ret_val = e1000_read_eeprom(hw, first_word,
483 last_word - first_word + 1,
484 eeprom_buff);
485 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700486 for (i = 0; i < last_word - first_word + 1; i++) {
487 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
488 &eeprom_buff[i]);
489 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 /* Device's eeprom is always little-endian, word addressable */
495 for (i = 0; i < last_word - first_word + 1; i++)
496 le16_to_cpus(&eeprom_buff[i]);
497
Joe Perches406874a2008-04-03 10:06:32 -0700498 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 eeprom->len);
500 kfree(eeprom_buff);
501
502 return ret_val;
503}
504
Joe Perches64798842008-07-11 15:17:02 -0700505static int e1000_set_eeprom(struct net_device *netdev,
506 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700508 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700510 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 void *ptr;
512 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700513 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800515 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -EOPNOTSUPP;
517
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800518 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return -EFAULT;
520
521 max_len = hw->eeprom.word_size * 2;
522
523 first_word = eeprom->offset >> 1;
524 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
525 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800526 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -ENOMEM;
528
529 ptr = (void *)eeprom_buff;
530
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800531 if (eeprom->offset & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* need read/modify/write of first changed EEPROM word */
533 /* only the second byte of the word is being modified */
534 ret_val = e1000_read_eeprom(hw, first_word, 1,
535 &eeprom_buff[0]);
536 ptr++;
537 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800538 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /* need read/modify/write of last changed EEPROM word */
540 /* only the first byte of the word is being modified */
541 ret_val = e1000_read_eeprom(hw, last_word, 1,
542 &eeprom_buff[last_word - first_word]);
543 }
544
545 /* Device's eeprom is always little-endian, word addressable */
546 for (i = 0; i < last_word - first_word + 1; i++)
547 le16_to_cpus(&eeprom_buff[i]);
548
549 memcpy(ptr, bytes, eeprom->len);
550
551 for (i = 0; i < last_word - first_word + 1; i++)
552 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
553
554 ret_val = e1000_write_eeprom(hw, first_word,
555 last_word - first_word + 1, eeprom_buff);
556
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800557 /* Update the checksum over the first part of the EEPROM if needed
Mallikarjuna R Chilakalaa7990ba2005-10-04 07:08:19 -0400558 * and flush shadow RAM for 82573 conrollers */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800559 if ((ret_val == 0) && ((first_word <= EEPROM_CHECKSUM_REG) ||
Mallikarjuna R Chilakalaa7990ba2005-10-04 07:08:19 -0400560 (hw->mac_type == e1000_82573)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 e1000_update_eeprom_checksum(hw);
562
563 kfree(eeprom_buff);
564 return ret_val;
565}
566
Joe Perches64798842008-07-11 15:17:02 -0700567static void e1000_get_drvinfo(struct net_device *netdev,
568 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700570 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700571 struct e1000_hw *hw = &adapter->hw;
Jeff Kirshera2917e22006-01-12 16:51:23 -0800572 char firmware_version[32];
Joe Perches406874a2008-04-03 10:06:32 -0700573 u16 eeprom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 strncpy(drvinfo->driver, e1000_driver_name, 32);
576 strncpy(drvinfo->version, e1000_driver_version, 32);
Jeff Kirshera2917e22006-01-12 16:51:23 -0800577
578 /* EEPROM image version # is reported as firmware version # for
579 * 8257{1|2|3} controllers */
Joe Perches1dc32912008-07-11 15:17:08 -0700580 e1000_read_eeprom(hw, 5, 1, &eeprom_data);
581 switch (hw->mac_type) {
Jeff Kirshera2917e22006-01-12 16:51:23 -0800582 case e1000_82571:
583 case e1000_82572:
584 case e1000_82573:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -0800585 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -0700586 case e1000_ich8lan:
Jeff Kirshera2917e22006-01-12 16:51:23 -0800587 sprintf(firmware_version, "%d.%d-%d",
588 (eeprom_data & 0xF000) >> 12,
589 (eeprom_data & 0x0FF0) >> 4,
590 eeprom_data & 0x000F);
591 break;
592 default:
593 sprintf(firmware_version, "N/A");
594 }
595
596 strncpy(drvinfo->fw_version, firmware_version, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 drvinfo->regdump_len = e1000_get_regs_len(netdev);
599 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
600}
601
Joe Perches64798842008-07-11 15:17:02 -0700602static void e1000_get_ringparam(struct net_device *netdev,
603 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700605 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700606 struct e1000_hw *hw = &adapter->hw;
607 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400608 struct e1000_tx_ring *txdr = adapter->tx_ring;
609 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
612 E1000_MAX_82544_RXD;
613 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
614 E1000_MAX_82544_TXD;
615 ring->rx_mini_max_pending = 0;
616 ring->rx_jumbo_max_pending = 0;
617 ring->rx_pending = rxdr->count;
618 ring->tx_pending = txdr->count;
619 ring->rx_mini_pending = 0;
620 ring->rx_jumbo_pending = 0;
621}
622
Joe Perches64798842008-07-11 15:17:02 -0700623static int e1000_set_ringparam(struct net_device *netdev,
624 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700626 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700627 struct e1000_hw *hw = &adapter->hw;
628 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700629 struct e1000_tx_ring *txdr, *tx_old;
630 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800631 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400632
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800633 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
634 return -EINVAL;
635
Auke Kok2db10a02006-06-27 09:06:28 -0700636 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
637 msleep(1);
638
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400639 if (netif_running(adapter->netdev))
640 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 tx_old = adapter->tx_ring;
643 rx_old = adapter->rx_ring;
644
Vasily Averin793fab722006-09-27 12:54:14 -0700645 err = -ENOMEM;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800646 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700647 if (!txdr)
648 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400649
Yan Burman1c7e5b12007-03-06 08:58:04 -0800650 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700651 if (!rxdr)
652 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400653
Vasily Averin793fab722006-09-27 12:54:14 -0700654 adapter->tx_ring = txdr;
655 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400656
Joe Perches406874a2008-04-03 10:06:32 -0700657 rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
658 rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700660 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Joe Perches406874a2008-04-03 10:06:32 -0700662 txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
663 txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700665 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800667 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400668 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800669 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400670 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400671
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800672 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700674 err = e1000_setup_all_rx_resources(adapter);
675 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700677 err = e1000_setup_all_tx_resources(adapter);
678 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 goto err_setup_tx;
680
681 /* save the new, restore the old in order to free it,
682 * then restore the new back again */
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 adapter->rx_ring = rx_old;
685 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400686 e1000_free_all_rx_resources(adapter);
687 e1000_free_all_tx_resources(adapter);
688 kfree(tx_old);
689 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700690 adapter->rx_ring = rxdr;
691 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700692 err = e1000_up(adapter);
693 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700694 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Auke Kok2db10a02006-06-27 09:06:28 -0700697 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
699err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400700 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701err_setup_rx:
702 adapter->rx_ring = rx_old;
703 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700704 kfree(rxdr);
705err_alloc_rx:
706 kfree(txdr);
707err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700709err_setup:
710 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return err;
712}
713
Joe Perches64798842008-07-11 15:17:02 -0700714static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
715 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800716{
Joe Perches1dc32912008-07-11 15:17:08 -0700717 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700718 static const u32 test[] =
Joe Perches7e643002007-11-13 20:52:05 -0800719 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Joe Perches1dc32912008-07-11 15:17:08 -0700720 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700721 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800722 int i;
723
724 for (i = 0; i < ARRAY_SIZE(test); i++) {
725 writel(write & test[i], address);
726 read = readl(address);
727 if (read != (write & test[i] & mask)) {
728 DPRINTK(DRV, ERR, "pattern test reg %04X failed: "
729 "got 0x%08X expected 0x%08X\n",
Jeff Garzikcba05162007-11-23 21:50:34 -0500730 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800731 *data = reg;
732 return true;
733 }
734 }
735 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Joe Perches64798842008-07-11 15:17:02 -0700738static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
739 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800740{
Joe Perches1dc32912008-07-11 15:17:08 -0700741 struct e1000_hw *hw = &adapter->hw;
742 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700743 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800744
745 writel(write & mask, address);
746 read = readl(address);
747 if ((read & mask) != (write & mask)) {
748 DPRINTK(DRV, ERR, "set/check reg %04X test failed: "
749 "got 0x%08X expected 0x%08X\n",
750 reg, (read & mask), (write & mask));
751 *data = reg;
752 return true;
753 }
754 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Joe Perches7e643002007-11-13 20:52:05 -0800757#define REG_PATTERN_TEST(reg, mask, write) \
758 do { \
759 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700760 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800761 ? E1000_##reg : E1000_82542_##reg, \
762 mask, write)) \
763 return 1; \
764 } while (0)
765
766#define REG_SET_AND_CHECK(reg, mask, write) \
767 do { \
768 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700769 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800770 ? E1000_##reg : E1000_82542_##reg, \
771 mask, write)) \
772 return 1; \
773 } while (0)
774
Joe Perches64798842008-07-11 15:17:02 -0700775static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Joe Perches406874a2008-04-03 10:06:32 -0700777 u32 value, before, after;
778 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700779 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* The status register is Read Only, so a write should fail.
782 * Some bits that get toggled are ignored.
783 */
Joe Perches1dc32912008-07-11 15:17:08 -0700784 switch (hw->mac_type) {
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400785 /* there are several bits on newer hardware that are r/w */
786 case e1000_82571:
787 case e1000_82572:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -0800788 case e1000_80003es2lan:
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400789 toggle = 0x7FFFF3FF;
790 break;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700791 case e1000_82573:
Auke Kokcd94dd02006-06-27 09:08:22 -0700792 case e1000_ich8lan:
Malli Chilakalab01f6692005-06-17 17:42:29 -0700793 toggle = 0x7FFFF033;
794 break;
795 default:
796 toggle = 0xFFFFF833;
797 break;
798 }
799
Joe Perches1dc32912008-07-11 15:17:08 -0700800 before = er32(STATUS);
801 value = (er32(STATUS) & toggle);
802 ew32(STATUS, toggle);
803 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800804 if (value != after) {
Malli Chilakalab01f6692005-06-17 17:42:29 -0700805 DPRINTK(DRV, ERR, "failed STATUS register test got: "
806 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 *data = 1;
808 return 1;
809 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700810 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700811 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800812
Joe Perches1dc32912008-07-11 15:17:08 -0700813 if (hw->mac_type != e1000_ich8lan) {
Auke Kokcd94dd02006-06-27 09:08:22 -0700814 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
815 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
816 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
817 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
818 }
Auke Kok90fb5132006-11-01 08:47:30 -0800819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
821 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
822 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
823 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
824 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
825 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
826 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
827 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
828 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
829 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
830
831 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800832
Joe Perches1dc32912008-07-11 15:17:08 -0700833 before = (hw->mac_type == e1000_ich8lan ?
Auke Kok90fb5132006-11-01 08:47:30 -0800834 0x06C3B33E : 0x06DFB3FE);
Auke Kokcd94dd02006-06-27 09:08:22 -0700835 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
837
Joe Perches1dc32912008-07-11 15:17:08 -0700838 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Auke Kokcd94dd02006-06-27 09:08:22 -0700840 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Joe Perches1dc32912008-07-11 15:17:08 -0700842 if (hw->mac_type != e1000_ich8lan)
Auke Kokcd94dd02006-06-27 09:08:22 -0700843 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
845 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Joe Perches1dc32912008-07-11 15:17:08 -0700846 value = (hw->mac_type == e1000_ich8lan ?
Auke Kok90fb5132006-11-01 08:47:30 -0800847 E1000_RAR_ENTRIES_ICH8LAN : E1000_RAR_ENTRIES);
Auke Kokcd94dd02006-06-27 09:08:22 -0700848 for (i = 0; i < value; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
Auke Kok90fb5132006-11-01 08:47:30 -0800850 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
853 } else {
854
855 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
856 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
857 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
858 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
859
860 }
861
Joe Perches1dc32912008-07-11 15:17:08 -0700862 value = (hw->mac_type == e1000_ich8lan ?
Auke Kokcd94dd02006-06-27 09:08:22 -0700863 E1000_MC_TBL_SIZE_ICH8LAN : E1000_MC_TBL_SIZE);
864 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
866
867 *data = 0;
868 return 0;
869}
870
Joe Perches64798842008-07-11 15:17:02 -0700871static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Joe Perches1dc32912008-07-11 15:17:08 -0700873 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700874 u16 temp;
875 u16 checksum = 0;
876 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 *data = 0;
879 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800880 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700881 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 *data = 1;
883 break;
884 }
885 checksum += temp;
886 }
887
888 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700889 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 *data = 2;
891
892 return *data;
893}
894
Joe Perches64798842008-07-11 15:17:02 -0700895static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Joe Perchese982f172008-07-11 15:17:18 -0700897 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700898 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700899 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Joe Perches1dc32912008-07-11 15:17:08 -0700901 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 return IRQ_HANDLED;
904}
905
Joe Perches64798842008-07-11 15:17:02 -0700906static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700909 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700910 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700911 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700912 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 *data = 0;
915
Auke Kok8fc897b2006-08-28 14:56:16 -0700916 /* NOTE: we don't test MSI interrupts here, yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /* Hook up test interrupt handler just for this test */
Auke Kok90fb5132006-11-01 08:47:30 -0800918 if (!request_irq(irq, &e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
919 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700920 shared_int = false;
Auke Kok8fc897b2006-08-28 14:56:16 -0700921 else if (request_irq(irq, &e1000_test_intr, IRQF_SHARED,
Auke Kok90fb5132006-11-01 08:47:30 -0800922 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 *data = 1;
924 return -1;
925 }
Auke Kok8fc897b2006-08-28 14:56:16 -0700926 DPRINTK(HW, INFO, "testing %s interrupt\n",
Auke Kokb9b6e782006-06-08 09:28:38 -0700927 (shared_int ? "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700930 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400931 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800934 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Joe Perches1dc32912008-07-11 15:17:08 -0700936 if (hw->mac_type == e1000_ich8lan && i == 8)
Auke Kokcd94dd02006-06-27 09:08:22 -0700937 continue;
Auke Kok90fb5132006-11-01 08:47:30 -0800938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /* Interrupt to test */
940 mask = 1 << i;
941
Auke Kok76c224b2006-05-23 13:36:06 -0700942 if (!shared_int) {
943 /* Disable the interrupt to be reported in
944 * the cause register and then force the same
945 * interrupt and see if one gets posted. If
946 * an interrupt was posted to the bus, the
947 * test failed.
948 */
949 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700950 ew32(IMC, mask);
951 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400952 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800953
Auke Kok76c224b2006-05-23 13:36:06 -0700954 if (adapter->test_icr & mask) {
955 *data = 3;
956 break;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
960 /* Enable the interrupt to be reported in
961 * the cause register and then force the same
962 * interrupt and see if one gets posted. If
963 * an interrupt was not posted to the bus, the
964 * test failed.
965 */
966 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700967 ew32(IMS, mask);
968 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400969 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800971 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *data = 4;
973 break;
974 }
975
Auke Kok76c224b2006-05-23 13:36:06 -0700976 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /* Disable the other interrupts to be reported in
978 * the cause register and then force the other
979 * interrupts and see if any get posted. If
980 * an interrupt was posted to the bus, the
981 * test failed.
982 */
983 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700984 ew32(IMC, ~mask & 0x00007FFF);
985 ew32(ICS, ~mask & 0x00007FFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400986 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800988 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 *data = 5;
990 break;
991 }
992 }
993 }
994
995 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700996 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400997 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /* Unhook test interrupt handler */
1000 free_irq(irq, netdev);
1001
1002 return *data;
1003}
1004
Joe Perches64798842008-07-11 15:17:02 -07001005static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001007 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1008 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 struct pci_dev *pdev = adapter->pdev;
1010 int i;
1011
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001012 if (txdr->desc && txdr->buffer_info) {
1013 for (i = 0; i < txdr->count; i++) {
1014 if (txdr->buffer_info[i].dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 pci_unmap_single(pdev, txdr->buffer_info[i].dma,
1016 txdr->buffer_info[i].length,
1017 PCI_DMA_TODEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001018 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 dev_kfree_skb(txdr->buffer_info[i].skb);
1020 }
1021 }
1022
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001023 if (rxdr->desc && rxdr->buffer_info) {
1024 for (i = 0; i < rxdr->count; i++) {
1025 if (rxdr->buffer_info[i].dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 pci_unmap_single(pdev, rxdr->buffer_info[i].dma,
1027 rxdr->buffer_info[i].length,
1028 PCI_DMA_FROMDEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001029 if (rxdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 dev_kfree_skb(rxdr->buffer_info[i].skb);
1031 }
1032 }
1033
Jeff Kirsherf5645112006-01-12 16:51:01 -08001034 if (txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 pci_free_consistent(pdev, txdr->size, txdr->desc, txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -05001036 txdr->desc = NULL;
1037 }
Jeff Kirsherf5645112006-01-12 16:51:01 -08001038 if (rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 pci_free_consistent(pdev, rxdr->size, rxdr->desc, rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -05001040 rxdr->desc = NULL;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001043 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -05001044 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001045 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -05001046 rxdr->buffer_info = NULL;
Jeff Kirsherf5645112006-01-12 16:51:01 -08001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return;
1049}
1050
Joe Perches64798842008-07-11 15:17:02 -07001051static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Joe Perches1dc32912008-07-11 15:17:08 -07001053 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001054 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1055 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -07001057 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -08001058 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 /* Setup Tx descriptor ring and Tx buffers */
1061
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001062 if (!txdr->count)
1063 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Joe Perchesc7be73b2008-07-11 15:17:28 -07001065 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
1066 GFP_KERNEL);
1067 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 ret_val = 1;
1069 goto err_nomem;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001073 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001074 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
1075 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 ret_val = 2;
1077 goto err_nomem;
1078 }
1079 memset(txdr->desc, 0, txdr->size);
1080 txdr->next_to_use = txdr->next_to_clean = 0;
1081
Joe Perchese982f172008-07-11 15:17:18 -07001082 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1083 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001084 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1085 ew32(TDH, 0);
1086 ew32(TDT, 0);
1087 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1088 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1089 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001091 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1093 struct sk_buff *skb;
1094 unsigned int size = 1024;
1095
Joe Perchesc7be73b2008-07-11 15:17:28 -07001096 skb = alloc_skb(size, GFP_KERNEL);
1097 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 ret_val = 3;
1099 goto err_nomem;
1100 }
1101 skb_put(skb, size);
1102 txdr->buffer_info[i].skb = skb;
1103 txdr->buffer_info[i].length = skb->len;
1104 txdr->buffer_info[i].dma =
1105 pci_map_single(pdev, skb->data, skb->len,
1106 PCI_DMA_TODEVICE);
1107 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1108 tx_desc->lower.data = cpu_to_le32(skb->len);
1109 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1110 E1000_TXD_CMD_IFCS |
1111 E1000_TXD_CMD_RPS);
1112 tx_desc->upper.data = 0;
1113 }
1114
1115 /* Setup Rx descriptor ring and Rx buffers */
1116
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001117 if (!rxdr->count)
1118 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Joe Perchesc7be73b2008-07-11 15:17:28 -07001120 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1121 GFP_KERNEL);
1122 if (!rxdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 ret_val = 4;
1124 goto err_nomem;
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001128 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
1129 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 ret_val = 5;
1131 goto err_nomem;
1132 }
1133 memset(rxdr->desc, 0, rxdr->size);
1134 rxdr->next_to_use = rxdr->next_to_clean = 0;
1135
Joe Perches1dc32912008-07-11 15:17:08 -07001136 rctl = er32(RCTL);
1137 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001138 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1139 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001140 ew32(RDLEN, rxdr->size);
1141 ew32(RDH, 0);
1142 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1144 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001145 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1146 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001148 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1150 struct sk_buff *skb;
1151
Joe Perchesc7be73b2008-07-11 15:17:28 -07001152 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1153 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 ret_val = 6;
1155 goto err_nomem;
1156 }
1157 skb_reserve(skb, NET_IP_ALIGN);
1158 rxdr->buffer_info[i].skb = skb;
1159 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1160 rxdr->buffer_info[i].dma =
1161 pci_map_single(pdev, skb->data, E1000_RXBUFFER_2048,
1162 PCI_DMA_FROMDEVICE);
1163 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1164 memset(skb->data, 0x00, skb->len);
1165 }
1166
1167 return 0;
1168
1169err_nomem:
1170 e1000_free_desc_rings(adapter);
1171 return ret_val;
1172}
1173
Joe Perches64798842008-07-11 15:17:02 -07001174static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Joe Perches1dc32912008-07-11 15:17:08 -07001176 struct e1000_hw *hw = &adapter->hw;
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001179 e1000_write_phy_reg(hw, 29, 0x001F);
1180 e1000_write_phy_reg(hw, 30, 0x8FFC);
1181 e1000_write_phy_reg(hw, 29, 0x001A);
1182 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Joe Perches64798842008-07-11 15:17:02 -07001185static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Joe Perches1dc32912008-07-11 15:17:08 -07001187 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001188 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1191 * Extended PHY Specific Control Register to 25MHz clock. This
1192 * value defaults back to a 2.5MHz clock when the PHY is reset.
1193 */
Joe Perches1dc32912008-07-11 15:17:08 -07001194 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Joe Perches1dc32912008-07-11 15:17:08 -07001196 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1198
1199 /* In addition, because of the s/w reset above, we need to enable
1200 * CRS on TX. This must be set for both full and half duplex
1201 * operation.
1202 */
Joe Perches1dc32912008-07-11 15:17:08 -07001203 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Joe Perches1dc32912008-07-11 15:17:08 -07001205 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 M88E1000_PHY_SPEC_CTRL, phy_reg);
1207}
1208
Joe Perches64798842008-07-11 15:17:02 -07001209static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Joe Perches1dc32912008-07-11 15:17:08 -07001211 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001212 u32 ctrl_reg;
1213 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /* Setup the Device Control Register for PHY loopback test. */
1216
Joe Perches1dc32912008-07-11 15:17:08 -07001217 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1219 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1220 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1221 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1222 E1000_CTRL_FD); /* Force Duplex to FULL */
1223
Joe Perches1dc32912008-07-11 15:17:08 -07001224 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001227 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* Clear Auto-Crossover bits in PHY Specific Control Register
1230 * (bits 6:5).
1231 */
1232 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001233 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001236 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 /* Have to setup TX_CLK and TX_CRS after software reset */
1239 e1000_phy_reset_clk_and_crs(adapter);
1240
Joe Perches1dc32912008-07-11 15:17:08 -07001241 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 /* Wait for reset to complete. */
1244 udelay(500);
1245
1246 /* Have to setup TX_CLK and TX_CRS after software reset */
1247 e1000_phy_reset_clk_and_crs(adapter);
1248
1249 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1250 e1000_phy_disable_receiver(adapter);
1251
1252 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001253 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001255 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 /* Setup TX_CLK and TX_CRS one more time. */
1258 e1000_phy_reset_clk_and_crs(adapter);
1259
1260 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001261 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001262 if (phy_reg != 0x4100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return 9;
1264
Joe Perches1dc32912008-07-11 15:17:08 -07001265 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001266 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return 10;
1268
Joe Perches1dc32912008-07-11 15:17:08 -07001269 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001270 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return 11;
1272
1273 return 0;
1274}
1275
Joe Perches64798842008-07-11 15:17:02 -07001276static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Joe Perches1dc32912008-07-11 15:17:08 -07001278 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001279 u32 ctrl_reg = 0;
1280 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Joe Perches1dc32912008-07-11 15:17:08 -07001282 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Joe Perches1dc32912008-07-11 15:17:08 -07001284 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001286 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 M88E1000_PHY_SPEC_CTRL, 0x0808);
1288 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001289 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001291 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
1292 } else if (hw->phy_type == e1000_phy_gg82563)
1293 e1000_write_phy_reg(hw,
Jeff Kirsher87041632006-03-02 18:21:24 -08001294 GG82563_PHY_KMRN_MODE_CTRL,
Auke Kokacfbc9f2006-06-27 09:06:24 -07001295 0x1CC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Joe Perches1dc32912008-07-11 15:17:08 -07001297 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001298
Joe Perches1dc32912008-07-11 15:17:08 -07001299 if (hw->phy_type == e1000_phy_ife) {
Auke Kokcd94dd02006-06-27 09:08:22 -07001300 /* force 100, set loopback */
Joe Perches1dc32912008-07-11 15:17:08 -07001301 e1000_write_phy_reg(hw, PHY_CTRL, 0x6100);
Auke Kokcd94dd02006-06-27 09:08:22 -07001302
1303 /* Now set up the MAC to the same speed/duplex as the PHY. */
1304 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1305 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1306 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1307 E1000_CTRL_SPD_100 |/* Force Speed to 100 */
1308 E1000_CTRL_FD); /* Force Duplex to FULL */
1309 } else {
1310 /* force 1000, set loopback */
Joe Perches1dc32912008-07-11 15:17:08 -07001311 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001312
1313 /* Now set up the MAC to the same speed/duplex as the PHY. */
Joe Perches1dc32912008-07-11 15:17:08 -07001314 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001315 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1316 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1317 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1318 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1319 E1000_CTRL_FD); /* Force Duplex to FULL */
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Joe Perches1dc32912008-07-11 15:17:08 -07001322 if (hw->media_type == e1000_media_type_copper &&
1323 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001325 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* Set the ILOS bit on the fiber Nic is half
1327 * duplex link is detected. */
Joe Perches1dc32912008-07-11 15:17:08 -07001328 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001329 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1331 }
1332
Joe Perches1dc32912008-07-11 15:17:08 -07001333 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 /* Disable the receiver on the PHY so when a cable is plugged in, the
1336 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1337 */
Joe Perches1dc32912008-07-11 15:17:08 -07001338 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 e1000_phy_disable_receiver(adapter);
1340
1341 udelay(500);
1342
1343 return 0;
1344}
1345
Joe Perches64798842008-07-11 15:17:02 -07001346static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Joe Perches1dc32912008-07-11 15:17:08 -07001348 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001349 u16 phy_reg = 0;
1350 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Joe Perches1dc32912008-07-11 15:17:08 -07001352 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001354 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* Attempt to setup Loopback mode on Non-integrated PHY.
1356 * Some PHY registers get corrupted at random, so
1357 * attempt this 10 times.
1358 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001359 while (e1000_nonintegrated_phy_loopback(adapter) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001361 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return 0;
1363 }
1364 break;
1365
1366 case e1000_82544:
1367 case e1000_82540:
1368 case e1000_82545:
1369 case e1000_82545_rev_3:
1370 case e1000_82546:
1371 case e1000_82546_rev_3:
1372 case e1000_82541:
1373 case e1000_82541_rev_2:
1374 case e1000_82547:
1375 case e1000_82547_rev_2:
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04001376 case e1000_82571:
1377 case e1000_82572:
Malli Chilakala45643272005-06-17 17:42:42 -07001378 case e1000_82573:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -08001379 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -07001380 case e1000_ich8lan:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return e1000_integrated_phy_loopback(adapter);
1382 break;
1383
1384 default:
1385 /* Default PHY loopback work is to read the MII
1386 * control register and assert bit 14 (loopback mode).
1387 */
Joe Perches1dc32912008-07-11 15:17:08 -07001388 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001390 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return 0;
1392 break;
1393 }
1394
1395 return 8;
1396}
1397
Joe Perches64798842008-07-11 15:17:02 -07001398static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Jeff Kirsher49273162006-01-12 16:50:44 -08001400 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001401 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Jeff Kirsher49273162006-01-12 16:50:44 -08001403 if (hw->media_type == e1000_media_type_fiber ||
1404 hw->media_type == e1000_media_type_internal_serdes) {
1405 switch (hw->mac_type) {
1406 case e1000_82545:
1407 case e1000_82546:
1408 case e1000_82545_rev_3:
1409 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001411 break;
1412 case e1000_82571:
1413 case e1000_82572:
1414#define E1000_SERDES_LB_ON 0x410
1415 e1000_set_phy_loopback(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07001416 ew32(SCTL, E1000_SERDES_LB_ON);
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001417 msleep(10);
Jeff Kirsher49273162006-01-12 16:50:44 -08001418 return 0;
1419 break;
1420 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001421 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001423 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
1425 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001426 } else if (hw->media_type == e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return e1000_set_phy_loopback(adapter);
1428
1429 return 7;
1430}
1431
Joe Perches64798842008-07-11 15:17:02 -07001432static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Jeff Kirsher49273162006-01-12 16:50:44 -08001434 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001435 u32 rctl;
1436 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Joe Perches1dc32912008-07-11 15:17:08 -07001438 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001440 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jeff Kirsher49273162006-01-12 16:50:44 -08001442 switch (hw->mac_type) {
1443 case e1000_82571:
1444 case e1000_82572:
1445 if (hw->media_type == e1000_media_type_fiber ||
1446 hw->media_type == e1000_media_type_internal_serdes) {
1447#define E1000_SERDES_LB_OFF 0x400
Joe Perches1dc32912008-07-11 15:17:08 -07001448 ew32(SCTL, E1000_SERDES_LB_OFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001449 msleep(10);
Jeff Kirsher49273162006-01-12 16:50:44 -08001450 break;
Jeff Kirsherfd803242005-12-13 00:06:22 -05001451 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001452 /* Fall Through */
1453 case e1000_82545:
1454 case e1000_82546:
1455 case e1000_82545_rev_3:
1456 case e1000_82546_rev_3:
1457 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001458 hw->autoneg = true;
Auke Kok8fc897b2006-08-28 14:56:16 -07001459 if (hw->phy_type == e1000_phy_gg82563)
Jeff Kirsher87041632006-03-02 18:21:24 -08001460 e1000_write_phy_reg(hw,
1461 GG82563_PHY_KMRN_MODE_CTRL,
1462 0x180);
Jeff Kirsher49273162006-01-12 16:50:44 -08001463 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1464 if (phy_reg & MII_CR_LOOPBACK) {
1465 phy_reg &= ~MII_CR_LOOPBACK;
1466 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1467 e1000_phy_reset(hw);
1468 }
1469 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471}
1472
Joe Perches64798842008-07-11 15:17:02 -07001473static void e1000_create_lbtest_frame(struct sk_buff *skb,
1474 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001477 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1479 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1480 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1481}
1482
Joe Perches64798842008-07-11 15:17:02 -07001483static int e1000_check_lbtest_frame(struct sk_buff *skb,
1484 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001486 frame_size &= ~1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001487 if (*(skb->data + 3) == 0xFF) {
1488 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1490 return 0;
1491 }
1492 }
1493 return 13;
1494}
1495
Joe Perches64798842008-07-11 15:17:02 -07001496static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Joe Perches1dc32912008-07-11 15:17:08 -07001498 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001499 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1500 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 struct pci_dev *pdev = adapter->pdev;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001502 int i, j, k, l, lc, good_cnt, ret_val=0;
1503 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Joe Perches1dc32912008-07-11 15:17:08 -07001505 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001507 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001508 * The idea is to wrap the largest ring a number of times using 64
1509 * send/receive pairs during each loop
1510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001512 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001513 lc = ((txdr->count / 64) * 2) + 1;
1514 else
1515 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Malli Chilakalae4eff722005-04-28 19:38:30 -07001517 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001518 for (j = 0; j <= lc; j++) { /* loop count loop */
1519 for (i = 0; i < 64; i++) { /* send the packets */
1520 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001521 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001522 pci_dma_sync_single_for_device(pdev,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001523 txdr->buffer_info[k].dma,
1524 txdr->buffer_info[k].length,
1525 PCI_DMA_TODEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001526 if (unlikely(++k == txdr->count)) k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001527 }
Joe Perches1dc32912008-07-11 15:17:08 -07001528 ew32(TDT, k);
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001529 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001530 time = jiffies; /* set the start time for the receive */
1531 good_cnt = 0;
1532 do { /* receive the sent packets */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001533 pci_dma_sync_single_for_cpu(pdev,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001534 rxdr->buffer_info[l].dma,
1535 rxdr->buffer_info[l].length,
1536 PCI_DMA_FROMDEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001537
Malli Chilakalae4eff722005-04-28 19:38:30 -07001538 ret_val = e1000_check_lbtest_frame(
1539 rxdr->buffer_info[l].skb,
1540 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001541 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001542 good_cnt++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001543 if (unlikely(++l == rxdr->count)) l = 0;
1544 /* time + 20 msecs (200 msecs on 2.4) is more than
1545 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001546 * exceeded, break and error off
1547 */
1548 } while (good_cnt < 64 && jiffies < (time + 20));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001549 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001550 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001551 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001552 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001553 if (jiffies >= (time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001554 ret_val = 14; /* error code for time out error */
1555 break;
1556 }
1557 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return ret_val;
1559}
1560
Joe Perches64798842008-07-11 15:17:02 -07001561static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Joe Perches1dc32912008-07-11 15:17:08 -07001563 struct e1000_hw *hw = &adapter->hw;
1564
Jeff Kirsher57128192006-01-12 16:50:28 -08001565 /* PHY loopback cannot be performed if SoL/IDER
1566 * sessions are active */
Joe Perches1dc32912008-07-11 15:17:08 -07001567 if (e1000_check_phy_reset_block(hw)) {
Jeff Kirsher57128192006-01-12 16:50:28 -08001568 DPRINTK(DRV, ERR, "Cannot do PHY loopback test "
1569 "when SoL/IDER is active.\n");
1570 *data = 0;
1571 goto out;
1572 }
1573
Joe Perchesc7be73b2008-07-11 15:17:28 -07001574 *data = e1000_setup_desc_rings(adapter);
1575 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001576 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001577 *data = e1000_setup_loopback_test(adapter);
1578 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001579 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 *data = e1000_run_loopback_test(adapter);
1581 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001584 e1000_free_desc_rings(adapter);
1585out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return *data;
1587}
1588
Joe Perches64798842008-07-11 15:17:02 -07001589static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Joe Perches1dc32912008-07-11 15:17:08 -07001591 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001593 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int i = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001595 hw->serdes_link_down = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Malli Chilakala26483452005-04-28 19:44:46 -07001597 /* On some blade server designs, link establishment
1598 * could take as long as 2-3 minutes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001600 e1000_check_for_link(hw);
1601 if (!hw->serdes_link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001603 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 } while (i++ < 3750);
1605
Malli Chilakala26483452005-04-28 19:44:46 -07001606 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001608 e1000_check_for_link(hw);
1609 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001610 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Joe Perches1dc32912008-07-11 15:17:08 -07001612 if (!(er32(STATUS) & E1000_STATUS_LU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 *data = 1;
1614 }
1615 }
1616 return *data;
1617}
1618
Joe Perches64798842008-07-11 15:17:02 -07001619static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001621 switch (sset) {
1622 case ETH_SS_TEST:
1623 return E1000_TEST_LEN;
1624 case ETH_SS_STATS:
1625 return E1000_STATS_LEN;
1626 default:
1627 return -EOPNOTSUPP;
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
Joe Perches64798842008-07-11 15:17:02 -07001631static void e1000_diag_test(struct net_device *netdev,
1632 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001634 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001635 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001636 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Auke Kok1314bbf2006-09-27 12:54:02 -07001638 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001639 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 /* Offline tests */
1641
1642 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001643 u16 autoneg_advertised = hw->autoneg_advertised;
1644 u8 forced_speed_duplex = hw->forced_speed_duplex;
1645 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001647 DPRINTK(HW, INFO, "offline testing starting\n");
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* Link test performed before hardware reset so autoneg doesn't
1650 * interfere with test result */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001651 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 eth_test->flags |= ETH_TEST_FL_FAILED;
1653
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001654 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001655 /* indicate we're in test mode */
1656 dev_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 else
1658 e1000_reset(adapter);
1659
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001660 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 eth_test->flags |= ETH_TEST_FL_FAILED;
1662
1663 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001664 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 eth_test->flags |= ETH_TEST_FL_FAILED;
1666
1667 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001668 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 eth_test->flags |= ETH_TEST_FL_FAILED;
1670
1671 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001672 /* make sure the phy is powered up */
1673 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001674 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 eth_test->flags |= ETH_TEST_FL_FAILED;
1676
1677 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001678 hw->autoneg_advertised = autoneg_advertised;
1679 hw->forced_speed_duplex = forced_speed_duplex;
1680 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001683 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001684 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001685 dev_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 } else {
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001687 DPRINTK(HW, INFO, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001689 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 eth_test->flags |= ETH_TEST_FL_FAILED;
1691
Auke Kok90fb5132006-11-01 08:47:30 -08001692 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 data[0] = 0;
1694 data[1] = 0;
1695 data[2] = 0;
1696 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001697
Auke Kok1314bbf2006-09-27 12:54:02 -07001698 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001700 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
1702
Joe Perches64798842008-07-11 15:17:02 -07001703static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1704 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001707 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001709 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001710 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 case E1000_DEV_ID_82543GC_FIBER:
1712 case E1000_DEV_ID_82543GC_COPPER:
1713 case E1000_DEV_ID_82544EI_FIBER:
1714 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1715 case E1000_DEV_ID_82545EM_FIBER:
1716 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001717 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001718 case E1000_DEV_ID_82546GB_PCIE:
Auke Kokce57a022007-08-09 14:09:34 -07001719 case E1000_DEV_ID_82571EB_SERDES_QUAD:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001720 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001722 break;
1723 case E1000_DEV_ID_82546EB_FIBER:
1724 case E1000_DEV_ID_82546GB_FIBER:
1725 case E1000_DEV_ID_82571EB_FIBER:
1726 case E1000_DEV_ID_82571EB_SERDES:
1727 case E1000_DEV_ID_82571EB_COPPER:
1728 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001729 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001730 wol->supported = 0;
1731 break;
1732 }
1733 /* return success for non excluded adapter ports */
1734 retval = 0;
1735 break;
Jesse Brandeburg5881cde2006-08-31 14:27:47 -07001736 case E1000_DEV_ID_82571EB_QUAD_COPPER:
Auke Kokce57a022007-08-09 14:09:34 -07001737 case E1000_DEV_ID_82571EB_QUAD_FIBER:
Auke Kokfc2307d2006-11-01 08:47:56 -08001738 case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
Auke Kokf4ec7f92007-08-30 11:23:58 -07001739 case E1000_DEV_ID_82571PT_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001740 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1741 /* quad port adapters only support WoL on port A */
1742 if (!adapter->quad_port_a) {
1743 wol->supported = 0;
1744 break;
1745 }
1746 /* return success for non excluded adapter ports */
1747 retval = 0;
1748 break;
1749 default:
1750 /* dual port cards only support WoL on port A from now on
1751 * unless it was enabled in the eeprom for port B
1752 * so exclude FUNC_1 ports from having WoL enabled */
Joe Perches1dc32912008-07-11 15:17:08 -07001753 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001754 !adapter->eeprom_wol) {
1755 wol->supported = 0;
1756 break;
1757 }
1758
1759 retval = 0;
1760 }
1761
1762 return retval;
1763}
1764
Joe Perches64798842008-07-11 15:17:02 -07001765static void e1000_get_wol(struct net_device *netdev,
1766 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001767{
1768 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001769 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001770
1771 wol->supported = WAKE_UCAST | WAKE_MCAST |
1772 WAKE_BCAST | WAKE_MAGIC;
1773 wol->wolopts = 0;
1774
1775 /* this function will set ->supported = 0 and return 1 if wol is not
1776 * supported by this hardware */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001777 if (e1000_wol_exclusion(adapter, wol) ||
1778 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return;
1780
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001781 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001782 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001783 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001784 /* KSP3 does not suppport UCAST wake-ups */
1785 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001786
1787 if (adapter->wol & E1000_WUFC_EX)
1788 DPRINTK(DRV, ERR, "Interface does not support "
1789 "directed (unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001790 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001794
1795 if (adapter->wol & E1000_WUFC_EX)
1796 wol->wolopts |= WAKE_UCAST;
1797 if (adapter->wol & E1000_WUFC_MC)
1798 wol->wolopts |= WAKE_MCAST;
1799 if (adapter->wol & E1000_WUFC_BC)
1800 wol->wolopts |= WAKE_BCAST;
1801 if (adapter->wol & E1000_WUFC_MAG)
1802 wol->wolopts |= WAKE_MAGIC;
1803
1804 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Joe Perches64798842008-07-11 15:17:02 -07001807static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001809 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 struct e1000_hw *hw = &adapter->hw;
1811
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001812 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1813 return -EOPNOTSUPP;
1814
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001815 if (e1000_wol_exclusion(adapter, wol) ||
1816 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return wol->wolopts ? -EOPNOTSUPP : 0;
1818
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001819 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001820 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001821 if (wol->wolopts & WAKE_UCAST) {
1822 DPRINTK(DRV, ERR, "Interface does not support "
1823 "directed (unicast) frame wake-up packets\n");
1824 return -EOPNOTSUPP;
1825 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001828 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001831 /* these settings will always override what we currently have */
1832 adapter->wol = 0;
1833
1834 if (wol->wolopts & WAKE_UCAST)
1835 adapter->wol |= E1000_WUFC_EX;
1836 if (wol->wolopts & WAKE_MCAST)
1837 adapter->wol |= E1000_WUFC_MC;
1838 if (wol->wolopts & WAKE_BCAST)
1839 adapter->wol |= E1000_WUFC_BC;
1840 if (wol->wolopts & WAKE_MAGIC)
1841 adapter->wol |= E1000_WUFC_MAG;
1842
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001843 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return 0;
1846}
1847
1848/* toggle LED 4 times per second = 2 "blinks" per second */
1849#define E1000_ID_INTERVAL (HZ/4)
1850
1851/* bit defines for adapter->led_status */
1852#define E1000_LED_ON 0
1853
Joe Perches64798842008-07-11 15:17:02 -07001854static void e1000_led_blink_callback(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Joe Perches1dc32912008-07-11 15:17:08 -07001857 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001859 if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
Joe Perches1dc32912008-07-11 15:17:08 -07001860 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 else
Joe Perches1dc32912008-07-11 15:17:08 -07001862 e1000_led_on(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
1865}
1866
Joe Perches64798842008-07-11 15:17:02 -07001867static int e1000_phys_id(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001869 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001870 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Stephen Hemmingerabec42a2007-10-29 10:46:19 -07001872 if (!data)
1873 data = INT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Joe Perches1dc32912008-07-11 15:17:08 -07001875 if (hw->mac_type < e1000_82571) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001876 if (!adapter->blink_timer.function) {
Malli Chilakalad439d4b2005-06-17 17:43:56 -07001877 init_timer(&adapter->blink_timer);
1878 adapter->blink_timer.function = e1000_led_blink_callback;
Joe Perchese982f172008-07-11 15:17:18 -07001879 adapter->blink_timer.data = (unsigned long)adapter;
Malli Chilakalad439d4b2005-06-17 17:43:56 -07001880 }
Joe Perches1dc32912008-07-11 15:17:08 -07001881 e1000_setup_led(hw);
Malli Chilakalad439d4b2005-06-17 17:43:56 -07001882 mod_timer(&adapter->blink_timer, jiffies);
1883 msleep_interruptible(data * 1000);
1884 del_timer_sync(&adapter->blink_timer);
Joe Perches1dc32912008-07-11 15:17:08 -07001885 } else if (hw->phy_type == e1000_phy_ife) {
Auke Kokcd94dd02006-06-27 09:08:22 -07001886 if (!adapter->blink_timer.function) {
1887 init_timer(&adapter->blink_timer);
1888 adapter->blink_timer.function = e1000_led_blink_callback;
Joe Perchese982f172008-07-11 15:17:18 -07001889 adapter->blink_timer.data = (unsigned long)adapter;
Auke Kokcd94dd02006-06-27 09:08:22 -07001890 }
1891 mod_timer(&adapter->blink_timer, jiffies);
Jeff Kirsherd8c2bd32006-01-12 16:50:37 -08001892 msleep_interruptible(data * 1000);
Auke Kokcd94dd02006-06-27 09:08:22 -07001893 del_timer_sync(&adapter->blink_timer);
1894 e1000_write_phy_reg(&(adapter->hw), IFE_PHY_SPECIAL_CONTROL_LED, 0);
Jeff Kirsherd8c2bd32006-01-12 16:50:37 -08001895 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001896 e1000_blink_led_start(hw);
Malli Chilakalad439d4b2005-06-17 17:43:56 -07001897 msleep_interruptible(data * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
Joe Perches1dc32912008-07-11 15:17:08 -07001900 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 clear_bit(E1000_LED_ON, &adapter->led_status);
Joe Perches1dc32912008-07-11 15:17:08 -07001902 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 return 0;
1905}
1906
Joe Perches64798842008-07-11 15:17:02 -07001907static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001909 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok2db10a02006-06-27 09:06:28 -07001910 if (netif_running(netdev))
1911 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return 0;
1913}
1914
Joe Perches64798842008-07-11 15:17:02 -07001915static void e1000_get_ethtool_stats(struct net_device *netdev,
1916 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001918 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 int i;
1920
1921 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001922 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1923 char *p = (char *)adapter+e1000_gstrings_stats[i].stat_offset;
1924 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Joe Perches406874a2008-04-03 10:06:32 -07001925 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001927/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Joe Perches64798842008-07-11 15:17:02 -07001930static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1931 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Joe Perches406874a2008-04-03 10:06:32 -07001933 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int i;
1935
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001936 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 case ETH_SS_TEST:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001938 memcpy(data, *e1000_gstrings_test,
Roel Kluinc32bc6e2007-12-05 11:57:30 -08001939 sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 break;
1941 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001942 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1943 memcpy(p, e1000_gstrings_stats[i].stat_string,
1944 ETH_GSTRING_LEN);
1945 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001947/* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 break;
1949 }
1950}
1951
Jeff Garzik7282d492006-09-13 14:30:00 -04001952static const struct ethtool_ops e1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 .get_settings = e1000_get_settings,
1954 .set_settings = e1000_set_settings,
1955 .get_drvinfo = e1000_get_drvinfo,
1956 .get_regs_len = e1000_get_regs_len,
1957 .get_regs = e1000_get_regs,
1958 .get_wol = e1000_get_wol,
1959 .set_wol = e1000_set_wol,
Auke Kok8fc897b2006-08-28 14:56:16 -07001960 .get_msglevel = e1000_get_msglevel,
1961 .set_msglevel = e1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 .nway_reset = e1000_nway_reset,
1963 .get_link = ethtool_op_get_link,
1964 .get_eeprom_len = e1000_get_eeprom_len,
1965 .get_eeprom = e1000_get_eeprom,
1966 .set_eeprom = e1000_set_eeprom,
1967 .get_ringparam = e1000_get_ringparam,
1968 .set_ringparam = e1000_set_ringparam,
Auke Kok8fc897b2006-08-28 14:56:16 -07001969 .get_pauseparam = e1000_get_pauseparam,
1970 .set_pauseparam = e1000_set_pauseparam,
1971 .get_rx_csum = e1000_get_rx_csum,
1972 .set_rx_csum = e1000_set_rx_csum,
1973 .get_tx_csum = e1000_get_tx_csum,
1974 .set_tx_csum = e1000_set_tx_csum,
Auke Kok8fc897b2006-08-28 14:56:16 -07001975 .set_sg = ethtool_op_set_sg,
Auke Kok8fc897b2006-08-28 14:56:16 -07001976 .set_tso = e1000_set_tso,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 .self_test = e1000_diag_test,
1978 .get_strings = e1000_get_strings,
1979 .phys_id = e1000_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 .get_ethtool_stats = e1000_get_ethtool_stats,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001981 .get_sset_count = e1000_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982};
1983
1984void e1000_set_ethtool_ops(struct net_device *netdev)
1985{
1986 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1987}