blob: 5d365a986bb08a05893bb46430f09bc7004e8f23 [file] [log] [blame]
Jeff Kirsherae06c702018-03-22 10:08:48 -07001// SPDX-License-Identifier: GPL-2.0
Jeff Kirsher51dce242018-04-26 08:08:09 -07002/* Copyright(c) 1999 - 2006 Intel Corporation. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/* ethtool support for e1000 */
5
6#include "e1000.h"
Asaf Vertzd5c7d7f2015-01-08 06:01:00 +00007#include <linux/jiffies.h>
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00008#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Ajit Khaparde8328c382009-10-13 01:45:48 +000010enum {NETDEV_STATS, E1000_STATS};
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012struct e1000_stats {
13 char stat_string[ETH_GSTRING_LEN];
Ajit Khaparde8328c382009-10-13 01:45:48 +000014 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 int sizeof_stat;
16 int stat_offset;
17};
18
Ajit Khaparde8328c382009-10-13 01:45:48 +000019#define E1000_STAT(m) E1000_STATS, \
20 sizeof(((struct e1000_adapter *)0)->m), \
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +000021 offsetof(struct e1000_adapter, m)
Ajit Khaparde8328c382009-10-13 01:45:48 +000022#define E1000_NETDEV_STAT(m) NETDEV_STATS, \
23 sizeof(((struct net_device *)0)->m), \
24 offsetof(struct net_device, m)
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static const struct e1000_stats e1000_gstrings_stats[] = {
Mitch Williams49559852006-09-27 12:53:37 -070027 { "rx_packets", E1000_STAT(stats.gprc) },
28 { "tx_packets", E1000_STAT(stats.gptc) },
29 { "rx_bytes", E1000_STAT(stats.gorcl) },
30 { "tx_bytes", E1000_STAT(stats.gotcl) },
31 { "rx_broadcast", E1000_STAT(stats.bprc) },
32 { "tx_broadcast", E1000_STAT(stats.bptc) },
33 { "rx_multicast", E1000_STAT(stats.mprc) },
34 { "tx_multicast", E1000_STAT(stats.mptc) },
35 { "rx_errors", E1000_STAT(stats.rxerrc) },
36 { "tx_errors", E1000_STAT(stats.txerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000037 { "tx_dropped", E1000_NETDEV_STAT(stats.tx_dropped) },
Mitch Williams49559852006-09-27 12:53:37 -070038 { "multicast", E1000_STAT(stats.mprc) },
39 { "collisions", E1000_STAT(stats.colc) },
40 { "rx_length_errors", E1000_STAT(stats.rlerrc) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000041 { "rx_over_errors", E1000_NETDEV_STAT(stats.rx_over_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070042 { "rx_crc_errors", E1000_STAT(stats.crcerrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000043 { "rx_frame_errors", E1000_NETDEV_STAT(stats.rx_frame_errors) },
Malli Chilakala26483452005-04-28 19:44:46 -070044 { "rx_no_buffer_count", E1000_STAT(stats.rnbc) },
Mitch Williams49559852006-09-27 12:53:37 -070045 { "rx_missed_errors", E1000_STAT(stats.mpc) },
46 { "tx_aborted_errors", E1000_STAT(stats.ecol) },
47 { "tx_carrier_errors", E1000_STAT(stats.tncrs) },
Ajit Khaparde5fe31de2009-10-07 02:42:23 +000048 { "tx_fifo_errors", E1000_NETDEV_STAT(stats.tx_fifo_errors) },
49 { "tx_heartbeat_errors", E1000_NETDEV_STAT(stats.tx_heartbeat_errors) },
Mitch Williams49559852006-09-27 12:53:37 -070050 { "tx_window_errors", E1000_STAT(stats.latecol) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 { "tx_abort_late_coll", E1000_STAT(stats.latecol) },
52 { "tx_deferred_ok", E1000_STAT(stats.dc) },
53 { "tx_single_coll_ok", E1000_STAT(stats.scc) },
54 { "tx_multi_coll_ok", E1000_STAT(stats.mcc) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080055 { "tx_timeout_count", E1000_STAT(tx_timeout_count) },
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -080056 { "tx_restart_queue", E1000_STAT(restart_queue) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 { "rx_long_length_errors", E1000_STAT(stats.roc) },
58 { "rx_short_length_errors", E1000_STAT(stats.ruc) },
59 { "rx_align_errors", E1000_STAT(stats.algnerrc) },
60 { "tx_tcp_seg_good", E1000_STAT(stats.tsctc) },
61 { "tx_tcp_seg_failed", E1000_STAT(stats.tsctfc) },
62 { "rx_flow_control_xon", E1000_STAT(stats.xonrxc) },
63 { "rx_flow_control_xoff", E1000_STAT(stats.xoffrxc) },
64 { "tx_flow_control_xon", E1000_STAT(stats.xontxc) },
65 { "tx_flow_control_xoff", E1000_STAT(stats.xofftxc) },
66 { "rx_long_byte_count", E1000_STAT(stats.gorcl) },
67 { "rx_csum_offload_good", E1000_STAT(hw_csum_good) },
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -040068 { "rx_csum_offload_errors", E1000_STAT(hw_csum_err) },
Jeff Kirsher6b7660c2006-01-12 16:50:35 -080069 { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
Jeff Garzik15e376b2006-12-15 11:16:33 -050070 { "tx_smbus", E1000_STAT(stats.mgptc) },
71 { "rx_smbus", E1000_STAT(stats.mgprc) },
72 { "dropped_smbus", E1000_STAT(stats.mgpdc) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080074
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080075#define E1000_QUEUE_STATS_LEN 0
Denis Chengff8ac602007-09-02 18:30:18 +080076#define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
Jeff Kirsher7bfa4812006-01-12 16:50:41 -080077#define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
79 "Register test (offline)", "Eeprom test (offline)",
80 "Interrupt test (offline)", "Loopback test (offline)",
81 "Link test (on/offline)"
82};
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +000083
Alejandro Martinez Ruiz4c3616c2007-10-18 10:00:15 +020084#define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Philippe Reynes5add2f92017-01-21 16:06:03 +010086static int e1000_get_link_ksettings(struct net_device *netdev,
87 struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Malli Chilakala60490fe2005-06-17 17:41:45 -070089 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct e1000_hw *hw = &adapter->hw;
Philippe Reynes5add2f92017-01-21 16:06:03 +010091 u32 supported, advertising;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Jesse Brandeburg96838a42006-01-18 13:01:39 -080093 if (hw->media_type == e1000_media_type_copper) {
Philippe Reynes5add2f92017-01-21 16:06:03 +010094 supported = (SUPPORTED_10baseT_Half |
95 SUPPORTED_10baseT_Full |
96 SUPPORTED_100baseT_Half |
97 SUPPORTED_100baseT_Full |
98 SUPPORTED_1000baseT_Full|
99 SUPPORTED_Autoneg |
100 SUPPORTED_TP);
101 advertising = ADVERTISED_TP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800103 if (hw->autoneg == 1) {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100104 advertising |= ADVERTISED_Autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* the e1000 autoneg seems to match ethtool nicely */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100106 advertising |= hw->autoneg_advertised;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Philippe Reynes5add2f92017-01-21 16:06:03 +0100109 cmd->base.port = PORT_TP;
110 cmd->base.phy_address = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100112 supported = (SUPPORTED_1000baseT_Full |
113 SUPPORTED_FIBRE |
114 SUPPORTED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Philippe Reynes5add2f92017-01-21 16:06:03 +0100116 advertising = (ADVERTISED_1000baseT_Full |
117 ADVERTISED_FIBRE |
118 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Philippe Reynes5add2f92017-01-21 16:06:03 +0100120 cmd->base.port = PORT_FIBRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122
Joe Perches1dc32912008-07-11 15:17:08 -0700123 if (er32(STATUS) & E1000_STATUS_LU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000125 &adapter->link_duplex);
Philippe Reynes5add2f92017-01-21 16:06:03 +0100126 cmd->base.speed = adapter->link_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300128 /* unfortunately FULL_DUPLEX != DUPLEX_FULL
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000129 * and HALF_DUPLEX != DUPLEX_HALF
130 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800131 if (adapter->link_duplex == FULL_DUPLEX)
Philippe Reynes5add2f92017-01-21 16:06:03 +0100132 cmd->base.duplex = DUPLEX_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100134 cmd->base.duplex = DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100136 cmd->base.speed = SPEED_UNKNOWN;
137 cmd->base.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Philippe Reynes5add2f92017-01-21 16:06:03 +0100140 cmd->base.autoneg = ((hw->media_type == e1000_media_type_fiber) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000142
143 /* MDI-X => 1; MDI => 0 */
144 if ((hw->media_type == e1000_media_type_copper) &&
145 netif_carrier_ok(netdev))
Philippe Reynes5add2f92017-01-21 16:06:03 +0100146 cmd->base.eth_tp_mdix = (!!adapter->phy_info.mdix_mode ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000147 ETH_TP_MDI_X : ETH_TP_MDI);
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000148 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100149 cmd->base.eth_tp_mdix = ETH_TP_MDI_INVALID;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000150
151 if (hw->mdix == AUTO_ALL_MODES)
Philippe Reynes5add2f92017-01-21 16:06:03 +0100152 cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000153 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100154 cmd->base.eth_tp_mdix_ctrl = hw->mdix;
155
156 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
157 supported);
158 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
159 advertising);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
Philippe Reynes5add2f92017-01-21 16:06:03 +0100164static int e1000_set_link_ksettings(struct net_device *netdev,
165 const struct ethtool_link_ksettings *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700167 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct e1000_hw *hw = &adapter->hw;
Philippe Reynes5add2f92017-01-21 16:06:03 +0100169 u32 advertising;
170
171 ethtool_convert_link_mode_to_legacy_u32(&advertising,
172 cmd->link_modes.advertising);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000174 /* MDI setting is only allowed when autoneg enabled because
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000175 * some hardware doesn't allow MDI setting when speed or
176 * duplex is forced.
177 */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100178 if (cmd->base.eth_tp_mdix_ctrl) {
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000179 if (hw->media_type != e1000_media_type_copper)
180 return -EOPNOTSUPP;
181
Philippe Reynes5add2f92017-01-21 16:06:03 +0100182 if ((cmd->base.eth_tp_mdix_ctrl != ETH_TP_MDI_AUTO) &&
183 (cmd->base.autoneg != AUTONEG_ENABLE)) {
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000184 e_err(drv, "forcing MDI/MDI-X state is not supported when link speed and/or duplex are forced\n");
185 return -EINVAL;
186 }
187 }
188
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700189 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
190 msleep(1);
191
Philippe Reynes5add2f92017-01-21 16:06:03 +0100192 if (cmd->base.autoneg == AUTONEG_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 hw->autoneg = 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800194 if (hw->media_type == e1000_media_type_fiber)
Malli Chilakala012609a2005-06-17 17:43:06 -0700195 hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
Philippe Reynes5add2f92017-01-21 16:06:03 +0100196 ADVERTISED_FIBRE |
197 ADVERTISED_Autoneg;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800198 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100199 hw->autoneg_advertised = advertising |
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000200 ADVERTISED_TP |
201 ADVERTISED_Autoneg;
David Decotigny25db0332011-04-27 18:32:39 +0000202 } else {
Philippe Reynes5add2f92017-01-21 16:06:03 +0100203 u32 speed = cmd->base.speed;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000204 /* calling this overrides forced MDI setting */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100205 if (e1000_set_spd_dplx(adapter, speed, cmd->base.duplex)) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700206 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -EINVAL;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700208 }
David Decotigny25db0332011-04-27 18:32:39 +0000209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000211 /* MDI-X => 2; MDI => 1; Auto => 3 */
Philippe Reynes5add2f92017-01-21 16:06:03 +0100212 if (cmd->base.eth_tp_mdix_ctrl) {
213 if (cmd->base.eth_tp_mdix_ctrl == ETH_TP_MDI_AUTO)
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000214 hw->mdix = AUTO_ALL_MODES;
215 else
Philippe Reynes5add2f92017-01-21 16:06:03 +0100216 hw->mdix = cmd->base.eth_tp_mdix_ctrl;
Jesse Brandeburgc819bbd52012-07-26 02:31:09 +0000217 }
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* reset the link */
220
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700221 if (netif_running(adapter->netdev)) {
222 e1000_down(adapter);
223 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000224 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000226 }
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700227 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229}
230
Nick Nunleyb5481922010-02-03 14:49:28 +0000231static u32 e1000_get_link(struct net_device *netdev)
232{
233 struct e1000_adapter *adapter = netdev_priv(netdev);
234
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000235 /* If the link is not reported up to netdev, interrupts are disabled,
Nick Nunleyb5481922010-02-03 14:49:28 +0000236 * and so the physical link state may have changed since we last
237 * looked. Set get_link_status to make sure that the true link
238 * state is interrogated, rather than pulling a cached and possibly
239 * stale link state from the driver.
240 */
241 if (!netif_carrier_ok(netdev))
242 adapter->hw.get_link_status = 1;
243
244 return e1000_has_link(adapter);
245}
246
Joe Perches64798842008-07-11 15:17:02 -0700247static void e1000_get_pauseparam(struct net_device *netdev,
248 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700250 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 struct e1000_hw *hw = &adapter->hw;
252
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800253 pause->autoneg =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800255
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000256 if (hw->fc == E1000_FC_RX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 pause->rx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000258 } else if (hw->fc == E1000_FC_TX_PAUSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 pause->tx_pause = 1;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000260 } else if (hw->fc == E1000_FC_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 pause->rx_pause = 1;
262 pause->tx_pause = 1;
263 }
264}
265
Joe Perches64798842008-07-11 15:17:02 -0700266static int e1000_set_pauseparam(struct net_device *netdev,
267 struct ethtool_pauseparam *pause)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700269 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700271 int retval = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 adapter->fc_autoneg = pause->autoneg;
274
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700275 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
276 msleep(1);
277
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800278 if (pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700279 hw->fc = E1000_FC_FULL;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800280 else if (pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700281 hw->fc = E1000_FC_RX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800282 else if (!pause->rx_pause && pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700283 hw->fc = E1000_FC_TX_PAUSE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800284 else if (!pause->rx_pause && !pause->tx_pause)
Jeff Kirsher11241b12006-09-27 12:53:28 -0700285 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 hw->original_fc = hw->fc;
288
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800289 if (adapter->fc_autoneg == AUTONEG_ENABLE) {
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700290 if (netif_running(adapter->netdev)) {
291 e1000_down(adapter);
292 e1000_up(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000293 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 e1000_reset(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000295 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800296 } else
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700297 retval = ((hw->media_type == e1000_media_type_fiber) ?
Auke Kok90fb5132006-11-01 08:47:30 -0800298 e1000_setup_link(hw) : e1000_force_mac_fc(hw));
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800299
Jesse Brandeburg1a821ca2006-08-16 13:38:46 -0700300 clear_bit(__E1000_RESETTING, &adapter->flags);
301 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Joe Perches64798842008-07-11 15:17:02 -0700304static u32 e1000_get_msglevel(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700306 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return adapter->msg_enable;
309}
310
Joe Perches64798842008-07-11 15:17:02 -0700311static void e1000_set_msglevel(struct net_device *netdev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700313 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 adapter->msg_enable = data;
316}
317
Joe Perches64798842008-07-11 15:17:02 -0700318static int e1000_get_regs_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320#define E1000_REGS_LEN 32
Joe Perches406874a2008-04-03 10:06:32 -0700321 return E1000_REGS_LEN * sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Joe Perches64798842008-07-11 15:17:02 -0700324static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
325 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700327 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700329 u32 *regs_buff = p;
330 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Joe Perches406874a2008-04-03 10:06:32 -0700332 memset(p, 0, E1000_REGS_LEN * sizeof(u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
335
Joe Perches1dc32912008-07-11 15:17:08 -0700336 regs_buff[0] = er32(CTRL);
337 regs_buff[1] = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Joe Perches1dc32912008-07-11 15:17:08 -0700339 regs_buff[2] = er32(RCTL);
340 regs_buff[3] = er32(RDLEN);
341 regs_buff[4] = er32(RDH);
342 regs_buff[5] = er32(RDT);
343 regs_buff[6] = er32(RDTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Joe Perches1dc32912008-07-11 15:17:08 -0700345 regs_buff[7] = er32(TCTL);
346 regs_buff[8] = er32(TDLEN);
347 regs_buff[9] = er32(TDH);
348 regs_buff[10] = er32(TDT);
349 regs_buff[11] = er32(TIDV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Joe Perches1dc32912008-07-11 15:17:08 -0700351 regs_buff[12] = hw->phy_type; /* PHY type (IGP=1, M88=0) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800352 if (hw->phy_type == e1000_phy_igp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
354 IGP01E1000_PHY_AGC_A);
355 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
356 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700357 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
359 IGP01E1000_PHY_AGC_B);
360 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
361 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700362 regs_buff[14] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
364 IGP01E1000_PHY_AGC_C);
365 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
366 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700367 regs_buff[15] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
369 IGP01E1000_PHY_AGC_D);
370 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
371 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700372 regs_buff[16] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
374 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
375 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
376 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700377 regs_buff[18] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
379 IGP01E1000_PHY_PCS_INIT_REG);
380 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
381 IGP01E1000_PHY_PAGE_SELECT, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700382 regs_buff[19] = (u32)phy_data; /* cable polarity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 regs_buff[20] = 0; /* polarity correction enabled (always) */
384 regs_buff[22] = 0; /* phy receive errors (unavailable) */
385 regs_buff[23] = regs_buff[18]; /* mdix mode */
386 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
387 } else {
Auke Kok8fc897b2006-08-28 14:56:16 -0700388 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700389 regs_buff[13] = (u32)phy_data; /* cable length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 regs_buff[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
391 regs_buff[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
392 regs_buff[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
Auke Kok8fc897b2006-08-28 14:56:16 -0700393 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700394 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 regs_buff[18] = regs_buff[13]; /* cable polarity */
396 regs_buff[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
397 regs_buff[20] = regs_buff[17]; /* polarity correction */
398 /* phy receive errors */
399 regs_buff[22] = adapter->phy_stats.receive_errors;
400 regs_buff[23] = regs_buff[13]; /* mdix mode */
401 }
402 regs_buff[21] = adapter->phy_stats.idle_errors; /* phy idle errors */
403 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
Joe Perches406874a2008-04-03 10:06:32 -0700404 regs_buff[24] = (u32)phy_data; /* phy local receiver status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 regs_buff[25] = regs_buff[24]; /* phy remote receiver status */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800406 if (hw->mac_type >= e1000_82540 &&
Jesse Brandeburg4ccc12a2006-10-24 14:45:53 -0700407 hw->media_type == e1000_media_type_copper) {
Joe Perches1dc32912008-07-11 15:17:08 -0700408 regs_buff[26] = er32(MANC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410}
411
Joe Perches64798842008-07-11 15:17:02 -0700412static int e1000_get_eeprom_len(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700414 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700415 struct e1000_hw *hw = &adapter->hw;
416
417 return hw->eeprom.word_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Joe Perches64798842008-07-11 15:17:02 -0700420static int e1000_get_eeprom(struct net_device *netdev,
421 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700423 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700425 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 int first_word, last_word;
427 int ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700428 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800430 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return -EINVAL;
432
433 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
434
435 first_word = eeprom->offset >> 1;
436 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
437
Joe Perches406874a2008-04-03 10:06:32 -0700438 eeprom_buff = kmalloc(sizeof(u16) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 (last_word - first_word + 1), GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800440 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -ENOMEM;
442
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800443 if (hw->eeprom.type == e1000_eeprom_spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ret_val = e1000_read_eeprom(hw, first_word,
445 last_word - first_word + 1,
446 eeprom_buff);
447 else {
Joe Perchesc7be73b2008-07-11 15:17:28 -0700448 for (i = 0; i < last_word - first_word + 1; i++) {
449 ret_val = e1000_read_eeprom(hw, first_word + i, 1,
450 &eeprom_buff[i]);
451 if (ret_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 /* Device's eeprom is always little-endian, word addressable */
457 for (i = 0; i < last_word - first_word + 1; i++)
458 le16_to_cpus(&eeprom_buff[i]);
459
Joe Perches406874a2008-04-03 10:06:32 -0700460 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000461 eeprom->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 kfree(eeprom_buff);
463
464 return ret_val;
465}
466
Joe Perches64798842008-07-11 15:17:02 -0700467static int e1000_set_eeprom(struct net_device *netdev,
468 struct ethtool_eeprom *eeprom, u8 *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700470 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700472 u16 *eeprom_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 void *ptr;
474 int max_len, first_word, last_word, ret_val = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700475 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800477 if (eeprom->len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return -EOPNOTSUPP;
479
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800480 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EFAULT;
482
483 max_len = hw->eeprom.word_size * 2;
484
485 first_word = eeprom->offset >> 1;
486 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
487 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800488 if (!eeprom_buff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return -ENOMEM;
490
491 ptr = (void *)eeprom_buff;
492
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800493 if (eeprom->offset & 1) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000494 /* need read/modify/write of first changed EEPROM word
495 * only the second byte of the word is being modified
496 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 ret_val = e1000_read_eeprom(hw, first_word, 1,
498 &eeprom_buff[0]);
499 ptr++;
500 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800501 if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000502 /* need read/modify/write of last changed EEPROM word
503 * only the first byte of the word is being modified
504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 ret_val = e1000_read_eeprom(hw, last_word, 1,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000506 &eeprom_buff[last_word - first_word]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
509 /* Device's eeprom is always little-endian, word addressable */
510 for (i = 0; i < last_word - first_word + 1; i++)
511 le16_to_cpus(&eeprom_buff[i]);
512
513 memcpy(ptr, bytes, eeprom->len);
514
515 for (i = 0; i < last_word - first_word + 1; i++)
516 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
517
518 ret_val = e1000_write_eeprom(hw, first_word,
519 last_word - first_word + 1, eeprom_buff);
520
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000521 /* Update the checksum over the first part of the EEPROM if needed */
522 if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 e1000_update_eeprom_checksum(hw);
524
525 kfree(eeprom_buff);
526 return ret_val;
527}
528
Joe Perches64798842008-07-11 15:17:02 -0700529static void e1000_get_drvinfo(struct net_device *netdev,
530 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700532 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Rick Jones612a94d2011-11-14 08:13:25 +0000534 strlcpy(drvinfo->driver, e1000_driver_name,
535 sizeof(drvinfo->driver));
536 strlcpy(drvinfo->version, e1000_driver_version,
537 sizeof(drvinfo->version));
Jeff Kirshera2917e22006-01-12 16:51:23 -0800538
Rick Jones612a94d2011-11-14 08:13:25 +0000539 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
540 sizeof(drvinfo->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Joe Perches64798842008-07-11 15:17:02 -0700543static void e1000_get_ringparam(struct net_device *netdev,
544 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700546 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700547 struct e1000_hw *hw = &adapter->hw;
548 e1000_mac_type mac_type = hw->mac_type;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400549 struct e1000_tx_ring *txdr = adapter->tx_ring;
550 struct e1000_rx_ring *rxdr = adapter->rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
553 E1000_MAX_82544_RXD;
554 ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
555 E1000_MAX_82544_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 ring->rx_pending = rxdr->count;
557 ring->tx_pending = txdr->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Joe Perches64798842008-07-11 15:17:02 -0700560static int e1000_set_ringparam(struct net_device *netdev,
561 struct ethtool_ringparam *ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Malli Chilakala60490fe2005-06-17 17:41:45 -0700563 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700564 struct e1000_hw *hw = &adapter->hw;
565 e1000_mac_type mac_type = hw->mac_type;
Vasily Averin793fab722006-09-27 12:54:14 -0700566 struct e1000_tx_ring *txdr, *tx_old;
567 struct e1000_rx_ring *rxdr, *rx_old;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800568 int i, err;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400569
Jeff Kirsher0989aa42006-03-02 18:17:16 -0800570 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
571 return -EINVAL;
572
Auke Kok2db10a02006-06-27 09:06:28 -0700573 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
574 msleep(1);
575
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400576 if (netif_running(adapter->netdev))
577 e1000_down(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 tx_old = adapter->tx_ring;
580 rx_old = adapter->rx_ring;
581
Vasily Averin793fab722006-09-27 12:54:14 -0700582 err = -ENOMEM;
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000583 txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring),
584 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700585 if (!txdr)
586 goto err_alloc_tx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400587
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000588 rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring),
589 GFP_KERNEL);
Vasily Averin793fab722006-09-27 12:54:14 -0700590 if (!rxdr)
591 goto err_alloc_rx;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400592
Vasily Averin793fab722006-09-27 12:54:14 -0700593 adapter->tx_ring = txdr;
594 adapter->rx_ring = rxdr;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400595
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000596 rxdr->count = max(ring->rx_pending, (u32)E1000_MIN_RXD);
597 rxdr->count = min(rxdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000598 E1000_MAX_RXD : E1000_MAX_82544_RXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700599 rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000600 txdr->count = max(ring->tx_pending, (u32)E1000_MIN_TXD);
601 txdr->count = min(txdr->count, (u32)(mac_type < e1000_82544 ?
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000602 E1000_MAX_TXD : E1000_MAX_82544_TXD));
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700603 txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800605 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400606 txdr[i].count = txdr->count;
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800607 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400608 rxdr[i].count = rxdr->count;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400609
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800610 if (netif_running(adapter->netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 /* Try to get new resources before deleting old */
Joe Perchesc7be73b2008-07-11 15:17:28 -0700612 err = e1000_setup_all_rx_resources(adapter);
613 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto err_setup_rx;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700615 err = e1000_setup_all_tx_resources(adapter);
616 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 goto err_setup_tx;
618
619 /* save the new, restore the old in order to free it,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000620 * then restore the new back again
621 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 adapter->rx_ring = rx_old;
624 adapter->tx_ring = tx_old;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400625 e1000_free_all_rx_resources(adapter);
626 e1000_free_all_tx_resources(adapter);
627 kfree(tx_old);
628 kfree(rx_old);
Vasily Averin793fab722006-09-27 12:54:14 -0700629 adapter->rx_ring = rxdr;
630 adapter->tx_ring = txdr;
Joe Perchesc7be73b2008-07-11 15:17:28 -0700631 err = e1000_up(adapter);
632 if (err)
Auke Kok2db10a02006-06-27 09:06:28 -0700633 goto err_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
Auke Kok2db10a02006-06-27 09:06:28 -0700636 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638err_setup_tx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400639 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640err_setup_rx:
641 adapter->rx_ring = rx_old;
642 adapter->tx_ring = tx_old;
Vasily Averin793fab722006-09-27 12:54:14 -0700643 kfree(rxdr);
644err_alloc_rx:
645 kfree(txdr);
646err_alloc_tx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 e1000_up(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -0700648err_setup:
649 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return err;
651}
652
Joe Perches64798842008-07-11 15:17:02 -0700653static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
654 u32 mask, u32 write)
Joe Perches7e643002007-11-13 20:52:05 -0800655{
Joe Perches1dc32912008-07-11 15:17:08 -0700656 struct e1000_hw *hw = &adapter->hw;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000657 static const u32 test[] = {
658 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
659 };
Joe Perches1dc32912008-07-11 15:17:08 -0700660 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700661 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800662 int i;
663
664 for (i = 0; i < ARRAY_SIZE(test); i++) {
665 writel(write & test[i], address);
666 read = readl(address);
667 if (read != (write & test[i] & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700668 e_err(drv, "pattern test reg %04X failed: "
669 "got 0x%08X expected 0x%08X\n",
670 reg, read, (write & test[i] & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800671 *data = reg;
672 return true;
673 }
674 }
675 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Joe Perches64798842008-07-11 15:17:02 -0700678static bool reg_set_and_check(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;
682 u8 __iomem *address = hw->hw_addr + reg;
Joe Perches406874a2008-04-03 10:06:32 -0700683 u32 read;
Joe Perches7e643002007-11-13 20:52:05 -0800684
685 writel(write & mask, address);
686 read = readl(address);
687 if ((read & mask) != (write & mask)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700688 e_err(drv, "set/check reg %04X test failed: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000689 "got 0x%08X expected 0x%08X\n",
690 reg, (read & mask), (write & mask));
Joe Perches7e643002007-11-13 20:52:05 -0800691 *data = reg;
692 return true;
693 }
694 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Joe Perches7e643002007-11-13 20:52:05 -0800697#define REG_PATTERN_TEST(reg, mask, write) \
698 do { \
699 if (reg_pattern_test(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700700 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800701 ? E1000_##reg : E1000_82542_##reg, \
702 mask, write)) \
703 return 1; \
704 } while (0)
705
706#define REG_SET_AND_CHECK(reg, mask, write) \
707 do { \
708 if (reg_set_and_check(adapter, data, \
Joe Perches1dc32912008-07-11 15:17:08 -0700709 (hw->mac_type >= e1000_82543) \
Joe Perches7e643002007-11-13 20:52:05 -0800710 ? E1000_##reg : E1000_82542_##reg, \
711 mask, write)) \
712 return 1; \
713 } while (0)
714
Joe Perches64798842008-07-11 15:17:02 -0700715static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Joe Perches406874a2008-04-03 10:06:32 -0700717 u32 value, before, after;
718 u32 i, toggle;
Joe Perches1dc32912008-07-11 15:17:08 -0700719 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /* The status register is Read Only, so a write should fail.
722 * Some bits that get toggled are ignored.
723 */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000724
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400725 /* there are several bits on newer hardware that are r/w */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000726 toggle = 0xFFFFF833;
Malli Chilakalab01f6692005-06-17 17:42:29 -0700727
Joe Perches1dc32912008-07-11 15:17:08 -0700728 before = er32(STATUS);
729 value = (er32(STATUS) & toggle);
730 ew32(STATUS, toggle);
731 after = er32(STATUS) & toggle;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800732 if (value != after) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700733 e_err(drv, "failed STATUS register test got: "
Emil Tantilov675ad472010-04-27 14:02:58 +0000734 "0x%08X expected: 0x%08X\n", after, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 *data = 1;
736 return 1;
737 }
Malli Chilakalab01f6692005-06-17 17:42:29 -0700738 /* restore previous status */
Joe Perches1dc32912008-07-11 15:17:08 -0700739 ew32(STATUS, before);
Auke Kok90fb5132006-11-01 08:47:30 -0800740
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000741 REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
742 REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
743 REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
744 REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
Auke Kok90fb5132006-11-01 08:47:30 -0800745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
747 REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
748 REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
749 REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
750 REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
751 REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
752 REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
753 REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
754 REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
755 REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
756
757 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
Auke Kok90fb5132006-11-01 08:47:30 -0800758
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000759 before = 0x06DFB3FE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700760 REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
762
Joe Perches1dc32912008-07-11 15:17:08 -0700763 if (hw->mac_type >= e1000_82543) {
Auke Kokcd94dd02006-06-27 09:08:22 -0700764 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000766 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
768 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000769 value = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -0700770 for (i = 0; i < value; i++) {
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +0000771 REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2),
772 0x8003FFFF, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
776 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
777 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
778 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000781 value = E1000_MC_TBL_SIZE;
Auke Kokcd94dd02006-06-27 09:08:22 -0700782 for (i = 0; i < value; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
784
785 *data = 0;
786 return 0;
787}
788
Joe Perches64798842008-07-11 15:17:02 -0700789static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Joe Perches1dc32912008-07-11 15:17:08 -0700791 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700792 u16 temp;
793 u16 checksum = 0;
794 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 *data = 0;
797 /* Read and add up the contents of the EEPROM */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800798 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
Joe Perches1dc32912008-07-11 15:17:08 -0700799 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *data = 1;
801 break;
802 }
803 checksum += temp;
804 }
805
806 /* If Checksum is not Correct return error else test passed */
Joe Perchese982f172008-07-11 15:17:18 -0700807 if ((checksum != (u16)EEPROM_SUM) && !(*data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 *data = 2;
809
810 return *data;
811}
812
Joe Perches64798842008-07-11 15:17:02 -0700813static irqreturn_t e1000_test_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Joe Perchese982f172008-07-11 15:17:18 -0700815 struct net_device *netdev = (struct net_device *)data;
Malli Chilakala60490fe2005-06-17 17:41:45 -0700816 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -0700817 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Joe Perches1dc32912008-07-11 15:17:08 -0700819 adapter->test_icr |= er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 return IRQ_HANDLED;
822}
823
Joe Perches64798842008-07-11 15:17:02 -0700824static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -0700827 u32 mask, i = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -0700828 bool shared_int = true;
Joe Perches406874a2008-04-03 10:06:32 -0700829 u32 irq = adapter->pdev->irq;
Joe Perches1dc32912008-07-11 15:17:08 -0700830 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 *data = 0;
833
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000834 /* NOTE: we don't test MSI interrupts here, yet
835 * Hook up test interrupt handler just for this test
836 */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800837 if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000838 netdev))
Joe Perchesc3033b02008-03-21 11:06:25 -0700839 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -0800840 else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000841 netdev->name, netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 *data = 1;
843 return -1;
844 }
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700845 e_info(hw, "testing %s interrupt\n", (shared_int ?
846 "shared" : "unshared"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700849 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000850 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400851 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 /* Test each interrupt */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800854 for (; i < 10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /* Interrupt to test */
856 mask = 1 << i;
857
Auke Kok76c224b2006-05-23 13:36:06 -0700858 if (!shared_int) {
859 /* Disable the interrupt to be reported in
860 * the cause register and then force the same
861 * interrupt and see if one gets posted. If
862 * an interrupt was posted to the bus, the
863 * test failed.
864 */
865 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700866 ew32(IMC, mask);
867 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000868 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400869 msleep(10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800870
Auke Kok76c224b2006-05-23 13:36:06 -0700871 if (adapter->test_icr & mask) {
872 *data = 3;
873 break;
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
877 /* Enable the interrupt to be reported in
878 * the cause register and then force the same
879 * interrupt and see if one gets posted. If
880 * an interrupt was not posted to the bus, the
881 * test failed.
882 */
883 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700884 ew32(IMS, mask);
885 ew32(ICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000886 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400887 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800889 if (!(adapter->test_icr & mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 *data = 4;
891 break;
892 }
893
Auke Kok76c224b2006-05-23 13:36:06 -0700894 if (!shared_int) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 /* Disable the other interrupts to be reported in
896 * the cause register and then force the other
897 * interrupts and see if any get posted. If
898 * an interrupt was posted to the bus, the
899 * test failed.
900 */
901 adapter->test_icr = 0;
Joe Perches1dc32912008-07-11 15:17:08 -0700902 ew32(IMC, ~mask & 0x00007FFF);
903 ew32(ICS, ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000904 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400905 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800907 if (adapter->test_icr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 *data = 5;
909 break;
910 }
911 }
912 }
913
914 /* Disable all the interrupts */
Joe Perches1dc32912008-07-11 15:17:08 -0700915 ew32(IMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000916 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -0400917 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /* Unhook test interrupt handler */
920 free_irq(irq, netdev);
921
922 return *data;
923}
924
Joe Perches64798842008-07-11 15:17:02 -0700925static void e1000_free_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400927 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
928 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct pci_dev *pdev = adapter->pdev;
930 int i;
931
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800932 if (txdr->desc && txdr->buffer_info) {
933 for (i = 0; i < txdr->count; i++) {
934 if (txdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000935 dma_unmap_single(&pdev->dev,
936 txdr->buffer_info[i].dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 txdr->buffer_info[i].length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000938 DMA_TO_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800939 if (txdr->buffer_info[i].skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dev_kfree_skb(txdr->buffer_info[i].skb);
941 }
942 }
943
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800944 if (rxdr->desc && rxdr->buffer_info) {
945 for (i = 0; i < rxdr->count; i++) {
946 if (rxdr->buffer_info[i].dma)
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000947 dma_unmap_single(&pdev->dev,
948 rxdr->buffer_info[i].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +0000949 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000950 DMA_FROM_DEVICE);
Florian Westphal13809602014-09-03 13:34:36 +0000951 kfree(rxdr->buffer_info[i].rxbuf.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953 }
954
Jeff Kirsherf5645112006-01-12 16:51:01 -0800955 if (txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000956 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
957 txdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500958 txdr->desc = NULL;
959 }
Jeff Kirsherf5645112006-01-12 16:51:01 -0800960 if (rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +0000961 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
962 rxdr->dma);
John W. Linville6b27adb2005-11-08 15:59:30 -0500963 rxdr->desc = NULL;
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400966 kfree(txdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500967 txdr->buffer_info = NULL;
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400968 kfree(rxdr->buffer_info);
John W. Linville6b27adb2005-11-08 15:59:30 -0500969 rxdr->buffer_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Joe Perches64798842008-07-11 15:17:02 -0700972static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Joe Perches1dc32912008-07-11 15:17:08 -0700974 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400975 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
976 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 struct pci_dev *pdev = adapter->pdev;
Joe Perches406874a2008-04-03 10:06:32 -0700978 u32 rctl;
Yan Burman1c7e5b12007-03-06 08:58:04 -0800979 int i, ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 /* Setup Tx descriptor ring and Tx buffers */
982
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800983 if (!txdr->count)
984 txdr->count = E1000_DEFAULT_TXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Florian Westphal580f3212014-09-03 13:34:31 +0000986 txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_tx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -0700987 GFP_KERNEL);
988 if (!txdr->buffer_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 ret_val = 1;
990 goto err_nomem;
991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700994 txdr->size = ALIGN(txdr->size, 4096);
Joe Perchesede23fa82013-08-26 22:45:23 -0700995 txdr->desc = dma_zalloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
996 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700997 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ret_val = 2;
999 goto err_nomem;
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 txdr->next_to_use = txdr->next_to_clean = 0;
1002
Joe Perchese982f172008-07-11 15:17:18 -07001003 ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1004 ew32(TDBAH, ((u64)txdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001005 ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1006 ew32(TDH, 0);
1007 ew32(TDT, 0);
1008 ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1009 E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1010 E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001012 for (i = 0; i < txdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1014 struct sk_buff *skb;
1015 unsigned int size = 1024;
1016
Joe Perchesc7be73b2008-07-11 15:17:28 -07001017 skb = alloc_skb(size, GFP_KERNEL);
1018 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 ret_val = 3;
1020 goto err_nomem;
1021 }
1022 skb_put(skb, size);
1023 txdr->buffer_info[i].skb = skb;
1024 txdr->buffer_info[i].length = skb->len;
1025 txdr->buffer_info[i].dma =
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001026 dma_map_single(&pdev->dev, skb->data, skb->len,
1027 DMA_TO_DEVICE);
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001028 if (dma_mapping_error(&pdev->dev, txdr->buffer_info[i].dma)) {
1029 ret_val = 4;
1030 goto err_nomem;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1033 tx_desc->lower.data = cpu_to_le32(skb->len);
1034 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1035 E1000_TXD_CMD_IFCS |
1036 E1000_TXD_CMD_RPS);
1037 tx_desc->upper.data = 0;
1038 }
1039
1040 /* Setup Rx descriptor ring and Rx buffers */
1041
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001042 if (!rxdr->count)
1043 rxdr->count = E1000_DEFAULT_RXD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Florian Westphal93f0afe2014-09-03 13:34:26 +00001045 rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_rx_buffer),
Joe Perchesc7be73b2008-07-11 15:17:28 -07001046 GFP_KERNEL);
1047 if (!rxdr->buffer_info) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001048 ret_val = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 goto err_nomem;
1050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
Joe Perchesede23fa82013-08-26 22:45:23 -07001053 rxdr->desc = dma_zalloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1054 GFP_KERNEL);
Joe Perchesc7be73b2008-07-11 15:17:28 -07001055 if (!rxdr->desc) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001056 ret_val = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 goto err_nomem;
1058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 rxdr->next_to_use = rxdr->next_to_clean = 0;
1060
Joe Perches1dc32912008-07-11 15:17:08 -07001061 rctl = er32(RCTL);
1062 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Joe Perchese982f172008-07-11 15:17:18 -07001063 ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1064 ew32(RDBAH, ((u64)rxdr->dma >> 32));
Joe Perches1dc32912008-07-11 15:17:08 -07001065 ew32(RDLEN, rxdr->size);
1066 ew32(RDH, 0);
1067 ew32(RDT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1069 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001070 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1071 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001073 for (i = 0; i < rxdr->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
Florian Westphal13809602014-09-03 13:34:36 +00001075 u8 *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Florian Westphal13809602014-09-03 13:34:36 +00001077 buf = kzalloc(E1000_RXBUFFER_2048 + NET_SKB_PAD + NET_IP_ALIGN,
1078 GFP_KERNEL);
1079 if (!buf) {
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001080 ret_val = 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 goto err_nomem;
1082 }
Florian Westphal13809602014-09-03 13:34:36 +00001083 rxdr->buffer_info[i].rxbuf.data = buf;
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 rxdr->buffer_info[i].dma =
Florian Westphal13809602014-09-03 13:34:36 +00001086 dma_map_single(&pdev->dev,
1087 buf + NET_SKB_PAD + NET_IP_ALIGN,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001088 E1000_RXBUFFER_2048, DMA_FROM_DEVICE);
Christoph Paaschd6b057b52013-03-20 08:59:35 +00001089 if (dma_mapping_error(&pdev->dev, rxdr->buffer_info[i].dma)) {
1090 ret_val = 8;
1091 goto err_nomem;
1092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
1096 return 0;
1097
1098err_nomem:
1099 e1000_free_desc_rings(adapter);
1100 return ret_val;
1101}
1102
Joe Perches64798842008-07-11 15:17:02 -07001103static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Joe Perches1dc32912008-07-11 15:17:08 -07001105 struct e1000_hw *hw = &adapter->hw;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001108 e1000_write_phy_reg(hw, 29, 0x001F);
1109 e1000_write_phy_reg(hw, 30, 0x8FFC);
1110 e1000_write_phy_reg(hw, 29, 0x001A);
1111 e1000_write_phy_reg(hw, 30, 0x8FF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Joe Perches64798842008-07-11 15:17:02 -07001114static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Joe Perches1dc32912008-07-11 15:17:08 -07001116 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001117 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 /* Because we reset the PHY above, we need to re-force TX_CLK in the
1120 * Extended PHY Specific Control Register to 25MHz clock. This
1121 * value defaults back to a 2.5MHz clock when the PHY is reset.
1122 */
Joe Perches1dc32912008-07-11 15:17:08 -07001123 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 phy_reg |= M88E1000_EPSCR_TX_CLK_25;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001125 e1000_write_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /* In addition, because of the s/w reset above, we need to enable
1128 * CRS on TX. This must be set for both full and half duplex
1129 * operation.
1130 */
Joe Perches1dc32912008-07-11 15:17:08 -07001131 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001133 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Joe Perches64798842008-07-11 15:17:02 -07001136static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Joe Perches1dc32912008-07-11 15:17:08 -07001138 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001139 u32 ctrl_reg;
1140 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 /* Setup the Device Control Register for PHY loopback test. */
1143
Joe Perches1dc32912008-07-11 15:17:08 -07001144 ctrl_reg = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 ctrl_reg |= (E1000_CTRL_ILOS | /* Invert Loss-Of-Signal */
1146 E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1147 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1148 E1000_CTRL_SPD_1000 | /* Force Speed to 1000 */
1149 E1000_CTRL_FD); /* Force Duplex to FULL */
1150
Joe Perches1dc32912008-07-11 15:17:08 -07001151 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 /* Read the PHY Specific Control Register (0x10) */
Joe Perches1dc32912008-07-11 15:17:08 -07001154 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 /* Clear Auto-Crossover bits in PHY Specific Control Register
1157 * (bits 6:5).
1158 */
1159 phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
Joe Perches1dc32912008-07-11 15:17:08 -07001160 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 /* Perform software reset on the PHY */
Joe Perches1dc32912008-07-11 15:17:08 -07001163 e1000_phy_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /* Have to setup TX_CLK and TX_CRS after software reset */
1166 e1000_phy_reset_clk_and_crs(adapter);
1167
Joe Perches1dc32912008-07-11 15:17:08 -07001168 e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* Wait for reset to complete. */
1171 udelay(500);
1172
1173 /* Have to setup TX_CLK and TX_CRS after software reset */
1174 e1000_phy_reset_clk_and_crs(adapter);
1175
1176 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1177 e1000_phy_disable_receiver(adapter);
1178
1179 /* Set the loopback bit in the PHY control register. */
Joe Perches1dc32912008-07-11 15:17:08 -07001180 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001182 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 /* Setup TX_CLK and TX_CRS one more time. */
1185 e1000_phy_reset_clk_and_crs(adapter);
1186
1187 /* Check Phy Configuration */
Joe Perches1dc32912008-07-11 15:17:08 -07001188 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001189 if (phy_reg != 0x4100)
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001190 return 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Joe Perches1dc32912008-07-11 15:17:08 -07001192 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001193 if (phy_reg != 0x0070)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return 10;
1195
Joe Perches1dc32912008-07-11 15:17:08 -07001196 e1000_read_phy_reg(hw, 29, &phy_reg);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001197 if (phy_reg != 0x001A)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return 11;
1199
1200 return 0;
1201}
1202
Joe Perches64798842008-07-11 15:17:02 -07001203static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Joe Perches1dc32912008-07-11 15:17:08 -07001205 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001206 u32 ctrl_reg = 0;
1207 u32 stat_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Joe Perches1dc32912008-07-11 15:17:08 -07001209 hw->autoneg = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Joe Perches1dc32912008-07-11 15:17:08 -07001211 if (hw->phy_type == e1000_phy_m88) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /* Auto-MDI/MDIX Off */
Joe Perches1dc32912008-07-11 15:17:08 -07001213 e1000_write_phy_reg(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 M88E1000_PHY_SPEC_CTRL, 0x0808);
1215 /* reset to update Auto-MDI/MDIX */
Joe Perches1dc32912008-07-11 15:17:08 -07001216 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* autoneg off */
Joe Perches1dc32912008-07-11 15:17:08 -07001218 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Joe Perches1dc32912008-07-11 15:17:08 -07001221 ctrl_reg = er32(CTRL);
Auke Kokcd94dd02006-06-27 09:08:22 -07001222
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001223 /* force 1000, set loopback */
1224 e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
Auke Kokcd94dd02006-06-27 09:08:22 -07001225
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001226 /* Now set up the MAC to the same speed/duplex as the PHY. */
1227 ctrl_reg = er32(CTRL);
1228 ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1229 ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1230 E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1231 E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001232 E1000_CTRL_FD); /* Force Duplex to FULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Joe Perches1dc32912008-07-11 15:17:08 -07001234 if (hw->media_type == e1000_media_type_copper &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001235 hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
Auke Kok8fc897b2006-08-28 14:56:16 -07001237 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /* Set the ILOS bit on the fiber Nic is half
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001239 * duplex link is detected.
1240 */
Joe Perches1dc32912008-07-11 15:17:08 -07001241 stat_reg = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001242 if ((stat_reg & E1000_STATUS_FD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1244 }
1245
Joe Perches1dc32912008-07-11 15:17:08 -07001246 ew32(CTRL, ctrl_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /* Disable the receiver on the PHY so when a cable is plugged in, the
1249 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1250 */
Joe Perches1dc32912008-07-11 15:17:08 -07001251 if (hw->phy_type == e1000_phy_m88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 e1000_phy_disable_receiver(adapter);
1253
1254 udelay(500);
1255
1256 return 0;
1257}
1258
Joe Perches64798842008-07-11 15:17:02 -07001259static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Joe Perches1dc32912008-07-11 15:17:08 -07001261 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001262 u16 phy_reg = 0;
1263 u16 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Joe Perches1dc32912008-07-11 15:17:08 -07001265 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 case e1000_82543:
Joe Perches1dc32912008-07-11 15:17:08 -07001267 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /* Attempt to setup Loopback mode on Non-integrated PHY.
1269 * Some PHY registers get corrupted at random, so
1270 * attempt this 10 times.
1271 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001272 while (e1000_nonintegrated_phy_loopback(adapter) &&
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001273 count++ < 10);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001274 if (count < 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return 0;
1276 }
1277 break;
1278
1279 case e1000_82544:
1280 case e1000_82540:
1281 case e1000_82545:
1282 case e1000_82545_rev_3:
1283 case e1000_82546:
1284 case e1000_82546_rev_3:
1285 case e1000_82541:
1286 case e1000_82541_rev_2:
1287 case e1000_82547:
1288 case e1000_82547_rev_2:
1289 return e1000_integrated_phy_loopback(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 default:
1291 /* Default PHY loopback work is to read the MII
1292 * control register and assert bit 14 (loopback mode).
1293 */
Joe Perches1dc32912008-07-11 15:17:08 -07001294 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 phy_reg |= MII_CR_LOOPBACK;
Joe Perches1dc32912008-07-11 15:17:08 -07001296 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
1300 return 8;
1301}
1302
Joe Perches64798842008-07-11 15:17:02 -07001303static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Jeff Kirsher49273162006-01-12 16:50:44 -08001305 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001306 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Jeff Kirsher49273162006-01-12 16:50:44 -08001308 if (hw->media_type == e1000_media_type_fiber ||
1309 hw->media_type == e1000_media_type_internal_serdes) {
1310 switch (hw->mac_type) {
1311 case e1000_82545:
1312 case e1000_82546:
1313 case e1000_82545_rev_3:
1314 case e1000_82546_rev_3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return e1000_set_phy_loopback(adapter);
Jeff Kirsher49273162006-01-12 16:50:44 -08001316 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001317 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 rctl |= E1000_RCTL_LBM_TCVR;
Joe Perches1dc32912008-07-11 15:17:08 -07001319 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return 0;
1321 }
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001322 } else if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return e1000_set_phy_loopback(adapter);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 return 7;
1327}
1328
Joe Perches64798842008-07-11 15:17:02 -07001329static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Jeff Kirsher49273162006-01-12 16:50:44 -08001331 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001332 u32 rctl;
1333 u16 phy_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Joe Perches1dc32912008-07-11 15:17:08 -07001335 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Joe Perches1dc32912008-07-11 15:17:08 -07001337 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Jeff Kirsher49273162006-01-12 16:50:44 -08001339 switch (hw->mac_type) {
Jeff Kirsher49273162006-01-12 16:50:44 -08001340 case e1000_82545:
1341 case e1000_82546:
1342 case e1000_82545_rev_3:
1343 case e1000_82546_rev_3:
1344 default:
Joe Perchesc3033b02008-03-21 11:06:25 -07001345 hw->autoneg = true;
Jeff Kirsher49273162006-01-12 16:50:44 -08001346 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1347 if (phy_reg & MII_CR_LOOPBACK) {
1348 phy_reg &= ~MII_CR_LOOPBACK;
1349 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1350 e1000_phy_reset(hw);
1351 }
1352 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354}
1355
Joe Perches64798842008-07-11 15:17:02 -07001356static void e1000_create_lbtest_frame(struct sk_buff *skb,
1357 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 memset(skb->data, 0xFF, frame_size);
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001360 frame_size &= ~1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1362 memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1363 memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1364}
1365
Florian Westphal13809602014-09-03 13:34:36 +00001366static int e1000_check_lbtest_frame(const unsigned char *data,
Joe Perches64798842008-07-11 15:17:02 -07001367 unsigned int frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Jeff Kirsherce7393b2006-01-12 16:51:12 -08001369 frame_size &= ~1;
Florian Westphal13809602014-09-03 13:34:36 +00001370 if (*(data + 3) == 0xFF) {
1371 if ((*(data + frame_size / 2 + 10) == 0xBE) &&
1372 (*(data + frame_size / 2 + 12) == 0xAF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return 0;
1374 }
1375 }
1376 return 13;
1377}
1378
Joe Perches64798842008-07-11 15:17:02 -07001379static int e1000_run_loopback_test(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Joe Perches1dc32912008-07-11 15:17:08 -07001381 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001382 struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1383 struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 struct pci_dev *pdev = adapter->pdev;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001385 int i, j, k, l, lc, good_cnt, ret_val = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001386 unsigned long time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Joe Perches1dc32912008-07-11 15:17:08 -07001388 ew32(RDT, rxdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001390 /* Calculate the loop count based on the largest descriptor ring
Malli Chilakalae4eff722005-04-28 19:38:30 -07001391 * The idea is to wrap the largest ring a number of times using 64
1392 * send/receive pairs during each loop
1393 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001395 if (rxdr->count <= txdr->count)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001396 lc = ((txdr->count / 64) * 2) + 1;
1397 else
1398 lc = ((rxdr->count / 64) * 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Malli Chilakalae4eff722005-04-28 19:38:30 -07001400 k = l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001401 for (j = 0; j <= lc; j++) { /* loop count loop */
1402 for (i = 0; i < 64; i++) { /* send the packets */
1403 e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001404 1024);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001405 dma_sync_single_for_device(&pdev->dev,
1406 txdr->buffer_info[k].dma,
1407 txdr->buffer_info[k].length,
1408 DMA_TO_DEVICE);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001409 if (unlikely(++k == txdr->count))
1410 k = 0;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001411 }
Joe Perches1dc32912008-07-11 15:17:08 -07001412 ew32(TDT, k);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001413 E1000_WRITE_FLUSH();
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001414 msleep(200);
Malli Chilakalae4eff722005-04-28 19:38:30 -07001415 time = jiffies; /* set the start time for the receive */
1416 good_cnt = 0;
1417 do { /* receive the sent packets */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001418 dma_sync_single_for_cpu(&pdev->dev,
1419 rxdr->buffer_info[l].dma,
Florian Westphal93f0afe2014-09-03 13:34:26 +00001420 E1000_RXBUFFER_2048,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001421 DMA_FROM_DEVICE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001422
Malli Chilakalae4eff722005-04-28 19:38:30 -07001423 ret_val = e1000_check_lbtest_frame(
Florian Westphal13809602014-09-03 13:34:36 +00001424 rxdr->buffer_info[l].rxbuf.data +
1425 NET_SKB_PAD + NET_IP_ALIGN,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001426 1024);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001427 if (!ret_val)
Malli Chilakalae4eff722005-04-28 19:38:30 -07001428 good_cnt++;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001429 if (unlikely(++l == rxdr->count))
1430 l = 0;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001431 /* time + 20 msecs (200 msecs on 2.4) is more than
1432 * enough time to complete the receives, if it's
Malli Chilakalae4eff722005-04-28 19:38:30 -07001433 * exceeded, break and error off
1434 */
Manuel Schölling1aa65f42014-05-23 18:04:17 +00001435 } while (good_cnt < 64 && time_after(time + 20, jiffies));
1436
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001437 if (good_cnt != 64) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001438 ret_val = 13; /* ret_val is the same as mis-compare */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001439 break;
Malli Chilakalae4eff722005-04-28 19:38:30 -07001440 }
Asaf Vertzd5c7d7f2015-01-08 06:01:00 +00001441 if (time_after_eq(jiffies, time + 2)) {
Malli Chilakalae4eff722005-04-28 19:38:30 -07001442 ret_val = 14; /* error code for time out error */
1443 break;
1444 }
1445 } /* end loop count loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return ret_val;
1447}
1448
Joe Perches64798842008-07-11 15:17:02 -07001449static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Joe Perchesc7be73b2008-07-11 15:17:28 -07001451 *data = e1000_setup_desc_rings(adapter);
1452 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001453 goto out;
Joe Perchesc7be73b2008-07-11 15:17:28 -07001454 *data = e1000_setup_loopback_test(adapter);
1455 if (*data)
Jeff Kirsher57128192006-01-12 16:50:28 -08001456 goto err_loopback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 *data = e1000_run_loopback_test(adapter);
1458 e1000_loopback_cleanup(adapter);
Jeff Kirsher57128192006-01-12 16:50:28 -08001459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460err_loopback:
Jeff Kirsher57128192006-01-12 16:50:28 -08001461 e1000_free_desc_rings(adapter);
1462out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return *data;
1464}
1465
Joe Perches64798842008-07-11 15:17:02 -07001466static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Joe Perches1dc32912008-07-11 15:17:08 -07001468 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 *data = 0;
Joe Perches1dc32912008-07-11 15:17:08 -07001470 if (hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 int i = 0;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001472
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001473 hw->serdes_has_link = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Malli Chilakala26483452005-04-28 19:44:46 -07001475 /* On some blade server designs, link establishment
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001476 * could take as long as 2-3 minutes
1477 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 do {
Joe Perches1dc32912008-07-11 15:17:08 -07001479 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00001480 if (hw->serdes_has_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return *data;
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001482 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 } while (i++ < 3750);
1484
Malli Chilakala26483452005-04-28 19:44:46 -07001485 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07001487 e1000_check_for_link(hw);
1488 if (hw->autoneg) /* if auto_neg is set wait for it */
Jeff Garzikf8ec4732006-09-19 15:27:07 -04001489 msleep(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001491 if (!(er32(STATUS) & E1000_STATUS_LU))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 *data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494 return *data;
1495}
1496
Joe Perches64798842008-07-11 15:17:02 -07001497static int e1000_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001499 switch (sset) {
1500 case ETH_SS_TEST:
1501 return E1000_TEST_LEN;
1502 case ETH_SS_STATS:
1503 return E1000_STATS_LEN;
1504 default:
1505 return -EOPNOTSUPP;
1506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Joe Perches64798842008-07-11 15:17:02 -07001509static void e1000_diag_test(struct net_device *netdev,
1510 struct ethtool_test *eth_test, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001512 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001513 struct e1000_hw *hw = &adapter->hw;
Joe Perchesc3033b02008-03-21 11:06:25 -07001514 bool if_running = netif_running(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Auke Kok1314bbf2006-09-27 12:54:02 -07001516 set_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001517 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* Offline tests */
1519
1520 /* save speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001521 u16 autoneg_advertised = hw->autoneg_advertised;
1522 u8 forced_speed_duplex = hw->forced_speed_duplex;
1523 u8 autoneg = hw->autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001525 e_info(hw, "offline testing starting\n");
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 /* Link test performed before hardware reset so autoneg doesn't
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001528 * interfere with test result
1529 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001530 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 eth_test->flags |= ETH_TEST_FL_FAILED;
1532
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001533 if (if_running)
Auke Kok2db10a02006-06-27 09:06:28 -07001534 /* indicate we're in test mode */
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001535 e1000_close(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 else
1537 e1000_reset(adapter);
1538
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001539 if (e1000_reg_test(adapter, &data[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 eth_test->flags |= ETH_TEST_FL_FAILED;
1541
1542 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001543 if (e1000_eeprom_test(adapter, &data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 eth_test->flags |= ETH_TEST_FL_FAILED;
1545
1546 e1000_reset(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001547 if (e1000_intr_test(adapter, &data[2]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 eth_test->flags |= ETH_TEST_FL_FAILED;
1549
1550 e1000_reset(adapter);
Jesse Brandeburgd6582662006-08-16 13:31:33 -07001551 /* make sure the phy is powered up */
1552 e1000_power_up_phy(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001553 if (e1000_loopback_test(adapter, &data[3]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 eth_test->flags |= ETH_TEST_FL_FAILED;
1555
1556 /* restore speed, duplex, autoneg settings */
Joe Perches1dc32912008-07-11 15:17:08 -07001557 hw->autoneg_advertised = autoneg_advertised;
1558 hw->forced_speed_duplex = forced_speed_duplex;
1559 hw->autoneg = autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 e1000_reset(adapter);
Auke Kok1314bbf2006-09-27 12:54:02 -07001562 clear_bit(__E1000_TESTING, &adapter->flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001563 if (if_running)
Stefan Assmann1f2f83f2016-02-03 09:20:51 +01001564 e1000_open(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 } else {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001566 e_info(hw, "online testing starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 /* Online tests */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001568 if (e1000_link_test(adapter, &data[4]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 eth_test->flags |= ETH_TEST_FL_FAILED;
1570
Auke Kok90fb5132006-11-01 08:47:30 -08001571 /* Online tests aren't run; pass by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 data[0] = 0;
1573 data[1] = 0;
1574 data[2] = 0;
1575 data[3] = 0;
Auke Kok2db10a02006-06-27 09:06:28 -07001576
Auke Kok1314bbf2006-09-27 12:54:02 -07001577 clear_bit(__E1000_TESTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
Mallikarjuna R Chilakala352c9f82005-10-04 07:07:24 -04001579 msleep_interruptible(4 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Joe Perches64798842008-07-11 15:17:02 -07001582static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1583 struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001586 int retval = 1; /* fail by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001588 switch (hw->device_id) {
Auke Kokdc1f71f2006-10-24 14:45:55 -07001589 case E1000_DEV_ID_82542:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 case E1000_DEV_ID_82543GC_FIBER:
1591 case E1000_DEV_ID_82543GC_COPPER:
1592 case E1000_DEV_ID_82544EI_FIBER:
1593 case E1000_DEV_ID_82546EB_QUAD_COPPER:
1594 case E1000_DEV_ID_82545EM_FIBER:
1595 case E1000_DEV_ID_82545EM_COPPER:
Jeff Kirsher84916822006-03-02 18:18:48 -08001596 case E1000_DEV_ID_82546GB_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001597 case E1000_DEV_ID_82546GB_PCIE:
1598 /* these don't support WoL at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 wol->supported = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001600 break;
1601 case E1000_DEV_ID_82546EB_FIBER:
1602 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001603 /* Wake events not supported on port B */
Joe Perches1dc32912008-07-11 15:17:08 -07001604 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001605 wol->supported = 0;
1606 break;
1607 }
1608 /* return success for non excluded adapter ports */
1609 retval = 0;
1610 break;
1611 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1612 /* quad port adapters only support WoL on port A */
1613 if (!adapter->quad_port_a) {
1614 wol->supported = 0;
1615 break;
1616 }
1617 /* return success for non excluded adapter ports */
1618 retval = 0;
1619 break;
1620 default:
1621 /* dual port cards only support WoL on port A from now on
1622 * unless it was enabled in the eeprom for port B
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001623 * so exclude FUNC_1 ports from having WoL enabled
1624 */
Joe Perches1dc32912008-07-11 15:17:08 -07001625 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001626 !adapter->eeprom_wol) {
1627 wol->supported = 0;
1628 break;
1629 }
1630
1631 retval = 0;
1632 }
1633
1634 return retval;
1635}
1636
Joe Perches64798842008-07-11 15:17:02 -07001637static void e1000_get_wol(struct net_device *netdev,
1638 struct ethtool_wolinfo *wol)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001639{
1640 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001641 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001642
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001643 wol->supported = WAKE_UCAST | WAKE_MCAST | WAKE_BCAST | WAKE_MAGIC;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001644 wol->wolopts = 0;
1645
1646 /* this function will set ->supported = 0 and return 1 if wol is not
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001647 * supported by this hardware
1648 */
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001649 if (e1000_wol_exclusion(adapter, wol) ||
1650 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 return;
1652
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001653 /* apply any specific unsupported masks here */
Joe Perches1dc32912008-07-11 15:17:08 -07001654 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001655 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Masanari Iidad7558142012-08-22 18:40:21 +09001656 /* KSP3 does not support UCAST wake-ups */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001657 wol->supported &= ~WAKE_UCAST;
Jeff Kirsher84916822006-03-02 18:18:48 -08001658
1659 if (adapter->wol & E1000_WUFC_EX)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001660 e_err(drv, "Interface does not support directed "
1661 "(unicast) frame wake-up packets\n");
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001662 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001666
1667 if (adapter->wol & E1000_WUFC_EX)
1668 wol->wolopts |= WAKE_UCAST;
1669 if (adapter->wol & E1000_WUFC_MC)
1670 wol->wolopts |= WAKE_MCAST;
1671 if (adapter->wol & E1000_WUFC_BC)
1672 wol->wolopts |= WAKE_BCAST;
1673 if (adapter->wol & E1000_WUFC_MAG)
1674 wol->wolopts |= WAKE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
Joe Perches64798842008-07-11 15:17:02 -07001677static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001679 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 struct e1000_hw *hw = &adapter->hw;
1681
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001682 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1683 return -EOPNOTSUPP;
1684
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001685 if (e1000_wol_exclusion(adapter, wol) ||
1686 !device_can_wakeup(&adapter->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 return wol->wolopts ? -EOPNOTSUPP : 0;
1688
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001689 switch (hw->device_id) {
Jeff Kirsher84916822006-03-02 18:18:48 -08001690 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jeff Kirsher84916822006-03-02 18:18:48 -08001691 if (wol->wolopts & WAKE_UCAST) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001692 e_err(drv, "Interface does not support directed "
1693 "(unicast) frame wake-up packets\n");
Jeff Kirsher84916822006-03-02 18:18:48 -08001694 return -EOPNOTSUPP;
1695 }
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001696 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 default:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001701 /* these settings will always override what we currently have */
1702 adapter->wol = 0;
1703
1704 if (wol->wolopts & WAKE_UCAST)
1705 adapter->wol |= E1000_WUFC_EX;
1706 if (wol->wolopts & WAKE_MCAST)
1707 adapter->wol |= E1000_WUFC_MC;
1708 if (wol->wolopts & WAKE_BCAST)
1709 adapter->wol |= E1000_WUFC_BC;
1710 if (wol->wolopts & WAKE_MAGIC)
1711 adapter->wol |= E1000_WUFC_MAG;
1712
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001713 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return 0;
1716}
1717
Jeff Kirsher64359092011-05-03 05:26:13 +00001718static int e1000_set_phys_id(struct net_device *netdev,
1719 enum ethtool_phys_id_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001721 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001722 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Jeff Kirsher64359092011-05-03 05:26:13 +00001724 switch (state) {
1725 case ETHTOOL_ID_ACTIVE:
1726 e1000_setup_led(hw);
1727 return 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Jeff Kirsher64359092011-05-03 05:26:13 +00001729 case ETHTOOL_ID_ON:
1730 e1000_led_on(hw);
1731 break;
1732
1733 case ETHTOOL_ID_OFF:
1734 e1000_led_off(hw);
1735 break;
1736
1737 case ETHTOOL_ID_INACTIVE:
1738 e1000_cleanup_led(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 return 0;
1742}
1743
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001744static int e1000_get_coalesce(struct net_device *netdev,
1745 struct ethtool_coalesce *ec)
1746{
1747 struct e1000_adapter *adapter = netdev_priv(netdev);
1748
1749 if (adapter->hw.mac_type < e1000_82545)
1750 return -EOPNOTSUPP;
1751
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001752 if (adapter->itr_setting <= 4)
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001753 ec->rx_coalesce_usecs = adapter->itr_setting;
1754 else
1755 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1756
1757 return 0;
1758}
1759
1760static int e1000_set_coalesce(struct net_device *netdev,
1761 struct ethtool_coalesce *ec)
1762{
1763 struct e1000_adapter *adapter = netdev_priv(netdev);
1764 struct e1000_hw *hw = &adapter->hw;
1765
1766 if (hw->mac_type < e1000_82545)
1767 return -EOPNOTSUPP;
1768
1769 if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001770 ((ec->rx_coalesce_usecs > 4) &&
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001771 (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1772 (ec->rx_coalesce_usecs == 2))
1773 return -EINVAL;
1774
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00001775 if (ec->rx_coalesce_usecs == 4) {
1776 adapter->itr = adapter->itr_setting = 4;
1777 } else if (ec->rx_coalesce_usecs <= 3) {
Jesse Brandeburg94c9e5a2009-07-06 10:44:20 +00001778 adapter->itr = 20000;
1779 adapter->itr_setting = ec->rx_coalesce_usecs;
1780 } else {
1781 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1782 adapter->itr_setting = adapter->itr & ~3;
1783 }
1784
1785 if (adapter->itr_setting != 0)
1786 ew32(ITR, 1000000000 / (adapter->itr * 256));
1787 else
1788 ew32(ITR, 0);
1789
1790 return 0;
1791}
1792
Joe Perches64798842008-07-11 15:17:02 -07001793static int e1000_nway_reset(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001795 struct e1000_adapter *adapter = netdev_priv(netdev);
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001796
Auke Kok2db10a02006-06-27 09:06:28 -07001797 if (netif_running(netdev))
1798 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
1800}
1801
Joe Perches64798842008-07-11 15:17:02 -07001802static void e1000_get_ethtool_stats(struct net_device *netdev,
1803 struct ethtool_stats *stats, u64 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001805 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int i;
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001807 const struct e1000_stats *stat = e1000_gstrings_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 e1000_update_stats(adapter);
Colin Ian King59835872017-09-22 18:13:48 +01001810 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++, stat++) {
1811 char *p;
1812
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001813 switch (stat->type) {
Ajit Khaparde8328c382009-10-13 01:45:48 +00001814 case NETDEV_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001815 p = (char *)netdev + stat->stat_offset;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001816 break;
1817 case E1000_STATS:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001818 p = (char *)adapter + stat->stat_offset;
1819 break;
1820 default:
Gal Pressmane65c3e12018-01-07 12:08:38 +02001821 netdev_WARN_ONCE(netdev, "Invalid E1000 stat type: %u index %d\n",
1822 stat->type, i);
Colin Ian King59835872017-09-22 18:13:48 +01001823 continue;
Ajit Khaparde8328c382009-10-13 01:45:48 +00001824 }
1825
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001826 if (stat->sizeof_stat == sizeof(u64))
1827 data[i] = *(u64 *)p;
1828 else
1829 data[i] = *(u32 *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001831/* BUG_ON(i != E1000_STATS_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Joe Perches64798842008-07-11 15:17:02 -07001834static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1835 u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Joe Perches406874a2008-04-03 10:06:32 -07001837 u8 *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 int i;
1839
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001840 switch (stringset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 case ETH_SS_TEST:
Krzysztof Majzerowicz-Jaszcz887a79f2014-08-27 07:10:58 +00001842 memcpy(data, e1000_gstrings_test, sizeof(e1000_gstrings_test));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 break;
1844 case ETH_SS_STATS:
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001845 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1846 memcpy(p, e1000_gstrings_stats[i].stat_string,
1847 ETH_GSTRING_LEN);
1848 p += ETH_GSTRING_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001850 /* BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 break;
1852 }
1853}
1854
Jeff Garzik7282d492006-09-13 14:30:00 -04001855static const struct ethtool_ops e1000_ethtool_ops = {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001856 .get_drvinfo = e1000_get_drvinfo,
1857 .get_regs_len = e1000_get_regs_len,
1858 .get_regs = e1000_get_regs,
1859 .get_wol = e1000_get_wol,
1860 .set_wol = e1000_set_wol,
1861 .get_msglevel = e1000_get_msglevel,
1862 .set_msglevel = e1000_set_msglevel,
1863 .nway_reset = e1000_nway_reset,
1864 .get_link = e1000_get_link,
1865 .get_eeprom_len = e1000_get_eeprom_len,
1866 .get_eeprom = e1000_get_eeprom,
1867 .set_eeprom = e1000_set_eeprom,
1868 .get_ringparam = e1000_get_ringparam,
1869 .set_ringparam = e1000_set_ringparam,
1870 .get_pauseparam = e1000_get_pauseparam,
1871 .set_pauseparam = e1000_set_pauseparam,
1872 .self_test = e1000_diag_test,
1873 .get_strings = e1000_get_strings,
1874 .set_phys_id = e1000_set_phys_id,
1875 .get_ethtool_stats = e1000_get_ethtool_stats,
1876 .get_sset_count = e1000_get_sset_count,
1877 .get_coalesce = e1000_get_coalesce,
1878 .set_coalesce = e1000_set_coalesce,
Richard Cochrane10df2c2012-07-22 07:15:40 +00001879 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes5add2f92017-01-21 16:06:03 +01001880 .get_link_ksettings = e1000_get_link_ksettings,
1881 .set_link_ksettings = e1000_set_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882};
1883
1884void e1000_set_ethtool_ops(struct net_device *netdev)
1885{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001886 netdev->ethtool_ops = &e1000_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}