blob: 490b2b7cd3abf77f5dc257bbdb27f7b5d08e2a77 [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) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080085 { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
Jeff Garzik15e376b2006-12-15 11:16:33 -050086 { "tx_smbus", E1000_STAT(stats.mgptc) },
87 { "rx_smbus", E1000_STAT(stats.mgprc) },
88 { "dropped_smbus", E1000_STAT(stats.mgpdc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080090
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080091#define E1000_QUEUE_STATS_LEN 0
Denis Chengff8ac602007-09-02 18:30:18 +080092#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080093#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
95 "Register test (offline)", "Eeprom test (offline)",
96 "Interrupt test (offline)", "Loopback test (offline)",
97 "Link test (on/offline)"
98};
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +020099#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Joe Perches64798842008-07-11 15:17:02 -0700101static int e1000_get_settings(struct net_device *netdev,
102 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700104 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct e1000_hw *hw = &adapter->hw;
106
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800107 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 ecmd->supported = (SUPPORTED_10baseT_Half |
110 SUPPORTED_10baseT_Full |
111 SUPPORTED_100baseT_Half |
112 SUPPORTED_100baseT_Full |
113 SUPPORTED_1000baseT_Full|
114 SUPPORTED_Autoneg |
115 SUPPORTED_TP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 ecmd->advertising = ADVERTISED_TP;
117
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800118 if (hw->autoneg == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 ecmd->advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* the e1000 autoneg seems to match ethtool nicely */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 ecmd->advertising |= hw->autoneg_advertised;
122 }
123
124 ecmd->port = PORT_TP;
125 ecmd->phy_address = hw->phy_addr;
126
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800127 if (hw->mac_type == e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 ecmd->transceiver = XCVR_EXTERNAL;
129 else
130 ecmd->transceiver = XCVR_INTERNAL;
131
132 } else {
133 ecmd->supported = (SUPPORTED_1000baseT_Full |
134 SUPPORTED_FIBRE |
135 SUPPORTED_Autoneg);
136
Malli Chilakala012609a2005-06-17 17:43:06 -0700137 ecmd->advertising = (ADVERTISED_1000baseT_Full |
138 ADVERTISED_FIBRE |
139 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 ecmd->port = PORT_FIBRE;
142
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800143 if (hw->mac_type >= e1000_82545)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ecmd->transceiver = XCVR_INTERNAL;
145 else
146 ecmd->transceiver = XCVR_EXTERNAL;
147 }
148
Joe Perches1dc32912008-07-11 15:17:08 -0700149 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
152 &adapter->link_duplex);
153 ecmd->speed = adapter->link_speed;
154
155 /* unfortunatly FULL_DUPLEX != DUPLEX_FULL
156 * and HALF_DUPLEX != DUPLEX_HALF */
157
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800158 if (adapter->link_duplex == FULL_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ecmd->duplex = DUPLEX_FULL;
160 else
161 ecmd->duplex = DUPLEX_HALF;
162 } else {
163 ecmd->speed = -1;
164 ecmd->duplex = -1;
165 }
166
167 ecmd->autoneg = ((hw->media_type == e1000_media_type_fiber) ||
168 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
169 return 0;
170}
171
Joe Perches64798842008-07-11 15:17:02 -0700172static int e1000_set_settings(struct net_device *netdev,
173 struct ethtool_cmd *ecmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700175 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct e1000_hw *hw = &adapter->hw;
177
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700178 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
179 msleep(1);
180
Jeff Kirsher57128192006-01-12 16:50:28 -0800181 if (ecmd->autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800183 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700184 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
185 ADVERTISED_FIBRE |
186 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800187 else
Jeff Kirsher2f2ca262006-09-27 12:53:40 -0700188 hw->autoneg_advertised = ecmd->advertising |
189 ADVERTISED_TP |
190 ADVERTISED_Autoneg;
Malli Chilakala012609a2005-06-17 17:43:06 -0700191 ecmd->advertising = hw->autoneg_advertised;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700193 if (e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) {
194 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /* reset the link */
199
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700200 if (netif_running(adapter->netdev)) {
201 e1000_down(adapter);
202 e1000_up(adapter);
203 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 e1000_reset(adapter);
205
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700206 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return 0;
208}
209
Joe Perches64798842008-07-11 15:17:02 -0700210static void e1000_get_pauseparam(struct net_device *netdev,
211 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700213 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct e1000_hw *hw = &adapter->hw;
215
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800216 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800218
Jeff Kirsher11241b12006-09-27 12:53:28 -0700219 if (hw->fc == E1000_FC_RX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 pause->rx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700221 else if (hw->fc == E1000_FC_TX_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 pause->tx_pause = 1;
Jeff Kirsher11241b12006-09-27 12:53:28 -0700223 else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 pause->rx_pause = 1;
225 pause->tx_pause = 1;
226 }
227}
228
Joe Perches64798842008-07-11 15:17:02 -0700229static int e1000_set_pauseparam(struct net_device *netdev,
230 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700232 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700234 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 adapter->fc_autoneg = pause->autoneg;
237
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700238 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
239 msleep(1);
240
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800241 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700242 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800243 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700244 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800245 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700246 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800247 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700248 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 hw->original_fc = hw->fc;
251
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800252 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700253 if (netif_running(adapter->netdev)) {
254 e1000_down(adapter);
255 e1000_up(adapter);
256 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800258 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700259 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800260 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800261
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700262 clear_bit(__E1000_RESETTING, &adapter->flags);
263 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Joe Perches64798842008-07-11 15:17:02 -0700266static u32 e1000_get_rx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700268 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return adapter->rx_csum;
270}
271
Joe Perches64798842008-07-11 15:17:02 -0700272static int e1000_set_rx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700274 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 adapter->rx_csum = data;
276
Auke Kok2db10a02006-06-27 09:06:28 -0700277 if (netif_running(netdev))
278 e1000_reinit_locked(adapter);
279 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 e1000_reset(adapter);
281 return 0;
282}
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800283
Joe Perches64798842008-07-11 15:17:02 -0700284static u32 e1000_get_tx_csum(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 return (netdev->features & NETIF_F_HW_CSUM) != 0;
287}
288
Joe Perches64798842008-07-11 15:17:02 -0700289static int e1000_set_tx_csum(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700291 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700292 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Joe Perches1dc32912008-07-11 15:17:08 -0700294 if (hw->mac_type < e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (!data)
296 return -EINVAL;
297 return 0;
298 }
299
300 if (data)
301 netdev->features |= NETIF_F_HW_CSUM;
302 else
303 netdev->features &= ~NETIF_F_HW_CSUM;
304
305 return 0;
306}
307
Joe Perches64798842008-07-11 15:17:02 -0700308static int e1000_set_tso(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700310 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700311 struct e1000_hw *hw = &adapter->hw;
312
313 if ((hw->mac_type < e1000_82544) ||
314 (hw->mac_type == e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return data ? -EINVAL : 0;
316
317 if (data)
318 netdev->features |= NETIF_F_TSO;
319 else
320 netdev->features &= ~NETIF_F_TSO;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -0800321
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000322 netdev->features &= ~NETIF_F_TSO6;
Auke Kok87ca4e52006-11-01 08:47:36 -0800323
Jeff Kirsher7e6c9862006-03-02 18:19:30 -0800324 DPRINTK(PROBE, INFO, "TSO is %s\n", data ? "Enabled" : "Disabled");
Joe Perchesc3033b02008-03-21 11:06:25 -0700325 adapter->tso_force = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Joe Perches64798842008-07-11 15:17:02 -0700329static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700331 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return adapter->msg_enable;
333}
334
Joe Perches64798842008-07-11 15:17:02 -0700335static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700337 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 adapter->msg_enable = data;
339}
340
Joe Perches64798842008-07-11 15:17:02 -0700341static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700344 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Joe Perches64798842008-07-11 15:17:02 -0700347static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
348 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700350 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700352 u32 *regs_buff = p;
353 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Joe Perches406874a2008-04-03 10:06:32 -0700355 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
358
Joe Perches1dc32912008-07-11 15:17:08 -0700359 regs_buff[0] = er32(CTRL);
360 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Joe Perches1dc32912008-07-11 15:17:08 -0700362 regs_buff[2] = er32(RCTL);
363 regs_buff[3] = er32(RDLEN);
364 regs_buff[4] = er32(RDH);
365 regs_buff[5] = er32(RDT);
366 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Joe Perches1dc32912008-07-11 15:17:08 -0700368 regs_buff[7] = er32(TCTL);
369 regs_buff[8] = er32(TDLEN);
370 regs_buff[9] = er32(TDH);
371 regs_buff[10] = er32(TDT);
372 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Joe Perches1dc32912008-07-11 15:17:08 -0700374 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800375 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
377 IGP01E1000_PHY_AGC_A);
378 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
379 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700380 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
382 IGP01E1000_PHY_AGC_B);
383 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
384 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700385 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
387 IGP01E1000_PHY_AGC_C);
388 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
389 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700390 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
392 IGP01E1000_PHY_AGC_D);
393 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
394 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700395 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
397 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
398 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
399 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700400 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
402 IGP01E1000_PHY_PCS_INIT_REG);
403 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
404 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700405 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 regs_buff[20] = 0; /* polarity correction enabled (always) */
407 regs_buff[22] = 0; /* phy receive errors (unavailable) */
408 regs_buff[23] = regs_buff[18]; /* mdix mode */
409 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
410 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700411 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700412 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
414 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
415 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700416 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700417 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 regs_buff[18] = regs_buff[13]; /* cable polarity */
419 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
420 regs_buff[20] = regs_buff[17]; /* polarity correction */
421 /* phy receive errors */
422 regs_buff[22] = adapter->phy_stats.receive_errors;
423 regs_buff[23] = regs_buff[13]; /* mdix mode */
424 }
425 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
426 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700427 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800429 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700430 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700431 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433}
434
Joe Perches64798842008-07-11 15:17:02 -0700435static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700437 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700438 struct e1000_hw *hw = &adapter->hw;
439
440 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Joe Perches64798842008-07-11 15:17:02 -0700443static int e1000_get_eeprom(struct net_device *netdev,
444 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700446 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700448 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int first_word, last_word;
450 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700451 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800453 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return -EINVAL;
455
456 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
457
458 first_word = eeprom->offset >> 1;
459 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
460
Joe Perches406874a2008-04-03 10:06:32 -0700461 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800463 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -ENOMEM;
465
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800466 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 ret_val = e1000_read_eeprom(hw, first_word,
468 last_word - first_word + 1,
469 eeprom_buff);
470 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700471 for (i = 0; i < last_word - first_word + 1; i++) {
472 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
473 &eeprom_buff[i]);
474 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
479 /* Device's eeprom is always little-endian, word addressable */
480 for (i = 0; i < last_word - first_word + 1; i++)
481 le16_to_cpus(&eeprom_buff[i]);
482
Joe Perches406874a2008-04-03 10:06:32 -0700483 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 eeprom->len);
485 kfree(eeprom_buff);
486
487 return ret_val;
488}
489
Joe Perches64798842008-07-11 15:17:02 -0700490static int e1000_set_eeprom(struct net_device *netdev,
491 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700493 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700495 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 void *ptr;
497 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700498 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800500 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EOPNOTSUPP;
502
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800503 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return -EFAULT;
505
506 max_len = hw->eeprom.word_size * 2;
507
508 first_word = eeprom->offset >> 1;
509 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
510 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800511 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -ENOMEM;
513
514 ptr = (void *)eeprom_buff;
515
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800516 if (eeprom->offset & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* need read/modify/write of first changed EEPROM word */
518 /* only the second byte of the word is being modified */
519 ret_val = e1000_read_eeprom(hw, first_word, 1,
520 &eeprom_buff[0]);
521 ptr++;
522 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800523 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* need read/modify/write of last changed EEPROM word */
525 /* only the first byte of the word is being modified */
526 ret_val = e1000_read_eeprom(hw, last_word, 1,
527 &eeprom_buff[last_word - first_word]);
528 }
529
530 /* Device's eeprom is always little-endian, word addressable */
531 for (i = 0; i < last_word - first_word + 1; i++)
532 le16_to_cpus(&eeprom_buff[i]);
533
534 memcpy(ptr, bytes, eeprom->len);
535
536 for (i = 0; i < last_word - first_word + 1; i++)
537 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
538
539 ret_val = e1000_write_eeprom(hw, first_word,
540 last_word - first_word + 1, eeprom_buff);
541
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000542 /* Update the checksum over the first part of the EEPROM if needed */
543 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 e1000_update_eeprom_checksum(hw);
545
546 kfree(eeprom_buff);
547 return ret_val;
548}
549
Joe Perches64798842008-07-11 15:17:02 -0700550static void e1000_get_drvinfo(struct net_device *netdev,
551 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700553 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Kirshera2917e22006-01-12 16:51:23 -0800554 char firmware_version[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 strncpy(drvinfo->driver, e1000_driver_name, 32);
557 strncpy(drvinfo->version, e1000_driver_version, 32);
Jeff Kirshera2917e22006-01-12 16:51:23 -0800558
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000559 sprintf(firmware_version, "N/A");
Jeff Kirshera2917e22006-01-12 16:51:23 -0800560 strncpy(drvinfo->fw_version, firmware_version, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 drvinfo->regdump_len = e1000_get_regs_len(netdev);
563 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
564}
565
Joe Perches64798842008-07-11 15:17:02 -0700566static void e1000_get_ringparam(struct net_device *netdev,
567 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700569 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700570 struct e1000_hw *hw = &adapter->hw;
571 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400572 struct e1000_tx_ring *txdr = adapter->tx_ring;
573 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
576 E1000_MAX_82544_RXD;
577 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
578 E1000_MAX_82544_TXD;
579 ring->rx_mini_max_pending = 0;
580 ring->rx_jumbo_max_pending = 0;
581 ring->rx_pending = rxdr->count;
582 ring->tx_pending = txdr->count;
583 ring->rx_mini_pending = 0;
584 ring->rx_jumbo_pending = 0;
585}
586
Joe Perches64798842008-07-11 15:17:02 -0700587static int e1000_set_ringparam(struct net_device *netdev,
588 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700590 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700591 struct e1000_hw *hw = &adapter->hw;
592 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700593 struct e1000_tx_ring *txdr, *tx_old;
594 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800595 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400596
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800597 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
598 return -EINVAL;
599
Auke Kok2db10a02006-06-27 09:06:28 -0700600 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
601 msleep(1);
602
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400603 if (netif_running(adapter->netdev))
604 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 tx_old = adapter->tx_ring;
607 rx_old = adapter->rx_ring;
608
Vasily Averin793fab722006-09-27 12:54:14 -0700609 err = -ENOMEM;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800610 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700611 if (!txdr)
612 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400613
Yan Burman1c7e5b12007-03-06 08:58:04 -0800614 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring), GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700615 if (!rxdr)
616 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400617
Vasily Averin793fab722006-09-27 12:54:14 -0700618 adapter->tx_ring = txdr;
619 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400620
Joe Perches406874a2008-04-03 10:06:32 -0700621 rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
622 rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700624 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Joe Perches406874a2008-04-03 10:06:32 -0700626 txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
627 txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700629 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800631 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400632 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800633 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400634 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400635
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800636 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700638 err = e1000_setup_all_rx_resources(adapter);
639 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700641 err = e1000_setup_all_tx_resources(adapter);
642 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto err_setup_tx;
644
645 /* save the new, restore the old in order to free it,
646 * then restore the new back again */
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 adapter->rx_ring = rx_old;
649 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400650 e1000_free_all_rx_resources(adapter);
651 e1000_free_all_tx_resources(adapter);
652 kfree(tx_old);
653 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700654 adapter->rx_ring = rxdr;
655 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700656 err = e1000_up(adapter);
657 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700658 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Auke Kok2db10a02006-06-27 09:06:28 -0700661 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return 0;
663err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400664 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665err_setup_rx:
666 adapter->rx_ring = rx_old;
667 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700668 kfree(rxdr);
669err_alloc_rx:
670 kfree(txdr);
671err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700673err_setup:
674 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return err;
676}
677
Joe Perches64798842008-07-11 15:17:02 -0700678static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
679 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800680{
Joe Perches1dc32912008-07-11 15:17:08 -0700681 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700682 static const u32 test[] =
Joe Perches7e643002007-11-13 20:52:05 -0800683 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Joe Perches1dc32912008-07-11 15:17:08 -0700684 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700685 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800686 int i;
687
688 for (i = 0; i < ARRAY_SIZE(test); i++) {
689 writel(write & test[i], address);
690 read = readl(address);
691 if (read != (write & test[i] & mask)) {
692 DPRINTK(DRV, ERR, "pattern test reg %04X failed: "
693 "got 0x%08X expected 0x%08X\n",
Jeff Garzikcba05162007-11-23 21:50:34 -0500694 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800695 *data = reg;
696 return true;
697 }
698 }
699 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Joe Perches64798842008-07-11 15:17:02 -0700702static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
703 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800704{
Joe Perches1dc32912008-07-11 15:17:08 -0700705 struct e1000_hw *hw = &adapter->hw;
706 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700707 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800708
709 writel(write & mask, address);
710 read = readl(address);
711 if ((read & mask) != (write & mask)) {
712 DPRINTK(DRV, ERR, "set/check reg %04X test failed: "
713 "got 0x%08X expected 0x%08X\n",
714 reg, (read & mask), (write & mask));
715 *data = reg;
716 return true;
717 }
718 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Joe Perches7e643002007-11-13 20:52:05 -0800721#define REG_PATTERN_TEST(reg, mask, write) \
722 do { \
723 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700724 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800725 ? E1000_##reg : E1000_82542_##reg, \
726 mask, write)) \
727 return 1; \
728 } while (0)
729
730#define REG_SET_AND_CHECK(reg, mask, write) \
731 do { \
732 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700733 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800734 ? E1000_##reg : E1000_82542_##reg, \
735 mask, write)) \
736 return 1; \
737 } while (0)
738
Joe Perches64798842008-07-11 15:17:02 -0700739static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Joe Perches406874a2008-04-03 10:06:32 -0700741 u32 value, before, after;
742 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700743 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /* The status register is Read Only, so a write should fail.
746 * Some bits that get toggled are ignored.
747 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000748
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400749 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000750 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700751
Joe Perches1dc32912008-07-11 15:17:08 -0700752 before = er32(STATUS);
753 value = (er32(STATUS) & toggle);
754 ew32(STATUS, toggle);
755 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800756 if (value != after) {
Malli Chilakalab01f6692005-06-17 17:42:29 -0700757 DPRINTK(DRV, ERR, "failed STATUS register test got: "
758 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 *data = 1;
760 return 1;
761 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700762 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700763 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800764
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000765 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
766 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
767 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
768 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
771 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
772 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
773 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
774 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
775 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
776 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
777 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
778 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
779 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
780
781 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800782
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000783 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700784 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
786
Joe Perches1dc32912008-07-11 15:17:08 -0700787 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Auke Kokcd94dd02006-06-27 09:08:22 -0700789 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000791 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
793 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000794 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700795 for (i = 0; i < value; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
Auke Kok90fb5132006-11-01 08:47:30 -0800797 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 } else {
801
802 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
803 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
804 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
805 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
806
807 }
808
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000809 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700810 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
812
813 *data = 0;
814 return 0;
815}
816
Joe Perches64798842008-07-11 15:17:02 -0700817static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Joe Perches1dc32912008-07-11 15:17:08 -0700819 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700820 u16 temp;
821 u16 checksum = 0;
822 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 *data = 0;
825 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800826 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700827 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *data = 1;
829 break;
830 }
831 checksum += temp;
832 }
833
834 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700835 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 *data = 2;
837
838 return *data;
839}
840
Joe Perches64798842008-07-11 15:17:02 -0700841static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Joe Perchese982f172008-07-11 15:17:18 -0700843 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700844 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700845 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Joe Perches1dc32912008-07-11 15:17:08 -0700847 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 return IRQ_HANDLED;
850}
851
Joe Perches64798842008-07-11 15:17:02 -0700852static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
854 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700855 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700856 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700857 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700858 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 *data = 0;
861
Auke Kok8fc897b2006-08-28 14:56:16 -0700862 /* NOTE: we don't test MSI interrupts here, yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* Hook up test interrupt handler just for this test */
Auke Kok90fb5132006-11-01 08:47:30 -0800864 if (!request_irq(irq, &e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
865 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700866 shared_int = false;
Auke Kok8fc897b2006-08-28 14:56:16 -0700867 else if (request_irq(irq, &e1000_test_intr, IRQF_SHARED,
Auke Kok90fb5132006-11-01 08:47:30 -0800868 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 *data = 1;
870 return -1;
871 }
Auke Kok8fc897b2006-08-28 14:56:16 -0700872 DPRINTK(HW, INFO, "testing %s interrupt\n",
Auke Kokb9b6e782006-06-08 09:28:38 -0700873 (shared_int ? "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700876 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400877 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800880 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /* Interrupt to test */
883 mask = 1 << i;
884
Auke Kok76c224b2006-05-23 13:36:06 -0700885 if (!shared_int) {
886 /* Disable the interrupt to be reported in
887 * the cause register and then force the same
888 * interrupt and see if one gets posted. If
889 * an interrupt was posted to the bus, the
890 * test failed.
891 */
892 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700893 ew32(IMC, mask);
894 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400895 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800896
Auke Kok76c224b2006-05-23 13:36:06 -0700897 if (adapter->test_icr & mask) {
898 *data = 3;
899 break;
900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 /* Enable the interrupt to be reported in
904 * the cause register and then force the same
905 * interrupt and see if one gets posted. If
906 * an interrupt was not posted to the bus, the
907 * test failed.
908 */
909 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700910 ew32(IMS, mask);
911 ew32(ICS, mask);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400912 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800914 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 *data = 4;
916 break;
917 }
918
Auke Kok76c224b2006-05-23 13:36:06 -0700919 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* Disable the other interrupts to be reported in
921 * the cause register and then force the other
922 * interrupts and see if any get posted. If
923 * an interrupt was posted to the bus, the
924 * test failed.
925 */
926 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700927 ew32(IMC, ~mask & 0x00007FFF);
928 ew32(ICS, ~mask & 0x00007FFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400929 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800931 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 *data = 5;
933 break;
934 }
935 }
936 }
937
938 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700939 ew32(IMC, 0xFFFFFFFF);
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400940 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 /* Unhook test interrupt handler */
943 free_irq(irq, netdev);
944
945 return *data;
946}
947
Joe Perches64798842008-07-11 15:17:02 -0700948static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400950 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
951 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct pci_dev *pdev = adapter->pdev;
953 int i;
954
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800955 if (txdr->desc && txdr->buffer_info) {
956 for (i = 0; i < txdr->count; i++) {
957 if (txdr->buffer_info[i].dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 pci_unmap_single(pdev, txdr->buffer_info[i].dma,
959 txdr->buffer_info[i].length,
960 PCI_DMA_TODEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800961 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 dev_kfree_skb(txdr->buffer_info[i].skb);
963 }
964 }
965
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800966 if (rxdr->desc && rxdr->buffer_info) {
967 for (i = 0; i < rxdr->count; i++) {
968 if (rxdr->buffer_info[i].dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 pci_unmap_single(pdev, rxdr->buffer_info[i].dma,
970 rxdr->buffer_info[i].length,
971 PCI_DMA_FROMDEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800972 if (rxdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 dev_kfree_skb(rxdr->buffer_info[i].skb);
974 }
975 }
976
Jeff Kirsherf5645112006-01-12 16:51:01 -0800977 if (txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 pci_free_consistent(pdev, txdr->size, txdr->desc, txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500979 txdr->desc = NULL;
980 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800981 if (rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 pci_free_consistent(pdev, rxdr->size, rxdr->desc, rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500983 rxdr->desc = NULL;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400986 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500987 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400988 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500989 rxdr->buffer_info = NULL;
Jeff Kirsherf5645112006-01-12 16:51:01 -0800990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return;
992}
993
Joe Perches64798842008-07-11 15:17:02 -0700994static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Joe Perches1dc32912008-07-11 15:17:08 -0700996 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400997 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
998 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -07001000 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -08001001 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /* Setup Tx descriptor ring and Tx buffers */
1004
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001005 if (!txdr->count)
1006 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Joe Perchesc7be73b2008-07-11 15:17:28 -07001008 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
1009 GFP_KERNEL);
1010 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 ret_val = 1;
1012 goto err_nomem;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001016 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001017 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
1018 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 ret_val = 2;
1020 goto err_nomem;
1021 }
1022 memset(txdr->desc, 0, txdr->size);
1023 txdr->next_to_use = txdr->next_to_clean = 0;
1024
Joe Perchese982f172008-07-11 15:17:18 -07001025 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1026 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001027 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1028 ew32(TDH, 0);
1029 ew32(TDT, 0);
1030 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1031 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1032 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001034 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1036 struct sk_buff *skb;
1037 unsigned int size = 1024;
1038
Joe Perchesc7be73b2008-07-11 15:17:28 -07001039 skb = alloc_skb(size, GFP_KERNEL);
1040 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 ret_val = 3;
1042 goto err_nomem;
1043 }
1044 skb_put(skb, size);
1045 txdr->buffer_info[i].skb = skb;
1046 txdr->buffer_info[i].length = skb->len;
1047 txdr->buffer_info[i].dma =
1048 pci_map_single(pdev, skb->data, skb->len,
1049 PCI_DMA_TODEVICE);
1050 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1051 tx_desc->lower.data = cpu_to_le32(skb->len);
1052 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1053 E1000_TXD_CMD_IFCS |
1054 E1000_TXD_CMD_RPS);
1055 tx_desc->upper.data = 0;
1056 }
1057
1058 /* Setup Rx descriptor ring and Rx buffers */
1059
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001060 if (!rxdr->count)
1061 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Joe Perchesc7be73b2008-07-11 15:17:28 -07001063 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1064 GFP_KERNEL);
1065 if (!rxdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 ret_val = 4;
1067 goto err_nomem;
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001071 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
1072 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 ret_val = 5;
1074 goto err_nomem;
1075 }
1076 memset(rxdr->desc, 0, rxdr->size);
1077 rxdr->next_to_use = rxdr->next_to_clean = 0;
1078
Joe Perches1dc32912008-07-11 15:17:08 -07001079 rctl = er32(RCTL);
1080 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001081 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1082 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001083 ew32(RDLEN, rxdr->size);
1084 ew32(RDH, 0);
1085 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1087 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001088 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1089 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001091 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1093 struct sk_buff *skb;
1094
Joe Perchesc7be73b2008-07-11 15:17:28 -07001095 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1096 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ret_val = 6;
1098 goto err_nomem;
1099 }
1100 skb_reserve(skb, NET_IP_ALIGN);
1101 rxdr->buffer_info[i].skb = skb;
1102 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1103 rxdr->buffer_info[i].dma =
1104 pci_map_single(pdev, skb->data, E1000_RXBUFFER_2048,
1105 PCI_DMA_FROMDEVICE);
1106 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1107 memset(skb->data, 0x00, skb->len);
1108 }
1109
1110 return 0;
1111
1112err_nomem:
1113 e1000_free_desc_rings(adapter);
1114 return ret_val;
1115}
1116
Joe Perches64798842008-07-11 15:17:02 -07001117static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Joe Perches1dc32912008-07-11 15:17:08 -07001119 struct e1000_hw *hw = &adapter->hw;
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001122 e1000_write_phy_reg(hw, 29, 0x001F);
1123 e1000_write_phy_reg(hw, 30, 0x8FFC);
1124 e1000_write_phy_reg(hw, 29, 0x001A);
1125 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Joe Perches64798842008-07-11 15:17:02 -07001128static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Joe Perches1dc32912008-07-11 15:17:08 -07001130 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001131 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1134 * Extended PHY Specific Control Register to 25MHz clock. This
1135 * value defaults back to a 2.5MHz clock when the PHY is reset.
1136 */
Joe Perches1dc32912008-07-11 15:17:08 -07001137 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Joe Perches1dc32912008-07-11 15:17:08 -07001139 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1141
1142 /* In addition, because of the s/w reset above, we need to enable
1143 * CRS on TX. This must be set for both full and half duplex
1144 * operation.
1145 */
Joe Perches1dc32912008-07-11 15:17:08 -07001146 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Joe Perches1dc32912008-07-11 15:17:08 -07001148 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 M88E1000_PHY_SPEC_CTRL, phy_reg);
1150}
1151
Joe Perches64798842008-07-11 15:17:02 -07001152static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Joe Perches1dc32912008-07-11 15:17:08 -07001154 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001155 u32 ctrl_reg;
1156 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /* Setup the Device Control Register for PHY loopback test. */
1159
Joe Perches1dc32912008-07-11 15:17:08 -07001160 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1162 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1163 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1164 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1165 E1000_CTRL_FD); /* Force Duplex to FULL */
1166
Joe Perches1dc32912008-07-11 15:17:08 -07001167 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001170 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* Clear Auto-Crossover bits in PHY Specific Control Register
1173 * (bits 6:5).
1174 */
1175 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001176 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001179 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 /* Have to setup TX_CLK and TX_CRS after software reset */
1182 e1000_phy_reset_clk_and_crs(adapter);
1183
Joe Perches1dc32912008-07-11 15:17:08 -07001184 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /* Wait for reset to complete. */
1187 udelay(500);
1188
1189 /* Have to setup TX_CLK and TX_CRS after software reset */
1190 e1000_phy_reset_clk_and_crs(adapter);
1191
1192 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1193 e1000_phy_disable_receiver(adapter);
1194
1195 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001196 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001198 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /* Setup TX_CLK and TX_CRS one more time. */
1201 e1000_phy_reset_clk_and_crs(adapter);
1202
1203 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001204 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001205 if (phy_reg != 0x4100)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return 9;
1207
Joe Perches1dc32912008-07-11 15:17:08 -07001208 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001209 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return 10;
1211
Joe Perches1dc32912008-07-11 15:17:08 -07001212 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001213 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return 11;
1215
1216 return 0;
1217}
1218
Joe Perches64798842008-07-11 15:17:02 -07001219static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Joe Perches1dc32912008-07-11 15:17:08 -07001221 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001222 u32 ctrl_reg = 0;
1223 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Joe Perches1dc32912008-07-11 15:17:08 -07001225 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Joe Perches1dc32912008-07-11 15:17:08 -07001227 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001229 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 M88E1000_PHY_SPEC_CTRL, 0x0808);
1231 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001232 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001234 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Joe Perches1dc32912008-07-11 15:17:08 -07001237 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001238
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001239 /* force 1000, set loopback */
1240 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001241
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001242 /* Now set up the MAC to the same speed/duplex as the PHY. */
1243 ctrl_reg = er32(CTRL);
1244 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1245 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1246 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1247 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1248 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Joe Perches1dc32912008-07-11 15:17:08 -07001250 if (hw->media_type == e1000_media_type_copper &&
1251 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001253 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /* Set the ILOS bit on the fiber Nic is half
1255 * duplex link is detected. */
Joe Perches1dc32912008-07-11 15:17:08 -07001256 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001257 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1259 }
1260
Joe Perches1dc32912008-07-11 15:17:08 -07001261 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 /* Disable the receiver on the PHY so when a cable is plugged in, the
1264 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1265 */
Joe Perches1dc32912008-07-11 15:17:08 -07001266 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 e1000_phy_disable_receiver(adapter);
1268
1269 udelay(500);
1270
1271 return 0;
1272}
1273
Joe Perches64798842008-07-11 15:17:02 -07001274static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Joe Perches1dc32912008-07-11 15:17:08 -07001276 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001277 u16 phy_reg = 0;
1278 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Joe Perches1dc32912008-07-11 15:17:08 -07001280 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001282 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /* Attempt to setup Loopback mode on Non-integrated PHY.
1284 * Some PHY registers get corrupted at random, so
1285 * attempt this 10 times.
1286 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001287 while (e1000_nonintegrated_phy_loopback(adapter) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001289 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return 0;
1291 }
1292 break;
1293
1294 case e1000_82544:
1295 case e1000_82540:
1296 case e1000_82545:
1297 case e1000_82545_rev_3:
1298 case e1000_82546:
1299 case e1000_82546_rev_3:
1300 case e1000_82541:
1301 case e1000_82541_rev_2:
1302 case e1000_82547:
1303 case e1000_82547_rev_2:
1304 return e1000_integrated_phy_loopback(adapter);
1305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 default:
1307 /* Default PHY loopback work is to read the MII
1308 * control register and assert bit 14 (loopback mode).
1309 */
Joe Perches1dc32912008-07-11 15:17:08 -07001310 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001312 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return 0;
1314 break;
1315 }
1316
1317 return 8;
1318}
1319
Joe Perches64798842008-07-11 15:17:02 -07001320static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Jeff Kirsher49273162006-01-12 16:50:44 -08001322 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001323 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Jeff Kirsher49273162006-01-12 16:50:44 -08001325 if (hw->media_type == e1000_media_type_fiber ||
1326 hw->media_type == e1000_media_type_internal_serdes) {
1327 switch (hw->mac_type) {
1328 case e1000_82545:
1329 case e1000_82546:
1330 case e1000_82545_rev_3:
1331 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001333 break;
Jeff Kirsher49273162006-01-12 16:50:44 -08001334 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001335 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001337 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return 0;
1339 }
Jeff Kirsher49273162006-01-12 16:50:44 -08001340 } else if (hw->media_type == e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return e1000_set_phy_loopback(adapter);
1342
1343 return 7;
1344}
1345
Joe Perches64798842008-07-11 15:17:02 -07001346static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Jeff Kirsher49273162006-01-12 16:50:44 -08001348 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001349 u32 rctl;
1350 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Joe Perches1dc32912008-07-11 15:17:08 -07001352 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001354 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Jeff Kirsher49273162006-01-12 16:50:44 -08001356 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001357 case e1000_82545:
1358 case e1000_82546:
1359 case e1000_82545_rev_3:
1360 case e1000_82546_rev_3:
1361 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001362 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001363 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1364 if (phy_reg & MII_CR_LOOPBACK) {
1365 phy_reg &= ~MII_CR_LOOPBACK;
1366 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1367 e1000_phy_reset(hw);
1368 }
1369 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371}
1372
Joe Perches64798842008-07-11 15:17:02 -07001373static void e1000_create_lbtest_frame(struct sk_buff *skb,
1374 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001377 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1379 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1380 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1381}
1382
Joe Perches64798842008-07-11 15:17:02 -07001383static int e1000_check_lbtest_frame(struct sk_buff *skb,
1384 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001386 frame_size &= ~1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001387 if (*(skb->data + 3) == 0xFF) {
1388 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1390 return 0;
1391 }
1392 }
1393 return 13;
1394}
1395
Joe Perches64798842008-07-11 15:17:02 -07001396static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Joe Perches1dc32912008-07-11 15:17:08 -07001398 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001399 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1400 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 struct pci_dev *pdev = adapter->pdev;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001402 int i, j, k, l, lc, good_cnt, ret_val=0;
1403 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Joe Perches1dc32912008-07-11 15:17:08 -07001405 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001407 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001408 * The idea is to wrap the largest ring a number of times using 64
1409 * send/receive pairs during each loop
1410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001412 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001413 lc = ((txdr->count / 64) * 2) + 1;
1414 else
1415 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Malli Chilakalae4eff722005-04-28 19:38:30 -07001417 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001418 for (j = 0; j <= lc; j++) { /* loop count loop */
1419 for (i = 0; i < 64; i++) { /* send the packets */
1420 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001421 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001422 pci_dma_sync_single_for_device(pdev,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001423 txdr->buffer_info[k].dma,
1424 txdr->buffer_info[k].length,
1425 PCI_DMA_TODEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001426 if (unlikely(++k == txdr->count)) k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001427 }
Joe Perches1dc32912008-07-11 15:17:08 -07001428 ew32(TDT, k);
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001429 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001430 time = jiffies; /* set the start time for the receive */
1431 good_cnt = 0;
1432 do { /* receive the sent packets */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001433 pci_dma_sync_single_for_cpu(pdev,
Malli Chilakalae4eff722005-04-28 19:38:30 -07001434 rxdr->buffer_info[l].dma,
1435 rxdr->buffer_info[l].length,
1436 PCI_DMA_FROMDEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001437
Malli Chilakalae4eff722005-04-28 19:38:30 -07001438 ret_val = e1000_check_lbtest_frame(
1439 rxdr->buffer_info[l].skb,
1440 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001441 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001442 good_cnt++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001443 if (unlikely(++l == rxdr->count)) l = 0;
1444 /* time + 20 msecs (200 msecs on 2.4) is more than
1445 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001446 * exceeded, break and error off
1447 */
1448 } while (good_cnt < 64 && jiffies < (time + 20));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001449 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001450 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001451 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001452 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001453 if (jiffies >= (time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001454 ret_val = 14; /* error code for time out error */
1455 break;
1456 }
1457 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return ret_val;
1459}
1460
Joe Perches64798842008-07-11 15:17:02 -07001461static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001463 *data = e1000_setup_desc_rings(adapter);
1464 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001465 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001466 *data = e1000_setup_loopback_test(adapter);
1467 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001468 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 *data = e1000_run_loopback_test(adapter);
1470 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001473 e1000_free_desc_rings(adapter);
1474out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return *data;
1476}
1477
Joe Perches64798842008-07-11 15:17:02 -07001478static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Joe Perches1dc32912008-07-11 15:17:08 -07001480 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001482 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 int i = 0;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001484 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Malli Chilakala26483452005-04-28 19:44:46 -07001486 /* On some blade server designs, link establishment
1487 * could take as long as 2-3 minutes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001489 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001490 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001492 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 } while (i++ < 3750);
1494
Malli Chilakala26483452005-04-28 19:44:46 -07001495 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001497 e1000_check_for_link(hw);
1498 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001499 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Joe Perches1dc32912008-07-11 15:17:08 -07001501 if (!(er32(STATUS) & E1000_STATUS_LU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 *data = 1;
1503 }
1504 }
1505 return *data;
1506}
1507
Joe Perches64798842008-07-11 15:17:02 -07001508static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001510 switch (sset) {
1511 case ETH_SS_TEST:
1512 return E1000_TEST_LEN;
1513 case ETH_SS_STATS:
1514 return E1000_STATS_LEN;
1515 default:
1516 return -EOPNOTSUPP;
1517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Joe Perches64798842008-07-11 15:17:02 -07001520static void e1000_diag_test(struct net_device *netdev,
1521 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001523 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001524 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001525 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Auke Kok1314bbf2006-09-27 12:54:02 -07001527 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001528 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* Offline tests */
1530
1531 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001532 u16 autoneg_advertised = hw->autoneg_advertised;
1533 u8 forced_speed_duplex = hw->forced_speed_duplex;
1534 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001536 DPRINTK(HW, INFO, "offline testing starting\n");
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 /* Link test performed before hardware reset so autoneg doesn't
1539 * interfere with test result */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001540 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 eth_test->flags |= ETH_TEST_FL_FAILED;
1542
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001543 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001544 /* indicate we're in test mode */
1545 dev_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 else
1547 e1000_reset(adapter);
1548
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001549 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 eth_test->flags |= ETH_TEST_FL_FAILED;
1551
1552 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001553 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 eth_test->flags |= ETH_TEST_FL_FAILED;
1555
1556 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001557 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 eth_test->flags |= ETH_TEST_FL_FAILED;
1559
1560 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001561 /* make sure the phy is powered up */
1562 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001563 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 eth_test->flags |= ETH_TEST_FL_FAILED;
1565
1566 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001567 hw->autoneg_advertised = autoneg_advertised;
1568 hw->forced_speed_duplex = forced_speed_duplex;
1569 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001572 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001573 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001574 dev_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 } else {
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001576 DPRINTK(HW, INFO, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001578 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 eth_test->flags |= ETH_TEST_FL_FAILED;
1580
Auke Kok90fb5132006-11-01 08:47:30 -08001581 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 data[0] = 0;
1583 data[1] = 0;
1584 data[2] = 0;
1585 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001586
Auke Kok1314bbf2006-09-27 12:54:02 -07001587 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001589 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
Joe Perches64798842008-07-11 15:17:02 -07001592static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1593 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001596 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001598 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001599 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 case E1000_DEV_ID_82543GC_FIBER:
1601 case E1000_DEV_ID_82543GC_COPPER:
1602 case E1000_DEV_ID_82544EI_FIBER:
1603 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1604 case E1000_DEV_ID_82545EM_FIBER:
1605 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001606 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001607 case E1000_DEV_ID_82546GB_PCIE:
1608 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001610 break;
1611 case E1000_DEV_ID_82546EB_FIBER:
1612 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001613 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001614 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001615 wol->supported = 0;
1616 break;
1617 }
1618 /* return success for non excluded adapter ports */
1619 retval = 0;
1620 break;
1621 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1622 /* quad port adapters only support WoL on port A */
1623 if (!adapter->quad_port_a) {
1624 wol->supported = 0;
1625 break;
1626 }
1627 /* return success for non excluded adapter ports */
1628 retval = 0;
1629 break;
1630 default:
1631 /* dual port cards only support WoL on port A from now on
1632 * unless it was enabled in the eeprom for port B
1633 * so exclude FUNC_1 ports from having WoL enabled */
Joe Perches1dc32912008-07-11 15:17:08 -07001634 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001635 !adapter->eeprom_wol) {
1636 wol->supported = 0;
1637 break;
1638 }
1639
1640 retval = 0;
1641 }
1642
1643 return retval;
1644}
1645
Joe Perches64798842008-07-11 15:17:02 -07001646static void e1000_get_wol(struct net_device *netdev,
1647 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001648{
1649 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001650 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001651
1652 wol->supported = WAKE_UCAST | WAKE_MCAST |
1653 WAKE_BCAST | WAKE_MAGIC;
1654 wol->wolopts = 0;
1655
1656 /* this function will set ->supported = 0 and return 1 if wol is not
1657 * supported by this hardware */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001658 if (e1000_wol_exclusion(adapter, wol) ||
1659 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return;
1661
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001662 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001663 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001664 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001665 /* KSP3 does not suppport UCAST wake-ups */
1666 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001667
1668 if (adapter->wol & E1000_WUFC_EX)
1669 DPRINTK(DRV, ERR, "Interface does not support "
1670 "directed (unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001671 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001673 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001675
1676 if (adapter->wol & E1000_WUFC_EX)
1677 wol->wolopts |= WAKE_UCAST;
1678 if (adapter->wol & E1000_WUFC_MC)
1679 wol->wolopts |= WAKE_MCAST;
1680 if (adapter->wol & E1000_WUFC_BC)
1681 wol->wolopts |= WAKE_BCAST;
1682 if (adapter->wol & E1000_WUFC_MAG)
1683 wol->wolopts |= WAKE_MAGIC;
1684
1685 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Joe Perches64798842008-07-11 15:17:02 -07001688static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001690 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 struct e1000_hw *hw = &adapter->hw;
1692
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001693 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1694 return -EOPNOTSUPP;
1695
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001696 if (e1000_wol_exclusion(adapter, wol) ||
1697 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return wol->wolopts ? -EOPNOTSUPP : 0;
1699
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001700 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001701 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001702 if (wol->wolopts & WAKE_UCAST) {
1703 DPRINTK(DRV, ERR, "Interface does not support "
1704 "directed (unicast) frame wake-up packets\n");
1705 return -EOPNOTSUPP;
1706 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001707 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001712 /* these settings will always override what we currently have */
1713 adapter->wol = 0;
1714
1715 if (wol->wolopts & WAKE_UCAST)
1716 adapter->wol |= E1000_WUFC_EX;
1717 if (wol->wolopts & WAKE_MCAST)
1718 adapter->wol |= E1000_WUFC_MC;
1719 if (wol->wolopts & WAKE_BCAST)
1720 adapter->wol |= E1000_WUFC_BC;
1721 if (wol->wolopts & WAKE_MAGIC)
1722 adapter->wol |= E1000_WUFC_MAG;
1723
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001724 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return 0;
1727}
1728
1729/* toggle LED 4 times per second = 2 "blinks" per second */
1730#define E1000_ID_INTERVAL (HZ/4)
1731
1732/* bit defines for adapter->led_status */
1733#define E1000_LED_ON 0
1734
Joe Perches64798842008-07-11 15:17:02 -07001735static void e1000_led_blink_callback(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
1737 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Joe Perches1dc32912008-07-11 15:17:08 -07001738 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001740 if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
Joe Perches1dc32912008-07-11 15:17:08 -07001741 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 else
Joe Perches1dc32912008-07-11 15:17:08 -07001743 e1000_led_on(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
1746}
1747
Joe Perches64798842008-07-11 15:17:02 -07001748static int e1000_phys_id(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001750 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001751 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Stephen Hemmingerabec42a2007-10-29 10:46:19 -07001753 if (!data)
1754 data = INT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001756 if (!adapter->blink_timer.function) {
1757 init_timer(&adapter->blink_timer);
1758 adapter->blink_timer.function = e1000_led_blink_callback;
1759 adapter->blink_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001761 e1000_setup_led(hw);
1762 mod_timer(&adapter->blink_timer, jiffies);
1763 msleep_interruptible(data * 1000);
1764 del_timer_sync(&adapter->blink_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Joe Perches1dc32912008-07-11 15:17:08 -07001766 e1000_led_off(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 clear_bit(E1000_LED_ON, &adapter->led_status);
Joe Perches1dc32912008-07-11 15:17:08 -07001768 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 return 0;
1771}
1772
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001773static int e1000_get_coalesce(struct net_device *netdev,
1774 struct ethtool_coalesce *ec)
1775{
1776 struct e1000_adapter *adapter = netdev_priv(netdev);
1777
1778 if (adapter->hw.mac_type < e1000_82545)
1779 return -EOPNOTSUPP;
1780
1781 if (adapter->itr_setting <= 3)
1782 ec->rx_coalesce_usecs = adapter->itr_setting;
1783 else
1784 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1785
1786 return 0;
1787}
1788
1789static int e1000_set_coalesce(struct net_device *netdev,
1790 struct ethtool_coalesce *ec)
1791{
1792 struct e1000_adapter *adapter = netdev_priv(netdev);
1793 struct e1000_hw *hw = &adapter->hw;
1794
1795 if (hw->mac_type < e1000_82545)
1796 return -EOPNOTSUPP;
1797
1798 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
1799 ((ec->rx_coalesce_usecs > 3) &&
1800 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1801 (ec->rx_coalesce_usecs == 2))
1802 return -EINVAL;
1803
1804 if (ec->rx_coalesce_usecs <= 3) {
1805 adapter->itr = 20000;
1806 adapter->itr_setting = ec->rx_coalesce_usecs;
1807 } else {
1808 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1809 adapter->itr_setting = adapter->itr & ~3;
1810 }
1811
1812 if (adapter->itr_setting != 0)
1813 ew32(ITR, 1000000000 / (adapter->itr * 256));
1814 else
1815 ew32(ITR, 0);
1816
1817 return 0;
1818}
1819
Joe Perches64798842008-07-11 15:17:02 -07001820static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001822 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok2db10a02006-06-27 09:06:28 -07001823 if (netif_running(netdev))
1824 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return 0;
1826}
1827
Joe Perches64798842008-07-11 15:17:02 -07001828static void e1000_get_ethtool_stats(struct net_device *netdev,
1829 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001831 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 int i;
1833
1834 e1000_update_stats(adapter);
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001835 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1836 char *p = (char *)adapter+e1000_gstrings_stats[i].stat_offset;
1837 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
Joe Perches406874a2008-04-03 10:06:32 -07001838 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001840/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Joe Perches64798842008-07-11 15:17:02 -07001843static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1844 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Joe Perches406874a2008-04-03 10:06:32 -07001846 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 int i;
1848
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001849 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 case ETH_SS_TEST:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001851 memcpy(data, *e1000_gstrings_test,
Roel Kluinc32bc6e2007-12-05 11:57:30 -08001852 sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 break;
1854 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001855 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1856 memcpy(p, e1000_gstrings_stats[i].stat_string,
1857 ETH_GSTRING_LEN);
1858 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001860/* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 break;
1862 }
1863}
1864
Jeff Garzik7282d492006-09-13 14:30:00 -04001865static const struct ethtool_ops e1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 .get_settings = e1000_get_settings,
1867 .set_settings = e1000_set_settings,
1868 .get_drvinfo = e1000_get_drvinfo,
1869 .get_regs_len = e1000_get_regs_len,
1870 .get_regs = e1000_get_regs,
1871 .get_wol = e1000_get_wol,
1872 .set_wol = e1000_set_wol,
Auke Kok8fc897b2006-08-28 14:56:16 -07001873 .get_msglevel = e1000_get_msglevel,
1874 .set_msglevel = e1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 .nway_reset = e1000_nway_reset,
1876 .get_link = ethtool_op_get_link,
1877 .get_eeprom_len = e1000_get_eeprom_len,
1878 .get_eeprom = e1000_get_eeprom,
1879 .set_eeprom = e1000_set_eeprom,
1880 .get_ringparam = e1000_get_ringparam,
1881 .set_ringparam = e1000_set_ringparam,
Auke Kok8fc897b2006-08-28 14:56:16 -07001882 .get_pauseparam = e1000_get_pauseparam,
1883 .set_pauseparam = e1000_set_pauseparam,
1884 .get_rx_csum = e1000_get_rx_csum,
1885 .set_rx_csum = e1000_set_rx_csum,
1886 .get_tx_csum = e1000_get_tx_csum,
1887 .set_tx_csum = e1000_set_tx_csum,
Auke Kok8fc897b2006-08-28 14:56:16 -07001888 .set_sg = ethtool_op_set_sg,
Auke Kok8fc897b2006-08-28 14:56:16 -07001889 .set_tso = e1000_set_tso,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 .self_test = e1000_diag_test,
1891 .get_strings = e1000_get_strings,
1892 .phys_id = e1000_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 .get_ethtool_stats = e1000_get_ethtool_stats,
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001894 .get_sset_count = e1000_get_sset_count,
1895 .get_coalesce = e1000_get_coalesce,
1896 .set_coalesce = e1000_set_coalesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897};
1898
1899void e1000_set_ethtool_ops(struct net_device *netdev)
1900{
1901 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1902}