]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/net/e1000/e1000_ethtool.c
netfilter: xtables: combine built-in extension structs
[net-next-2.6.git] / drivers / net / e1000 / e1000_ethtool.c
1 /*******************************************************************************
2
3   Intel PRO/1000 Linux driver
4   Copyright(c) 1999 - 2006 Intel Corporation.
5
6   This program is free software; you can redistribute it and/or modify it
7   under the terms and conditions of the GNU General Public License,
8   version 2, as published by the Free Software Foundation.
9
10   This program is distributed in the hope it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13   more details.
14
15   You should have received a copy of the GNU General Public License along with
16   this program; if not, write to the Free Software Foundation, Inc.,
17   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19   The full GNU General Public License is included in this distribution in
20   the file called "COPYING".
21
22   Contact Information:
23   Linux NICS <linux.nics@intel.com>
24   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27 *******************************************************************************/
28
29 /* ethtool support for e1000 */
30
31 #include "e1000.h"
32 #include <asm/uaccess.h>
33
34 enum {NETDEV_STATS, E1000_STATS};
35
36 struct e1000_stats {
37         char stat_string[ETH_GSTRING_LEN];
38         int type;
39         int sizeof_stat;
40         int stat_offset;
41 };
42
43 #define E1000_STAT(m)           E1000_STATS, \
44                                 sizeof(((struct e1000_adapter *)0)->m), \
45                                 offsetof(struct e1000_adapter, m)
46 #define E1000_NETDEV_STAT(m)    NETDEV_STATS, \
47                                 sizeof(((struct net_device *)0)->m), \
48                                 offsetof(struct net_device, m)
49
50 static const struct e1000_stats e1000_gstrings_stats[] = {
51         { "rx_packets", E1000_STAT(stats.gprc) },
52         { "tx_packets", E1000_STAT(stats.gptc) },
53         { "rx_bytes", E1000_STAT(stats.gorcl) },
54         { "tx_bytes", E1000_STAT(stats.gotcl) },
55         { "rx_broadcast", E1000_STAT(stats.bprc) },
56         { "tx_broadcast", E1000_STAT(stats.bptc) },
57         { "rx_multicast", E1000_STAT(stats.mprc) },
58         { "tx_multicast", E1000_STAT(stats.mptc) },
59         { "rx_errors", E1000_STAT(stats.rxerrc) },
60         { "tx_errors", E1000_STAT(stats.txerrc) },
61         { "tx_dropped", E1000_NETDEV_STAT(stats.tx_dropped) },
62         { "multicast", E1000_STAT(stats.mprc) },
63         { "collisions", E1000_STAT(stats.colc) },
64         { "rx_length_errors", E1000_STAT(stats.rlerrc) },
65         { "rx_over_errors", E1000_NETDEV_STAT(stats.rx_over_errors) },
66         { "rx_crc_errors", E1000_STAT(stats.crcerrs) },
67         { "rx_frame_errors", E1000_NETDEV_STAT(stats.rx_frame_errors) },
68         { "rx_no_buffer_count", E1000_STAT(stats.rnbc) },
69         { "rx_missed_errors", E1000_STAT(stats.mpc) },
70         { "tx_aborted_errors", E1000_STAT(stats.ecol) },
71         { "tx_carrier_errors", E1000_STAT(stats.tncrs) },
72         { "tx_fifo_errors", E1000_NETDEV_STAT(stats.tx_fifo_errors) },
73         { "tx_heartbeat_errors", E1000_NETDEV_STAT(stats.tx_heartbeat_errors) },
74         { "tx_window_errors", E1000_STAT(stats.latecol) },
75         { "tx_abort_late_coll", E1000_STAT(stats.latecol) },
76         { "tx_deferred_ok", E1000_STAT(stats.dc) },
77         { "tx_single_coll_ok", E1000_STAT(stats.scc) },
78         { "tx_multi_coll_ok", E1000_STAT(stats.mcc) },
79         { "tx_timeout_count", E1000_STAT(tx_timeout_count) },
80         { "tx_restart_queue", E1000_STAT(restart_queue) },
81         { "rx_long_length_errors", E1000_STAT(stats.roc) },
82         { "rx_short_length_errors", E1000_STAT(stats.ruc) },
83         { "rx_align_errors", E1000_STAT(stats.algnerrc) },
84         { "tx_tcp_seg_good", E1000_STAT(stats.tsctc) },
85         { "tx_tcp_seg_failed", E1000_STAT(stats.tsctfc) },
86         { "rx_flow_control_xon", E1000_STAT(stats.xonrxc) },
87         { "rx_flow_control_xoff", E1000_STAT(stats.xoffrxc) },
88         { "tx_flow_control_xon", E1000_STAT(stats.xontxc) },
89         { "tx_flow_control_xoff", E1000_STAT(stats.xofftxc) },
90         { "rx_long_byte_count", E1000_STAT(stats.gorcl) },
91         { "rx_csum_offload_good", E1000_STAT(hw_csum_good) },
92         { "rx_csum_offload_errors", E1000_STAT(hw_csum_err) },
93         { "alloc_rx_buff_failed", E1000_STAT(alloc_rx_buff_failed) },
94         { "tx_smbus", E1000_STAT(stats.mgptc) },
95         { "rx_smbus", E1000_STAT(stats.mgprc) },
96         { "dropped_smbus", E1000_STAT(stats.mgpdc) },
97 };
98
99 #define E1000_QUEUE_STATS_LEN 0
100 #define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
101 #define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN + E1000_QUEUE_STATS_LEN)
102 static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = {
103         "Register test  (offline)", "Eeprom test    (offline)",
104         "Interrupt test (offline)", "Loopback test  (offline)",
105         "Link test   (on/offline)"
106 };
107 #define E1000_TEST_LEN  ARRAY_SIZE(e1000_gstrings_test)
108
109 static int e1000_get_settings(struct net_device *netdev,
110                               struct ethtool_cmd *ecmd)
111 {
112         struct e1000_adapter *adapter = netdev_priv(netdev);
113         struct e1000_hw *hw = &adapter->hw;
114
115         if (hw->media_type == e1000_media_type_copper) {
116
117                 ecmd->supported = (SUPPORTED_10baseT_Half |
118                                    SUPPORTED_10baseT_Full |
119                                    SUPPORTED_100baseT_Half |
120                                    SUPPORTED_100baseT_Full |
121                                    SUPPORTED_1000baseT_Full|
122                                    SUPPORTED_Autoneg |
123                                    SUPPORTED_TP);
124                 ecmd->advertising = ADVERTISED_TP;
125
126                 if (hw->autoneg == 1) {
127                         ecmd->advertising |= ADVERTISED_Autoneg;
128                         /* the e1000 autoneg seems to match ethtool nicely */
129                         ecmd->advertising |= hw->autoneg_advertised;
130                 }
131
132                 ecmd->port = PORT_TP;
133                 ecmd->phy_address = hw->phy_addr;
134
135                 if (hw->mac_type == e1000_82543)
136                         ecmd->transceiver = XCVR_EXTERNAL;
137                 else
138                         ecmd->transceiver = XCVR_INTERNAL;
139
140         } else {
141                 ecmd->supported   = (SUPPORTED_1000baseT_Full |
142                                      SUPPORTED_FIBRE |
143                                      SUPPORTED_Autoneg);
144
145                 ecmd->advertising = (ADVERTISED_1000baseT_Full |
146                                      ADVERTISED_FIBRE |
147                                      ADVERTISED_Autoneg);
148
149                 ecmd->port = PORT_FIBRE;
150
151                 if (hw->mac_type >= e1000_82545)
152                         ecmd->transceiver = XCVR_INTERNAL;
153                 else
154                         ecmd->transceiver = XCVR_EXTERNAL;
155         }
156
157         if (er32(STATUS) & E1000_STATUS_LU) {
158
159                 e1000_get_speed_and_duplex(hw, &adapter->link_speed,
160                                                    &adapter->link_duplex);
161                 ecmd->speed = adapter->link_speed;
162
163                 /* unfortunatly FULL_DUPLEX != DUPLEX_FULL
164                  *          and HALF_DUPLEX != DUPLEX_HALF */
165
166                 if (adapter->link_duplex == FULL_DUPLEX)
167                         ecmd->duplex = DUPLEX_FULL;
168                 else
169                         ecmd->duplex = DUPLEX_HALF;
170         } else {
171                 ecmd->speed = -1;
172                 ecmd->duplex = -1;
173         }
174
175         ecmd->autoneg = ((hw->media_type == e1000_media_type_fiber) ||
176                          hw->autoneg) ? AUTONEG_ENABLE : AUTONEG_DISABLE;
177         return 0;
178 }
179
180 static int e1000_set_settings(struct net_device *netdev,
181                               struct ethtool_cmd *ecmd)
182 {
183         struct e1000_adapter *adapter = netdev_priv(netdev);
184         struct e1000_hw *hw = &adapter->hw;
185
186         while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
187                 msleep(1);
188
189         if (ecmd->autoneg == AUTONEG_ENABLE) {
190                 hw->autoneg = 1;
191                 if (hw->media_type == e1000_media_type_fiber)
192                         hw->autoneg_advertised = ADVERTISED_1000baseT_Full |
193                                      ADVERTISED_FIBRE |
194                                      ADVERTISED_Autoneg;
195                 else
196                         hw->autoneg_advertised = ecmd->advertising |
197                                                  ADVERTISED_TP |
198                                                  ADVERTISED_Autoneg;
199                 ecmd->advertising = hw->autoneg_advertised;
200         } else
201                 if (e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) {
202                         clear_bit(__E1000_RESETTING, &adapter->flags);
203                         return -EINVAL;
204                 }
205
206         /* reset the link */
207
208         if (netif_running(adapter->netdev)) {
209                 e1000_down(adapter);
210                 e1000_up(adapter);
211         } else
212                 e1000_reset(adapter);
213
214         clear_bit(__E1000_RESETTING, &adapter->flags);
215         return 0;
216 }
217
218 static u32 e1000_get_link(struct net_device *netdev)
219 {
220         struct e1000_adapter *adapter = netdev_priv(netdev);
221
222         /*
223          * If the link is not reported up to netdev, interrupts are disabled,
224          * and so the physical link state may have changed since we last
225          * looked. Set get_link_status to make sure that the true link
226          * state is interrogated, rather than pulling a cached and possibly
227          * stale link state from the driver.
228          */
229         if (!netif_carrier_ok(netdev))
230                 adapter->hw.get_link_status = 1;
231
232         return e1000_has_link(adapter);
233 }
234
235 static void e1000_get_pauseparam(struct net_device *netdev,
236                                  struct ethtool_pauseparam *pause)
237 {
238         struct e1000_adapter *adapter = netdev_priv(netdev);
239         struct e1000_hw *hw = &adapter->hw;
240
241         pause->autoneg =
242                 (adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);
243
244         if (hw->fc == E1000_FC_RX_PAUSE)
245                 pause->rx_pause = 1;
246         else if (hw->fc == E1000_FC_TX_PAUSE)
247                 pause->tx_pause = 1;
248         else if (hw->fc == E1000_FC_FULL) {
249                 pause->rx_pause = 1;
250                 pause->tx_pause = 1;
251         }
252 }
253
254 static int e1000_set_pauseparam(struct net_device *netdev,
255                                 struct ethtool_pauseparam *pause)
256 {
257         struct e1000_adapter *adapter = netdev_priv(netdev);
258         struct e1000_hw *hw = &adapter->hw;
259         int retval = 0;
260
261         adapter->fc_autoneg = pause->autoneg;
262
263         while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
264                 msleep(1);
265
266         if (pause->rx_pause && pause->tx_pause)
267                 hw->fc = E1000_FC_FULL;
268         else if (pause->rx_pause && !pause->tx_pause)
269                 hw->fc = E1000_FC_RX_PAUSE;
270         else if (!pause->rx_pause && pause->tx_pause)
271                 hw->fc = E1000_FC_TX_PAUSE;
272         else if (!pause->rx_pause && !pause->tx_pause)
273                 hw->fc = E1000_FC_NONE;
274
275         hw->original_fc = hw->fc;
276
277         if (adapter->fc_autoneg == AUTONEG_ENABLE) {
278                 if (netif_running(adapter->netdev)) {
279                         e1000_down(adapter);
280                         e1000_up(adapter);
281                 } else
282                         e1000_reset(adapter);
283         } else
284                 retval = ((hw->media_type == e1000_media_type_fiber) ?
285                           e1000_setup_link(hw) : e1000_force_mac_fc(hw));
286
287         clear_bit(__E1000_RESETTING, &adapter->flags);
288         return retval;
289 }
290
291 static u32 e1000_get_rx_csum(struct net_device *netdev)
292 {
293         struct e1000_adapter *adapter = netdev_priv(netdev);
294         return adapter->rx_csum;
295 }
296
297 static int e1000_set_rx_csum(struct net_device *netdev, u32 data)
298 {
299         struct e1000_adapter *adapter = netdev_priv(netdev);
300         adapter->rx_csum = data;
301
302         if (netif_running(netdev))
303                 e1000_reinit_locked(adapter);
304         else
305                 e1000_reset(adapter);
306         return 0;
307 }
308
309 static u32 e1000_get_tx_csum(struct net_device *netdev)
310 {
311         return (netdev->features & NETIF_F_HW_CSUM) != 0;
312 }
313
314 static int e1000_set_tx_csum(struct net_device *netdev, u32 data)
315 {
316         struct e1000_adapter *adapter = netdev_priv(netdev);
317         struct e1000_hw *hw = &adapter->hw;
318
319         if (hw->mac_type < e1000_82543) {
320                 if (!data)
321                         return -EINVAL;
322                 return 0;
323         }
324
325         if (data)
326                 netdev->features |= NETIF_F_HW_CSUM;
327         else
328                 netdev->features &= ~NETIF_F_HW_CSUM;
329
330         return 0;
331 }
332
333 static int e1000_set_tso(struct net_device *netdev, u32 data)
334 {
335         struct e1000_adapter *adapter = netdev_priv(netdev);
336         struct e1000_hw *hw = &adapter->hw;
337
338         if ((hw->mac_type < e1000_82544) ||
339             (hw->mac_type == e1000_82547))
340                 return data ? -EINVAL : 0;
341
342         if (data)
343                 netdev->features |= NETIF_F_TSO;
344         else
345                 netdev->features &= ~NETIF_F_TSO;
346
347         netdev->features &= ~NETIF_F_TSO6;
348
349         DPRINTK(PROBE, INFO, "TSO is %s\n", data ? "Enabled" : "Disabled");
350         adapter->tso_force = true;
351         return 0;
352 }
353
354 static u32 e1000_get_msglevel(struct net_device *netdev)
355 {
356         struct e1000_adapter *adapter = netdev_priv(netdev);
357         return adapter->msg_enable;
358 }
359
360 static void e1000_set_msglevel(struct net_device *netdev, u32 data)
361 {
362         struct e1000_adapter *adapter = netdev_priv(netdev);
363         adapter->msg_enable = data;
364 }
365
366 static int e1000_get_regs_len(struct net_device *netdev)
367 {
368 #define E1000_REGS_LEN 32
369         return E1000_REGS_LEN * sizeof(u32);
370 }
371
372 static void e1000_get_regs(struct net_device *netdev, struct ethtool_regs *regs,
373                            void *p)
374 {
375         struct e1000_adapter *adapter = netdev_priv(netdev);
376         struct e1000_hw *hw = &adapter->hw;
377         u32 *regs_buff = p;
378         u16 phy_data;
379
380         memset(p, 0, E1000_REGS_LEN * sizeof(u32));
381
382         regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;
383
384         regs_buff[0]  = er32(CTRL);
385         regs_buff[1]  = er32(STATUS);
386
387         regs_buff[2]  = er32(RCTL);
388         regs_buff[3]  = er32(RDLEN);
389         regs_buff[4]  = er32(RDH);
390         regs_buff[5]  = er32(RDT);
391         regs_buff[6]  = er32(RDTR);
392
393         regs_buff[7]  = er32(TCTL);
394         regs_buff[8]  = er32(TDLEN);
395         regs_buff[9]  = er32(TDH);
396         regs_buff[10] = er32(TDT);
397         regs_buff[11] = er32(TIDV);
398
399         regs_buff[12] = hw->phy_type;  /* PHY type (IGP=1, M88=0) */
400         if (hw->phy_type == e1000_phy_igp) {
401                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
402                                     IGP01E1000_PHY_AGC_A);
403                 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_A &
404                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
405                 regs_buff[13] = (u32)phy_data; /* cable length */
406                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
407                                     IGP01E1000_PHY_AGC_B);
408                 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_B &
409                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
410                 regs_buff[14] = (u32)phy_data; /* cable length */
411                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
412                                     IGP01E1000_PHY_AGC_C);
413                 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_C &
414                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
415                 regs_buff[15] = (u32)phy_data; /* cable length */
416                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
417                                     IGP01E1000_PHY_AGC_D);
418                 e1000_read_phy_reg(hw, IGP01E1000_PHY_AGC_D &
419                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
420                 regs_buff[16] = (u32)phy_data; /* cable length */
421                 regs_buff[17] = 0; /* extended 10bt distance (not needed) */
422                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
423                 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS &
424                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
425                 regs_buff[18] = (u32)phy_data; /* cable polarity */
426                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT,
427                                     IGP01E1000_PHY_PCS_INIT_REG);
428                 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG &
429                                    IGP01E1000_PHY_PAGE_SELECT, &phy_data);
430                 regs_buff[19] = (u32)phy_data; /* cable polarity */
431                 regs_buff[20] = 0; /* polarity correction enabled (always) */
432                 regs_buff[22] = 0; /* phy receive errors (unavailable) */
433                 regs_buff[23] = regs_buff[18]; /* mdix mode */
434                 e1000_write_phy_reg(hw, IGP01E1000_PHY_PAGE_SELECT, 0x0);
435         } else {
436                 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
437                 regs_buff[13] = (u32)phy_data; /* cable length */
438                 regs_buff[14] = 0;  /* Dummy (to align w/ IGP phy reg dump) */
439                 regs_buff[15] = 0;  /* Dummy (to align w/ IGP phy reg dump) */
440                 regs_buff[16] = 0;  /* Dummy (to align w/ IGP phy reg dump) */
441                 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
442                 regs_buff[17] = (u32)phy_data; /* extended 10bt distance */
443                 regs_buff[18] = regs_buff[13]; /* cable polarity */
444                 regs_buff[19] = 0;  /* Dummy (to align w/ IGP phy reg dump) */
445                 regs_buff[20] = regs_buff[17]; /* polarity correction */
446                 /* phy receive errors */
447                 regs_buff[22] = adapter->phy_stats.receive_errors;
448                 regs_buff[23] = regs_buff[13]; /* mdix mode */
449         }
450         regs_buff[21] = adapter->phy_stats.idle_errors;  /* phy idle errors */
451         e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
452         regs_buff[24] = (u32)phy_data;  /* phy local receiver status */
453         regs_buff[25] = regs_buff[24];  /* phy remote receiver status */
454         if (hw->mac_type >= e1000_82540 &&
455             hw->media_type == e1000_media_type_copper) {
456                 regs_buff[26] = er32(MANC);
457         }
458 }
459
460 static int e1000_get_eeprom_len(struct net_device *netdev)
461 {
462         struct e1000_adapter *adapter = netdev_priv(netdev);
463         struct e1000_hw *hw = &adapter->hw;
464
465         return hw->eeprom.word_size * 2;
466 }
467
468 static int e1000_get_eeprom(struct net_device *netdev,
469                             struct ethtool_eeprom *eeprom, u8 *bytes)
470 {
471         struct e1000_adapter *adapter = netdev_priv(netdev);
472         struct e1000_hw *hw = &adapter->hw;
473         u16 *eeprom_buff;
474         int first_word, last_word;
475         int ret_val = 0;
476         u16 i;
477
478         if (eeprom->len == 0)
479                 return -EINVAL;
480
481         eeprom->magic = hw->vendor_id | (hw->device_id << 16);
482
483         first_word = eeprom->offset >> 1;
484         last_word = (eeprom->offset + eeprom->len - 1) >> 1;
485
486         eeprom_buff = kmalloc(sizeof(u16) *
487                         (last_word - first_word + 1), GFP_KERNEL);
488         if (!eeprom_buff)
489                 return -ENOMEM;
490
491         if (hw->eeprom.type == e1000_eeprom_spi)
492                 ret_val = e1000_read_eeprom(hw, first_word,
493                                             last_word - first_word + 1,
494                                             eeprom_buff);
495         else {
496                 for (i = 0; i < last_word - first_word + 1; i++) {
497                         ret_val = e1000_read_eeprom(hw, first_word + i, 1,
498                                                     &eeprom_buff[i]);
499                         if (ret_val)
500                                 break;
501                 }
502         }
503
504         /* Device's eeprom is always little-endian, word addressable */
505         for (i = 0; i < last_word - first_word + 1; i++)
506                 le16_to_cpus(&eeprom_buff[i]);
507
508         memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1),
509                         eeprom->len);
510         kfree(eeprom_buff);
511
512         return ret_val;
513 }
514
515 static int e1000_set_eeprom(struct net_device *netdev,
516                             struct ethtool_eeprom *eeprom, u8 *bytes)
517 {
518         struct e1000_adapter *adapter = netdev_priv(netdev);
519         struct e1000_hw *hw = &adapter->hw;
520         u16 *eeprom_buff;
521         void *ptr;
522         int max_len, first_word, last_word, ret_val = 0;
523         u16 i;
524
525         if (eeprom->len == 0)
526                 return -EOPNOTSUPP;
527
528         if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
529                 return -EFAULT;
530
531         max_len = hw->eeprom.word_size * 2;
532
533         first_word = eeprom->offset >> 1;
534         last_word = (eeprom->offset + eeprom->len - 1) >> 1;
535         eeprom_buff = kmalloc(max_len, GFP_KERNEL);
536         if (!eeprom_buff)
537                 return -ENOMEM;
538
539         ptr = (void *)eeprom_buff;
540
541         if (eeprom->offset & 1) {
542                 /* need read/modify/write of first changed EEPROM word */
543                 /* only the second byte of the word is being modified */
544                 ret_val = e1000_read_eeprom(hw, first_word, 1,
545                                             &eeprom_buff[0]);
546                 ptr++;
547         }
548         if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {
549                 /* need read/modify/write of last changed EEPROM word */
550                 /* only the first byte of the word is being modified */
551                 ret_val = e1000_read_eeprom(hw, last_word, 1,
552                                   &eeprom_buff[last_word - first_word]);
553         }
554
555         /* Device's eeprom is always little-endian, word addressable */
556         for (i = 0; i < last_word - first_word + 1; i++)
557                 le16_to_cpus(&eeprom_buff[i]);
558
559         memcpy(ptr, bytes, eeprom->len);
560
561         for (i = 0; i < last_word - first_word + 1; i++)
562                 eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]);
563
564         ret_val = e1000_write_eeprom(hw, first_word,
565                                      last_word - first_word + 1, eeprom_buff);
566
567         /* Update the checksum over the first part of the EEPROM if needed */
568         if ((ret_val == 0) && (first_word <= EEPROM_CHECKSUM_REG))
569                 e1000_update_eeprom_checksum(hw);
570
571         kfree(eeprom_buff);
572         return ret_val;
573 }
574
575 static void e1000_get_drvinfo(struct net_device *netdev,
576                               struct ethtool_drvinfo *drvinfo)
577 {
578         struct e1000_adapter *adapter = netdev_priv(netdev);
579         char firmware_version[32];
580
581         strncpy(drvinfo->driver,  e1000_driver_name, 32);
582         strncpy(drvinfo->version, e1000_driver_version, 32);
583
584         sprintf(firmware_version, "N/A");
585         strncpy(drvinfo->fw_version, firmware_version, 32);
586         strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
587         drvinfo->regdump_len = e1000_get_regs_len(netdev);
588         drvinfo->eedump_len = e1000_get_eeprom_len(netdev);
589 }
590
591 static void e1000_get_ringparam(struct net_device *netdev,
592                                 struct ethtool_ringparam *ring)
593 {
594         struct e1000_adapter *adapter = netdev_priv(netdev);
595         struct e1000_hw *hw = &adapter->hw;
596         e1000_mac_type mac_type = hw->mac_type;
597         struct e1000_tx_ring *txdr = adapter->tx_ring;
598         struct e1000_rx_ring *rxdr = adapter->rx_ring;
599
600         ring->rx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_RXD :
601                 E1000_MAX_82544_RXD;
602         ring->tx_max_pending = (mac_type < e1000_82544) ? E1000_MAX_TXD :
603                 E1000_MAX_82544_TXD;
604         ring->rx_mini_max_pending = 0;
605         ring->rx_jumbo_max_pending = 0;
606         ring->rx_pending = rxdr->count;
607         ring->tx_pending = txdr->count;
608         ring->rx_mini_pending = 0;
609         ring->rx_jumbo_pending = 0;
610 }
611
612 static int e1000_set_ringparam(struct net_device *netdev,
613                                struct ethtool_ringparam *ring)
614 {
615         struct e1000_adapter *adapter = netdev_priv(netdev);
616         struct e1000_hw *hw = &adapter->hw;
617         e1000_mac_type mac_type = hw->mac_type;
618         struct e1000_tx_ring *txdr, *tx_old;
619         struct e1000_rx_ring *rxdr, *rx_old;
620         int i, err;
621
622         if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
623                 return -EINVAL;
624
625         while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
626                 msleep(1);
627
628         if (netif_running(adapter->netdev))
629                 e1000_down(adapter);
630
631         tx_old = adapter->tx_ring;
632         rx_old = adapter->rx_ring;
633
634         err = -ENOMEM;
635         txdr = kcalloc(adapter->num_tx_queues, sizeof(struct e1000_tx_ring), GFP_KERNEL);
636         if (!txdr)
637                 goto err_alloc_tx;
638
639         rxdr = kcalloc(adapter->num_rx_queues, sizeof(struct e1000_rx_ring), GFP_KERNEL);
640         if (!rxdr)
641                 goto err_alloc_rx;
642
643         adapter->tx_ring = txdr;
644         adapter->rx_ring = rxdr;
645
646         rxdr->count = max(ring->rx_pending,(u32)E1000_MIN_RXD);
647         rxdr->count = min(rxdr->count,(u32)(mac_type < e1000_82544 ?
648                 E1000_MAX_RXD : E1000_MAX_82544_RXD));
649         rxdr->count = ALIGN(rxdr->count, REQ_RX_DESCRIPTOR_MULTIPLE);
650
651         txdr->count = max(ring->tx_pending,(u32)E1000_MIN_TXD);
652         txdr->count = min(txdr->count,(u32)(mac_type < e1000_82544 ?
653                 E1000_MAX_TXD : E1000_MAX_82544_TXD));
654         txdr->count = ALIGN(txdr->count, REQ_TX_DESCRIPTOR_MULTIPLE);
655
656         for (i = 0; i < adapter->num_tx_queues; i++)
657                 txdr[i].count = txdr->count;
658         for (i = 0; i < adapter->num_rx_queues; i++)
659                 rxdr[i].count = rxdr->count;
660
661         if (netif_running(adapter->netdev)) {
662                 /* Try to get new resources before deleting old */
663                 err = e1000_setup_all_rx_resources(adapter);
664                 if (err)
665                         goto err_setup_rx;
666                 err = e1000_setup_all_tx_resources(adapter);
667                 if (err)
668                         goto err_setup_tx;
669
670                 /* save the new, restore the old in order to free it,
671                  * then restore the new back again */
672
673                 adapter->rx_ring = rx_old;
674                 adapter->tx_ring = tx_old;
675                 e1000_free_all_rx_resources(adapter);
676                 e1000_free_all_tx_resources(adapter);
677                 kfree(tx_old);
678                 kfree(rx_old);
679                 adapter->rx_ring = rxdr;
680                 adapter->tx_ring = txdr;
681                 err = e1000_up(adapter);
682                 if (err)
683                         goto err_setup;
684         }
685
686         clear_bit(__E1000_RESETTING, &adapter->flags);
687         return 0;
688 err_setup_tx:
689         e1000_free_all_rx_resources(adapter);
690 err_setup_rx:
691         adapter->rx_ring = rx_old;
692         adapter->tx_ring = tx_old;
693         kfree(rxdr);
694 err_alloc_rx:
695         kfree(txdr);
696 err_alloc_tx:
697         e1000_up(adapter);
698 err_setup:
699         clear_bit(__E1000_RESETTING, &adapter->flags);
700         return err;
701 }
702
703 static bool reg_pattern_test(struct e1000_adapter *adapter, u64 *data, int reg,
704                              u32 mask, u32 write)
705 {
706         struct e1000_hw *hw = &adapter->hw;
707         static const u32 test[] =
708                 {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
709         u8 __iomem *address = hw->hw_addr + reg;
710         u32 read;
711         int i;
712
713         for (i = 0; i < ARRAY_SIZE(test); i++) {
714                 writel(write & test[i], address);
715                 read = readl(address);
716                 if (read != (write & test[i] & mask)) {
717                         DPRINTK(DRV, ERR, "pattern test reg %04X failed: "
718                                 "got 0x%08X expected 0x%08X\n",
719                                 reg, read, (write & test[i] & mask));
720                         *data = reg;
721                         return true;
722                 }
723         }
724         return false;
725 }
726
727 static bool reg_set_and_check(struct e1000_adapter *adapter, u64 *data, int reg,
728                               u32 mask, u32 write)
729 {
730         struct e1000_hw *hw = &adapter->hw;
731         u8 __iomem *address = hw->hw_addr + reg;
732         u32 read;
733
734         writel(write & mask, address);
735         read = readl(address);
736         if ((read & mask) != (write & mask)) {
737                 DPRINTK(DRV, ERR, "set/check reg %04X test failed: "
738                         "got 0x%08X expected 0x%08X\n",
739                         reg, (read & mask), (write & mask));
740                 *data = reg;
741                 return true;
742         }
743         return false;
744 }
745
746 #define REG_PATTERN_TEST(reg, mask, write)                           \
747         do {                                                         \
748                 if (reg_pattern_test(adapter, data,                  \
749                              (hw->mac_type >= e1000_82543)   \
750                              ? E1000_##reg : E1000_82542_##reg,      \
751                              mask, write))                           \
752                         return 1;                                    \
753         } while (0)
754
755 #define REG_SET_AND_CHECK(reg, mask, write)                          \
756         do {                                                         \
757                 if (reg_set_and_check(adapter, data,                 \
758                               (hw->mac_type >= e1000_82543)  \
759                               ? E1000_##reg : E1000_82542_##reg,     \
760                               mask, write))                          \
761                         return 1;                                    \
762         } while (0)
763
764 static int e1000_reg_test(struct e1000_adapter *adapter, u64 *data)
765 {
766         u32 value, before, after;
767         u32 i, toggle;
768         struct e1000_hw *hw = &adapter->hw;
769
770         /* The status register is Read Only, so a write should fail.
771          * Some bits that get toggled are ignored.
772          */
773
774         /* there are several bits on newer hardware that are r/w */
775         toggle = 0xFFFFF833;
776
777         before = er32(STATUS);
778         value = (er32(STATUS) & toggle);
779         ew32(STATUS, toggle);
780         after = er32(STATUS) & toggle;
781         if (value != after) {
782                 DPRINTK(DRV, ERR, "failed STATUS register test got: "
783                         "0x%08X expected: 0x%08X\n", after, value);
784                 *data = 1;
785                 return 1;
786         }
787         /* restore previous status */
788         ew32(STATUS, before);
789
790         REG_PATTERN_TEST(FCAL, 0xFFFFFFFF, 0xFFFFFFFF);
791         REG_PATTERN_TEST(FCAH, 0x0000FFFF, 0xFFFFFFFF);
792         REG_PATTERN_TEST(FCT, 0x0000FFFF, 0xFFFFFFFF);
793         REG_PATTERN_TEST(VET, 0x0000FFFF, 0xFFFFFFFF);
794
795         REG_PATTERN_TEST(RDTR, 0x0000FFFF, 0xFFFFFFFF);
796         REG_PATTERN_TEST(RDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
797         REG_PATTERN_TEST(RDLEN, 0x000FFF80, 0x000FFFFF);
798         REG_PATTERN_TEST(RDH, 0x0000FFFF, 0x0000FFFF);
799         REG_PATTERN_TEST(RDT, 0x0000FFFF, 0x0000FFFF);
800         REG_PATTERN_TEST(FCRTH, 0x0000FFF8, 0x0000FFF8);
801         REG_PATTERN_TEST(FCTTV, 0x0000FFFF, 0x0000FFFF);
802         REG_PATTERN_TEST(TIPG, 0x3FFFFFFF, 0x3FFFFFFF);
803         REG_PATTERN_TEST(TDBAH, 0xFFFFFFFF, 0xFFFFFFFF);
804         REG_PATTERN_TEST(TDLEN, 0x000FFF80, 0x000FFFFF);
805
806         REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x00000000);
807
808         before = 0x06DFB3FE;
809         REG_SET_AND_CHECK(RCTL, before, 0x003FFFFB);
810         REG_SET_AND_CHECK(TCTL, 0xFFFFFFFF, 0x00000000);
811
812         if (hw->mac_type >= e1000_82543) {
813
814                 REG_SET_AND_CHECK(RCTL, before, 0xFFFFFFFF);
815                 REG_PATTERN_TEST(RDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
816                 REG_PATTERN_TEST(TXCW, 0xC000FFFF, 0x0000FFFF);
817                 REG_PATTERN_TEST(TDBAL, 0xFFFFFFF0, 0xFFFFFFFF);
818                 REG_PATTERN_TEST(TIDV, 0x0000FFFF, 0x0000FFFF);
819                 value = E1000_RAR_ENTRIES;
820                 for (i = 0; i < value; i++) {
821                         REG_PATTERN_TEST(RA + (((i << 1) + 1) << 2), 0x8003FFFF,
822                                          0xFFFFFFFF);
823                 }
824
825         } else {
826
827                 REG_SET_AND_CHECK(RCTL, 0xFFFFFFFF, 0x01FFFFFF);
828                 REG_PATTERN_TEST(RDBAL, 0xFFFFF000, 0xFFFFFFFF);
829                 REG_PATTERN_TEST(TXCW, 0x0000FFFF, 0x0000FFFF);
830                 REG_PATTERN_TEST(TDBAL, 0xFFFFF000, 0xFFFFFFFF);
831
832         }
833
834         value = E1000_MC_TBL_SIZE;
835         for (i = 0; i < value; i++)
836                 REG_PATTERN_TEST(MTA + (i << 2), 0xFFFFFFFF, 0xFFFFFFFF);
837
838         *data = 0;
839         return 0;
840 }
841
842 static int e1000_eeprom_test(struct e1000_adapter *adapter, u64 *data)
843 {
844         struct e1000_hw *hw = &adapter->hw;
845         u16 temp;
846         u16 checksum = 0;
847         u16 i;
848
849         *data = 0;
850         /* Read and add up the contents of the EEPROM */
851         for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
852                 if ((e1000_read_eeprom(hw, i, 1, &temp)) < 0) {
853                         *data = 1;
854                         break;
855                 }
856                 checksum += temp;
857         }
858
859         /* If Checksum is not Correct return error else test passed */
860         if ((checksum != (u16)EEPROM_SUM) && !(*data))
861                 *data = 2;
862
863         return *data;
864 }
865
866 static irqreturn_t e1000_test_intr(int irq, void *data)
867 {
868         struct net_device *netdev = (struct net_device *)data;
869         struct e1000_adapter *adapter = netdev_priv(netdev);
870         struct e1000_hw *hw = &adapter->hw;
871
872         adapter->test_icr |= er32(ICR);
873
874         return IRQ_HANDLED;
875 }
876
877 static int e1000_intr_test(struct e1000_adapter *adapter, u64 *data)
878 {
879         struct net_device *netdev = adapter->netdev;
880         u32 mask, i = 0;
881         bool shared_int = true;
882         u32 irq = adapter->pdev->irq;
883         struct e1000_hw *hw = &adapter->hw;
884
885         *data = 0;
886
887         /* NOTE: we don't test MSI interrupts here, yet */
888         /* Hook up test interrupt handler just for this test */
889         if (!request_irq(irq, e1000_test_intr, IRQF_PROBE_SHARED, netdev->name,
890                          netdev))
891                 shared_int = false;
892         else if (request_irq(irq, e1000_test_intr, IRQF_SHARED,
893                  netdev->name, netdev)) {
894                 *data = 1;
895                 return -1;
896         }
897         DPRINTK(HW, INFO, "testing %s interrupt\n",
898                 (shared_int ? "shared" : "unshared"));
899
900         /* Disable all the interrupts */
901         ew32(IMC, 0xFFFFFFFF);
902         msleep(10);
903
904         /* Test each interrupt */
905         for (; i < 10; i++) {
906
907                 /* Interrupt to test */
908                 mask = 1 << i;
909
910                 if (!shared_int) {
911                         /* Disable the interrupt to be reported in
912                          * the cause register and then force the same
913                          * interrupt and see if one gets posted.  If
914                          * an interrupt was posted to the bus, the
915                          * test failed.
916                          */
917                         adapter->test_icr = 0;
918                         ew32(IMC, mask);
919                         ew32(ICS, mask);
920                         msleep(10);
921
922                         if (adapter->test_icr & mask) {
923                                 *data = 3;
924                                 break;
925                         }
926                 }
927
928                 /* Enable the interrupt to be reported in
929                  * the cause register and then force the same
930                  * interrupt and see if one gets posted.  If
931                  * an interrupt was not posted to the bus, the
932                  * test failed.
933                  */
934                 adapter->test_icr = 0;
935                 ew32(IMS, mask);
936                 ew32(ICS, mask);
937                 msleep(10);
938
939                 if (!(adapter->test_icr & mask)) {
940                         *data = 4;
941                         break;
942                 }
943
944                 if (!shared_int) {
945                         /* Disable the other interrupts to be reported in
946                          * the cause register and then force the other
947                          * interrupts and see if any get posted.  If
948                          * an interrupt was posted to the bus, the
949                          * test failed.
950                          */
951                         adapter->test_icr = 0;
952                         ew32(IMC, ~mask & 0x00007FFF);
953                         ew32(ICS, ~mask & 0x00007FFF);
954                         msleep(10);
955
956                         if (adapter->test_icr) {
957                                 *data = 5;
958                                 break;
959                         }
960                 }
961         }
962
963         /* Disable all the interrupts */
964         ew32(IMC, 0xFFFFFFFF);
965         msleep(10);
966
967         /* Unhook test interrupt handler */
968         free_irq(irq, netdev);
969
970         return *data;
971 }
972
973 static void e1000_free_desc_rings(struct e1000_adapter *adapter)
974 {
975         struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
976         struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
977         struct pci_dev *pdev = adapter->pdev;
978         int i;
979
980         if (txdr->desc && txdr->buffer_info) {
981                 for (i = 0; i < txdr->count; i++) {
982                         if (txdr->buffer_info[i].dma)
983                                 pci_unmap_single(pdev, txdr->buffer_info[i].dma,
984                                                  txdr->buffer_info[i].length,
985                                                  PCI_DMA_TODEVICE);
986                         if (txdr->buffer_info[i].skb)
987                                 dev_kfree_skb(txdr->buffer_info[i].skb);
988                 }
989         }
990
991         if (rxdr->desc && rxdr->buffer_info) {
992                 for (i = 0; i < rxdr->count; i++) {
993                         if (rxdr->buffer_info[i].dma)
994                                 pci_unmap_single(pdev, rxdr->buffer_info[i].dma,
995                                                  rxdr->buffer_info[i].length,
996                                                  PCI_DMA_FROMDEVICE);
997                         if (rxdr->buffer_info[i].skb)
998                                 dev_kfree_skb(rxdr->buffer_info[i].skb);
999                 }
1000         }
1001
1002         if (txdr->desc) {
1003                 pci_free_consistent(pdev, txdr->size, txdr->desc, txdr->dma);
1004                 txdr->desc = NULL;
1005         }
1006         if (rxdr->desc) {
1007                 pci_free_consistent(pdev, rxdr->size, rxdr->desc, rxdr->dma);
1008                 rxdr->desc = NULL;
1009         }
1010
1011         kfree(txdr->buffer_info);
1012         txdr->buffer_info = NULL;
1013         kfree(rxdr->buffer_info);
1014         rxdr->buffer_info = NULL;
1015
1016         return;
1017 }
1018
1019 static int e1000_setup_desc_rings(struct e1000_adapter *adapter)
1020 {
1021         struct e1000_hw *hw = &adapter->hw;
1022         struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1023         struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
1024         struct pci_dev *pdev = adapter->pdev;
1025         u32 rctl;
1026         int i, ret_val;
1027
1028         /* Setup Tx descriptor ring and Tx buffers */
1029
1030         if (!txdr->count)
1031                 txdr->count = E1000_DEFAULT_TXD;
1032
1033         txdr->buffer_info = kcalloc(txdr->count, sizeof(struct e1000_buffer),
1034                                     GFP_KERNEL);
1035         if (!txdr->buffer_info) {
1036                 ret_val = 1;
1037                 goto err_nomem;
1038         }
1039
1040         txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
1041         txdr->size = ALIGN(txdr->size, 4096);
1042         txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
1043         if (!txdr->desc) {
1044                 ret_val = 2;
1045                 goto err_nomem;
1046         }
1047         memset(txdr->desc, 0, txdr->size);
1048         txdr->next_to_use = txdr->next_to_clean = 0;
1049
1050         ew32(TDBAL, ((u64)txdr->dma & 0x00000000FFFFFFFF));
1051         ew32(TDBAH, ((u64)txdr->dma >> 32));
1052         ew32(TDLEN, txdr->count * sizeof(struct e1000_tx_desc));
1053         ew32(TDH, 0);
1054         ew32(TDT, 0);
1055         ew32(TCTL, E1000_TCTL_PSP | E1000_TCTL_EN |
1056              E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT |
1057              E1000_FDX_COLLISION_DISTANCE << E1000_COLD_SHIFT);
1058
1059         for (i = 0; i < txdr->count; i++) {
1060                 struct e1000_tx_desc *tx_desc = E1000_TX_DESC(*txdr, i);
1061                 struct sk_buff *skb;
1062                 unsigned int size = 1024;
1063
1064                 skb = alloc_skb(size, GFP_KERNEL);
1065                 if (!skb) {
1066                         ret_val = 3;
1067                         goto err_nomem;
1068                 }
1069                 skb_put(skb, size);
1070                 txdr->buffer_info[i].skb = skb;
1071                 txdr->buffer_info[i].length = skb->len;
1072                 txdr->buffer_info[i].dma =
1073                         pci_map_single(pdev, skb->data, skb->len,
1074                                        PCI_DMA_TODEVICE);
1075                 tx_desc->buffer_addr = cpu_to_le64(txdr->buffer_info[i].dma);
1076                 tx_desc->lower.data = cpu_to_le32(skb->len);
1077                 tx_desc->lower.data |= cpu_to_le32(E1000_TXD_CMD_EOP |
1078                                                    E1000_TXD_CMD_IFCS |
1079                                                    E1000_TXD_CMD_RPS);
1080                 tx_desc->upper.data = 0;
1081         }
1082
1083         /* Setup Rx descriptor ring and Rx buffers */
1084
1085         if (!rxdr->count)
1086                 rxdr->count = E1000_DEFAULT_RXD;
1087
1088         rxdr->buffer_info = kcalloc(rxdr->count, sizeof(struct e1000_buffer),
1089                                     GFP_KERNEL);
1090         if (!rxdr->buffer_info) {
1091                 ret_val = 4;
1092                 goto err_nomem;
1093         }
1094
1095         rxdr->size = rxdr->count * sizeof(struct e1000_rx_desc);
1096         rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
1097         if (!rxdr->desc) {
1098                 ret_val = 5;
1099                 goto err_nomem;
1100         }
1101         memset(rxdr->desc, 0, rxdr->size);
1102         rxdr->next_to_use = rxdr->next_to_clean = 0;
1103
1104         rctl = er32(RCTL);
1105         ew32(RCTL, rctl & ~E1000_RCTL_EN);
1106         ew32(RDBAL, ((u64)rxdr->dma & 0xFFFFFFFF));
1107         ew32(RDBAH, ((u64)rxdr->dma >> 32));
1108         ew32(RDLEN, rxdr->size);
1109         ew32(RDH, 0);
1110         ew32(RDT, 0);
1111         rctl = E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
1112                 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
1113                 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
1114         ew32(RCTL, rctl);
1115
1116         for (i = 0; i < rxdr->count; i++) {
1117                 struct e1000_rx_desc *rx_desc = E1000_RX_DESC(*rxdr, i);
1118                 struct sk_buff *skb;
1119
1120                 skb = alloc_skb(E1000_RXBUFFER_2048 + NET_IP_ALIGN, GFP_KERNEL);
1121                 if (!skb) {
1122                         ret_val = 6;
1123                         goto err_nomem;
1124                 }
1125                 skb_reserve(skb, NET_IP_ALIGN);
1126                 rxdr->buffer_info[i].skb = skb;
1127                 rxdr->buffer_info[i].length = E1000_RXBUFFER_2048;
1128                 rxdr->buffer_info[i].dma =
1129                         pci_map_single(pdev, skb->data, E1000_RXBUFFER_2048,
1130                                        PCI_DMA_FROMDEVICE);
1131                 rx_desc->buffer_addr = cpu_to_le64(rxdr->buffer_info[i].dma);
1132                 memset(skb->data, 0x00, skb->len);
1133         }
1134
1135         return 0;
1136
1137 err_nomem:
1138         e1000_free_desc_rings(adapter);
1139         return ret_val;
1140 }
1141
1142 static void e1000_phy_disable_receiver(struct e1000_adapter *adapter)
1143 {
1144         struct e1000_hw *hw = &adapter->hw;
1145
1146         /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1147         e1000_write_phy_reg(hw, 29, 0x001F);
1148         e1000_write_phy_reg(hw, 30, 0x8FFC);
1149         e1000_write_phy_reg(hw, 29, 0x001A);
1150         e1000_write_phy_reg(hw, 30, 0x8FF0);
1151 }
1152
1153 static void e1000_phy_reset_clk_and_crs(struct e1000_adapter *adapter)
1154 {
1155         struct e1000_hw *hw = &adapter->hw;
1156         u16 phy_reg;
1157
1158         /* Because we reset the PHY above, we need to re-force TX_CLK in the
1159          * Extended PHY Specific Control Register to 25MHz clock.  This
1160          * value defaults back to a 2.5MHz clock when the PHY is reset.
1161          */
1162         e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
1163         phy_reg |= M88E1000_EPSCR_TX_CLK_25;
1164         e1000_write_phy_reg(hw,
1165                 M88E1000_EXT_PHY_SPEC_CTRL, phy_reg);
1166
1167         /* In addition, because of the s/w reset above, we need to enable
1168          * CRS on TX.  This must be set for both full and half duplex
1169          * operation.
1170          */
1171         e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
1172         phy_reg |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1173         e1000_write_phy_reg(hw,
1174                 M88E1000_PHY_SPEC_CTRL, phy_reg);
1175 }
1176
1177 static int e1000_nonintegrated_phy_loopback(struct e1000_adapter *adapter)
1178 {
1179         struct e1000_hw *hw = &adapter->hw;
1180         u32 ctrl_reg;
1181         u16 phy_reg;
1182
1183         /* Setup the Device Control Register for PHY loopback test. */
1184
1185         ctrl_reg = er32(CTRL);
1186         ctrl_reg |= (E1000_CTRL_ILOS |          /* Invert Loss-Of-Signal */
1187                      E1000_CTRL_FRCSPD |        /* Set the Force Speed Bit */
1188                      E1000_CTRL_FRCDPX |        /* Set the Force Duplex Bit */
1189                      E1000_CTRL_SPD_1000 |      /* Force Speed to 1000 */
1190                      E1000_CTRL_FD);            /* Force Duplex to FULL */
1191
1192         ew32(CTRL, ctrl_reg);
1193
1194         /* Read the PHY Specific Control Register (0x10) */
1195         e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_reg);
1196
1197         /* Clear Auto-Crossover bits in PHY Specific Control Register
1198          * (bits 6:5).
1199          */
1200         phy_reg &= ~M88E1000_PSCR_AUTO_X_MODE;
1201         e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_reg);
1202
1203         /* Perform software reset on the PHY */
1204         e1000_phy_reset(hw);
1205
1206         /* Have to setup TX_CLK and TX_CRS after software reset */
1207         e1000_phy_reset_clk_and_crs(adapter);
1208
1209         e1000_write_phy_reg(hw, PHY_CTRL, 0x8100);
1210
1211         /* Wait for reset to complete. */
1212         udelay(500);
1213
1214         /* Have to setup TX_CLK and TX_CRS after software reset */
1215         e1000_phy_reset_clk_and_crs(adapter);
1216
1217         /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1218         e1000_phy_disable_receiver(adapter);
1219
1220         /* Set the loopback bit in the PHY control register. */
1221         e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1222         phy_reg |= MII_CR_LOOPBACK;
1223         e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1224
1225         /* Setup TX_CLK and TX_CRS one more time. */
1226         e1000_phy_reset_clk_and_crs(adapter);
1227
1228         /* Check Phy Configuration */
1229         e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1230         if (phy_reg != 0x4100)
1231                  return 9;
1232
1233         e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_reg);
1234         if (phy_reg != 0x0070)
1235                 return 10;
1236
1237         e1000_read_phy_reg(hw, 29, &phy_reg);
1238         if (phy_reg != 0x001A)
1239                 return 11;
1240
1241         return 0;
1242 }
1243
1244 static int e1000_integrated_phy_loopback(struct e1000_adapter *adapter)
1245 {
1246         struct e1000_hw *hw = &adapter->hw;
1247         u32 ctrl_reg = 0;
1248         u32 stat_reg = 0;
1249
1250         hw->autoneg = false;
1251
1252         if (hw->phy_type == e1000_phy_m88) {
1253                 /* Auto-MDI/MDIX Off */
1254                 e1000_write_phy_reg(hw,
1255                                     M88E1000_PHY_SPEC_CTRL, 0x0808);
1256                 /* reset to update Auto-MDI/MDIX */
1257                 e1000_write_phy_reg(hw, PHY_CTRL, 0x9140);
1258                 /* autoneg off */
1259                 e1000_write_phy_reg(hw, PHY_CTRL, 0x8140);
1260         }
1261
1262         ctrl_reg = er32(CTRL);
1263
1264         /* force 1000, set loopback */
1265         e1000_write_phy_reg(hw, PHY_CTRL, 0x4140);
1266
1267         /* Now set up the MAC to the same speed/duplex as the PHY. */
1268         ctrl_reg = er32(CTRL);
1269         ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */
1270         ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */
1271                         E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */
1272                         E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */
1273                         E1000_CTRL_FD);  /* Force Duplex to FULL */
1274
1275         if (hw->media_type == e1000_media_type_copper &&
1276            hw->phy_type == e1000_phy_m88)
1277                 ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */
1278         else {
1279                 /* Set the ILOS bit on the fiber Nic is half
1280                  * duplex link is detected. */
1281                 stat_reg = er32(STATUS);
1282                 if ((stat_reg & E1000_STATUS_FD) == 0)
1283                         ctrl_reg |= (E1000_CTRL_ILOS | E1000_CTRL_SLU);
1284         }
1285
1286         ew32(CTRL, ctrl_reg);
1287
1288         /* Disable the receiver on the PHY so when a cable is plugged in, the
1289          * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1290          */
1291         if (hw->phy_type == e1000_phy_m88)
1292                 e1000_phy_disable_receiver(adapter);
1293
1294         udelay(500);
1295
1296         return 0;
1297 }
1298
1299 static int e1000_set_phy_loopback(struct e1000_adapter *adapter)
1300 {
1301         struct e1000_hw *hw = &adapter->hw;
1302         u16 phy_reg = 0;
1303         u16 count = 0;
1304
1305         switch (hw->mac_type) {
1306         case e1000_82543:
1307                 if (hw->media_type == e1000_media_type_copper) {
1308                         /* Attempt to setup Loopback mode on Non-integrated PHY.
1309                          * Some PHY registers get corrupted at random, so
1310                          * attempt this 10 times.
1311                          */
1312                         while (e1000_nonintegrated_phy_loopback(adapter) &&
1313                               count++ < 10);
1314                         if (count < 11)
1315                                 return 0;
1316                 }
1317                 break;
1318
1319         case e1000_82544:
1320         case e1000_82540:
1321         case e1000_82545:
1322         case e1000_82545_rev_3:
1323         case e1000_82546:
1324         case e1000_82546_rev_3:
1325         case e1000_82541:
1326         case e1000_82541_rev_2:
1327         case e1000_82547:
1328         case e1000_82547_rev_2:
1329                 return e1000_integrated_phy_loopback(adapter);
1330                 break;
1331         default:
1332                 /* Default PHY loopback work is to read the MII
1333                  * control register and assert bit 14 (loopback mode).
1334                  */
1335                 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1336                 phy_reg |= MII_CR_LOOPBACK;
1337                 e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1338                 return 0;
1339                 break;
1340         }
1341
1342         return 8;
1343 }
1344
1345 static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
1346 {
1347         struct e1000_hw *hw = &adapter->hw;
1348         u32 rctl;
1349
1350         if (hw->media_type == e1000_media_type_fiber ||
1351             hw->media_type == e1000_media_type_internal_serdes) {
1352                 switch (hw->mac_type) {
1353                 case e1000_82545:
1354                 case e1000_82546:
1355                 case e1000_82545_rev_3:
1356                 case e1000_82546_rev_3:
1357                         return e1000_set_phy_loopback(adapter);
1358                         break;
1359                 default:
1360                         rctl = er32(RCTL);
1361                         rctl |= E1000_RCTL_LBM_TCVR;
1362                         ew32(RCTL, rctl);
1363                         return 0;
1364                 }
1365         } else if (hw->media_type == e1000_media_type_copper)
1366                 return e1000_set_phy_loopback(adapter);
1367
1368         return 7;
1369 }
1370
1371 static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
1372 {
1373         struct e1000_hw *hw = &adapter->hw;
1374         u32 rctl;
1375         u16 phy_reg;
1376
1377         rctl = er32(RCTL);
1378         rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
1379         ew32(RCTL, rctl);
1380
1381         switch (hw->mac_type) {
1382         case e1000_82545:
1383         case e1000_82546:
1384         case e1000_82545_rev_3:
1385         case e1000_82546_rev_3:
1386         default:
1387                 hw->autoneg = true;
1388                 e1000_read_phy_reg(hw, PHY_CTRL, &phy_reg);
1389                 if (phy_reg & MII_CR_LOOPBACK) {
1390                         phy_reg &= ~MII_CR_LOOPBACK;
1391                         e1000_write_phy_reg(hw, PHY_CTRL, phy_reg);
1392                         e1000_phy_reset(hw);
1393                 }
1394                 break;
1395         }
1396 }
1397
1398 static void e1000_create_lbtest_frame(struct sk_buff *skb,
1399                                       unsigned int frame_size)
1400 {
1401         memset(skb->data, 0xFF, frame_size);
1402         frame_size &= ~1;
1403         memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
1404         memset(&skb->data[frame_size / 2 + 10], 0xBE, 1);
1405         memset(&skb->data[frame_size / 2 + 12], 0xAF, 1);
1406 }
1407
1408 static int e1000_check_lbtest_frame(struct sk_buff *skb,
1409                                     unsigned int frame_size)
1410 {
1411         frame_size &= ~1;
1412         if (*(skb->data + 3) == 0xFF) {
1413                 if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
1414                    (*(skb->data + frame_size / 2 + 12) == 0xAF)) {
1415                         return 0;
1416                 }
1417         }
1418         return 13;
1419 }
1420
1421 static int e1000_run_loopback_test(struct e1000_adapter *adapter)
1422 {
1423         struct e1000_hw *hw = &adapter->hw;
1424         struct e1000_tx_ring *txdr = &adapter->test_tx_ring;
1425         struct e1000_rx_ring *rxdr = &adapter->test_rx_ring;
1426         struct pci_dev *pdev = adapter->pdev;
1427         int i, j, k, l, lc, good_cnt, ret_val=0;
1428         unsigned long time;
1429
1430         ew32(RDT, rxdr->count - 1);
1431
1432         /* Calculate the loop count based on the largest descriptor ring
1433          * The idea is to wrap the largest ring a number of times using 64
1434          * send/receive pairs during each loop
1435          */
1436
1437         if (rxdr->count <= txdr->count)
1438                 lc = ((txdr->count / 64) * 2) + 1;
1439         else
1440                 lc = ((rxdr->count / 64) * 2) + 1;
1441
1442         k = l = 0;
1443         for (j = 0; j <= lc; j++) { /* loop count loop */
1444                 for (i = 0; i < 64; i++) { /* send the packets */
1445                         e1000_create_lbtest_frame(txdr->buffer_info[i].skb,
1446                                         1024);
1447                         pci_dma_sync_single_for_device(pdev,
1448                                         txdr->buffer_info[k].dma,
1449                                         txdr->buffer_info[k].length,
1450                                         PCI_DMA_TODEVICE);
1451                         if (unlikely(++k == txdr->count)) k = 0;
1452                 }
1453                 ew32(TDT, k);
1454                 msleep(200);
1455                 time = jiffies; /* set the start time for the receive */
1456                 good_cnt = 0;
1457                 do { /* receive the sent packets */
1458                         pci_dma_sync_single_for_cpu(pdev,
1459                                         rxdr->buffer_info[l].dma,
1460                                         rxdr->buffer_info[l].length,
1461                                         PCI_DMA_FROMDEVICE);
1462
1463                         ret_val = e1000_check_lbtest_frame(
1464                                         rxdr->buffer_info[l].skb,
1465                                         1024);
1466                         if (!ret_val)
1467                                 good_cnt++;
1468                         if (unlikely(++l == rxdr->count)) l = 0;
1469                         /* time + 20 msecs (200 msecs on 2.4) is more than
1470                          * enough time to complete the receives, if it's
1471                          * exceeded, break and error off
1472                          */
1473                 } while (good_cnt < 64 && jiffies < (time + 20));
1474                 if (good_cnt != 64) {
1475                         ret_val = 13; /* ret_val is the same as mis-compare */
1476                         break;
1477                 }
1478                 if (jiffies >= (time + 2)) {
1479                         ret_val = 14; /* error code for time out error */
1480                         break;
1481                 }
1482         } /* end loop count loop */
1483         return ret_val;
1484 }
1485
1486 static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
1487 {
1488         *data = e1000_setup_desc_rings(adapter);
1489         if (*data)
1490                 goto out;
1491         *data = e1000_setup_loopback_test(adapter);
1492         if (*data)
1493                 goto err_loopback;
1494         *data = e1000_run_loopback_test(adapter);
1495         e1000_loopback_cleanup(adapter);
1496
1497 err_loopback:
1498         e1000_free_desc_rings(adapter);
1499 out:
1500         return *data;
1501 }
1502
1503 static int e1000_link_test(struct e1000_adapter *adapter, u64 *data)
1504 {
1505         struct e1000_hw *hw = &adapter->hw;
1506         *data = 0;
1507         if (hw->media_type == e1000_media_type_internal_serdes) {
1508                 int i = 0;
1509                 hw->serdes_has_link = false;
1510
1511                 /* On some blade server designs, link establishment
1512                  * could take as long as 2-3 minutes */
1513                 do {
1514                         e1000_check_for_link(hw);
1515                         if (hw->serdes_has_link)
1516                                 return *data;
1517                         msleep(20);
1518                 } while (i++ < 3750);
1519
1520                 *data = 1;
1521         } else {
1522                 e1000_check_for_link(hw);
1523                 if (hw->autoneg)  /* if auto_neg is set wait for it */
1524                         msleep(4000);
1525
1526                 if (!(er32(STATUS) & E1000_STATUS_LU)) {
1527                         *data = 1;
1528                 }
1529         }
1530         return *data;
1531 }
1532
1533 static int e1000_get_sset_count(struct net_device *netdev, int sset)
1534 {
1535         switch (sset) {
1536         case ETH_SS_TEST:
1537                 return E1000_TEST_LEN;
1538         case ETH_SS_STATS:
1539                 return E1000_STATS_LEN;
1540         default:
1541                 return -EOPNOTSUPP;
1542         }
1543 }
1544
1545 static void e1000_diag_test(struct net_device *netdev,
1546                             struct ethtool_test *eth_test, u64 *data)
1547 {
1548         struct e1000_adapter *adapter = netdev_priv(netdev);
1549         struct e1000_hw *hw = &adapter->hw;
1550         bool if_running = netif_running(netdev);
1551
1552         set_bit(__E1000_TESTING, &adapter->flags);
1553         if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
1554                 /* Offline tests */
1555
1556                 /* save speed, duplex, autoneg settings */
1557                 u16 autoneg_advertised = hw->autoneg_advertised;
1558                 u8 forced_speed_duplex = hw->forced_speed_duplex;
1559                 u8 autoneg = hw->autoneg;
1560
1561                 DPRINTK(HW, INFO, "offline testing starting\n");
1562
1563                 /* Link test performed before hardware reset so autoneg doesn't
1564                  * interfere with test result */
1565                 if (e1000_link_test(adapter, &data[4]))
1566                         eth_test->flags |= ETH_TEST_FL_FAILED;
1567
1568                 if (if_running)
1569                         /* indicate we're in test mode */
1570                         dev_close(netdev);
1571                 else
1572                         e1000_reset(adapter);
1573
1574                 if (e1000_reg_test(adapter, &data[0]))
1575                         eth_test->flags |= ETH_TEST_FL_FAILED;
1576
1577                 e1000_reset(adapter);
1578                 if (e1000_eeprom_test(adapter, &data[1]))
1579                         eth_test->flags |= ETH_TEST_FL_FAILED;
1580
1581                 e1000_reset(adapter);
1582                 if (e1000_intr_test(adapter, &data[2]))
1583                         eth_test->flags |= ETH_TEST_FL_FAILED;
1584
1585                 e1000_reset(adapter);
1586                 /* make sure the phy is powered up */
1587                 e1000_power_up_phy(adapter);
1588                 if (e1000_loopback_test(adapter, &data[3]))
1589                         eth_test->flags |= ETH_TEST_FL_FAILED;
1590
1591                 /* restore speed, duplex, autoneg settings */
1592                 hw->autoneg_advertised = autoneg_advertised;
1593                 hw->forced_speed_duplex = forced_speed_duplex;
1594                 hw->autoneg = autoneg;
1595
1596                 e1000_reset(adapter);
1597                 clear_bit(__E1000_TESTING, &adapter->flags);
1598                 if (if_running)
1599                         dev_open(netdev);
1600         } else {
1601                 DPRINTK(HW, INFO, "online testing starting\n");
1602                 /* Online tests */
1603                 if (e1000_link_test(adapter, &data[4]))
1604                         eth_test->flags |= ETH_TEST_FL_FAILED;
1605
1606                 /* Online tests aren't run; pass by default */
1607                 data[0] = 0;
1608                 data[1] = 0;
1609                 data[2] = 0;
1610                 data[3] = 0;
1611
1612                 clear_bit(__E1000_TESTING, &adapter->flags);
1613         }
1614         msleep_interruptible(4 * 1000);
1615 }
1616
1617 static int e1000_wol_exclusion(struct e1000_adapter *adapter,
1618                                struct ethtool_wolinfo *wol)
1619 {
1620         struct e1000_hw *hw = &adapter->hw;
1621         int retval = 1; /* fail by default */
1622
1623         switch (hw->device_id) {
1624         case E1000_DEV_ID_82542:
1625         case E1000_DEV_ID_82543GC_FIBER:
1626         case E1000_DEV_ID_82543GC_COPPER:
1627         case E1000_DEV_ID_82544EI_FIBER:
1628         case E1000_DEV_ID_82546EB_QUAD_COPPER:
1629         case E1000_DEV_ID_82545EM_FIBER:
1630         case E1000_DEV_ID_82545EM_COPPER:
1631         case E1000_DEV_ID_82546GB_QUAD_COPPER:
1632         case E1000_DEV_ID_82546GB_PCIE:
1633                 /* these don't support WoL at all */
1634                 wol->supported = 0;
1635                 break;
1636         case E1000_DEV_ID_82546EB_FIBER:
1637         case E1000_DEV_ID_82546GB_FIBER:
1638                 /* Wake events not supported on port B */
1639                 if (er32(STATUS) & E1000_STATUS_FUNC_1) {
1640                         wol->supported = 0;
1641                         break;
1642                 }
1643                 /* return success for non excluded adapter ports */
1644                 retval = 0;
1645                 break;
1646         case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1647                 /* quad port adapters only support WoL on port A */
1648                 if (!adapter->quad_port_a) {
1649                         wol->supported = 0;
1650                         break;
1651                 }
1652                 /* return success for non excluded adapter ports */
1653                 retval = 0;
1654                 break;
1655         default:
1656                 /* dual port cards only support WoL on port A from now on
1657                  * unless it was enabled in the eeprom for port B
1658                  * so exclude FUNC_1 ports from having WoL enabled */
1659                 if (er32(STATUS) & E1000_STATUS_FUNC_1 &&
1660                     !adapter->eeprom_wol) {
1661                         wol->supported = 0;
1662                         break;
1663                 }
1664
1665                 retval = 0;
1666         }
1667
1668         return retval;
1669 }
1670
1671 static void e1000_get_wol(struct net_device *netdev,
1672                           struct ethtool_wolinfo *wol)
1673 {
1674         struct e1000_adapter *adapter = netdev_priv(netdev);
1675         struct e1000_hw *hw = &adapter->hw;
1676
1677         wol->supported = WAKE_UCAST | WAKE_MCAST |
1678                          WAKE_BCAST | WAKE_MAGIC;
1679         wol->wolopts = 0;
1680
1681         /* this function will set ->supported = 0 and return 1 if wol is not
1682          * supported by this hardware */
1683         if (e1000_wol_exclusion(adapter, wol) ||
1684             !device_can_wakeup(&adapter->pdev->dev))
1685                 return;
1686
1687         /* apply any specific unsupported masks here */
1688         switch (hw->device_id) {
1689         case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1690                 /* KSP3 does not suppport UCAST wake-ups */
1691                 wol->supported &= ~WAKE_UCAST;
1692
1693                 if (adapter->wol & E1000_WUFC_EX)
1694                         DPRINTK(DRV, ERR, "Interface does not support "
1695                         "directed (unicast) frame wake-up packets\n");
1696                 break;
1697         default:
1698                 break;
1699         }
1700
1701         if (adapter->wol & E1000_WUFC_EX)
1702                 wol->wolopts |= WAKE_UCAST;
1703         if (adapter->wol & E1000_WUFC_MC)
1704                 wol->wolopts |= WAKE_MCAST;
1705         if (adapter->wol & E1000_WUFC_BC)
1706                 wol->wolopts |= WAKE_BCAST;
1707         if (adapter->wol & E1000_WUFC_MAG)
1708                 wol->wolopts |= WAKE_MAGIC;
1709
1710         return;
1711 }
1712
1713 static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
1714 {
1715         struct e1000_adapter *adapter = netdev_priv(netdev);
1716         struct e1000_hw *hw = &adapter->hw;
1717
1718         if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1719                 return -EOPNOTSUPP;
1720
1721         if (e1000_wol_exclusion(adapter, wol) ||
1722             !device_can_wakeup(&adapter->pdev->dev))
1723                 return wol->wolopts ? -EOPNOTSUPP : 0;
1724
1725         switch (hw->device_id) {
1726         case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1727                 if (wol->wolopts & WAKE_UCAST) {
1728                         DPRINTK(DRV, ERR, "Interface does not support "
1729                         "directed (unicast) frame wake-up packets\n");
1730                         return -EOPNOTSUPP;
1731                 }
1732                 break;
1733         default:
1734                 break;
1735         }
1736
1737         /* these settings will always override what we currently have */
1738         adapter->wol = 0;
1739
1740         if (wol->wolopts & WAKE_UCAST)
1741                 adapter->wol |= E1000_WUFC_EX;
1742         if (wol->wolopts & WAKE_MCAST)
1743                 adapter->wol |= E1000_WUFC_MC;
1744         if (wol->wolopts & WAKE_BCAST)
1745                 adapter->wol |= E1000_WUFC_BC;
1746         if (wol->wolopts & WAKE_MAGIC)
1747                 adapter->wol |= E1000_WUFC_MAG;
1748
1749         device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
1750
1751         return 0;
1752 }
1753
1754 /* toggle LED 4 times per second = 2 "blinks" per second */
1755 #define E1000_ID_INTERVAL       (HZ/4)
1756
1757 /* bit defines for adapter->led_status */
1758 #define E1000_LED_ON            0
1759
1760 static void e1000_led_blink_callback(unsigned long data)
1761 {
1762         struct e1000_adapter *adapter = (struct e1000_adapter *) data;
1763         struct e1000_hw *hw = &adapter->hw;
1764
1765         if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
1766                 e1000_led_off(hw);
1767         else
1768                 e1000_led_on(hw);
1769
1770         mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
1771 }
1772
1773 static int e1000_phys_id(struct net_device *netdev, u32 data)
1774 {
1775         struct e1000_adapter *adapter = netdev_priv(netdev);
1776         struct e1000_hw *hw = &adapter->hw;
1777
1778         if (!data)
1779                 data = INT_MAX;
1780
1781         if (!adapter->blink_timer.function) {
1782                 init_timer(&adapter->blink_timer);
1783                 adapter->blink_timer.function = e1000_led_blink_callback;
1784                 adapter->blink_timer.data = (unsigned long)adapter;
1785         }
1786         e1000_setup_led(hw);
1787         mod_timer(&adapter->blink_timer, jiffies);
1788         msleep_interruptible(data * 1000);
1789         del_timer_sync(&adapter->blink_timer);
1790
1791         e1000_led_off(hw);
1792         clear_bit(E1000_LED_ON, &adapter->led_status);
1793         e1000_cleanup_led(hw);
1794
1795         return 0;
1796 }
1797
1798 static int e1000_get_coalesce(struct net_device *netdev,
1799                               struct ethtool_coalesce *ec)
1800 {
1801         struct e1000_adapter *adapter = netdev_priv(netdev);
1802
1803         if (adapter->hw.mac_type < e1000_82545)
1804                 return -EOPNOTSUPP;
1805
1806         if (adapter->itr_setting <= 3)
1807                 ec->rx_coalesce_usecs = adapter->itr_setting;
1808         else
1809                 ec->rx_coalesce_usecs = 1000000 / adapter->itr_setting;
1810
1811         return 0;
1812 }
1813
1814 static int e1000_set_coalesce(struct net_device *netdev,
1815                               struct ethtool_coalesce *ec)
1816 {
1817         struct e1000_adapter *adapter = netdev_priv(netdev);
1818         struct e1000_hw *hw = &adapter->hw;
1819
1820         if (hw->mac_type < e1000_82545)
1821                 return -EOPNOTSUPP;
1822
1823         if ((ec->rx_coalesce_usecs > E1000_MAX_ITR_USECS) ||
1824             ((ec->rx_coalesce_usecs > 3) &&
1825              (ec->rx_coalesce_usecs < E1000_MIN_ITR_USECS)) ||
1826             (ec->rx_coalesce_usecs == 2))
1827                 return -EINVAL;
1828
1829         if (ec->rx_coalesce_usecs <= 3) {
1830                 adapter->itr = 20000;
1831                 adapter->itr_setting = ec->rx_coalesce_usecs;
1832         } else {
1833                 adapter->itr = (1000000 / ec->rx_coalesce_usecs);
1834                 adapter->itr_setting = adapter->itr & ~3;
1835         }
1836
1837         if (adapter->itr_setting != 0)
1838                 ew32(ITR, 1000000000 / (adapter->itr * 256));
1839         else
1840                 ew32(ITR, 0);
1841
1842         return 0;
1843 }
1844
1845 static int e1000_nway_reset(struct net_device *netdev)
1846 {
1847         struct e1000_adapter *adapter = netdev_priv(netdev);
1848         if (netif_running(netdev))
1849                 e1000_reinit_locked(adapter);
1850         return 0;
1851 }
1852
1853 static void e1000_get_ethtool_stats(struct net_device *netdev,
1854                                     struct ethtool_stats *stats, u64 *data)
1855 {
1856         struct e1000_adapter *adapter = netdev_priv(netdev);
1857         int i;
1858         char *p = NULL;
1859
1860         e1000_update_stats(adapter);
1861         for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1862                 switch (e1000_gstrings_stats[i].type) {
1863                 case NETDEV_STATS:
1864                         p = (char *) netdev +
1865                                         e1000_gstrings_stats[i].stat_offset;
1866                         break;
1867                 case E1000_STATS:
1868                         p = (char *) adapter +
1869                                         e1000_gstrings_stats[i].stat_offset;
1870                         break;
1871                 }
1872
1873                 data[i] = (e1000_gstrings_stats[i].sizeof_stat ==
1874                         sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
1875         }
1876 /*      BUG_ON(i != E1000_STATS_LEN); */
1877 }
1878
1879 static void e1000_get_strings(struct net_device *netdev, u32 stringset,
1880                               u8 *data)
1881 {
1882         u8 *p = data;
1883         int i;
1884
1885         switch (stringset) {
1886         case ETH_SS_TEST:
1887                 memcpy(data, *e1000_gstrings_test,
1888                         sizeof(e1000_gstrings_test));
1889                 break;
1890         case ETH_SS_STATS:
1891                 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++) {
1892                         memcpy(p, e1000_gstrings_stats[i].stat_string,
1893                                ETH_GSTRING_LEN);
1894                         p += ETH_GSTRING_LEN;
1895                 }
1896 /*              BUG_ON(p - data != E1000_STATS_LEN * ETH_GSTRING_LEN); */
1897                 break;
1898         }
1899 }
1900
1901 static const struct ethtool_ops e1000_ethtool_ops = {
1902         .get_settings           = e1000_get_settings,
1903         .set_settings           = e1000_set_settings,
1904         .get_drvinfo            = e1000_get_drvinfo,
1905         .get_regs_len           = e1000_get_regs_len,
1906         .get_regs               = e1000_get_regs,
1907         .get_wol                = e1000_get_wol,
1908         .set_wol                = e1000_set_wol,
1909         .get_msglevel           = e1000_get_msglevel,
1910         .set_msglevel           = e1000_set_msglevel,
1911         .nway_reset             = e1000_nway_reset,
1912         .get_link               = e1000_get_link,
1913         .get_eeprom_len         = e1000_get_eeprom_len,
1914         .get_eeprom             = e1000_get_eeprom,
1915         .set_eeprom             = e1000_set_eeprom,
1916         .get_ringparam          = e1000_get_ringparam,
1917         .set_ringparam          = e1000_set_ringparam,
1918         .get_pauseparam         = e1000_get_pauseparam,
1919         .set_pauseparam         = e1000_set_pauseparam,
1920         .get_rx_csum            = e1000_get_rx_csum,
1921         .set_rx_csum            = e1000_set_rx_csum,
1922         .get_tx_csum            = e1000_get_tx_csum,
1923         .set_tx_csum            = e1000_set_tx_csum,
1924         .set_sg                 = ethtool_op_set_sg,
1925         .set_tso                = e1000_set_tso,
1926         .self_test              = e1000_diag_test,
1927         .get_strings            = e1000_get_strings,
1928         .phys_id                = e1000_phys_id,
1929         .get_ethtool_stats      = e1000_get_ethtool_stats,
1930         .get_sset_count         = e1000_get_sset_count,
1931         .get_coalesce           = e1000_get_coalesce,
1932         .set_coalesce           = e1000_set_coalesce,
1933 };
1934
1935 void e1000_set_ethtool_ops(struct net_device *netdev)
1936 {
1937         SET_ETHTOOL_OPS(netdev, &e1000_ethtool_ops);
1938 }