blob: 323fd12c306bbcb2a2679fac1d6b956b873dd377 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allan0d6057e2011-01-04 01:16:44 +00004 Copyright(c) 1999 - 2011 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
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
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 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
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29/* ethtool support for e1000 */
30
31#include <linux/netdevice.h>
32#include <linux/ethtool.h>
33#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070035#include <linux/delay.h>
36
37#include "e1000.h"
38
Ajit Khapardee0f36a92009-10-13 01:45:09 +000039enum {NETDEV_STATS, E1000_STATS};
40
Auke Kokbc7f75f2007-09-17 12:30:59 -070041struct e1000_stats {
42 char stat_string[ETH_GSTRING_LEN];
Ajit Khapardee0f36a92009-10-13 01:45:09 +000043 int type;
Auke Kokbc7f75f2007-09-17 12:30:59 -070044 int sizeof_stat;
45 int stat_offset;
46};
47
Bruce Allanf0f1a172010-12-11 05:53:32 +000048#define E1000_STAT(str, m) { \
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000049 .stat_string = str, \
50 .type = E1000_STATS, \
51 .sizeof_stat = sizeof(((struct e1000_adapter *)0)->m), \
52 .stat_offset = offsetof(struct e1000_adapter, m) }
Bruce Allanf0f1a172010-12-11 05:53:32 +000053#define E1000_NETDEV_STAT(str, m) { \
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000054 .stat_string = str, \
55 .type = NETDEV_STATS, \
56 .sizeof_stat = sizeof(((struct rtnl_link_stats64 *)0)->m), \
57 .stat_offset = offsetof(struct rtnl_link_stats64, m) }
Ajit Khapardee0f36a92009-10-13 01:45:09 +000058
Auke Kokbc7f75f2007-09-17 12:30:59 -070059static const struct e1000_stats e1000_gstrings_stats[] = {
Bruce Allanf0f1a172010-12-11 05:53:32 +000060 E1000_STAT("rx_packets", stats.gprc),
61 E1000_STAT("tx_packets", stats.gptc),
62 E1000_STAT("rx_bytes", stats.gorc),
63 E1000_STAT("tx_bytes", stats.gotc),
64 E1000_STAT("rx_broadcast", stats.bprc),
65 E1000_STAT("tx_broadcast", stats.bptc),
66 E1000_STAT("rx_multicast", stats.mprc),
67 E1000_STAT("tx_multicast", stats.mptc),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000068 E1000_NETDEV_STAT("rx_errors", rx_errors),
69 E1000_NETDEV_STAT("tx_errors", tx_errors),
70 E1000_NETDEV_STAT("tx_dropped", tx_dropped),
Bruce Allanf0f1a172010-12-11 05:53:32 +000071 E1000_STAT("multicast", stats.mprc),
72 E1000_STAT("collisions", stats.colc),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000073 E1000_NETDEV_STAT("rx_length_errors", rx_length_errors),
74 E1000_NETDEV_STAT("rx_over_errors", rx_over_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000075 E1000_STAT("rx_crc_errors", stats.crcerrs),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000076 E1000_NETDEV_STAT("rx_frame_errors", rx_frame_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000077 E1000_STAT("rx_no_buffer_count", stats.rnbc),
78 E1000_STAT("rx_missed_errors", stats.mpc),
79 E1000_STAT("tx_aborted_errors", stats.ecol),
80 E1000_STAT("tx_carrier_errors", stats.tncrs),
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +000081 E1000_NETDEV_STAT("tx_fifo_errors", tx_fifo_errors),
82 E1000_NETDEV_STAT("tx_heartbeat_errors", tx_heartbeat_errors),
Bruce Allanf0f1a172010-12-11 05:53:32 +000083 E1000_STAT("tx_window_errors", stats.latecol),
84 E1000_STAT("tx_abort_late_coll", stats.latecol),
85 E1000_STAT("tx_deferred_ok", stats.dc),
86 E1000_STAT("tx_single_coll_ok", stats.scc),
87 E1000_STAT("tx_multi_coll_ok", stats.mcc),
88 E1000_STAT("tx_timeout_count", tx_timeout_count),
89 E1000_STAT("tx_restart_queue", restart_queue),
90 E1000_STAT("rx_long_length_errors", stats.roc),
91 E1000_STAT("rx_short_length_errors", stats.ruc),
92 E1000_STAT("rx_align_errors", stats.algnerrc),
93 E1000_STAT("tx_tcp_seg_good", stats.tsctc),
94 E1000_STAT("tx_tcp_seg_failed", stats.tsctfc),
95 E1000_STAT("rx_flow_control_xon", stats.xonrxc),
96 E1000_STAT("rx_flow_control_xoff", stats.xoffrxc),
97 E1000_STAT("tx_flow_control_xon", stats.xontxc),
98 E1000_STAT("tx_flow_control_xoff", stats.xofftxc),
99 E1000_STAT("rx_long_byte_count", stats.gorc),
100 E1000_STAT("rx_csum_offload_good", hw_csum_good),
101 E1000_STAT("rx_csum_offload_errors", hw_csum_err),
102 E1000_STAT("rx_header_split", rx_hdr_split),
103 E1000_STAT("alloc_rx_buff_failed", alloc_rx_buff_failed),
104 E1000_STAT("tx_smbus", stats.mgptc),
105 E1000_STAT("rx_smbus", stats.mgprc),
106 E1000_STAT("dropped_smbus", stats.mgpdc),
107 E1000_STAT("rx_dma_failed", rx_dma_failed),
108 E1000_STAT("tx_dma_failed", tx_dma_failed),
Auke Kokbc7f75f2007-09-17 12:30:59 -0700109};
110
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +0200111#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700112#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN)
113static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
114 "Register test (offline)", "Eeprom test (offline)",
115 "Interrupt test (offline)", "Loopback test (offline)",
116 "Link test (on/offline)"
117};
Bruce Allanad680762008-03-28 09:15:03 -0700118#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700119
120static int e1000_get_settings(struct net_device *netdev,
121 struct ethtool_cmd *ecmd)
122{
123 struct e1000_adapter *adapter = netdev_priv(netdev);
124 struct e1000_hw *hw = &adapter->hw;
125
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700126 if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700127
128 ecmd->supported = (SUPPORTED_10baseT_Half |
129 SUPPORTED_10baseT_Full |
130 SUPPORTED_100baseT_Half |
131 SUPPORTED_100baseT_Full |
132 SUPPORTED_1000baseT_Full |
133 SUPPORTED_Autoneg |
134 SUPPORTED_TP);
135 if (hw->phy.type == e1000_phy_ife)
136 ecmd->supported &= ~SUPPORTED_1000baseT_Full;
137 ecmd->advertising = ADVERTISED_TP;
138
139 if (hw->mac.autoneg == 1) {
140 ecmd->advertising |= ADVERTISED_Autoneg;
141 /* the e1000 autoneg seems to match ethtool nicely */
142 ecmd->advertising |= hw->phy.autoneg_advertised;
143 }
144
145 ecmd->port = PORT_TP;
146 ecmd->phy_address = hw->phy.addr;
147 ecmd->transceiver = XCVR_INTERNAL;
148
149 } else {
150 ecmd->supported = (SUPPORTED_1000baseT_Full |
151 SUPPORTED_FIBRE |
152 SUPPORTED_Autoneg);
153
154 ecmd->advertising = (ADVERTISED_1000baseT_Full |
155 ADVERTISED_FIBRE |
156 ADVERTISED_Autoneg);
157
158 ecmd->port = PORT_FIBRE;
159 ecmd->transceiver = XCVR_EXTERNAL;
160 }
161
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000162 ecmd->speed = -1;
163 ecmd->duplex = -1;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700164
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000165 if (netif_running(netdev)) {
166 if (netif_carrier_ok(netdev)) {
167 ecmd->speed = adapter->link_speed;
168 ecmd->duplex = adapter->link_duplex - 1;
169 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700170 } else {
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000171 u32 status = er32(STATUS);
172 if (status & E1000_STATUS_LU) {
173 if (status & E1000_STATUS_SPEED_1000)
174 ecmd->speed = 1000;
175 else if (status & E1000_STATUS_SPEED_100)
176 ecmd->speed = 100;
177 else
178 ecmd->speed = 10;
179
180 if (status & E1000_STATUS_FD)
181 ecmd->duplex = DUPLEX_FULL;
182 else
183 ecmd->duplex = DUPLEX_HALF;
184 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700185 }
186
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700187 ecmd->autoneg = ((hw->phy.media_type == e1000_media_type_fiber) ||
Auke Kokbc7f75f2007-09-17 12:30:59 -0700188 hw->mac.autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Chaitanya Lala18760f12009-06-08 14:28:54 +0000189
190 /* MDI-X => 2; MDI =>1; Invalid =>0 */
191 if ((hw->phy.media_type == e1000_media_type_copper) &&
Bruce Allan0c6bdb32010-06-17 18:58:43 +0000192 netif_carrier_ok(netdev))
Chaitanya Lala18760f12009-06-08 14:28:54 +0000193 ecmd->eth_tp_mdix = hw->phy.is_mdix ? ETH_TP_MDI_X :
194 ETH_TP_MDI;
195 else
196 ecmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
197
Auke Kokbc7f75f2007-09-17 12:30:59 -0700198 return 0;
199}
200
201static int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx)
202{
203 struct e1000_mac_info *mac = &adapter->hw.mac;
204
205 mac->autoneg = 0;
206
207 /* Fiber NICs only allow 1000 gbps Full duplex */
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700208 if ((adapter->hw.phy.media_type == e1000_media_type_fiber) &&
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700210 e_err("Unsupported Speed/Duplex configuration\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700211 return -EINVAL;
212 }
213
214 switch (spddplx) {
215 case SPEED_10 + DUPLEX_HALF:
216 mac->forced_speed_duplex = ADVERTISE_10_HALF;
217 break;
218 case SPEED_10 + DUPLEX_FULL:
219 mac->forced_speed_duplex = ADVERTISE_10_FULL;
220 break;
221 case SPEED_100 + DUPLEX_HALF:
222 mac->forced_speed_duplex = ADVERTISE_100_HALF;
223 break;
224 case SPEED_100 + DUPLEX_FULL:
225 mac->forced_speed_duplex = ADVERTISE_100_FULL;
226 break;
227 case SPEED_1000 + DUPLEX_FULL:
228 mac->autoneg = 1;
229 adapter->hw.phy.autoneg_advertised = ADVERTISE_1000_FULL;
230 break;
231 case SPEED_1000 + DUPLEX_HALF: /* not supported */
232 default:
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700233 e_err("Unsupported Speed/Duplex configuration\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700234 return -EINVAL;
235 }
236 return 0;
237}
238
239static int e1000_set_settings(struct net_device *netdev,
240 struct ethtool_cmd *ecmd)
241{
242 struct e1000_adapter *adapter = netdev_priv(netdev);
243 struct e1000_hw *hw = &adapter->hw;
244
Bruce Allanad680762008-03-28 09:15:03 -0700245 /*
246 * When SoL/IDER sessions are active, autoneg/speed/duplex
247 * cannot be changed
248 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700249 if (e1000_check_reset_block(hw)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700250 e_err("Cannot change link characteristics when SoL/IDER is "
251 "active.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700252 return -EINVAL;
253 }
254
255 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
256 msleep(1);
257
258 if (ecmd->autoneg == AUTONEG_ENABLE) {
259 hw->mac.autoneg = 1;
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700260 if (hw->phy.media_type == e1000_media_type_fiber)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700261 hw->phy.autoneg_advertised = ADVERTISED_1000baseT_Full |
262 ADVERTISED_FIBRE |
263 ADVERTISED_Autoneg;
264 else
265 hw->phy.autoneg_advertised = ecmd->advertising |
266 ADVERTISED_TP |
267 ADVERTISED_Autoneg;
268 ecmd->advertising = hw->phy.autoneg_advertised;
Jeff Kirsher318a94d2008-03-28 09:15:16 -0700269 if (adapter->fc_autoneg)
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800270 hw->fc.requested_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700271 } else {
272 if (e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) {
273 clear_bit(__E1000_RESETTING, &adapter->state);
274 return -EINVAL;
275 }
276 }
277
278 /* reset the link */
279
280 if (netif_running(adapter->netdev)) {
281 e1000e_down(adapter);
282 e1000e_up(adapter);
283 } else {
284 e1000e_reset(adapter);
285 }
286
287 clear_bit(__E1000_RESETTING, &adapter->state);
288 return 0;
289}
290
291static void e1000_get_pauseparam(struct net_device *netdev,
292 struct ethtool_pauseparam *pause)
293{
294 struct e1000_adapter *adapter = netdev_priv(netdev);
295 struct e1000_hw *hw = &adapter->hw;
296
297 pause->autoneg =
298 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
299
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800300 if (hw->fc.current_mode == e1000_fc_rx_pause) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700301 pause->rx_pause = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800302 } else if (hw->fc.current_mode == e1000_fc_tx_pause) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700303 pause->tx_pause = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800304 } else if (hw->fc.current_mode == e1000_fc_full) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700305 pause->rx_pause = 1;
306 pause->tx_pause = 1;
307 }
308}
309
310static int e1000_set_pauseparam(struct net_device *netdev,
311 struct ethtool_pauseparam *pause)
312{
313 struct e1000_adapter *adapter = netdev_priv(netdev);
314 struct e1000_hw *hw = &adapter->hw;
315 int retval = 0;
316
317 adapter->fc_autoneg = pause->autoneg;
318
319 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
320 msleep(1);
321
Auke Kokbc7f75f2007-09-17 12:30:59 -0700322 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800323 hw->fc.requested_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700324 if (netif_running(adapter->netdev)) {
325 e1000e_down(adapter);
326 e1000e_up(adapter);
327 } else {
328 e1000e_reset(adapter);
329 }
330 } else {
Bruce Allan5c48ef3e22008-11-21 16:57:36 -0800331 if (pause->rx_pause && pause->tx_pause)
332 hw->fc.requested_mode = e1000_fc_full;
333 else if (pause->rx_pause && !pause->tx_pause)
334 hw->fc.requested_mode = e1000_fc_rx_pause;
335 else if (!pause->rx_pause && pause->tx_pause)
336 hw->fc.requested_mode = e1000_fc_tx_pause;
337 else if (!pause->rx_pause && !pause->tx_pause)
338 hw->fc.requested_mode = e1000_fc_none;
339
340 hw->fc.current_mode = hw->fc.requested_mode;
341
Bruce Allan945eb312009-10-28 18:28:30 +0000342 if (hw->phy.media_type == e1000_media_type_fiber) {
343 retval = hw->mac.ops.setup_link(hw);
344 /* implicit goto out */
345 } else {
346 retval = e1000e_force_mac_fc(hw);
347 if (retval)
348 goto out;
349 e1000e_set_fc_watermarks(hw);
350 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700351 }
352
Bruce Allan945eb312009-10-28 18:28:30 +0000353out:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700354 clear_bit(__E1000_RESETTING, &adapter->state);
355 return retval;
356}
357
358static u32 e1000_get_rx_csum(struct net_device *netdev)
359{
360 struct e1000_adapter *adapter = netdev_priv(netdev);
Eric Dumazet807540b2010-09-23 05:40:09 +0000361 return adapter->flags & FLAG_RX_CSUM_ENABLED;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700362}
363
364static int e1000_set_rx_csum(struct net_device *netdev, u32 data)
365{
366 struct e1000_adapter *adapter = netdev_priv(netdev);
367
368 if (data)
369 adapter->flags |= FLAG_RX_CSUM_ENABLED;
370 else
371 adapter->flags &= ~FLAG_RX_CSUM_ENABLED;
372
373 if (netif_running(netdev))
374 e1000e_reinit_locked(adapter);
375 else
376 e1000e_reset(adapter);
377 return 0;
378}
379
380static u32 e1000_get_tx_csum(struct net_device *netdev)
381{
Eric Dumazet807540b2010-09-23 05:40:09 +0000382 return (netdev->features & NETIF_F_HW_CSUM) != 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700383}
384
385static int e1000_set_tx_csum(struct net_device *netdev, u32 data)
386{
387 if (data)
388 netdev->features |= NETIF_F_HW_CSUM;
389 else
390 netdev->features &= ~NETIF_F_HW_CSUM;
391
392 return 0;
393}
394
395static int e1000_set_tso(struct net_device *netdev, u32 data)
396{
397 struct e1000_adapter *adapter = netdev_priv(netdev);
398
399 if (data) {
400 netdev->features |= NETIF_F_TSO;
401 netdev->features |= NETIF_F_TSO6;
402 } else {
403 netdev->features &= ~NETIF_F_TSO;
404 netdev->features &= ~NETIF_F_TSO6;
405 }
406
Auke Kokbc7f75f2007-09-17 12:30:59 -0700407 adapter->flags |= FLAG_TSO_FORCE;
408 return 0;
409}
410
411static u32 e1000_get_msglevel(struct net_device *netdev)
412{
413 struct e1000_adapter *adapter = netdev_priv(netdev);
414 return adapter->msg_enable;
415}
416
417static void e1000_set_msglevel(struct net_device *netdev, u32 data)
418{
419 struct e1000_adapter *adapter = netdev_priv(netdev);
420 adapter->msg_enable = data;
421}
422
423static int e1000_get_regs_len(struct net_device *netdev)
424{
425#define E1000_REGS_LEN 32 /* overestimate */
426 return E1000_REGS_LEN * sizeof(u32);
427}
428
429static void e1000_get_regs(struct net_device *netdev,
430 struct ethtool_regs *regs, void *p)
431{
432 struct e1000_adapter *adapter = netdev_priv(netdev);
433 struct e1000_hw *hw = &adapter->hw;
434 u32 *regs_buff = p;
435 u16 phy_data;
436 u8 revision_id;
437
438 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
439
440 pci_read_config_byte(adapter->pdev, PCI_REVISION_ID, &revision_id);
441
442 regs->version = (1 << 24) | (revision_id << 16) | adapter->pdev->device;
443
444 regs_buff[0] = er32(CTRL);
445 regs_buff[1] = er32(STATUS);
446
447 regs_buff[2] = er32(RCTL);
448 regs_buff[3] = er32(RDLEN);
449 regs_buff[4] = er32(RDH);
450 regs_buff[5] = er32(RDT);
451 regs_buff[6] = er32(RDTR);
452
453 regs_buff[7] = er32(TCTL);
454 regs_buff[8] = er32(TDLEN);
455 regs_buff[9] = er32(TDH);
456 regs_buff[10] = er32(TDT);
457 regs_buff[11] = er32(TIDV);
458
459 regs_buff[12] = adapter->hw.phy.type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg23033fa2008-10-02 16:33:30 -0700460
461 /* ethtool doesn't use anything past this point, so all this
462 * code is likely legacy junk for apps that may or may not
463 * exist */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700464 if (hw->phy.type == e1000_phy_m88) {
465 e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
466 regs_buff[13] = (u32)phy_data; /* cable length */
467 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
468 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
469 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
470 e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
471 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
472 regs_buff[18] = regs_buff[13]; /* cable polarity */
473 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
474 regs_buff[20] = regs_buff[17]; /* polarity correction */
475 /* phy receive errors */
476 regs_buff[22] = adapter->phy_stats.receive_errors;
477 regs_buff[23] = regs_buff[13]; /* mdix mode */
478 }
Jesse Brandeburg23033fa2008-10-02 16:33:30 -0700479 regs_buff[21] = 0; /* was idle_errors */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700480 e1e_rphy(hw, PHY_1000T_STATUS, &phy_data);
481 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
482 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
483}
484
485static int e1000_get_eeprom_len(struct net_device *netdev)
486{
487 struct e1000_adapter *adapter = netdev_priv(netdev);
488 return adapter->hw.nvm.word_size * 2;
489}
490
491static int e1000_get_eeprom(struct net_device *netdev,
492 struct ethtool_eeprom *eeprom, u8 *bytes)
493{
494 struct e1000_adapter *adapter = netdev_priv(netdev);
495 struct e1000_hw *hw = &adapter->hw;
496 u16 *eeprom_buff;
497 int first_word;
498 int last_word;
499 int ret_val = 0;
500 u16 i;
501
502 if (eeprom->len == 0)
503 return -EINVAL;
504
505 eeprom->magic = adapter->pdev->vendor | (adapter->pdev->device << 16);
506
507 first_word = eeprom->offset >> 1;
508 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
509
510 eeprom_buff = kmalloc(sizeof(u16) *
511 (last_word - first_word + 1), GFP_KERNEL);
512 if (!eeprom_buff)
513 return -ENOMEM;
514
515 if (hw->nvm.type == e1000_nvm_eeprom_spi) {
516 ret_val = e1000_read_nvm(hw, first_word,
517 last_word - first_word + 1,
518 eeprom_buff);
519 } else {
520 for (i = 0; i < last_word - first_word + 1; i++) {
521 ret_val = e1000_read_nvm(hw, first_word + i, 1,
522 &eeprom_buff[i]);
Bruce Allane2434552008-11-21 17:02:41 -0800523 if (ret_val)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700524 break;
525 }
526 }
527
Bruce Allane2434552008-11-21 17:02:41 -0800528 if (ret_val) {
529 /* a read error occurred, throw away the result */
Roel Kluin8528b012009-12-01 15:54:24 +0000530 memset(eeprom_buff, 0xff, sizeof(u16) *
531 (last_word - first_word + 1));
Bruce Allane2434552008-11-21 17:02:41 -0800532 } else {
533 /* Device's eeprom is always little-endian, word addressable */
534 for (i = 0; i < last_word - first_word + 1; i++)
535 le16_to_cpus(&eeprom_buff[i]);
536 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700537
538 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
539 kfree(eeprom_buff);
540
541 return ret_val;
542}
543
544static int e1000_set_eeprom(struct net_device *netdev,
545 struct ethtool_eeprom *eeprom, u8 *bytes)
546{
547 struct e1000_adapter *adapter = netdev_priv(netdev);
548 struct e1000_hw *hw = &adapter->hw;
549 u16 *eeprom_buff;
550 void *ptr;
551 int max_len;
552 int first_word;
553 int last_word;
554 int ret_val = 0;
555 u16 i;
556
557 if (eeprom->len == 0)
558 return -EOPNOTSUPP;
559
560 if (eeprom->magic != (adapter->pdev->vendor | (adapter->pdev->device << 16)))
561 return -EFAULT;
562
Bruce Allan4a770352008-10-01 17:18:35 -0700563 if (adapter->flags & FLAG_READ_ONLY_NVM)
564 return -EINVAL;
565
Auke Kokbc7f75f2007-09-17 12:30:59 -0700566 max_len = hw->nvm.word_size * 2;
567
568 first_word = eeprom->offset >> 1;
569 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
570 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
571 if (!eeprom_buff)
572 return -ENOMEM;
573
574 ptr = (void *)eeprom_buff;
575
576 if (eeprom->offset & 1) {
577 /* need read/modify/write of first changed EEPROM word */
578 /* only the second byte of the word is being modified */
579 ret_val = e1000_read_nvm(hw, first_word, 1, &eeprom_buff[0]);
580 ptr++;
581 }
582 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0))
583 /* need read/modify/write of last changed EEPROM word */
584 /* only the first byte of the word is being modified */
585 ret_val = e1000_read_nvm(hw, last_word, 1,
586 &eeprom_buff[last_word - first_word]);
587
Bruce Allane2434552008-11-21 17:02:41 -0800588 if (ret_val)
589 goto out;
590
Auke Kokbc7f75f2007-09-17 12:30:59 -0700591 /* Device's eeprom is always little-endian, word addressable */
592 for (i = 0; i < last_word - first_word + 1; i++)
593 le16_to_cpus(&eeprom_buff[i]);
594
595 memcpy(ptr, bytes, eeprom->len);
596
597 for (i = 0; i < last_word - first_word + 1; i++)
598 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
599
600 ret_val = e1000_write_nvm(hw, first_word,
601 last_word - first_word + 1, eeprom_buff);
602
Bruce Allane2434552008-11-21 17:02:41 -0800603 if (ret_val)
604 goto out;
605
Bruce Allanad680762008-03-28 09:15:03 -0700606 /*
607 * Update the checksum over the first part of the EEPROM if needed
Bruce Allane2434552008-11-21 17:02:41 -0800608 * and flush shadow RAM for applicable controllers
Bruce Allanad680762008-03-28 09:15:03 -0700609 */
Bruce Allane2434552008-11-21 17:02:41 -0800610 if ((first_word <= NVM_CHECKSUM_REG) ||
Bruce Allanf89271dd2009-11-20 23:22:20 +0000611 (hw->mac.type == e1000_82583) ||
612 (hw->mac.type == e1000_82574) ||
613 (hw->mac.type == e1000_82573))
Bruce Allane2434552008-11-21 17:02:41 -0800614 ret_val = e1000e_update_nvm_checksum(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700615
Bruce Allane2434552008-11-21 17:02:41 -0800616out:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700617 kfree(eeprom_buff);
618 return ret_val;
619}
620
621static void e1000_get_drvinfo(struct net_device *netdev,
622 struct ethtool_drvinfo *drvinfo)
623{
624 struct e1000_adapter *adapter = netdev_priv(netdev);
625 char firmware_version[32];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700626
Bruce Allane0dc4f12011-01-06 14:29:50 +0000627 strncpy(drvinfo->driver, e1000e_driver_name,
628 sizeof(drvinfo->driver) - 1);
629 strncpy(drvinfo->version, e1000e_driver_version,
630 sizeof(drvinfo->version) - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700631
Bruce Allanad680762008-03-28 09:15:03 -0700632 /*
633 * EEPROM image version # is reported as firmware version # for
634 * PCI-E controllers
635 */
Bruce Allane0dc4f12011-01-06 14:29:50 +0000636 snprintf(firmware_version, sizeof(firmware_version), "%d.%d-%d",
Bruce Allan84527592008-11-21 17:00:22 -0800637 (adapter->eeprom_vers & 0xF000) >> 12,
638 (adapter->eeprom_vers & 0x0FF0) >> 4,
639 (adapter->eeprom_vers & 0x000F));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700640
Bruce Allane0dc4f12011-01-06 14:29:50 +0000641 strncpy(drvinfo->fw_version, firmware_version,
642 sizeof(drvinfo->fw_version) - 1);
643 strncpy(drvinfo->bus_info, pci_name(adapter->pdev),
644 sizeof(drvinfo->bus_info) - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700645 drvinfo->regdump_len = e1000_get_regs_len(netdev);
646 drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
647}
648
649static void e1000_get_ringparam(struct net_device *netdev,
650 struct ethtool_ringparam *ring)
651{
652 struct e1000_adapter *adapter = netdev_priv(netdev);
653 struct e1000_ring *tx_ring = adapter->tx_ring;
654 struct e1000_ring *rx_ring = adapter->rx_ring;
655
656 ring->rx_max_pending = E1000_MAX_RXD;
657 ring->tx_max_pending = E1000_MAX_TXD;
658 ring->rx_mini_max_pending = 0;
659 ring->rx_jumbo_max_pending = 0;
660 ring->rx_pending = rx_ring->count;
661 ring->tx_pending = tx_ring->count;
662 ring->rx_mini_pending = 0;
663 ring->rx_jumbo_pending = 0;
664}
665
666static int e1000_set_ringparam(struct net_device *netdev,
667 struct ethtool_ringparam *ring)
668{
669 struct e1000_adapter *adapter = netdev_priv(netdev);
670 struct e1000_ring *tx_ring, *tx_old;
671 struct e1000_ring *rx_ring, *rx_old;
672 int err;
673
674 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
675 return -EINVAL;
676
677 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
678 msleep(1);
679
680 if (netif_running(adapter->netdev))
681 e1000e_down(adapter);
682
683 tx_old = adapter->tx_ring;
684 rx_old = adapter->rx_ring;
685
686 err = -ENOMEM;
687 tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
688 if (!tx_ring)
689 goto err_alloc_tx;
Bruce Allancef8c792008-04-02 13:48:23 -0700690 /*
691 * use a memcpy to save any previously configured
692 * items like napi structs from having to be
693 * reinitialized
694 */
695 memcpy(tx_ring, tx_old, sizeof(struct e1000_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700696
697 rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
698 if (!rx_ring)
699 goto err_alloc_rx;
Bruce Allancef8c792008-04-02 13:48:23 -0700700 memcpy(rx_ring, rx_old, sizeof(struct e1000_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700701
702 adapter->tx_ring = tx_ring;
703 adapter->rx_ring = rx_ring;
704
705 rx_ring->count = max(ring->rx_pending, (u32)E1000_MIN_RXD);
706 rx_ring->count = min(rx_ring->count, (u32)(E1000_MAX_RXD));
707 rx_ring->count = ALIGN(rx_ring->count, REQ_RX_DESCRIPTOR_MULTIPLE);
708
709 tx_ring->count = max(ring->tx_pending, (u32)E1000_MIN_TXD);
710 tx_ring->count = min(tx_ring->count, (u32)(E1000_MAX_TXD));
711 tx_ring->count = ALIGN(tx_ring->count, REQ_TX_DESCRIPTOR_MULTIPLE);
712
713 if (netif_running(adapter->netdev)) {
714 /* Try to get new resources before deleting old */
715 err = e1000e_setup_rx_resources(adapter);
716 if (err)
717 goto err_setup_rx;
718 err = e1000e_setup_tx_resources(adapter);
719 if (err)
720 goto err_setup_tx;
721
Bruce Allanad680762008-03-28 09:15:03 -0700722 /*
723 * restore the old in order to free it,
724 * then add in the new
725 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700726 adapter->rx_ring = rx_old;
727 adapter->tx_ring = tx_old;
728 e1000e_free_rx_resources(adapter);
729 e1000e_free_tx_resources(adapter);
730 kfree(tx_old);
731 kfree(rx_old);
732 adapter->rx_ring = rx_ring;
733 adapter->tx_ring = tx_ring;
734 err = e1000e_up(adapter);
735 if (err)
736 goto err_setup;
737 }
738
739 clear_bit(__E1000_RESETTING, &adapter->state);
740 return 0;
741err_setup_tx:
742 e1000e_free_rx_resources(adapter);
743err_setup_rx:
744 adapter->rx_ring = rx_old;
745 adapter->tx_ring = tx_old;
746 kfree(rx_ring);
747err_alloc_rx:
748 kfree(tx_ring);
749err_alloc_tx:
750 e1000e_up(adapter);
751err_setup:
752 clear_bit(__E1000_RESETTING, &adapter->state);
753 return err;
754}
755
Bruce Allancef8c792008-04-02 13:48:23 -0700756static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data,
757 int reg, int offset, u32 mask, u32 write)
Joe Perches2a887192007-11-13 20:53:51 -0800758{
Bruce Allancef8c792008-04-02 13:48:23 -0700759 u32 pat, val;
Bruce Allan64806412010-12-11 05:53:42 +0000760 static const u32 test[] = {
761 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Bruce Allancef8c792008-04-02 13:48:23 -0700762 for (pat = 0; pat < ARRAY_SIZE(test); pat++) {
Joe Perches2a887192007-11-13 20:53:51 -0800763 E1000_WRITE_REG_ARRAY(&adapter->hw, reg, offset,
Bruce Allancef8c792008-04-02 13:48:23 -0700764 (test[pat] & write));
765 val = E1000_READ_REG_ARRAY(&adapter->hw, reg, offset);
766 if (val != (test[pat] & write & mask)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700767 e_err("pattern test reg %04X failed: got 0x%08X "
768 "expected 0x%08X\n", reg + offset, val,
769 (test[pat] & write & mask));
Joe Perches2a887192007-11-13 20:53:51 -0800770 *data = reg;
Bruce Allancef8c792008-04-02 13:48:23 -0700771 return 1;
Joe Perches2a887192007-11-13 20:53:51 -0800772 }
773 }
Bruce Allancef8c792008-04-02 13:48:23 -0700774 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700775}
776
Joe Perches2a887192007-11-13 20:53:51 -0800777static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data,
778 int reg, u32 mask, u32 write)
779{
Bruce Allancef8c792008-04-02 13:48:23 -0700780 u32 val;
Joe Perches2a887192007-11-13 20:53:51 -0800781 __ew32(&adapter->hw, reg, write & mask);
Bruce Allancef8c792008-04-02 13:48:23 -0700782 val = __er32(&adapter->hw, reg);
783 if ((write & mask) != (val & mask)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700784 e_err("set/check reg %04X test failed: got 0x%08X "
785 "expected 0x%08X\n", reg, (val & mask), (write & mask));
Joe Perches2a887192007-11-13 20:53:51 -0800786 *data = reg;
Bruce Allancef8c792008-04-02 13:48:23 -0700787 return 1;
Joe Perches2a887192007-11-13 20:53:51 -0800788 }
Bruce Allancef8c792008-04-02 13:48:23 -0700789 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700790}
Bruce Allancef8c792008-04-02 13:48:23 -0700791#define REG_PATTERN_TEST_ARRAY(reg, offset, mask, write) \
792 do { \
793 if (reg_pattern_test(adapter, data, reg, offset, mask, write)) \
794 return 1; \
Joe Perches2a887192007-11-13 20:53:51 -0800795 } while (0)
Bruce Allancef8c792008-04-02 13:48:23 -0700796#define REG_PATTERN_TEST(reg, mask, write) \
797 REG_PATTERN_TEST_ARRAY(reg, 0, mask, write)
Joe Perches2a887192007-11-13 20:53:51 -0800798
Bruce Allancef8c792008-04-02 13:48:23 -0700799#define REG_SET_AND_CHECK(reg, mask, write) \
800 do { \
801 if (reg_set_and_check(adapter, data, reg, mask, write)) \
802 return 1; \
Joe Perches2a887192007-11-13 20:53:51 -0800803 } while (0)
804
Auke Kokbc7f75f2007-09-17 12:30:59 -0700805static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
806{
807 struct e1000_hw *hw = &adapter->hw;
808 struct e1000_mac_info *mac = &adapter->hw.mac;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700809 u32 value;
810 u32 before;
811 u32 after;
812 u32 i;
813 u32 toggle;
Bruce Allana4f58f52009-06-02 11:29:18 +0000814 u32 mask;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700815
Bruce Allanad680762008-03-28 09:15:03 -0700816 /*
817 * The status register is Read Only, so a write should fail.
Auke Kokbc7f75f2007-09-17 12:30:59 -0700818 * Some bits that get toggled are ignored.
819 */
820 switch (mac->type) {
821 /* there are several bits on newer hardware that are r/w */
822 case e1000_82571:
823 case e1000_82572:
824 case e1000_80003es2lan:
825 toggle = 0x7FFFF3FF;
826 break;
Bruce Allana4f58f52009-06-02 11:29:18 +0000827 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700828 toggle = 0x7FFFF033;
829 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700830 }
831
832 before = er32(STATUS);
833 value = (er32(STATUS) & toggle);
834 ew32(STATUS, toggle);
835 after = er32(STATUS) & toggle;
836 if (value != after) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700837 e_err("failed STATUS register test got: 0x%08X expected: "
838 "0x%08X\n", after, value);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700839 *data = 1;
840 return 1;
841 }
842 /* restore previous status */
843 ew32(STATUS, before);
844
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700845 if (!(adapter->flags & FLAG_IS_ICH)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700846 REG_PATTERN_TEST(E1000_FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
847 REG_PATTERN_TEST(E1000_FCAH, 0x0000FFFF, 0xFFFFFFFF);
848 REG_PATTERN_TEST(E1000_FCT, 0x0000FFFF, 0xFFFFFFFF);
849 REG_PATTERN_TEST(E1000_VET, 0x0000FFFF, 0xFFFFFFFF);
850 }
851
852 REG_PATTERN_TEST(E1000_RDTR, 0x0000FFFF, 0xFFFFFFFF);
853 REG_PATTERN_TEST(E1000_RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
854 REG_PATTERN_TEST(E1000_RDLEN, 0x000FFF80, 0x000FFFFF);
855 REG_PATTERN_TEST(E1000_RDH, 0x0000FFFF, 0x0000FFFF);
856 REG_PATTERN_TEST(E1000_RDT, 0x0000FFFF, 0x0000FFFF);
857 REG_PATTERN_TEST(E1000_FCRTH, 0x0000FFF8, 0x0000FFF8);
858 REG_PATTERN_TEST(E1000_FCTTV, 0x0000FFFF, 0x0000FFFF);
859 REG_PATTERN_TEST(E1000_TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
860 REG_PATTERN_TEST(E1000_TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
861 REG_PATTERN_TEST(E1000_TDLEN, 0x000FFF80, 0x000FFFFF);
862
863 REG_SET_AND_CHECK(E1000_RCTL, 0xFFFFFFFF, 0x00000000);
864
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700865 before = ((adapter->flags & FLAG_IS_ICH) ? 0x06C3B33E : 0x06DFB3FE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700866 REG_SET_AND_CHECK(E1000_RCTL, before, 0x003FFFFB);
867 REG_SET_AND_CHECK(E1000_TCTL, 0xFFFFFFFF, 0x00000000);
868
Auke Kok86582512007-10-04 15:00:08 -0700869 REG_SET_AND_CHECK(E1000_RCTL, before, 0xFFFFFFFF);
870 REG_PATTERN_TEST(E1000_RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700871 if (!(adapter->flags & FLAG_IS_ICH))
Auke Kok86582512007-10-04 15:00:08 -0700872 REG_PATTERN_TEST(E1000_TXCW, 0xC000FFFF, 0x0000FFFF);
873 REG_PATTERN_TEST(E1000_TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
874 REG_PATTERN_TEST(E1000_TIDV, 0x0000FFFF, 0x0000FFFF);
Bruce Allana4f58f52009-06-02 11:29:18 +0000875 mask = 0x8003FFFF;
876 switch (mac->type) {
877 case e1000_ich10lan:
878 case e1000_pchlan:
Bruce Alland3738bb2010-06-16 13:27:28 +0000879 case e1000_pch2lan:
Bruce Allana4f58f52009-06-02 11:29:18 +0000880 mask |= (1 << 18);
881 break;
882 default:
883 break;
884 }
Auke Kok86582512007-10-04 15:00:08 -0700885 for (i = 0; i < mac->rar_entry_count; i++)
886 REG_PATTERN_TEST_ARRAY(E1000_RA, ((i << 1) + 1),
Bruce Allana4f58f52009-06-02 11:29:18 +0000887 mask, 0xFFFFFFFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700888
889 for (i = 0; i < mac->mta_reg_count; i++)
890 REG_PATTERN_TEST_ARRAY(E1000_MTA, i, 0xFFFFFFFF, 0xFFFFFFFF);
891
892 *data = 0;
893 return 0;
894}
895
896static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
897{
898 u16 temp;
899 u16 checksum = 0;
900 u16 i;
901
902 *data = 0;
903 /* Read and add up the contents of the EEPROM */
904 for (i = 0; i < (NVM_CHECKSUM_REG + 1); i++) {
905 if ((e1000_read_nvm(&adapter->hw, i, 1, &temp)) < 0) {
906 *data = 1;
Bruce Allane2434552008-11-21 17:02:41 -0800907 return *data;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700908 }
909 checksum += temp;
910 }
911
912 /* If Checksum is not Correct return error else test passed */
913 if ((checksum != (u16) NVM_SUM) && !(*data))
914 *data = 2;
915
916 return *data;
917}
918
919static irqreturn_t e1000_test_intr(int irq, void *data)
920{
921 struct net_device *netdev = (struct net_device *) data;
922 struct e1000_adapter *adapter = netdev_priv(netdev);
923 struct e1000_hw *hw = &adapter->hw;
924
925 adapter->test_icr |= er32(ICR);
926
927 return IRQ_HANDLED;
928}
929
930static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
931{
932 struct net_device *netdev = adapter->netdev;
933 struct e1000_hw *hw = &adapter->hw;
934 u32 mask;
935 u32 shared_int = 1;
936 u32 irq = adapter->pdev->irq;
937 int i;
Bruce Allan4662e822008-08-26 18:37:06 -0700938 int ret_val = 0;
939 int int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700940
941 *data = 0;
942
Bruce Allan4662e822008-08-26 18:37:06 -0700943 /* NOTE: we don't test MSI/MSI-X interrupts here, yet */
944 if (adapter->int_mode == E1000E_INT_MODE_MSIX) {
945 int_mode = adapter->int_mode;
946 e1000e_reset_interrupt_capability(adapter);
947 adapter->int_mode = E1000E_INT_MODE_LEGACY;
948 e1000e_set_interrupt_capability(adapter);
949 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700950 /* Hook up test interrupt handler just for this test */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800951 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700952 netdev)) {
953 shared_int = 0;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800954 } else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700955 netdev->name, netdev)) {
956 *data = 1;
Bruce Allan4662e822008-08-26 18:37:06 -0700957 ret_val = -1;
958 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700959 }
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700960 e_info("testing %s interrupt\n", (shared_int ? "shared" : "unshared"));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700961
962 /* Disable all the interrupts */
963 ew32(IMC, 0xFFFFFFFF);
964 msleep(10);
965
966 /* Test each interrupt */
967 for (i = 0; i < 10; i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700968 /* Interrupt to test */
969 mask = 1 << i;
970
Bruce Allanf4187b52008-08-26 18:36:50 -0700971 if (adapter->flags & FLAG_IS_ICH) {
972 switch (mask) {
973 case E1000_ICR_RXSEQ:
974 continue;
975 case 0x00000100:
976 if (adapter->hw.mac.type == e1000_ich8lan ||
977 adapter->hw.mac.type == e1000_ich9lan)
978 continue;
979 break;
980 default:
981 break;
982 }
983 }
984
Auke Kokbc7f75f2007-09-17 12:30:59 -0700985 if (!shared_int) {
Bruce Allanad680762008-03-28 09:15:03 -0700986 /*
987 * Disable the interrupt to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -0700988 * the cause register and then force the same
989 * interrupt and see if one gets posted. If
990 * an interrupt was posted to the bus, the
991 * test failed.
992 */
993 adapter->test_icr = 0;
994 ew32(IMC, mask);
995 ew32(ICS, mask);
996 msleep(10);
997
998 if (adapter->test_icr & mask) {
999 *data = 3;
1000 break;
1001 }
1002 }
1003
Bruce Allanad680762008-03-28 09:15:03 -07001004 /*
1005 * Enable the interrupt to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -07001006 * the cause register and then force the same
1007 * interrupt and see if one gets posted. If
1008 * an interrupt was not posted to the bus, the
1009 * test failed.
1010 */
1011 adapter->test_icr = 0;
1012 ew32(IMS, mask);
1013 ew32(ICS, mask);
1014 msleep(10);
1015
1016 if (!(adapter->test_icr & mask)) {
1017 *data = 4;
1018 break;
1019 }
1020
1021 if (!shared_int) {
Bruce Allanad680762008-03-28 09:15:03 -07001022 /*
1023 * Disable the other interrupts to be reported in
Auke Kokbc7f75f2007-09-17 12:30:59 -07001024 * the cause register and then force the other
1025 * interrupts and see if any get posted. If
1026 * an interrupt was posted to the bus, the
1027 * test failed.
1028 */
1029 adapter->test_icr = 0;
1030 ew32(IMC, ~mask & 0x00007FFF);
1031 ew32(ICS, ~mask & 0x00007FFF);
1032 msleep(10);
1033
1034 if (adapter->test_icr) {
1035 *data = 5;
1036 break;
1037 }
1038 }
1039 }
1040
1041 /* Disable all the interrupts */
1042 ew32(IMC, 0xFFFFFFFF);
1043 msleep(10);
1044
1045 /* Unhook test interrupt handler */
1046 free_irq(irq, netdev);
1047
Bruce Allan4662e822008-08-26 18:37:06 -07001048out:
1049 if (int_mode == E1000E_INT_MODE_MSIX) {
1050 e1000e_reset_interrupt_capability(adapter);
1051 adapter->int_mode = int_mode;
1052 e1000e_set_interrupt_capability(adapter);
1053 }
1054
1055 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001056}
1057
1058static void e1000_free_desc_rings(struct e1000_adapter *adapter)
1059{
1060 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1061 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1062 struct pci_dev *pdev = adapter->pdev;
1063 int i;
1064
1065 if (tx_ring->desc && tx_ring->buffer_info) {
1066 for (i = 0; i < tx_ring->count; i++) {
1067 if (tx_ring->buffer_info[i].dma)
Nick Nunley0be3f552010-04-27 13:09:05 +00001068 dma_unmap_single(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001069 tx_ring->buffer_info[i].dma,
1070 tx_ring->buffer_info[i].length,
Nick Nunley0be3f552010-04-27 13:09:05 +00001071 DMA_TO_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001072 if (tx_ring->buffer_info[i].skb)
1073 dev_kfree_skb(tx_ring->buffer_info[i].skb);
1074 }
1075 }
1076
1077 if (rx_ring->desc && rx_ring->buffer_info) {
1078 for (i = 0; i < rx_ring->count; i++) {
1079 if (rx_ring->buffer_info[i].dma)
Nick Nunley0be3f552010-04-27 13:09:05 +00001080 dma_unmap_single(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001081 rx_ring->buffer_info[i].dma,
Nick Nunley0be3f552010-04-27 13:09:05 +00001082 2048, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001083 if (rx_ring->buffer_info[i].skb)
1084 dev_kfree_skb(rx_ring->buffer_info[i].skb);
1085 }
1086 }
1087
1088 if (tx_ring->desc) {
1089 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1090 tx_ring->dma);
1091 tx_ring->desc = NULL;
1092 }
1093 if (rx_ring->desc) {
1094 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1095 rx_ring->dma);
1096 rx_ring->desc = NULL;
1097 }
1098
1099 kfree(tx_ring->buffer_info);
1100 tx_ring->buffer_info = NULL;
1101 kfree(rx_ring->buffer_info);
1102 rx_ring->buffer_info = NULL;
1103}
1104
1105static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
1106{
1107 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1108 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1109 struct pci_dev *pdev = adapter->pdev;
1110 struct e1000_hw *hw = &adapter->hw;
1111 u32 rctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001112 int i;
1113 int ret_val;
1114
1115 /* Setup Tx descriptor ring and Tx buffers */
1116
1117 if (!tx_ring->count)
1118 tx_ring->count = E1000_DEFAULT_TXD;
1119
Bruce Allancef8c792008-04-02 13:48:23 -07001120 tx_ring->buffer_info = kcalloc(tx_ring->count,
1121 sizeof(struct e1000_buffer),
1122 GFP_KERNEL);
1123 if (!(tx_ring->buffer_info)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001124 ret_val = 1;
1125 goto err_nomem;
1126 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127
1128 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
1129 tx_ring->size = ALIGN(tx_ring->size, 4096);
1130 tx_ring->desc = dma_alloc_coherent(&pdev->dev, tx_ring->size,
1131 &tx_ring->dma, GFP_KERNEL);
1132 if (!tx_ring->desc) {
1133 ret_val = 2;
1134 goto err_nomem;
1135 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001136 tx_ring->next_to_use = 0;
1137 tx_ring->next_to_clean = 0;
1138
Bruce Allancef8c792008-04-02 13:48:23 -07001139 ew32(TDBAL, ((u64) tx_ring->dma & 0x00000000FFFFFFFF));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001140 ew32(TDBAH, ((u64) tx_ring->dma >> 32));
Bruce Allancef8c792008-04-02 13:48:23 -07001141 ew32(TDLEN, tx_ring->count * sizeof(struct e1000_tx_desc));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001142 ew32(TDH, 0);
1143 ew32(TDT, 0);
Bruce Allancef8c792008-04-02 13:48:23 -07001144 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN | E1000_TCTL_MULR |
1145 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1146 E1000_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001147
1148 for (i = 0; i < tx_ring->count; i++) {
1149 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*tx_ring, i);
1150 struct sk_buff *skb;
1151 unsigned int skb_size = 1024;
1152
1153 skb = alloc_skb(skb_size, GFP_KERNEL);
1154 if (!skb) {
1155 ret_val = 3;
1156 goto err_nomem;
1157 }
1158 skb_put(skb, skb_size);
1159 tx_ring->buffer_info[i].skb = skb;
1160 tx_ring->buffer_info[i].length = skb->len;
1161 tx_ring->buffer_info[i].dma =
Nick Nunley0be3f552010-04-27 13:09:05 +00001162 dma_map_single(&pdev->dev, skb->data, skb->len,
1163 DMA_TO_DEVICE);
1164 if (dma_mapping_error(&pdev->dev,
1165 tx_ring->buffer_info[i].dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001166 ret_val = 4;
1167 goto err_nomem;
1168 }
Bruce Allancef8c792008-04-02 13:48:23 -07001169 tx_desc->buffer_addr = cpu_to_le64(tx_ring->buffer_info[i].dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001170 tx_desc->lower.data = cpu_to_le32(skb->len);
1171 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1172 E1000_TXD_CMD_IFCS |
Bruce Allancef8c792008-04-02 13:48:23 -07001173 E1000_TXD_CMD_RS);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174 tx_desc->upper.data = 0;
1175 }
1176
1177 /* Setup Rx descriptor ring and Rx buffers */
1178
1179 if (!rx_ring->count)
1180 rx_ring->count = E1000_DEFAULT_RXD;
1181
Bruce Allancef8c792008-04-02 13:48:23 -07001182 rx_ring->buffer_info = kcalloc(rx_ring->count,
1183 sizeof(struct e1000_buffer),
1184 GFP_KERNEL);
1185 if (!(rx_ring->buffer_info)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001186 ret_val = 5;
1187 goto err_nomem;
1188 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001189
1190 rx_ring->size = rx_ring->count * sizeof(struct e1000_rx_desc);
1191 rx_ring->desc = dma_alloc_coherent(&pdev->dev, rx_ring->size,
1192 &rx_ring->dma, GFP_KERNEL);
1193 if (!rx_ring->desc) {
1194 ret_val = 6;
1195 goto err_nomem;
1196 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001197 rx_ring->next_to_use = 0;
1198 rx_ring->next_to_clean = 0;
1199
1200 rctl = er32(RCTL);
1201 ew32(RCTL, rctl & ~E1000_RCTL_EN);
1202 ew32(RDBAL, ((u64) rx_ring->dma & 0xFFFFFFFF));
1203 ew32(RDBAH, ((u64) rx_ring->dma >> 32));
1204 ew32(RDLEN, rx_ring->size);
1205 ew32(RDH, 0);
1206 ew32(RDT, 0);
1207 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
Bruce Allancef8c792008-04-02 13:48:23 -07001208 E1000_RCTL_UPE | E1000_RCTL_MPE | E1000_RCTL_LPE |
1209 E1000_RCTL_SBP | E1000_RCTL_SECRC |
Auke Kokbc7f75f2007-09-17 12:30:59 -07001210 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
1211 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
1212 ew32(RCTL, rctl);
1213
1214 for (i = 0; i < rx_ring->count; i++) {
1215 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rx_ring, i);
1216 struct sk_buff *skb;
1217
1218 skb = alloc_skb(2048 + NET_IP_ALIGN, GFP_KERNEL);
1219 if (!skb) {
1220 ret_val = 7;
1221 goto err_nomem;
1222 }
1223 skb_reserve(skb, NET_IP_ALIGN);
1224 rx_ring->buffer_info[i].skb = skb;
1225 rx_ring->buffer_info[i].dma =
Nick Nunley0be3f552010-04-27 13:09:05 +00001226 dma_map_single(&pdev->dev, skb->data, 2048,
1227 DMA_FROM_DEVICE);
1228 if (dma_mapping_error(&pdev->dev,
1229 rx_ring->buffer_info[i].dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001230 ret_val = 8;
1231 goto err_nomem;
1232 }
1233 rx_desc->buffer_addr =
1234 cpu_to_le64(rx_ring->buffer_info[i].dma);
1235 memset(skb->data, 0x00, skb->len);
1236 }
1237
1238 return 0;
1239
1240err_nomem:
1241 e1000_free_desc_rings(adapter);
1242 return ret_val;
1243}
1244
1245static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
1246{
1247 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1248 e1e_wphy(&adapter->hw, 29, 0x001F);
1249 e1e_wphy(&adapter->hw, 30, 0x8FFC);
1250 e1e_wphy(&adapter->hw, 29, 0x001A);
1251 e1e_wphy(&adapter->hw, 30, 0x8FF0);
1252}
1253
1254static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
1255{
1256 struct e1000_hw *hw = &adapter->hw;
1257 u32 ctrl_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001258 u16 phy_reg = 0;
Bruce Allancbd006c2010-11-24 06:01:30 +00001259 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001260
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001261 hw->mac.autoneg = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001262
Bruce Allan3af50482010-06-16 13:25:55 +00001263 if (hw->phy.type == e1000_phy_ife) {
1264 /* force 100, set loopback */
1265 e1e_wphy(hw, PHY_CONTROL, 0x6100);
Bruce Allanbb436b22009-11-20 23:24:11 +00001266
Bruce Allan3af50482010-06-16 13:25:55 +00001267 /* Now set up the MAC to the same speed/duplex as the PHY. */
1268 ctrl_reg = er32(CTRL);
1269 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1270 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1271 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1272 E1000_CTRL_SPD_100 |/* Force Speed to 100 */
1273 E1000_CTRL_FD); /* Force Duplex to FULL */
1274
1275 ew32(CTRL, ctrl_reg);
1276 udelay(500);
1277
1278 return 0;
1279 }
1280
1281 /* Specific PHY configuration for loopback */
1282 switch (hw->phy.type) {
1283 case e1000_phy_m88:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001284 /* Auto-MDI/MDIX Off */
1285 e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, 0x0808);
1286 /* reset to update Auto-MDI/MDIX */
1287 e1e_wphy(hw, PHY_CONTROL, 0x9140);
1288 /* autoneg off */
1289 e1e_wphy(hw, PHY_CONTROL, 0x8140);
Bruce Allan3af50482010-06-16 13:25:55 +00001290 break;
1291 case e1000_phy_gg82563:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001292 e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, 0x1CC);
Bruce Allancef8c792008-04-02 13:48:23 -07001293 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001294 case e1000_phy_bm:
1295 /* Set Default MAC Interface speed to 1GB */
1296 e1e_rphy(hw, PHY_REG(2, 21), &phy_reg);
1297 phy_reg &= ~0x0007;
1298 phy_reg |= 0x006;
1299 e1e_wphy(hw, PHY_REG(2, 21), phy_reg);
1300 /* Assert SW reset for above settings to take effect */
1301 e1000e_commit_phy(hw);
1302 mdelay(1);
1303 /* Force Full Duplex */
1304 e1e_rphy(hw, PHY_REG(769, 16), &phy_reg);
1305 e1e_wphy(hw, PHY_REG(769, 16), phy_reg | 0x000C);
1306 /* Set Link Up (in force link) */
1307 e1e_rphy(hw, PHY_REG(776, 16), &phy_reg);
1308 e1e_wphy(hw, PHY_REG(776, 16), phy_reg | 0x0040);
1309 /* Force Link */
1310 e1e_rphy(hw, PHY_REG(769, 16), &phy_reg);
1311 e1e_wphy(hw, PHY_REG(769, 16), phy_reg | 0x0040);
1312 /* Set Early Link Enable */
1313 e1e_rphy(hw, PHY_REG(769, 20), &phy_reg);
1314 e1e_wphy(hw, PHY_REG(769, 20), phy_reg | 0x0400);
Bruce Allan3af50482010-06-16 13:25:55 +00001315 break;
1316 case e1000_phy_82577:
1317 case e1000_phy_82578:
1318 /* Workaround: K1 must be disabled for stable 1Gbps operation */
Bruce Allancbd006c2010-11-24 06:01:30 +00001319 ret_val = hw->phy.ops.acquire(hw);
1320 if (ret_val) {
1321 e_err("Cannot setup 1Gbps loopback.\n");
1322 return ret_val;
1323 }
Bruce Allan3af50482010-06-16 13:25:55 +00001324 e1000_configure_k1_ich8lan(hw, false);
Bruce Allancbd006c2010-11-24 06:01:30 +00001325 hw->phy.ops.release(hw);
Bruce Allan3af50482010-06-16 13:25:55 +00001326 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00001327 case e1000_phy_82579:
1328 /* Disable PHY energy detect power down */
1329 e1e_rphy(hw, PHY_REG(0, 21), &phy_reg);
1330 e1e_wphy(hw, PHY_REG(0, 21), phy_reg & ~(1 << 3));
1331 /* Disable full chip energy detect */
1332 e1e_rphy(hw, PHY_REG(776, 18), &phy_reg);
1333 e1e_wphy(hw, PHY_REG(776, 18), phy_reg | 1);
1334 /* Enable loopback on the PHY */
1335#define I82577_PHY_LBK_CTRL 19
1336 e1e_wphy(hw, I82577_PHY_LBK_CTRL, 0x8001);
1337 break;
Bruce Allancef8c792008-04-02 13:48:23 -07001338 default:
Bruce Allan3af50482010-06-16 13:25:55 +00001339 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001340 }
1341
Bruce Allan3af50482010-06-16 13:25:55 +00001342 /* force 1000, set loopback */
1343 e1e_wphy(hw, PHY_CONTROL, 0x4140);
1344 mdelay(250);
1345
1346 /* Now set up the MAC to the same speed/duplex as the PHY. */
1347 ctrl_reg = er32(CTRL);
1348 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1349 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1350 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1351 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1352 E1000_CTRL_FD); /* Force Duplex to FULL */
1353
1354 if (adapter->flags & FLAG_IS_ICH)
1355 ctrl_reg |= E1000_CTRL_SLU; /* Set Link Up */
1356
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001357 if (hw->phy.media_type == e1000_media_type_copper &&
1358 hw->phy.type == e1000_phy_m88) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001359 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
1360 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001361 /*
1362 * Set the ILOS bit on the fiber Nic if half duplex link is
1363 * detected.
1364 */
Bruce Allan90da0662011-01-06 07:02:53 +00001365 if ((er32(STATUS) & E1000_STATUS_FD) == 0)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001366 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1367 }
1368
1369 ew32(CTRL, ctrl_reg);
1370
Bruce Allanad680762008-03-28 09:15:03 -07001371 /*
1372 * Disable the receiver on the PHY so when a cable is plugged in, the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001373 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1374 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001375 if (hw->phy.type == e1000_phy_m88)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001376 e1000_phy_disable_receiver(adapter);
1377
1378 udelay(500);
1379
1380 return 0;
1381}
1382
1383static int e1000_set_82571_fiber_loopback(struct e1000_adapter *adapter)
1384{
1385 struct e1000_hw *hw = &adapter->hw;
1386 u32 ctrl = er32(CTRL);
1387 int link = 0;
1388
1389 /* special requirements for 82571/82572 fiber adapters */
1390
Bruce Allanad680762008-03-28 09:15:03 -07001391 /*
1392 * jump through hoops to make sure link is up because serdes
1393 * link is hardwired up
1394 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001395 ctrl |= E1000_CTRL_SLU;
1396 ew32(CTRL, ctrl);
1397
1398 /* disable autoneg */
1399 ctrl = er32(TXCW);
1400 ctrl &= ~(1 << 31);
1401 ew32(TXCW, ctrl);
1402
1403 link = (er32(STATUS) & E1000_STATUS_LU);
1404
1405 if (!link) {
1406 /* set invert loss of signal */
1407 ctrl = er32(CTRL);
1408 ctrl |= E1000_CTRL_ILOS;
1409 ew32(CTRL, ctrl);
1410 }
1411
Bruce Allanad680762008-03-28 09:15:03 -07001412 /*
1413 * special write to serdes control register to enable SerDes analog
1414 * loopback
1415 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001416#define E1000_SERDES_LB_ON 0x410
1417 ew32(SCTL, E1000_SERDES_LB_ON);
1418 msleep(10);
1419
1420 return 0;
1421}
1422
1423/* only call this for fiber/serdes connections to es2lan */
1424static int e1000_set_es2lan_mac_loopback(struct e1000_adapter *adapter)
1425{
1426 struct e1000_hw *hw = &adapter->hw;
1427 u32 ctrlext = er32(CTRL_EXT);
1428 u32 ctrl = er32(CTRL);
1429
Bruce Allanad680762008-03-28 09:15:03 -07001430 /*
1431 * save CTRL_EXT to restore later, reuse an empty variable (unused
1432 * on mac_type 80003es2lan)
1433 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001434 adapter->tx_fifo_head = ctrlext;
1435
1436 /* clear the serdes mode bits, putting the device into mac loopback */
1437 ctrlext &= ~E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES;
1438 ew32(CTRL_EXT, ctrlext);
1439
1440 /* force speed to 1000/FD, link up */
1441 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1442 ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX |
1443 E1000_CTRL_SPD_1000 | E1000_CTRL_FD);
1444 ew32(CTRL, ctrl);
1445
1446 /* set mac loopback */
1447 ctrl = er32(RCTL);
1448 ctrl |= E1000_RCTL_LBM_MAC;
1449 ew32(RCTL, ctrl);
1450
1451 /* set testing mode parameters (no need to reset later) */
1452#define KMRNCTRLSTA_OPMODE (0x1F << 16)
1453#define KMRNCTRLSTA_OPMODE_1GB_FD_GMII 0x0582
1454 ew32(KMRNCTRLSTA,
Bruce Allancef8c792008-04-02 13:48:23 -07001455 (KMRNCTRLSTA_OPMODE | KMRNCTRLSTA_OPMODE_1GB_FD_GMII));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001456
1457 return 0;
1458}
1459
1460static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
1461{
1462 struct e1000_hw *hw = &adapter->hw;
1463 u32 rctl;
1464
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001465 if (hw->phy.media_type == e1000_media_type_fiber ||
1466 hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001467 switch (hw->mac.type) {
1468 case e1000_80003es2lan:
1469 return e1000_set_es2lan_mac_loopback(adapter);
1470 break;
1471 case e1000_82571:
1472 case e1000_82572:
1473 return e1000_set_82571_fiber_loopback(adapter);
1474 break;
1475 default:
1476 rctl = er32(RCTL);
1477 rctl |= E1000_RCTL_LBM_TCVR;
1478 ew32(RCTL, rctl);
1479 return 0;
1480 }
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001481 } else if (hw->phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001482 return e1000_integrated_phy_loopback(adapter);
1483 }
1484
1485 return 7;
1486}
1487
1488static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
1489{
1490 struct e1000_hw *hw = &adapter->hw;
1491 u32 rctl;
1492 u16 phy_reg;
1493
1494 rctl = er32(RCTL);
1495 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
1496 ew32(RCTL, rctl);
1497
1498 switch (hw->mac.type) {
1499 case e1000_80003es2lan:
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001500 if (hw->phy.media_type == e1000_media_type_fiber ||
1501 hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001502 /* restore CTRL_EXT, stealing space from tx_fifo_head */
Bruce Allanad680762008-03-28 09:15:03 -07001503 ew32(CTRL_EXT, adapter->tx_fifo_head);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001504 adapter->tx_fifo_head = 0;
1505 }
1506 /* fall through */
1507 case e1000_82571:
1508 case e1000_82572:
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001509 if (hw->phy.media_type == e1000_media_type_fiber ||
1510 hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001511#define E1000_SERDES_LB_OFF 0x400
1512 ew32(SCTL, E1000_SERDES_LB_OFF);
1513 msleep(10);
1514 break;
1515 }
1516 /* Fall Through */
1517 default:
1518 hw->mac.autoneg = 1;
1519 if (hw->phy.type == e1000_phy_gg82563)
1520 e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, 0x180);
1521 e1e_rphy(hw, PHY_CONTROL, &phy_reg);
1522 if (phy_reg & MII_CR_LOOPBACK) {
1523 phy_reg &= ~MII_CR_LOOPBACK;
1524 e1e_wphy(hw, PHY_CONTROL, phy_reg);
1525 e1000e_commit_phy(hw);
1526 }
1527 break;
1528 }
1529}
1530
1531static void e1000_create_lbtest_frame(struct sk_buff *skb,
1532 unsigned int frame_size)
1533{
1534 memset(skb->data, 0xFF, frame_size);
1535 frame_size &= ~1;
1536 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1537 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1538 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1539}
1540
1541static int e1000_check_lbtest_frame(struct sk_buff *skb,
1542 unsigned int frame_size)
1543{
1544 frame_size &= ~1;
1545 if (*(skb->data + 3) == 0xFF)
1546 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
1547 (*(skb->data + frame_size / 2 + 12) == 0xAF))
1548 return 0;
1549 return 13;
1550}
1551
1552static int e1000_run_loopback_test(struct e1000_adapter *adapter)
1553{
1554 struct e1000_ring *tx_ring = &adapter->test_tx_ring;
1555 struct e1000_ring *rx_ring = &adapter->test_rx_ring;
1556 struct pci_dev *pdev = adapter->pdev;
1557 struct e1000_hw *hw = &adapter->hw;
1558 int i, j, k, l;
1559 int lc;
1560 int good_cnt;
1561 int ret_val = 0;
1562 unsigned long time;
1563
1564 ew32(RDT, rx_ring->count - 1);
1565
Bruce Allanad680762008-03-28 09:15:03 -07001566 /*
1567 * Calculate the loop count based on the largest descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001568 * The idea is to wrap the largest ring a number of times using 64
1569 * send/receive pairs during each loop
1570 */
1571
1572 if (rx_ring->count <= tx_ring->count)
1573 lc = ((tx_ring->count / 64) * 2) + 1;
1574 else
1575 lc = ((rx_ring->count / 64) * 2) + 1;
1576
1577 k = 0;
1578 l = 0;
1579 for (j = 0; j <= lc; j++) { /* loop count loop */
1580 for (i = 0; i < 64; i++) { /* send the packets */
Bruce Allancef8c792008-04-02 13:48:23 -07001581 e1000_create_lbtest_frame(tx_ring->buffer_info[k].skb,
1582 1024);
Nick Nunley0be3f552010-04-27 13:09:05 +00001583 dma_sync_single_for_device(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001584 tx_ring->buffer_info[k].dma,
1585 tx_ring->buffer_info[k].length,
Nick Nunley0be3f552010-04-27 13:09:05 +00001586 DMA_TO_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001587 k++;
1588 if (k == tx_ring->count)
1589 k = 0;
1590 }
1591 ew32(TDT, k);
1592 msleep(200);
1593 time = jiffies; /* set the start time for the receive */
1594 good_cnt = 0;
1595 do { /* receive the sent packets */
Nick Nunley0be3f552010-04-27 13:09:05 +00001596 dma_sync_single_for_cpu(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001597 rx_ring->buffer_info[l].dma, 2048,
Nick Nunley0be3f552010-04-27 13:09:05 +00001598 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001599
1600 ret_val = e1000_check_lbtest_frame(
1601 rx_ring->buffer_info[l].skb, 1024);
1602 if (!ret_val)
1603 good_cnt++;
1604 l++;
1605 if (l == rx_ring->count)
1606 l = 0;
Bruce Allanad680762008-03-28 09:15:03 -07001607 /*
1608 * time + 20 msecs (200 msecs on 2.4) is more than
Auke Kokbc7f75f2007-09-17 12:30:59 -07001609 * enough time to complete the receives, if it's
1610 * exceeded, break and error off
1611 */
1612 } while ((good_cnt < 64) && !time_after(jiffies, time + 20));
1613 if (good_cnt != 64) {
1614 ret_val = 13; /* ret_val is the same as mis-compare */
1615 break;
1616 }
Bruce Allancef8c792008-04-02 13:48:23 -07001617 if (jiffies >= (time + 20)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001618 ret_val = 14; /* error code for time out error */
1619 break;
1620 }
1621 } /* end loop count loop */
1622 return ret_val;
1623}
1624
1625static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
1626{
Bruce Allanad680762008-03-28 09:15:03 -07001627 /*
1628 * PHY loopback cannot be performed if SoL/IDER
1629 * sessions are active
1630 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001631 if (e1000_check_reset_block(&adapter->hw)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001632 e_err("Cannot do PHY loopback test when SoL/IDER is active.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001633 *data = 0;
1634 goto out;
1635 }
1636
1637 *data = e1000_setup_desc_rings(adapter);
Adrian Bunke2655222007-10-15 14:02:21 -07001638 if (*data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001639 goto out;
1640
1641 *data = e1000_setup_loopback_test(adapter);
Adrian Bunke2655222007-10-15 14:02:21 -07001642 if (*data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001643 goto err_loopback;
1644
1645 *data = e1000_run_loopback_test(adapter);
1646 e1000_loopback_cleanup(adapter);
1647
1648err_loopback:
1649 e1000_free_desc_rings(adapter);
1650out:
1651 return *data;
1652}
1653
1654static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
1655{
1656 struct e1000_hw *hw = &adapter->hw;
1657
1658 *data = 0;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001659 if (hw->phy.media_type == e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001660 int i = 0;
Alex Chiang612e2442009-02-05 23:55:45 -08001661 hw->mac.serdes_has_link = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001662
Bruce Allanad680762008-03-28 09:15:03 -07001663 /*
1664 * On some blade server designs, link establishment
1665 * could take as long as 2-3 minutes
1666 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001667 do {
1668 hw->mac.ops.check_for_link(hw);
1669 if (hw->mac.serdes_has_link)
1670 return *data;
1671 msleep(20);
1672 } while (i++ < 3750);
1673
1674 *data = 1;
1675 } else {
1676 hw->mac.ops.check_for_link(hw);
1677 if (hw->mac.autoneg)
1678 msleep(4000);
1679
1680 if (!(er32(STATUS) &
1681 E1000_STATUS_LU))
1682 *data = 1;
1683 }
1684 return *data;
1685}
1686
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001687static int e1000e_get_sset_count(struct net_device *netdev, int sset)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001688{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001689 switch (sset) {
1690 case ETH_SS_TEST:
1691 return E1000_TEST_LEN;
1692 case ETH_SS_STATS:
1693 return E1000_STATS_LEN;
1694 default:
1695 return -EOPNOTSUPP;
1696 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001697}
1698
1699static void e1000_diag_test(struct net_device *netdev,
1700 struct ethtool_test *eth_test, u64 *data)
1701{
1702 struct e1000_adapter *adapter = netdev_priv(netdev);
1703 u16 autoneg_advertised;
1704 u8 forced_speed_duplex;
1705 u8 autoneg;
1706 bool if_running = netif_running(netdev);
1707
1708 set_bit(__E1000_TESTING, &adapter->state);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001709
1710 if (!if_running) {
1711 /* Get control of and reset hardware */
1712 if (adapter->flags & FLAG_HAS_AMT)
1713 e1000e_get_hw_control(adapter);
1714
1715 e1000e_power_up_phy(adapter);
1716
1717 adapter->hw.phy.autoneg_wait_to_complete = 1;
1718 e1000e_reset(adapter);
1719 adapter->hw.phy.autoneg_wait_to_complete = 0;
1720 }
1721
Auke Kokbc7f75f2007-09-17 12:30:59 -07001722 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
1723 /* Offline tests */
1724
1725 /* save speed, duplex, autoneg settings */
1726 autoneg_advertised = adapter->hw.phy.autoneg_advertised;
1727 forced_speed_duplex = adapter->hw.mac.forced_speed_duplex;
1728 autoneg = adapter->hw.mac.autoneg;
1729
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001730 e_info("offline testing starting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001731
Auke Kokbc7f75f2007-09-17 12:30:59 -07001732 if (if_running)
1733 /* indicate we're in test mode */
1734 dev_close(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001735
1736 if (e1000_reg_test(adapter, &data[0]))
1737 eth_test->flags |= ETH_TEST_FL_FAILED;
1738
1739 e1000e_reset(adapter);
1740 if (e1000_eeprom_test(adapter, &data[1]))
1741 eth_test->flags |= ETH_TEST_FL_FAILED;
1742
1743 e1000e_reset(adapter);
1744 if (e1000_intr_test(adapter, &data[2]))
1745 eth_test->flags |= ETH_TEST_FL_FAILED;
1746
1747 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001748 if (e1000_loopback_test(adapter, &data[3]))
1749 eth_test->flags |= ETH_TEST_FL_FAILED;
1750
Auke Kokbc7f75f2007-09-17 12:30:59 -07001751 /* force this routine to wait until autoneg complete/timeout */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001752 adapter->hw.phy.autoneg_wait_to_complete = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001753 e1000e_reset(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001754 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001755
Carolyn Wybornyc6ce3852010-10-15 17:35:31 +00001756 if (e1000_link_test(adapter, &data[4]))
1757 eth_test->flags |= ETH_TEST_FL_FAILED;
1758
1759 /* restore speed, duplex, autoneg settings */
1760 adapter->hw.phy.autoneg_advertised = autoneg_advertised;
1761 adapter->hw.mac.forced_speed_duplex = forced_speed_duplex;
1762 adapter->hw.mac.autoneg = autoneg;
1763 e1000e_reset(adapter);
1764
Auke Kokbc7f75f2007-09-17 12:30:59 -07001765 clear_bit(__E1000_TESTING, &adapter->state);
1766 if (if_running)
1767 dev_open(netdev);
1768 } else {
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001769 /* Online tests */
Bruce Allan11b08be2010-05-10 14:59:31 +00001770
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001771 e_info("online testing starting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001772
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001773 /* register, eeprom, intr and loopback tests not run online */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001774 data[0] = 0;
1775 data[1] = 0;
1776 data[2] = 0;
1777 data[3] = 0;
1778
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001779 if (e1000_link_test(adapter, &data[4]))
1780 eth_test->flags |= ETH_TEST_FL_FAILED;
Bruce Allan11b08be2010-05-10 14:59:31 +00001781
Auke Kokbc7f75f2007-09-17 12:30:59 -07001782 clear_bit(__E1000_TESTING, &adapter->state);
1783 }
Bruce Allan31dbe5b2011-01-06 14:29:52 +00001784
1785 if (!if_running) {
1786 e1000e_reset(adapter);
1787
1788 if (adapter->flags & FLAG_HAS_AMT)
1789 e1000e_release_hw_control(adapter);
1790 }
1791
Auke Kokbc7f75f2007-09-17 12:30:59 -07001792 msleep_interruptible(4 * 1000);
1793}
1794
1795static void e1000_get_wol(struct net_device *netdev,
1796 struct ethtool_wolinfo *wol)
1797{
1798 struct e1000_adapter *adapter = netdev_priv(netdev);
1799
1800 wol->supported = 0;
1801 wol->wolopts = 0;
1802
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001803 if (!(adapter->flags & FLAG_HAS_WOL) ||
1804 !device_can_wakeup(&adapter->pdev->dev))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001805 return;
1806
1807 wol->supported = WAKE_UCAST | WAKE_MCAST |
Mitch Williamsefb90e42008-01-29 12:43:02 -08001808 WAKE_BCAST | WAKE_MAGIC |
1809 WAKE_PHY | WAKE_ARP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001810
1811 /* apply any specific unsupported masks here */
1812 if (adapter->flags & FLAG_NO_WAKE_UCAST) {
1813 wol->supported &= ~WAKE_UCAST;
1814
1815 if (adapter->wol & E1000_WUFC_EX)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001816 e_err("Interface does not support directed (unicast) "
1817 "frame wake-up packets\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001818 }
1819
1820 if (adapter->wol & E1000_WUFC_EX)
1821 wol->wolopts |= WAKE_UCAST;
1822 if (adapter->wol & E1000_WUFC_MC)
1823 wol->wolopts |= WAKE_MCAST;
1824 if (adapter->wol & E1000_WUFC_BC)
1825 wol->wolopts |= WAKE_BCAST;
1826 if (adapter->wol & E1000_WUFC_MAG)
1827 wol->wolopts |= WAKE_MAGIC;
Mitch Williamsefb90e42008-01-29 12:43:02 -08001828 if (adapter->wol & E1000_WUFC_LNKC)
1829 wol->wolopts |= WAKE_PHY;
1830 if (adapter->wol & E1000_WUFC_ARP)
1831 wol->wolopts |= WAKE_ARP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001832}
1833
1834static int e1000_set_wol(struct net_device *netdev,
1835 struct ethtool_wolinfo *wol)
1836{
1837 struct e1000_adapter *adapter = netdev_priv(netdev);
1838
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001839 if (!(adapter->flags & FLAG_HAS_WOL) ||
Bruce Allan1fbfca32009-11-20 23:22:01 +00001840 !device_can_wakeup(&adapter->pdev->dev) ||
1841 (wol->wolopts & ~(WAKE_UCAST | WAKE_MCAST | WAKE_BCAST |
1842 WAKE_MAGIC | WAKE_PHY | WAKE_ARP)))
1843 return -EOPNOTSUPP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001844
1845 /* these settings will always override what we currently have */
1846 adapter->wol = 0;
1847
1848 if (wol->wolopts & WAKE_UCAST)
1849 adapter->wol |= E1000_WUFC_EX;
1850 if (wol->wolopts & WAKE_MCAST)
1851 adapter->wol |= E1000_WUFC_MC;
1852 if (wol->wolopts & WAKE_BCAST)
1853 adapter->wol |= E1000_WUFC_BC;
1854 if (wol->wolopts & WAKE_MAGIC)
1855 adapter->wol |= E1000_WUFC_MAG;
Mitch Williamsefb90e42008-01-29 12:43:02 -08001856 if (wol->wolopts & WAKE_PHY)
1857 adapter->wol |= E1000_WUFC_LNKC;
1858 if (wol->wolopts & WAKE_ARP)
1859 adapter->wol |= E1000_WUFC_ARP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001860
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00001861 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1862
Auke Kokbc7f75f2007-09-17 12:30:59 -07001863 return 0;
1864}
1865
1866/* toggle LED 4 times per second = 2 "blinks" per second */
1867#define E1000_ID_INTERVAL (HZ/4)
1868
1869/* bit defines for adapter->led_status */
1870#define E1000_LED_ON 0
1871
Holger Eitzenberger9633e632010-11-17 15:43:52 +00001872void e1000e_led_blink_task(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001873{
Bruce Allana4f58f52009-06-02 11:29:18 +00001874 struct e1000_adapter *adapter = container_of(work,
1875 struct e1000_adapter, led_blink_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001876
1877 if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
1878 adapter->hw.mac.ops.led_off(&adapter->hw);
1879 else
1880 adapter->hw.mac.ops.led_on(&adapter->hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00001881}
Auke Kokbc7f75f2007-09-17 12:30:59 -07001882
Bruce Allana4f58f52009-06-02 11:29:18 +00001883static void e1000_led_blink_callback(unsigned long data)
1884{
1885 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
1886
1887 schedule_work(&adapter->led_blink_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001888 mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
1889}
1890
1891static int e1000_phys_id(struct net_device *netdev, u32 data)
1892{
1893 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001894 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001895
Stephen Hemminger5a9147b2007-10-29 10:46:05 -07001896 if (!data)
1897 data = INT_MAX;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001898
Bruce Allan4662e822008-08-26 18:37:06 -07001899 if ((hw->phy.type == e1000_phy_ife) ||
Bruce Allana4f58f52009-06-02 11:29:18 +00001900 (hw->mac.type == e1000_pchlan) ||
Bruce Alland3738bb2010-06-16 13:27:28 +00001901 (hw->mac.type == e1000_pch2lan) ||
Bruce Allanf89271dd2009-11-20 23:22:20 +00001902 (hw->mac.type == e1000_82583) ||
Bruce Allan4662e822008-08-26 18:37:06 -07001903 (hw->mac.type == e1000_82574)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001904 if (!adapter->blink_timer.function) {
1905 init_timer(&adapter->blink_timer);
1906 adapter->blink_timer.function =
1907 e1000_led_blink_callback;
1908 adapter->blink_timer.data = (unsigned long) adapter;
1909 }
1910 mod_timer(&adapter->blink_timer, jiffies);
1911 msleep_interruptible(data * 1000);
1912 del_timer_sync(&adapter->blink_timer);
Bruce Allan4662e822008-08-26 18:37:06 -07001913 if (hw->phy.type == e1000_phy_ife)
1914 e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001915 } else {
Bruce Allan4662e822008-08-26 18:37:06 -07001916 e1000e_blink_led(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001917 msleep_interruptible(data * 1000);
1918 }
1919
Bruce Allan4662e822008-08-26 18:37:06 -07001920 hw->mac.ops.led_off(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001921 clear_bit(E1000_LED_ON, &adapter->led_status);
Bruce Allan4662e822008-08-26 18:37:06 -07001922 hw->mac.ops.cleanup_led(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001923
1924 return 0;
1925}
1926
Auke Kokde5b3072008-04-23 11:09:08 -07001927static int e1000_get_coalesce(struct net_device *netdev,
1928 struct ethtool_coalesce *ec)
1929{
1930 struct e1000_adapter *adapter = netdev_priv(netdev);
1931
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001932 if (adapter->itr_setting <= 4)
Auke Kokde5b3072008-04-23 11:09:08 -07001933 ec->rx_coalesce_usecs = adapter->itr_setting;
1934 else
1935 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1936
1937 return 0;
1938}
1939
1940static int e1000_set_coalesce(struct net_device *netdev,
1941 struct ethtool_coalesce *ec)
1942{
1943 struct e1000_adapter *adapter = netdev_priv(netdev);
1944 struct e1000_hw *hw = &adapter->hw;
1945
1946 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001947 ((ec->rx_coalesce_usecs > 4) &&
Auke Kokde5b3072008-04-23 11:09:08 -07001948 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1949 (ec->rx_coalesce_usecs == 2))
1950 return -EINVAL;
1951
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001952 if (ec->rx_coalesce_usecs == 4) {
1953 adapter->itr = adapter->itr_setting = 4;
1954 } else if (ec->rx_coalesce_usecs <= 3) {
Auke Kokde5b3072008-04-23 11:09:08 -07001955 adapter->itr = 20000;
1956 adapter->itr_setting = ec->rx_coalesce_usecs;
1957 } else {
1958 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1959 adapter->itr_setting = adapter->itr & ~3;
1960 }
1961
1962 if (adapter->itr_setting != 0)
1963 ew32(ITR, 1000000000 / (adapter->itr * 256));
1964 else
1965 ew32(ITR, 0);
1966
1967 return 0;
1968}
1969
Auke Kokbc7f75f2007-09-17 12:30:59 -07001970static int e1000_nway_reset(struct net_device *netdev)
1971{
1972 struct e1000_adapter *adapter = netdev_priv(netdev);
1973 if (netif_running(netdev))
1974 e1000e_reinit_locked(adapter);
1975 return 0;
1976}
1977
Auke Kokbc7f75f2007-09-17 12:30:59 -07001978static void e1000_get_ethtool_stats(struct net_device *netdev,
1979 struct ethtool_stats *stats,
1980 u64 *data)
1981{
1982 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00001983 struct rtnl_link_stats64 net_stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001984 int i;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00001985 char *p = NULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001986
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00001987 e1000e_get_stats64(netdev, &net_stats);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001988 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
Ajit Khapardee0f36a92009-10-13 01:45:09 +00001989 switch (e1000_gstrings_stats[i].type) {
1990 case NETDEV_STATS:
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00001991 p = (char *) &net_stats +
Ajit Khapardee0f36a92009-10-13 01:45:09 +00001992 e1000_gstrings_stats[i].stat_offset;
1993 break;
1994 case E1000_STATS:
1995 p = (char *) adapter +
1996 e1000_gstrings_stats[i].stat_offset;
1997 break;
Bruce Allan61c75812010-12-09 23:04:25 +00001998 default:
1999 data[i] = 0;
2000 continue;
Ajit Khapardee0f36a92009-10-13 01:45:09 +00002001 }
2002
Auke Kokbc7f75f2007-09-17 12:30:59 -07002003 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
2004 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
2005 }
2006}
2007
2008static void e1000_get_strings(struct net_device *netdev, u32 stringset,
2009 u8 *data)
2010{
2011 u8 *p = data;
2012 int i;
2013
2014 switch (stringset) {
2015 case ETH_SS_TEST:
Bruce Allanad680762008-03-28 09:15:03 -07002016 memcpy(data, *e1000_gstrings_test, sizeof(e1000_gstrings_test));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002017 break;
2018 case ETH_SS_STATS:
2019 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
2020 memcpy(p, e1000_gstrings_stats[i].stat_string,
2021 ETH_GSTRING_LEN);
2022 p += ETH_GSTRING_LEN;
2023 }
2024 break;
2025 }
2026}
2027
2028static const struct ethtool_ops e1000_ethtool_ops = {
2029 .get_settings = e1000_get_settings,
2030 .set_settings = e1000_set_settings,
2031 .get_drvinfo = e1000_get_drvinfo,
2032 .get_regs_len = e1000_get_regs_len,
2033 .get_regs = e1000_get_regs,
2034 .get_wol = e1000_get_wol,
2035 .set_wol = e1000_set_wol,
2036 .get_msglevel = e1000_get_msglevel,
2037 .set_msglevel = e1000_set_msglevel,
2038 .nway_reset = e1000_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00002039 .get_link = ethtool_op_get_link,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002040 .get_eeprom_len = e1000_get_eeprom_len,
2041 .get_eeprom = e1000_get_eeprom,
2042 .set_eeprom = e1000_set_eeprom,
2043 .get_ringparam = e1000_get_ringparam,
2044 .set_ringparam = e1000_set_ringparam,
2045 .get_pauseparam = e1000_get_pauseparam,
2046 .set_pauseparam = e1000_set_pauseparam,
2047 .get_rx_csum = e1000_get_rx_csum,
2048 .set_rx_csum = e1000_set_rx_csum,
2049 .get_tx_csum = e1000_get_tx_csum,
2050 .set_tx_csum = e1000_set_tx_csum,
2051 .get_sg = ethtool_op_get_sg,
2052 .set_sg = ethtool_op_set_sg,
2053 .get_tso = ethtool_op_get_tso,
2054 .set_tso = e1000_set_tso,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002055 .self_test = e1000_diag_test,
2056 .get_strings = e1000_get_strings,
2057 .phys_id = e1000_phys_id,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002058 .get_ethtool_stats = e1000_get_ethtool_stats,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002059 .get_sset_count = e1000e_get_sset_count,
Auke Kokde5b3072008-04-23 11:09:08 -07002060 .get_coalesce = e1000_get_coalesce,
2061 .set_coalesce = e1000_set_coalesce,
Bruce Allane7d906f2009-11-20 23:22:57 +00002062 .get_flags = ethtool_op_get_flags,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002063};
2064
2065void e1000e_set_ethtool_ops(struct net_device *netdev)
2066{
2067 SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
2068}