GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / net / ethernet / intel / e100.c
1 /*******************************************************************************
2
3   Intel PRO/100 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 /*
30  *      e100.c: Intel(R) PRO/100 ethernet driver
31  *
32  *      (Re)written 2003 by scott.feldman@intel.com.  Based loosely on
33  *      original e100 driver, but better described as a munging of
34  *      e100, e1000, eepro100, tg3, 8139cp, and other drivers.
35  *
36  *      References:
37  *              Intel 8255x 10/100 Mbps Ethernet Controller Family,
38  *              Open Source Software Developers Manual,
39  *              http://sourceforge.net/projects/e1000
40  *
41  *
42  *                            Theory of Operation
43  *
44  *      I.   General
45  *
46  *      The driver supports Intel(R) 10/100 Mbps PCI Fast Ethernet
47  *      controller family, which includes the 82557, 82558, 82559, 82550,
48  *      82551, and 82562 devices.  82558 and greater controllers
49  *      integrate the Intel 82555 PHY.  The controllers are used in
50  *      server and client network interface cards, as well as in
51  *      LAN-On-Motherboard (LOM), CardBus, MiniPCI, and ICHx
52  *      configurations.  8255x supports a 32-bit linear addressing
53  *      mode and operates at 33Mhz PCI clock rate.
54  *
55  *      II.  Driver Operation
56  *
57  *      Memory-mapped mode is used exclusively to access the device's
58  *      shared-memory structure, the Control/Status Registers (CSR). All
59  *      setup, configuration, and control of the device, including queuing
60  *      of Tx, Rx, and configuration commands is through the CSR.
61  *      cmd_lock serializes accesses to the CSR command register.  cb_lock
62  *      protects the shared Command Block List (CBL).
63  *
64  *      8255x is highly MII-compliant and all access to the PHY go
65  *      through the Management Data Interface (MDI).  Consequently, the
66  *      driver leverages the mii.c library shared with other MII-compliant
67  *      devices.
68  *
69  *      Big- and Little-Endian byte order as well as 32- and 64-bit
70  *      archs are supported.  Weak-ordered memory and non-cache-coherent
71  *      archs are supported.
72  *
73  *      III. Transmit
74  *
75  *      A Tx skb is mapped and hangs off of a TCB.  TCBs are linked
76  *      together in a fixed-size ring (CBL) thus forming the flexible mode
77  *      memory structure.  A TCB marked with the suspend-bit indicates
78  *      the end of the ring.  The last TCB processed suspends the
79  *      controller, and the controller can be restarted by issue a CU
80  *      resume command to continue from the suspend point, or a CU start
81  *      command to start at a given position in the ring.
82  *
83  *      Non-Tx commands (config, multicast setup, etc) are linked
84  *      into the CBL ring along with Tx commands.  The common structure
85  *      used for both Tx and non-Tx commands is the Command Block (CB).
86  *
87  *      cb_to_use is the next CB to use for queuing a command; cb_to_clean
88  *      is the next CB to check for completion; cb_to_send is the first
89  *      CB to start on in case of a previous failure to resume.  CB clean
90  *      up happens in interrupt context in response to a CU interrupt.
91  *      cbs_avail keeps track of number of free CB resources available.
92  *
93  *      Hardware padding of short packets to minimum packet size is
94  *      enabled.  82557 pads with 7Eh, while the later controllers pad
95  *      with 00h.
96  *
97  *      IV.  Receive
98  *
99  *      The Receive Frame Area (RFA) comprises a ring of Receive Frame
100  *      Descriptors (RFD) + data buffer, thus forming the simplified mode
101  *      memory structure.  Rx skbs are allocated to contain both the RFD
102  *      and the data buffer, but the RFD is pulled off before the skb is
103  *      indicated.  The data buffer is aligned such that encapsulated
104  *      protocol headers are u32-aligned.  Since the RFD is part of the
105  *      mapped shared memory, and completion status is contained within
106  *      the RFD, the RFD must be dma_sync'ed to maintain a consistent
107  *      view from software and hardware.
108  *
109  *      In order to keep updates to the RFD link field from colliding with
110  *      hardware writes to mark packets complete, we use the feature that
111  *      hardware will not write to a size 0 descriptor and mark the previous
112  *      packet as end-of-list (EL).   After updating the link, we remove EL
113  *      and only then restore the size such that hardware may use the
114  *      previous-to-end RFD.
115  *
116  *      Under typical operation, the  receive unit (RU) is start once,
117  *      and the controller happily fills RFDs as frames arrive.  If
118  *      replacement RFDs cannot be allocated, or the RU goes non-active,
119  *      the RU must be restarted.  Frame arrival generates an interrupt,
120  *      and Rx indication and re-allocation happen in the same context,
121  *      therefore no locking is required.  A software-generated interrupt
122  *      is generated from the watchdog to recover from a failed allocation
123  *      scenario where all Rx resources have been indicated and none re-
124  *      placed.
125  *
126  *      V.   Miscellaneous
127  *
128  *      VLAN offloading of tagging, stripping and filtering is not
129  *      supported, but driver will accommodate the extra 4-byte VLAN tag
130  *      for processing by upper layers.  Tx/Rx Checksum offloading is not
131  *      supported.  Tx Scatter/Gather is not supported.  Jumbo Frames is
132  *      not supported (hardware limitation).
133  *
134  *      MagicPacket(tm) WoL support is enabled/disabled via ethtool.
135  *
136  *      Thanks to JC (jchapman@katalix.com) for helping with
137  *      testing/troubleshooting the development driver.
138  *
139  *      TODO:
140  *      o several entry points race with dev->close
141  *      o check for tx-no-resources/stop Q races with tx clean/wake Q
142  *
143  *      FIXES:
144  * 2005/12/02 - Michael O'Donnell <Michael.ODonnell at stratus dot com>
145  *      - Stratus87247: protect MDI control register manipulations
146  * 2009/06/01 - Andreas Mohr <andi at lisas dot de>
147  *      - add clean lowlevel I/O emulation for cards with MII-lacking PHYs
148  */
149
150 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
151
152 #include <linux/hardirq.h>
153 #include <linux/interrupt.h>
154 #include <linux/module.h>
155 #include <linux/moduleparam.h>
156 #include <linux/kernel.h>
157 #include <linux/types.h>
158 #include <linux/sched.h>
159 #include <linux/slab.h>
160 #include <linux/delay.h>
161 #include <linux/init.h>
162 #include <linux/pci.h>
163 #include <linux/dma-mapping.h>
164 #include <linux/dmapool.h>
165 #include <linux/netdevice.h>
166 #include <linux/etherdevice.h>
167 #include <linux/mii.h>
168 #include <linux/if_vlan.h>
169 #include <linux/skbuff.h>
170 #include <linux/ethtool.h>
171 #include <linux/string.h>
172 #include <linux/firmware.h>
173 #include <linux/rtnetlink.h>
174 #include <asm/unaligned.h>
175
176
177 #define DRV_NAME                "e100"
178 #define DRV_EXT                 "-NAPI"
179 #define DRV_VERSION             "3.5.24-k2"DRV_EXT
180 #define DRV_DESCRIPTION         "Intel(R) PRO/100 Network Driver"
181 #define DRV_COPYRIGHT           "Copyright(c) 1999-2006 Intel Corporation"
182
183 #define E100_WATCHDOG_PERIOD    (2 * HZ)
184 #define E100_NAPI_WEIGHT        16
185
186 #define FIRMWARE_D101M          "/*(DEBLOBBED)*/"
187 #define FIRMWARE_D101S          "/*(DEBLOBBED)*/"
188 #define FIRMWARE_D102E          "/*(DEBLOBBED)*/"
189
190 MODULE_DESCRIPTION(DRV_DESCRIPTION);
191 MODULE_AUTHOR(DRV_COPYRIGHT);
192 MODULE_LICENSE("GPL");
193 MODULE_VERSION(DRV_VERSION);
194 /*(DEBLOBBED)*/
195
196 static int debug = 3;
197 static int eeprom_bad_csum_allow = 0;
198 static int use_io = 0;
199 module_param(debug, int, 0);
200 module_param(eeprom_bad_csum_allow, int, 0);
201 module_param(use_io, int, 0);
202 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
203 MODULE_PARM_DESC(eeprom_bad_csum_allow, "Allow bad eeprom checksums");
204 MODULE_PARM_DESC(use_io, "Force use of i/o access mode");
205
206 #define INTEL_8255X_ETHERNET_DEVICE(device_id, ich) {\
207         PCI_VENDOR_ID_INTEL, device_id, PCI_ANY_ID, PCI_ANY_ID, \
208         PCI_CLASS_NETWORK_ETHERNET << 8, 0xFFFF00, ich }
209 static const struct pci_device_id e100_id_table[] = {
210         INTEL_8255X_ETHERNET_DEVICE(0x1029, 0),
211         INTEL_8255X_ETHERNET_DEVICE(0x1030, 0),
212         INTEL_8255X_ETHERNET_DEVICE(0x1031, 3),
213         INTEL_8255X_ETHERNET_DEVICE(0x1032, 3),
214         INTEL_8255X_ETHERNET_DEVICE(0x1033, 3),
215         INTEL_8255X_ETHERNET_DEVICE(0x1034, 3),
216         INTEL_8255X_ETHERNET_DEVICE(0x1038, 3),
217         INTEL_8255X_ETHERNET_DEVICE(0x1039, 4),
218         INTEL_8255X_ETHERNET_DEVICE(0x103A, 4),
219         INTEL_8255X_ETHERNET_DEVICE(0x103B, 4),
220         INTEL_8255X_ETHERNET_DEVICE(0x103C, 4),
221         INTEL_8255X_ETHERNET_DEVICE(0x103D, 4),
222         INTEL_8255X_ETHERNET_DEVICE(0x103E, 4),
223         INTEL_8255X_ETHERNET_DEVICE(0x1050, 5),
224         INTEL_8255X_ETHERNET_DEVICE(0x1051, 5),
225         INTEL_8255X_ETHERNET_DEVICE(0x1052, 5),
226         INTEL_8255X_ETHERNET_DEVICE(0x1053, 5),
227         INTEL_8255X_ETHERNET_DEVICE(0x1054, 5),
228         INTEL_8255X_ETHERNET_DEVICE(0x1055, 5),
229         INTEL_8255X_ETHERNET_DEVICE(0x1056, 5),
230         INTEL_8255X_ETHERNET_DEVICE(0x1057, 5),
231         INTEL_8255X_ETHERNET_DEVICE(0x1059, 0),
232         INTEL_8255X_ETHERNET_DEVICE(0x1064, 6),
233         INTEL_8255X_ETHERNET_DEVICE(0x1065, 6),
234         INTEL_8255X_ETHERNET_DEVICE(0x1066, 6),
235         INTEL_8255X_ETHERNET_DEVICE(0x1067, 6),
236         INTEL_8255X_ETHERNET_DEVICE(0x1068, 6),
237         INTEL_8255X_ETHERNET_DEVICE(0x1069, 6),
238         INTEL_8255X_ETHERNET_DEVICE(0x106A, 6),
239         INTEL_8255X_ETHERNET_DEVICE(0x106B, 6),
240         INTEL_8255X_ETHERNET_DEVICE(0x1091, 7),
241         INTEL_8255X_ETHERNET_DEVICE(0x1092, 7),
242         INTEL_8255X_ETHERNET_DEVICE(0x1093, 7),
243         INTEL_8255X_ETHERNET_DEVICE(0x1094, 7),
244         INTEL_8255X_ETHERNET_DEVICE(0x1095, 7),
245         INTEL_8255X_ETHERNET_DEVICE(0x10fe, 7),
246         INTEL_8255X_ETHERNET_DEVICE(0x1209, 0),
247         INTEL_8255X_ETHERNET_DEVICE(0x1229, 0),
248         INTEL_8255X_ETHERNET_DEVICE(0x2449, 2),
249         INTEL_8255X_ETHERNET_DEVICE(0x2459, 2),
250         INTEL_8255X_ETHERNET_DEVICE(0x245D, 2),
251         INTEL_8255X_ETHERNET_DEVICE(0x27DC, 7),
252         { 0, }
253 };
254 MODULE_DEVICE_TABLE(pci, e100_id_table);
255
256 enum mac {
257         mac_82557_D100_A  = 0,
258         mac_82557_D100_B  = 1,
259         mac_82557_D100_C  = 2,
260         mac_82558_D101_A4 = 4,
261         mac_82558_D101_B0 = 5,
262         mac_82559_D101M   = 8,
263         mac_82559_D101S   = 9,
264         mac_82550_D102    = 12,
265         mac_82550_D102_C  = 13,
266         mac_82551_E       = 14,
267         mac_82551_F       = 15,
268         mac_82551_10      = 16,
269         mac_unknown       = 0xFF,
270 };
271
272 enum phy {
273         phy_100a     = 0x000003E0,
274         phy_100c     = 0x035002A8,
275         phy_82555_tx = 0x015002A8,
276         phy_nsc_tx   = 0x5C002000,
277         phy_82562_et = 0x033002A8,
278         phy_82562_em = 0x032002A8,
279         phy_82562_ek = 0x031002A8,
280         phy_82562_eh = 0x017002A8,
281         phy_82552_v  = 0xd061004d,
282         phy_unknown  = 0xFFFFFFFF,
283 };
284
285 /* CSR (Control/Status Registers) */
286 struct csr {
287         struct {
288                 u8 status;
289                 u8 stat_ack;
290                 u8 cmd_lo;
291                 u8 cmd_hi;
292                 u32 gen_ptr;
293         } scb;
294         u32 port;
295         u16 flash_ctrl;
296         u8 eeprom_ctrl_lo;
297         u8 eeprom_ctrl_hi;
298         u32 mdi_ctrl;
299         u32 rx_dma_count;
300 };
301
302 enum scb_status {
303         rus_no_res       = 0x08,
304         rus_ready        = 0x10,
305         rus_mask         = 0x3C,
306 };
307
308 enum ru_state  {
309         RU_SUSPENDED = 0,
310         RU_RUNNING       = 1,
311         RU_UNINITIALIZED = -1,
312 };
313
314 enum scb_stat_ack {
315         stat_ack_not_ours    = 0x00,
316         stat_ack_sw_gen      = 0x04,
317         stat_ack_rnr         = 0x10,
318         stat_ack_cu_idle     = 0x20,
319         stat_ack_frame_rx    = 0x40,
320         stat_ack_cu_cmd_done = 0x80,
321         stat_ack_not_present = 0xFF,
322         stat_ack_rx = (stat_ack_sw_gen | stat_ack_rnr | stat_ack_frame_rx),
323         stat_ack_tx = (stat_ack_cu_idle | stat_ack_cu_cmd_done),
324 };
325
326 enum scb_cmd_hi {
327         irq_mask_none = 0x00,
328         irq_mask_all  = 0x01,
329         irq_sw_gen    = 0x02,
330 };
331
332 enum scb_cmd_lo {
333         cuc_nop        = 0x00,
334         ruc_start      = 0x01,
335         ruc_load_base  = 0x06,
336         cuc_start      = 0x10,
337         cuc_resume     = 0x20,
338         cuc_dump_addr  = 0x40,
339         cuc_dump_stats = 0x50,
340         cuc_load_base  = 0x60,
341         cuc_dump_reset = 0x70,
342 };
343
344 enum cuc_dump {
345         cuc_dump_complete       = 0x0000A005,
346         cuc_dump_reset_complete = 0x0000A007,
347 };
348
349 enum port {
350         software_reset  = 0x0000,
351         selftest        = 0x0001,
352         selective_reset = 0x0002,
353 };
354
355 enum eeprom_ctrl_lo {
356         eesk = 0x01,
357         eecs = 0x02,
358         eedi = 0x04,
359         eedo = 0x08,
360 };
361
362 enum mdi_ctrl {
363         mdi_write = 0x04000000,
364         mdi_read  = 0x08000000,
365         mdi_ready = 0x10000000,
366 };
367
368 enum eeprom_op {
369         op_write = 0x05,
370         op_read  = 0x06,
371         op_ewds  = 0x10,
372         op_ewen  = 0x13,
373 };
374
375 enum eeprom_offsets {
376         eeprom_cnfg_mdix  = 0x03,
377         eeprom_phy_iface  = 0x06,
378         eeprom_id         = 0x0A,
379         eeprom_config_asf = 0x0D,
380         eeprom_smbus_addr = 0x90,
381 };
382
383 enum eeprom_cnfg_mdix {
384         eeprom_mdix_enabled = 0x0080,
385 };
386
387 enum eeprom_phy_iface {
388         NoSuchPhy = 0,
389         I82553AB,
390         I82553C,
391         I82503,
392         DP83840,
393         S80C240,
394         S80C24,
395         I82555,
396         DP83840A = 10,
397 };
398
399 enum eeprom_id {
400         eeprom_id_wol = 0x0020,
401 };
402
403 enum eeprom_config_asf {
404         eeprom_asf = 0x8000,
405         eeprom_gcl = 0x4000,
406 };
407
408 enum cb_status {
409         cb_complete = 0x8000,
410         cb_ok       = 0x2000,
411 };
412
413 /**
414  * cb_command - Command Block flags
415  * @cb_tx_nc:  0: controller does CRC (normal),  1: CRC from skb memory
416  */
417 enum cb_command {
418         cb_nop    = 0x0000,
419         cb_iaaddr = 0x0001,
420         cb_config = 0x0002,
421         cb_multi  = 0x0003,
422         cb_tx     = 0x0004,
423         cb_ucode  = 0x0005,
424         cb_dump   = 0x0006,
425         cb_tx_sf  = 0x0008,
426         cb_tx_nc  = 0x0010,
427         cb_cid    = 0x1f00,
428         cb_i      = 0x2000,
429         cb_s      = 0x4000,
430         cb_el     = 0x8000,
431 };
432
433 struct rfd {
434         __le16 status;
435         __le16 command;
436         __le32 link;
437         __le32 rbd;
438         __le16 actual_size;
439         __le16 size;
440 };
441
442 struct rx {
443         struct rx *next, *prev;
444         struct sk_buff *skb;
445         dma_addr_t dma_addr;
446 };
447
448 #if defined(__BIG_ENDIAN_BITFIELD)
449 #define X(a,b)  b,a
450 #else
451 #define X(a,b)  a,b
452 #endif
453 struct config {
454 /*0*/   u8 X(byte_count:6, pad0:2);
455 /*1*/   u8 X(X(rx_fifo_limit:4, tx_fifo_limit:3), pad1:1);
456 /*2*/   u8 adaptive_ifs;
457 /*3*/   u8 X(X(X(X(mwi_enable:1, type_enable:1), read_align_enable:1),
458            term_write_cache_line:1), pad3:4);
459 /*4*/   u8 X(rx_dma_max_count:7, pad4:1);
460 /*5*/   u8 X(tx_dma_max_count:7, dma_max_count_enable:1);
461 /*6*/   u8 X(X(X(X(X(X(X(late_scb_update:1, direct_rx_dma:1),
462            tno_intr:1), cna_intr:1), standard_tcb:1), standard_stat_counter:1),
463            rx_save_overruns : 1), rx_save_bad_frames : 1);
464 /*7*/   u8 X(X(X(X(X(rx_discard_short_frames:1, tx_underrun_retry:2),
465            pad7:2), rx_extended_rfd:1), tx_two_frames_in_fifo:1),
466            tx_dynamic_tbd:1);
467 /*8*/   u8 X(X(mii_mode:1, pad8:6), csma_disabled:1);
468 /*9*/   u8 X(X(X(X(X(rx_tcpudp_checksum:1, pad9:3), vlan_arp_tco:1),
469            link_status_wake:1), arp_wake:1), mcmatch_wake:1);
470 /*10*/  u8 X(X(X(pad10:3, no_source_addr_insertion:1), preamble_length:2),
471            loopback:2);
472 /*11*/  u8 X(linear_priority:3, pad11:5);
473 /*12*/  u8 X(X(linear_priority_mode:1, pad12:3), ifs:4);
474 /*13*/  u8 ip_addr_lo;
475 /*14*/  u8 ip_addr_hi;
476 /*15*/  u8 X(X(X(X(X(X(X(promiscuous_mode:1, broadcast_disabled:1),
477            wait_after_win:1), pad15_1:1), ignore_ul_bit:1), crc_16_bit:1),
478            pad15_2:1), crs_or_cdt:1);
479 /*16*/  u8 fc_delay_lo;
480 /*17*/  u8 fc_delay_hi;
481 /*18*/  u8 X(X(X(X(X(rx_stripping:1, tx_padding:1), rx_crc_transfer:1),
482            rx_long_ok:1), fc_priority_threshold:3), pad18:1);
483 /*19*/  u8 X(X(X(X(X(X(X(addr_wake:1, magic_packet_disable:1),
484            fc_disable:1), fc_restop:1), fc_restart:1), fc_reject:1),
485            full_duplex_force:1), full_duplex_pin:1);
486 /*20*/  u8 X(X(X(pad20_1:5, fc_priority_location:1), multi_ia:1), pad20_2:1);
487 /*21*/  u8 X(X(pad21_1:3, multicast_all:1), pad21_2:4);
488 /*22*/  u8 X(X(rx_d102_mode:1, rx_vlan_drop:1), pad22:6);
489         u8 pad_d102[9];
490 };
491
492 #define E100_MAX_MULTICAST_ADDRS        64
493 struct multi {
494         __le16 count;
495         u8 addr[E100_MAX_MULTICAST_ADDRS * ETH_ALEN + 2/*pad*/];
496 };
497
498 /* Important: keep total struct u32-aligned */
499 #define UCODE_SIZE                      134
500 struct cb {
501         __le16 status;
502         __le16 command;
503         __le32 link;
504         union {
505                 u8 iaaddr[ETH_ALEN];
506                 __le32 ucode[UCODE_SIZE];
507                 struct config config;
508                 struct multi multi;
509                 struct {
510                         u32 tbd_array;
511                         u16 tcb_byte_count;
512                         u8 threshold;
513                         u8 tbd_count;
514                         struct {
515                                 __le32 buf_addr;
516                                 __le16 size;
517                                 u16 eol;
518                         } tbd;
519                 } tcb;
520                 __le32 dump_buffer_addr;
521         } u;
522         struct cb *next, *prev;
523         dma_addr_t dma_addr;
524         struct sk_buff *skb;
525 };
526
527 enum loopback {
528         lb_none = 0, lb_mac = 1, lb_phy = 3,
529 };
530
531 struct stats {
532         __le32 tx_good_frames, tx_max_collisions, tx_late_collisions,
533                 tx_underruns, tx_lost_crs, tx_deferred, tx_single_collisions,
534                 tx_multiple_collisions, tx_total_collisions;
535         __le32 rx_good_frames, rx_crc_errors, rx_alignment_errors,
536                 rx_resource_errors, rx_overrun_errors, rx_cdt_errors,
537                 rx_short_frame_errors;
538         __le32 fc_xmt_pause, fc_rcv_pause, fc_rcv_unsupported;
539         __le16 xmt_tco_frames, rcv_tco_frames;
540         __le32 complete;
541 };
542
543 struct mem {
544         struct {
545                 u32 signature;
546                 u32 result;
547         } selftest;
548         struct stats stats;
549         u8 dump_buf[596];
550 };
551
552 struct param_range {
553         u32 min;
554         u32 max;
555         u32 count;
556 };
557
558 struct params {
559         struct param_range rfds;
560         struct param_range cbs;
561 };
562
563 struct nic {
564         /* Begin: frequently used values: keep adjacent for cache effect */
565         u32 msg_enable                          ____cacheline_aligned;
566         struct net_device *netdev;
567         struct pci_dev *pdev;
568         u16 (*mdio_ctrl)(struct nic *nic, u32 addr, u32 dir, u32 reg, u16 data);
569
570         struct rx *rxs                          ____cacheline_aligned;
571         struct rx *rx_to_use;
572         struct rx *rx_to_clean;
573         struct rfd blank_rfd;
574         enum ru_state ru_running;
575
576         spinlock_t cb_lock                      ____cacheline_aligned;
577         spinlock_t cmd_lock;
578         struct csr __iomem *csr;
579         enum scb_cmd_lo cuc_cmd;
580         unsigned int cbs_avail;
581         struct napi_struct napi;
582         struct cb *cbs;
583         struct cb *cb_to_use;
584         struct cb *cb_to_send;
585         struct cb *cb_to_clean;
586         __le16 tx_command;
587         /* End: frequently used values: keep adjacent for cache effect */
588
589         enum {
590                 ich                = (1 << 0),
591                 promiscuous        = (1 << 1),
592                 multicast_all      = (1 << 2),
593                 wol_magic          = (1 << 3),
594                 ich_10h_workaround = (1 << 4),
595         } flags                                 ____cacheline_aligned;
596
597         enum mac mac;
598         enum phy phy;
599         struct params params;
600         struct timer_list watchdog;
601         struct mii_if_info mii;
602         struct work_struct tx_timeout_task;
603         enum loopback loopback;
604
605         struct mem *mem;
606         dma_addr_t dma_addr;
607
608         struct pci_pool *cbs_pool;
609         dma_addr_t cbs_dma_addr;
610         u8 adaptive_ifs;
611         u8 tx_threshold;
612         u32 tx_frames;
613         u32 tx_collisions;
614         u32 tx_deferred;
615         u32 tx_single_collisions;
616         u32 tx_multiple_collisions;
617         u32 tx_fc_pause;
618         u32 tx_tco_frames;
619
620         u32 rx_fc_pause;
621         u32 rx_fc_unsupported;
622         u32 rx_tco_frames;
623         u32 rx_short_frame_errors;
624         u32 rx_over_length_errors;
625
626         u16 eeprom_wc;
627         __le16 eeprom[256];
628         spinlock_t mdio_lock;
629         const struct firmware *fw;
630 };
631
632 static inline void e100_write_flush(struct nic *nic)
633 {
634         /* Flush previous PCI writes through intermediate bridges
635          * by doing a benign read */
636         (void)ioread8(&nic->csr->scb.status);
637 }
638
639 static void e100_enable_irq(struct nic *nic)
640 {
641         unsigned long flags;
642
643         spin_lock_irqsave(&nic->cmd_lock, flags);
644         iowrite8(irq_mask_none, &nic->csr->scb.cmd_hi);
645         e100_write_flush(nic);
646         spin_unlock_irqrestore(&nic->cmd_lock, flags);
647 }
648
649 static void e100_disable_irq(struct nic *nic)
650 {
651         unsigned long flags;
652
653         spin_lock_irqsave(&nic->cmd_lock, flags);
654         iowrite8(irq_mask_all, &nic->csr->scb.cmd_hi);
655         e100_write_flush(nic);
656         spin_unlock_irqrestore(&nic->cmd_lock, flags);
657 }
658
659 static void e100_hw_reset(struct nic *nic)
660 {
661         /* Put CU and RU into idle with a selective reset to get
662          * device off of PCI bus */
663         iowrite32(selective_reset, &nic->csr->port);
664         e100_write_flush(nic); udelay(20);
665
666         /* Now fully reset device */
667         iowrite32(software_reset, &nic->csr->port);
668         e100_write_flush(nic); udelay(20);
669
670         /* Mask off our interrupt line - it's unmasked after reset */
671         e100_disable_irq(nic);
672 }
673
674 static int e100_self_test(struct nic *nic)
675 {
676         u32 dma_addr = nic->dma_addr + offsetof(struct mem, selftest);
677
678         /* Passing the self-test is a pretty good indication
679          * that the device can DMA to/from host memory */
680
681         nic->mem->selftest.signature = 0;
682         nic->mem->selftest.result = 0xFFFFFFFF;
683
684         iowrite32(selftest | dma_addr, &nic->csr->port);
685         e100_write_flush(nic);
686         /* Wait 10 msec for self-test to complete */
687         msleep(10);
688
689         /* Interrupts are enabled after self-test */
690         e100_disable_irq(nic);
691
692         /* Check results of self-test */
693         if (nic->mem->selftest.result != 0) {
694                 netif_err(nic, hw, nic->netdev,
695                           "Self-test failed: result=0x%08X\n",
696                           nic->mem->selftest.result);
697                 return -ETIMEDOUT;
698         }
699         if (nic->mem->selftest.signature == 0) {
700                 netif_err(nic, hw, nic->netdev, "Self-test failed: timed out\n");
701                 return -ETIMEDOUT;
702         }
703
704         return 0;
705 }
706
707 static void e100_eeprom_write(struct nic *nic, u16 addr_len, u16 addr, __le16 data)
708 {
709         u32 cmd_addr_data[3];
710         u8 ctrl;
711         int i, j;
712
713         /* Three cmds: write/erase enable, write data, write/erase disable */
714         cmd_addr_data[0] = op_ewen << (addr_len - 2);
715         cmd_addr_data[1] = (((op_write << addr_len) | addr) << 16) |
716                 le16_to_cpu(data);
717         cmd_addr_data[2] = op_ewds << (addr_len - 2);
718
719         /* Bit-bang cmds to write word to eeprom */
720         for (j = 0; j < 3; j++) {
721
722                 /* Chip select */
723                 iowrite8(eecs | eesk, &nic->csr->eeprom_ctrl_lo);
724                 e100_write_flush(nic); udelay(4);
725
726                 for (i = 31; i >= 0; i--) {
727                         ctrl = (cmd_addr_data[j] & (1 << i)) ?
728                                 eecs | eedi : eecs;
729                         iowrite8(ctrl, &nic->csr->eeprom_ctrl_lo);
730                         e100_write_flush(nic); udelay(4);
731
732                         iowrite8(ctrl | eesk, &nic->csr->eeprom_ctrl_lo);
733                         e100_write_flush(nic); udelay(4);
734                 }
735                 /* Wait 10 msec for cmd to complete */
736                 msleep(10);
737
738                 /* Chip deselect */
739                 iowrite8(0, &nic->csr->eeprom_ctrl_lo);
740                 e100_write_flush(nic); udelay(4);
741         }
742 };
743
744 /* General technique stolen from the eepro100 driver - very clever */
745 static __le16 e100_eeprom_read(struct nic *nic, u16 *addr_len, u16 addr)
746 {
747         u32 cmd_addr_data;
748         u16 data = 0;
749         u8 ctrl;
750         int i;
751
752         cmd_addr_data = ((op_read << *addr_len) | addr) << 16;
753
754         /* Chip select */
755         iowrite8(eecs | eesk, &nic->csr->eeprom_ctrl_lo);
756         e100_write_flush(nic); udelay(4);
757
758         /* Bit-bang to read word from eeprom */
759         for (i = 31; i >= 0; i--) {
760                 ctrl = (cmd_addr_data & (1 << i)) ? eecs | eedi : eecs;
761                 iowrite8(ctrl, &nic->csr->eeprom_ctrl_lo);
762                 e100_write_flush(nic); udelay(4);
763
764                 iowrite8(ctrl | eesk, &nic->csr->eeprom_ctrl_lo);
765                 e100_write_flush(nic); udelay(4);
766
767                 /* Eeprom drives a dummy zero to EEDO after receiving
768                  * complete address.  Use this to adjust addr_len. */
769                 ctrl = ioread8(&nic->csr->eeprom_ctrl_lo);
770                 if (!(ctrl & eedo) && i > 16) {
771                         *addr_len -= (i - 16);
772                         i = 17;
773                 }
774
775                 data = (data << 1) | (ctrl & eedo ? 1 : 0);
776         }
777
778         /* Chip deselect */
779         iowrite8(0, &nic->csr->eeprom_ctrl_lo);
780         e100_write_flush(nic); udelay(4);
781
782         return cpu_to_le16(data);
783 };
784
785 /* Load entire EEPROM image into driver cache and validate checksum */
786 static int e100_eeprom_load(struct nic *nic)
787 {
788         u16 addr, addr_len = 8, checksum = 0;
789
790         /* Try reading with an 8-bit addr len to discover actual addr len */
791         e100_eeprom_read(nic, &addr_len, 0);
792         nic->eeprom_wc = 1 << addr_len;
793
794         for (addr = 0; addr < nic->eeprom_wc; addr++) {
795                 nic->eeprom[addr] = e100_eeprom_read(nic, &addr_len, addr);
796                 if (addr < nic->eeprom_wc - 1)
797                         checksum += le16_to_cpu(nic->eeprom[addr]);
798         }
799
800         /* The checksum, stored in the last word, is calculated such that
801          * the sum of words should be 0xBABA */
802         if (cpu_to_le16(0xBABA - checksum) != nic->eeprom[nic->eeprom_wc - 1]) {
803                 netif_err(nic, probe, nic->netdev, "EEPROM corrupted\n");
804                 if (!eeprom_bad_csum_allow)
805                         return -EAGAIN;
806         }
807
808         return 0;
809 }
810
811 /* Save (portion of) driver EEPROM cache to device and update checksum */
812 static int e100_eeprom_save(struct nic *nic, u16 start, u16 count)
813 {
814         u16 addr, addr_len = 8, checksum = 0;
815
816         /* Try reading with an 8-bit addr len to discover actual addr len */
817         e100_eeprom_read(nic, &addr_len, 0);
818         nic->eeprom_wc = 1 << addr_len;
819
820         if (start + count >= nic->eeprom_wc)
821                 return -EINVAL;
822
823         for (addr = start; addr < start + count; addr++)
824                 e100_eeprom_write(nic, addr_len, addr, nic->eeprom[addr]);
825
826         /* The checksum, stored in the last word, is calculated such that
827          * the sum of words should be 0xBABA */
828         for (addr = 0; addr < nic->eeprom_wc - 1; addr++)
829                 checksum += le16_to_cpu(nic->eeprom[addr]);
830         nic->eeprom[nic->eeprom_wc - 1] = cpu_to_le16(0xBABA - checksum);
831         e100_eeprom_write(nic, addr_len, nic->eeprom_wc - 1,
832                 nic->eeprom[nic->eeprom_wc - 1]);
833
834         return 0;
835 }
836
837 #define E100_WAIT_SCB_TIMEOUT 20000 /* we might have to wait 100ms!!! */
838 #define E100_WAIT_SCB_FAST 20       /* delay like the old code */
839 static int e100_exec_cmd(struct nic *nic, u8 cmd, dma_addr_t dma_addr)
840 {
841         unsigned long flags;
842         unsigned int i;
843         int err = 0;
844
845         spin_lock_irqsave(&nic->cmd_lock, flags);
846
847         /* Previous command is accepted when SCB clears */
848         for (i = 0; i < E100_WAIT_SCB_TIMEOUT; i++) {
849                 if (likely(!ioread8(&nic->csr->scb.cmd_lo)))
850                         break;
851                 cpu_relax();
852                 if (unlikely(i > E100_WAIT_SCB_FAST))
853                         udelay(5);
854         }
855         if (unlikely(i == E100_WAIT_SCB_TIMEOUT)) {
856                 err = -EAGAIN;
857                 goto err_unlock;
858         }
859
860         if (unlikely(cmd != cuc_resume))
861                 iowrite32(dma_addr, &nic->csr->scb.gen_ptr);
862         iowrite8(cmd, &nic->csr->scb.cmd_lo);
863
864 err_unlock:
865         spin_unlock_irqrestore(&nic->cmd_lock, flags);
866
867         return err;
868 }
869
870 static int e100_exec_cb(struct nic *nic, struct sk_buff *skb,
871         int (*cb_prepare)(struct nic *, struct cb *, struct sk_buff *))
872 {
873         struct cb *cb;
874         unsigned long flags;
875         int err;
876
877         spin_lock_irqsave(&nic->cb_lock, flags);
878
879         if (unlikely(!nic->cbs_avail)) {
880                 err = -ENOMEM;
881                 goto err_unlock;
882         }
883
884         cb = nic->cb_to_use;
885         nic->cb_to_use = cb->next;
886         nic->cbs_avail--;
887         cb->skb = skb;
888
889         err = cb_prepare(nic, cb, skb);
890         if (err)
891                 goto err_unlock;
892
893         if (unlikely(!nic->cbs_avail))
894                 err = -ENOSPC;
895
896
897         /* Order is important otherwise we'll be in a race with h/w:
898          * set S-bit in current first, then clear S-bit in previous. */
899         cb->command |= cpu_to_le16(cb_s);
900         dma_wmb();
901         cb->prev->command &= cpu_to_le16(~cb_s);
902
903         while (nic->cb_to_send != nic->cb_to_use) {
904                 if (unlikely(e100_exec_cmd(nic, nic->cuc_cmd,
905                         nic->cb_to_send->dma_addr))) {
906                         /* Ok, here's where things get sticky.  It's
907                          * possible that we can't schedule the command
908                          * because the controller is too busy, so
909                          * let's just queue the command and try again
910                          * when another command is scheduled. */
911                         if (err == -ENOSPC) {
912                                 //request a reset
913                                 schedule_work(&nic->tx_timeout_task);
914                         }
915                         break;
916                 } else {
917                         nic->cuc_cmd = cuc_resume;
918                         nic->cb_to_send = nic->cb_to_send->next;
919                 }
920         }
921
922 err_unlock:
923         spin_unlock_irqrestore(&nic->cb_lock, flags);
924
925         return err;
926 }
927
928 static int mdio_read(struct net_device *netdev, int addr, int reg)
929 {
930         struct nic *nic = netdev_priv(netdev);
931         return nic->mdio_ctrl(nic, addr, mdi_read, reg, 0);
932 }
933
934 static void mdio_write(struct net_device *netdev, int addr, int reg, int data)
935 {
936         struct nic *nic = netdev_priv(netdev);
937
938         nic->mdio_ctrl(nic, addr, mdi_write, reg, data);
939 }
940
941 /* the standard mdio_ctrl() function for usual MII-compliant hardware */
942 static u16 mdio_ctrl_hw(struct nic *nic, u32 addr, u32 dir, u32 reg, u16 data)
943 {
944         u32 data_out = 0;
945         unsigned int i;
946         unsigned long flags;
947
948
949         /*
950          * Stratus87247: we shouldn't be writing the MDI control
951          * register until the Ready bit shows True.  Also, since
952          * manipulation of the MDI control registers is a multi-step
953          * procedure it should be done under lock.
954          */
955         spin_lock_irqsave(&nic->mdio_lock, flags);
956         for (i = 100; i; --i) {
957                 if (ioread32(&nic->csr->mdi_ctrl) & mdi_ready)
958                         break;
959                 udelay(20);
960         }
961         if (unlikely(!i)) {
962                 netdev_err(nic->netdev, "e100.mdio_ctrl won't go Ready\n");
963                 spin_unlock_irqrestore(&nic->mdio_lock, flags);
964                 return 0;               /* No way to indicate timeout error */
965         }
966         iowrite32((reg << 16) | (addr << 21) | dir | data, &nic->csr->mdi_ctrl);
967
968         for (i = 0; i < 100; i++) {
969                 udelay(20);
970                 if ((data_out = ioread32(&nic->csr->mdi_ctrl)) & mdi_ready)
971                         break;
972         }
973         spin_unlock_irqrestore(&nic->mdio_lock, flags);
974         netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
975                      "%s:addr=%d, reg=%d, data_in=0x%04X, data_out=0x%04X\n",
976                      dir == mdi_read ? "READ" : "WRITE",
977                      addr, reg, data, data_out);
978         return (u16)data_out;
979 }
980
981 /* slightly tweaked mdio_ctrl() function for phy_82552_v specifics */
982 static u16 mdio_ctrl_phy_82552_v(struct nic *nic,
983                                  u32 addr,
984                                  u32 dir,
985                                  u32 reg,
986                                  u16 data)
987 {
988         if ((reg == MII_BMCR) && (dir == mdi_write)) {
989                 if (data & (BMCR_ANRESTART | BMCR_ANENABLE)) {
990                         u16 advert = mdio_read(nic->netdev, nic->mii.phy_id,
991                                                         MII_ADVERTISE);
992
993                         /*
994                          * Workaround Si issue where sometimes the part will not
995                          * autoneg to 100Mbps even when advertised.
996                          */
997                         if (advert & ADVERTISE_100FULL)
998                                 data |= BMCR_SPEED100 | BMCR_FULLDPLX;
999                         else if (advert & ADVERTISE_100HALF)
1000                                 data |= BMCR_SPEED100;
1001                 }
1002         }
1003         return mdio_ctrl_hw(nic, addr, dir, reg, data);
1004 }
1005
1006 /* Fully software-emulated mdio_ctrl() function for cards without
1007  * MII-compliant PHYs.
1008  * For now, this is mainly geared towards 80c24 support; in case of further
1009  * requirements for other types (i82503, ...?) either extend this mechanism
1010  * or split it, whichever is cleaner.
1011  */
1012 static u16 mdio_ctrl_phy_mii_emulated(struct nic *nic,
1013                                       u32 addr,
1014                                       u32 dir,
1015                                       u32 reg,
1016                                       u16 data)
1017 {
1018         /* might need to allocate a netdev_priv'ed register array eventually
1019          * to be able to record state changes, but for now
1020          * some fully hardcoded register handling ought to be ok I guess. */
1021
1022         if (dir == mdi_read) {
1023                 switch (reg) {
1024                 case MII_BMCR:
1025                         /* Auto-negotiation, right? */
1026                         return  BMCR_ANENABLE |
1027                                 BMCR_FULLDPLX;
1028                 case MII_BMSR:
1029                         return  BMSR_LSTATUS /* for mii_link_ok() */ |
1030                                 BMSR_ANEGCAPABLE |
1031                                 BMSR_10FULL;
1032                 case MII_ADVERTISE:
1033                         /* 80c24 is a "combo card" PHY, right? */
1034                         return  ADVERTISE_10HALF |
1035                                 ADVERTISE_10FULL;
1036                 default:
1037                         netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
1038                                      "%s:addr=%d, reg=%d, data=0x%04X: unimplemented emulation!\n",
1039                                      dir == mdi_read ? "READ" : "WRITE",
1040                                      addr, reg, data);
1041                         return 0xFFFF;
1042                 }
1043         } else {
1044                 switch (reg) {
1045                 default:
1046                         netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
1047                                      "%s:addr=%d, reg=%d, data=0x%04X: unimplemented emulation!\n",
1048                                      dir == mdi_read ? "READ" : "WRITE",
1049                                      addr, reg, data);
1050                         return 0xFFFF;
1051                 }
1052         }
1053 }
1054 static inline int e100_phy_supports_mii(struct nic *nic)
1055 {
1056         /* for now, just check it by comparing whether we
1057            are using MII software emulation.
1058         */
1059         return (nic->mdio_ctrl != mdio_ctrl_phy_mii_emulated);
1060 }
1061
1062 static void e100_get_defaults(struct nic *nic)
1063 {
1064         struct param_range rfds = { .min = 16, .max = 256, .count = 256 };
1065         struct param_range cbs  = { .min = 64, .max = 256, .count = 128 };
1066
1067         /* MAC type is encoded as rev ID; exception: ICH is treated as 82559 */
1068         nic->mac = (nic->flags & ich) ? mac_82559_D101M : nic->pdev->revision;
1069         if (nic->mac == mac_unknown)
1070                 nic->mac = mac_82557_D100_A;
1071
1072         nic->params.rfds = rfds;
1073         nic->params.cbs = cbs;
1074
1075         /* Quadwords to DMA into FIFO before starting frame transmit */
1076         nic->tx_threshold = 0xE0;
1077
1078         /* no interrupt for every tx completion, delay = 256us if not 557 */
1079         nic->tx_command = cpu_to_le16(cb_tx | cb_tx_sf |
1080                 ((nic->mac >= mac_82558_D101_A4) ? cb_cid : cb_i));
1081
1082         /* Template for a freshly allocated RFD */
1083         nic->blank_rfd.command = 0;
1084         nic->blank_rfd.rbd = cpu_to_le32(0xFFFFFFFF);
1085         nic->blank_rfd.size = cpu_to_le16(VLAN_ETH_FRAME_LEN + ETH_FCS_LEN);
1086
1087         /* MII setup */
1088         nic->mii.phy_id_mask = 0x1F;
1089         nic->mii.reg_num_mask = 0x1F;
1090         nic->mii.dev = nic->netdev;
1091         nic->mii.mdio_read = mdio_read;
1092         nic->mii.mdio_write = mdio_write;
1093 }
1094
1095 static int e100_configure(struct nic *nic, struct cb *cb, struct sk_buff *skb)
1096 {
1097         struct config *config = &cb->u.config;
1098         u8 *c = (u8 *)config;
1099         struct net_device *netdev = nic->netdev;
1100
1101         cb->command = cpu_to_le16(cb_config);
1102
1103         memset(config, 0, sizeof(struct config));
1104
1105         config->byte_count = 0x16;              /* bytes in this struct */
1106         config->rx_fifo_limit = 0x8;            /* bytes in FIFO before DMA */
1107         config->direct_rx_dma = 0x1;            /* reserved */
1108         config->standard_tcb = 0x1;             /* 1=standard, 0=extended */
1109         config->standard_stat_counter = 0x1;    /* 1=standard, 0=extended */
1110         config->rx_discard_short_frames = 0x1;  /* 1=discard, 0=pass */
1111         config->tx_underrun_retry = 0x3;        /* # of underrun retries */
1112         if (e100_phy_supports_mii(nic))
1113                 config->mii_mode = 1;           /* 1=MII mode, 0=i82503 mode */
1114         config->pad10 = 0x6;
1115         config->no_source_addr_insertion = 0x1; /* 1=no, 0=yes */
1116         config->preamble_length = 0x2;          /* 0=1, 1=3, 2=7, 3=15 bytes */
1117         config->ifs = 0x6;                      /* x16 = inter frame spacing */
1118         config->ip_addr_hi = 0xF2;              /* ARP IP filter - not used */
1119         config->pad15_1 = 0x1;
1120         config->pad15_2 = 0x1;
1121         config->crs_or_cdt = 0x0;               /* 0=CRS only, 1=CRS or CDT */
1122         config->fc_delay_hi = 0x40;             /* time delay for fc frame */
1123         config->tx_padding = 0x1;               /* 1=pad short frames */
1124         config->fc_priority_threshold = 0x7;    /* 7=priority fc disabled */
1125         config->pad18 = 0x1;
1126         config->full_duplex_pin = 0x1;          /* 1=examine FDX# pin */
1127         config->pad20_1 = 0x1F;
1128         config->fc_priority_location = 0x1;     /* 1=byte#31, 0=byte#19 */
1129         config->pad21_1 = 0x5;
1130
1131         config->adaptive_ifs = nic->adaptive_ifs;
1132         config->loopback = nic->loopback;
1133
1134         if (nic->mii.force_media && nic->mii.full_duplex)
1135                 config->full_duplex_force = 0x1;        /* 1=force, 0=auto */
1136
1137         if (nic->flags & promiscuous || nic->loopback) {
1138                 config->rx_save_bad_frames = 0x1;       /* 1=save, 0=discard */
1139                 config->rx_discard_short_frames = 0x0;  /* 1=discard, 0=save */
1140                 config->promiscuous_mode = 0x1;         /* 1=on, 0=off */
1141         }
1142
1143         if (unlikely(netdev->features & NETIF_F_RXFCS))
1144                 config->rx_crc_transfer = 0x1;  /* 1=save, 0=discard */
1145
1146         if (nic->flags & multicast_all)
1147                 config->multicast_all = 0x1;            /* 1=accept, 0=no */
1148
1149         /* disable WoL when up */
1150         if (netif_running(nic->netdev) || !(nic->flags & wol_magic))
1151                 config->magic_packet_disable = 0x1;     /* 1=off, 0=on */
1152
1153         if (nic->mac >= mac_82558_D101_A4) {
1154                 config->fc_disable = 0x1;       /* 1=Tx fc off, 0=Tx fc on */
1155                 config->mwi_enable = 0x1;       /* 1=enable, 0=disable */
1156                 config->standard_tcb = 0x0;     /* 1=standard, 0=extended */
1157                 config->rx_long_ok = 0x1;       /* 1=VLANs ok, 0=standard */
1158                 if (nic->mac >= mac_82559_D101M) {
1159                         config->tno_intr = 0x1;         /* TCO stats enable */
1160                         /* Enable TCO in extended config */
1161                         if (nic->mac >= mac_82551_10) {
1162                                 config->byte_count = 0x20; /* extended bytes */
1163                                 config->rx_d102_mode = 0x1; /* GMRC for TCO */
1164                         }
1165                 } else {
1166                         config->standard_stat_counter = 0x0;
1167                 }
1168         }
1169
1170         if (netdev->features & NETIF_F_RXALL) {
1171                 config->rx_save_overruns = 0x1; /* 1=save, 0=discard */
1172                 config->rx_save_bad_frames = 0x1;       /* 1=save, 0=discard */
1173                 config->rx_discard_short_frames = 0x0;  /* 1=discard, 0=save */
1174         }
1175
1176         netif_printk(nic, hw, KERN_DEBUG, nic->netdev, "[00-07]=%8ph\n",
1177                      c + 0);
1178         netif_printk(nic, hw, KERN_DEBUG, nic->netdev, "[08-15]=%8ph\n",
1179                      c + 8);
1180         netif_printk(nic, hw, KERN_DEBUG, nic->netdev, "[16-23]=%8ph\n",
1181                      c + 16);
1182         return 0;
1183 }
1184
1185 /*************************************************************************
1186 *  CPUSaver parameters
1187 *
1188 *  All CPUSaver parameters are 16-bit literals that are part of a
1189 *  "move immediate value" instruction.  By changing the value of
1190 *  the literal in the instruction before the code is loaded, the
1191 *  driver can change the algorithm.
1192 *
1193 *  INTDELAY - This loads the dead-man timer with its initial value.
1194 *    When this timer expires the interrupt is asserted, and the
1195 *    timer is reset each time a new packet is received.  (see
1196 *    BUNDLEMAX below to set the limit on number of chained packets)
1197 *    The current default is 0x600 or 1536.  Experiments show that
1198 *    the value should probably stay within the 0x200 - 0x1000.
1199 *
1200 *  BUNDLEMAX -
1201 *    This sets the maximum number of frames that will be bundled.  In
1202 *    some situations, such as the TCP windowing algorithm, it may be
1203 *    better to limit the growth of the bundle size than let it go as
1204 *    high as it can, because that could cause too much added latency.
1205 *    The default is six, because this is the number of packets in the
1206 *    default TCP window size.  A value of 1 would make CPUSaver indicate
1207 *    an interrupt for every frame received.  If you do not want to put
1208 *    a limit on the bundle size, set this value to xFFFF.
1209 *
1210 *  BUNDLESMALL -
1211 *    This contains a bit-mask describing the minimum size frame that
1212 *    will be bundled.  The default masks the lower 7 bits, which means
1213 *    that any frame less than 128 bytes in length will not be bundled,
1214 *    but will instead immediately generate an interrupt.  This does
1215 *    not affect the current bundle in any way.  Any frame that is 128
1216 *    bytes or large will be bundled normally.  This feature is meant
1217 *    to provide immediate indication of ACK frames in a TCP environment.
1218 *    Customers were seeing poor performance when a machine with CPUSaver
1219 *    enabled was sending but not receiving.  The delay introduced when
1220 *    the ACKs were received was enough to reduce total throughput, because
1221 *    the sender would sit idle until the ACK was finally seen.
1222 *
1223 *    The current default is 0xFF80, which masks out the lower 7 bits.
1224 *    This means that any frame which is x7F (127) bytes or smaller
1225 *    will cause an immediate interrupt.  Because this value must be a
1226 *    bit mask, there are only a few valid values that can be used.  To
1227 *    turn this feature off, the driver can write the value xFFFF to the
1228 *    lower word of this instruction (in the same way that the other
1229 *    parameters are used).  Likewise, a value of 0xF800 (2047) would
1230 *    cause an interrupt to be generated for every frame, because all
1231 *    standard Ethernet frames are <= 2047 bytes in length.
1232 *************************************************************************/
1233
1234 /* if you wish to disable the ucode functionality, while maintaining the
1235  * workarounds it provides, set the following defines to:
1236  * BUNDLESMALL 0
1237  * BUNDLEMAX 1
1238  * INTDELAY 1
1239  */
1240 #define BUNDLESMALL 1
1241 #define BUNDLEMAX (u16)6
1242 #define INTDELAY (u16)1536 /* 0x600 */
1243
1244 /* Initialize firmware */
1245 static const struct firmware *e100_request_firmware(struct nic *nic)
1246 {
1247         const char *fw_name;
1248         const struct firmware *fw = nic->fw;
1249         u8 timer, bundle, min_size;
1250         int err = 0;
1251         bool required = false;
1252
1253         /* do not load u-code for ICH devices */
1254         if (nic->flags & ich)
1255                 return NULL;
1256
1257         /* Search for ucode match against h/w revision
1258          *
1259          * Based on comments in the source code for the FreeBSD fxp
1260          * driver, the FIRMWARE_D102E ucode includes both CPUSaver and
1261          *
1262          *    "fixes for bugs in the B-step hardware (specifically, bugs
1263          *     with Inline Receive)."
1264          *
1265          * So we must fail if it cannot be loaded.
1266          *
1267          * The other microcode files are only required for the optional
1268          * CPUSaver feature.  Nice to have, but no reason to fail.
1269          */
1270         if (nic->mac == mac_82559_D101M) {
1271                 fw_name = FIRMWARE_D101M;
1272         } else if (nic->mac == mac_82559_D101S) {
1273                 fw_name = FIRMWARE_D101S;
1274         } else if (nic->mac == mac_82551_F || nic->mac == mac_82551_10) {
1275                 fw_name = FIRMWARE_D102E;
1276                 required = true;
1277         } else { /* No ucode on other devices */
1278                 return NULL;
1279         }
1280
1281         /* If the firmware has not previously been loaded, request a pointer
1282          * to it. If it was previously loaded, we are reinitializing the
1283          * adapter, possibly in a resume from hibernate, in which case
1284          * reject_firmware() cannot be used.
1285          */
1286         if (!fw)
1287                 err = reject_firmware(&fw, fw_name, &nic->pdev->dev);
1288
1289         if (err) {
1290                 if (required) {
1291                         netif_err(nic, probe, nic->netdev,
1292                                   "Failed to load firmware \"%s\": %d\n",
1293                                   fw_name, err);
1294                         netif_err(nic, probe, nic->netdev, "Proceeding without firmware\n");
1295                         return NULL;
1296                 } else {
1297                         netif_info(nic, probe, nic->netdev,
1298                                    "CPUSaver disabled. Needs \"%s\": %d\n",
1299                                    fw_name, err);
1300                         return NULL;
1301                 }
1302         }
1303
1304         /* Firmware should be precisely UCODE_SIZE (words) plus three bytes
1305            indicating the offsets for BUNDLESMALL, BUNDLEMAX, INTDELAY */
1306         if (fw->size != UCODE_SIZE * 4 + 3) {
1307                 netif_err(nic, probe, nic->netdev,
1308                           "Firmware \"%s\" has wrong size %zu\n",
1309                           fw_name, fw->size);
1310                 release_firmware(fw);
1311                 return ERR_PTR(-EINVAL);
1312         }
1313
1314         /* Read timer, bundle and min_size from end of firmware blob */
1315         timer = fw->data[UCODE_SIZE * 4];
1316         bundle = fw->data[UCODE_SIZE * 4 + 1];
1317         min_size = fw->data[UCODE_SIZE * 4 + 2];
1318
1319         if (timer >= UCODE_SIZE || bundle >= UCODE_SIZE ||
1320             min_size >= UCODE_SIZE) {
1321                 netif_err(nic, probe, nic->netdev,
1322                           "\"%s\" has bogus offset values (0x%x,0x%x,0x%x)\n",
1323                           fw_name, timer, bundle, min_size);
1324                 release_firmware(fw);
1325                 return ERR_PTR(-EINVAL);
1326         }
1327
1328         /* OK, firmware is validated and ready to use. Save a pointer
1329          * to it in the nic */
1330         nic->fw = fw;
1331         return fw;
1332 }
1333
1334 static int e100_setup_ucode(struct nic *nic, struct cb *cb,
1335                              struct sk_buff *skb)
1336 {
1337         const struct firmware *fw = (void *)skb;
1338         u8 timer, bundle, min_size;
1339
1340         /* It's not a real skb; we just abused the fact that e100_exec_cb
1341            will pass it through to here... */
1342         cb->skb = NULL;
1343
1344         /* firmware is stored as little endian already */
1345         memcpy(cb->u.ucode, fw->data, UCODE_SIZE * 4);
1346
1347         /* Read timer, bundle and min_size from end of firmware blob */
1348         timer = fw->data[UCODE_SIZE * 4];
1349         bundle = fw->data[UCODE_SIZE * 4 + 1];
1350         min_size = fw->data[UCODE_SIZE * 4 + 2];
1351
1352         /* Insert user-tunable settings in cb->u.ucode */
1353         cb->u.ucode[timer] &= cpu_to_le32(0xFFFF0000);
1354         cb->u.ucode[timer] |= cpu_to_le32(INTDELAY);
1355         cb->u.ucode[bundle] &= cpu_to_le32(0xFFFF0000);
1356         cb->u.ucode[bundle] |= cpu_to_le32(BUNDLEMAX);
1357         cb->u.ucode[min_size] &= cpu_to_le32(0xFFFF0000);
1358         cb->u.ucode[min_size] |= cpu_to_le32((BUNDLESMALL) ? 0xFFFF : 0xFF80);
1359
1360         cb->command = cpu_to_le16(cb_ucode | cb_el);
1361         return 0;
1362 }
1363
1364 static inline int e100_load_ucode_wait(struct nic *nic)
1365 {
1366         const struct firmware *fw;
1367         int err = 0, counter = 50;
1368         struct cb *cb = nic->cb_to_clean;
1369
1370         fw = e100_request_firmware(nic);
1371         /* If it's NULL, then no ucode is required */
1372         if (IS_ERR_OR_NULL(fw))
1373                 return PTR_ERR_OR_ZERO(fw);
1374
1375         if ((err = e100_exec_cb(nic, (void *)fw, e100_setup_ucode)))
1376                 netif_err(nic, probe, nic->netdev,
1377                           "ucode cmd failed with error %d\n", err);
1378
1379         /* must restart cuc */
1380         nic->cuc_cmd = cuc_start;
1381
1382         /* wait for completion */
1383         e100_write_flush(nic);
1384         udelay(10);
1385
1386         /* wait for possibly (ouch) 500ms */
1387         while (!(cb->status & cpu_to_le16(cb_complete))) {
1388                 msleep(10);
1389                 if (!--counter) break;
1390         }
1391
1392         /* ack any interrupts, something could have been set */
1393         iowrite8(~0, &nic->csr->scb.stat_ack);
1394
1395         /* if the command failed, or is not OK, notify and return */
1396         if (!counter || !(cb->status & cpu_to_le16(cb_ok))) {
1397                 netif_err(nic, probe, nic->netdev, "ucode load failed\n");
1398                 err = -EPERM;
1399         }
1400
1401         return err;
1402 }
1403
1404 static int e100_setup_iaaddr(struct nic *nic, struct cb *cb,
1405         struct sk_buff *skb)
1406 {
1407         cb->command = cpu_to_le16(cb_iaaddr);
1408         memcpy(cb->u.iaaddr, nic->netdev->dev_addr, ETH_ALEN);
1409         return 0;
1410 }
1411
1412 static int e100_dump(struct nic *nic, struct cb *cb, struct sk_buff *skb)
1413 {
1414         cb->command = cpu_to_le16(cb_dump);
1415         cb->u.dump_buffer_addr = cpu_to_le32(nic->dma_addr +
1416                 offsetof(struct mem, dump_buf));
1417         return 0;
1418 }
1419
1420 static int e100_phy_check_without_mii(struct nic *nic)
1421 {
1422         u8 phy_type;
1423         int without_mii;
1424
1425         phy_type = (le16_to_cpu(nic->eeprom[eeprom_phy_iface]) >> 8) & 0x0f;
1426
1427         switch (phy_type) {
1428         case NoSuchPhy: /* Non-MII PHY; UNTESTED! */
1429         case I82503: /* Non-MII PHY; UNTESTED! */
1430         case S80C24: /* Non-MII PHY; tested and working */
1431                 /* paragraph from the FreeBSD driver, "FXP_PHY_80C24":
1432                  * The Seeq 80c24 AutoDUPLEX(tm) Ethernet Interface Adapter
1433                  * doesn't have a programming interface of any sort.  The
1434                  * media is sensed automatically based on how the link partner
1435                  * is configured.  This is, in essence, manual configuration.
1436                  */
1437                 netif_info(nic, probe, nic->netdev,
1438                            "found MII-less i82503 or 80c24 or other PHY\n");
1439
1440                 nic->mdio_ctrl = mdio_ctrl_phy_mii_emulated;
1441                 nic->mii.phy_id = 0; /* is this ok for an MII-less PHY? */
1442
1443                 /* these might be needed for certain MII-less cards...
1444                  * nic->flags |= ich;
1445                  * nic->flags |= ich_10h_workaround; */
1446
1447                 without_mii = 1;
1448                 break;
1449         default:
1450                 without_mii = 0;
1451                 break;
1452         }
1453         return without_mii;
1454 }
1455
1456 #define NCONFIG_AUTO_SWITCH     0x0080
1457 #define MII_NSC_CONG            MII_RESV1
1458 #define NSC_CONG_ENABLE         0x0100
1459 #define NSC_CONG_TXREADY        0x0400
1460 #define ADVERTISE_FC_SUPPORTED  0x0400
1461 static int e100_phy_init(struct nic *nic)
1462 {
1463         struct net_device *netdev = nic->netdev;
1464         u32 addr;
1465         u16 bmcr, stat, id_lo, id_hi, cong;
1466
1467         /* Discover phy addr by searching addrs in order {1,0,2,..., 31} */
1468         for (addr = 0; addr < 32; addr++) {
1469                 nic->mii.phy_id = (addr == 0) ? 1 : (addr == 1) ? 0 : addr;
1470                 bmcr = mdio_read(netdev, nic->mii.phy_id, MII_BMCR);
1471                 stat = mdio_read(netdev, nic->mii.phy_id, MII_BMSR);
1472                 stat = mdio_read(netdev, nic->mii.phy_id, MII_BMSR);
1473                 if (!((bmcr == 0xFFFF) || ((stat == 0) && (bmcr == 0))))
1474                         break;
1475         }
1476         if (addr == 32) {
1477                 /* uhoh, no PHY detected: check whether we seem to be some
1478                  * weird, rare variant which is *known* to not have any MII.
1479                  * But do this AFTER MII checking only, since this does
1480                  * lookup of EEPROM values which may easily be unreliable. */
1481                 if (e100_phy_check_without_mii(nic))
1482                         return 0; /* simply return and hope for the best */
1483                 else {
1484                         /* for unknown cases log a fatal error */
1485                         netif_err(nic, hw, nic->netdev,
1486                                   "Failed to locate any known PHY, aborting\n");
1487                         return -EAGAIN;
1488                 }
1489         } else
1490                 netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
1491                              "phy_addr = %d\n", nic->mii.phy_id);
1492
1493         /* Get phy ID */
1494         id_lo = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID1);
1495         id_hi = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID2);
1496         nic->phy = (u32)id_hi << 16 | (u32)id_lo;
1497         netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
1498                      "phy ID = 0x%08X\n", nic->phy);
1499
1500         /* Select the phy and isolate the rest */
1501         for (addr = 0; addr < 32; addr++) {
1502                 if (addr != nic->mii.phy_id) {
1503                         mdio_write(netdev, addr, MII_BMCR, BMCR_ISOLATE);
1504                 } else if (nic->phy != phy_82552_v) {
1505                         bmcr = mdio_read(netdev, addr, MII_BMCR);
1506                         mdio_write(netdev, addr, MII_BMCR,
1507                                 bmcr & ~BMCR_ISOLATE);
1508                 }
1509         }
1510         /*
1511          * Workaround for 82552:
1512          * Clear the ISOLATE bit on selected phy_id last (mirrored on all
1513          * other phy_id's) using bmcr value from addr discovery loop above.
1514          */
1515         if (nic->phy == phy_82552_v)
1516                 mdio_write(netdev, nic->mii.phy_id, MII_BMCR,
1517                         bmcr & ~BMCR_ISOLATE);
1518
1519         /* Handle National tx phys */
1520 #define NCS_PHY_MODEL_MASK      0xFFF0FFFF
1521         if ((nic->phy & NCS_PHY_MODEL_MASK) == phy_nsc_tx) {
1522                 /* Disable congestion control */
1523                 cong = mdio_read(netdev, nic->mii.phy_id, MII_NSC_CONG);
1524                 cong |= NSC_CONG_TXREADY;
1525                 cong &= ~NSC_CONG_ENABLE;
1526                 mdio_write(netdev, nic->mii.phy_id, MII_NSC_CONG, cong);
1527         }
1528
1529         if (nic->phy == phy_82552_v) {
1530                 u16 advert = mdio_read(netdev, nic->mii.phy_id, MII_ADVERTISE);
1531
1532                 /* assign special tweaked mdio_ctrl() function */
1533                 nic->mdio_ctrl = mdio_ctrl_phy_82552_v;
1534
1535                 /* Workaround Si not advertising flow-control during autoneg */
1536                 advert |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1537                 mdio_write(netdev, nic->mii.phy_id, MII_ADVERTISE, advert);
1538
1539                 /* Reset for the above changes to take effect */
1540                 bmcr = mdio_read(netdev, nic->mii.phy_id, MII_BMCR);
1541                 bmcr |= BMCR_RESET;
1542                 mdio_write(netdev, nic->mii.phy_id, MII_BMCR, bmcr);
1543         } else if ((nic->mac >= mac_82550_D102) || ((nic->flags & ich) &&
1544            (mdio_read(netdev, nic->mii.phy_id, MII_TPISTATUS) & 0x8000) &&
1545            (le16_to_cpu(nic->eeprom[eeprom_cnfg_mdix]) & eeprom_mdix_enabled))) {
1546                 /* enable/disable MDI/MDI-X auto-switching. */
1547                 mdio_write(netdev, nic->mii.phy_id, MII_NCONFIG,
1548                                 nic->mii.force_media ? 0 : NCONFIG_AUTO_SWITCH);
1549         }
1550
1551         return 0;
1552 }
1553
1554 static int e100_hw_init(struct nic *nic)
1555 {
1556         int err = 0;
1557
1558         e100_hw_reset(nic);
1559
1560         netif_err(nic, hw, nic->netdev, "e100_hw_init\n");
1561         if (!in_interrupt() && (err = e100_self_test(nic)))
1562                 return err;
1563
1564         if ((err = e100_phy_init(nic)))
1565                 return err;
1566         if ((err = e100_exec_cmd(nic, cuc_load_base, 0)))
1567                 return err;
1568         if ((err = e100_exec_cmd(nic, ruc_load_base, 0)))
1569                 return err;
1570         if ((err = e100_load_ucode_wait(nic)))
1571                 return err;
1572         if ((err = e100_exec_cb(nic, NULL, e100_configure)))
1573                 return err;
1574         if ((err = e100_exec_cb(nic, NULL, e100_setup_iaaddr)))
1575                 return err;
1576         if ((err = e100_exec_cmd(nic, cuc_dump_addr,
1577                 nic->dma_addr + offsetof(struct mem, stats))))
1578                 return err;
1579         if ((err = e100_exec_cmd(nic, cuc_dump_reset, 0)))
1580                 return err;
1581
1582         e100_disable_irq(nic);
1583
1584         return 0;
1585 }
1586
1587 static int e100_multi(struct nic *nic, struct cb *cb, struct sk_buff *skb)
1588 {
1589         struct net_device *netdev = nic->netdev;
1590         struct netdev_hw_addr *ha;
1591         u16 i, count = min(netdev_mc_count(netdev), E100_MAX_MULTICAST_ADDRS);
1592
1593         cb->command = cpu_to_le16(cb_multi);
1594         cb->u.multi.count = cpu_to_le16(count * ETH_ALEN);
1595         i = 0;
1596         netdev_for_each_mc_addr(ha, netdev) {
1597                 if (i == count)
1598                         break;
1599                 memcpy(&cb->u.multi.addr[i++ * ETH_ALEN], &ha->addr,
1600                         ETH_ALEN);
1601         }
1602         return 0;
1603 }
1604
1605 static void e100_set_multicast_list(struct net_device *netdev)
1606 {
1607         struct nic *nic = netdev_priv(netdev);
1608
1609         netif_printk(nic, hw, KERN_DEBUG, nic->netdev,
1610                      "mc_count=%d, flags=0x%04X\n",
1611                      netdev_mc_count(netdev), netdev->flags);
1612
1613         if (netdev->flags & IFF_PROMISC)
1614                 nic->flags |= promiscuous;
1615         else
1616                 nic->flags &= ~promiscuous;
1617
1618         if (netdev->flags & IFF_ALLMULTI ||
1619                 netdev_mc_count(netdev) > E100_MAX_MULTICAST_ADDRS)
1620                 nic->flags |= multicast_all;
1621         else
1622                 nic->flags &= ~multicast_all;
1623
1624         e100_exec_cb(nic, NULL, e100_configure);
1625         e100_exec_cb(nic, NULL, e100_multi);
1626 }
1627
1628 static void e100_update_stats(struct nic *nic)
1629 {
1630         struct net_device *dev = nic->netdev;
1631         struct net_device_stats *ns = &dev->stats;
1632         struct stats *s = &nic->mem->stats;
1633         __le32 *complete = (nic->mac < mac_82558_D101_A4) ? &s->fc_xmt_pause :
1634                 (nic->mac < mac_82559_D101M) ? (__le32 *)&s->xmt_tco_frames :
1635                 &s->complete;
1636
1637         /* Device's stats reporting may take several microseconds to
1638          * complete, so we're always waiting for results of the
1639          * previous command. */
1640
1641         if (*complete == cpu_to_le32(cuc_dump_reset_complete)) {
1642                 *complete = 0;
1643                 nic->tx_frames = le32_to_cpu(s->tx_good_frames);
1644                 nic->tx_collisions = le32_to_cpu(s->tx_total_collisions);
1645                 ns->tx_aborted_errors += le32_to_cpu(s->tx_max_collisions);
1646                 ns->tx_window_errors += le32_to_cpu(s->tx_late_collisions);
1647                 ns->tx_carrier_errors += le32_to_cpu(s->tx_lost_crs);
1648                 ns->tx_fifo_errors += le32_to_cpu(s->tx_underruns);
1649                 ns->collisions += nic->tx_collisions;
1650                 ns->tx_errors += le32_to_cpu(s->tx_max_collisions) +
1651                         le32_to_cpu(s->tx_lost_crs);
1652                 nic->rx_short_frame_errors +=
1653                         le32_to_cpu(s->rx_short_frame_errors);
1654                 ns->rx_length_errors = nic->rx_short_frame_errors +
1655                         nic->rx_over_length_errors;
1656                 ns->rx_crc_errors += le32_to_cpu(s->rx_crc_errors);
1657                 ns->rx_frame_errors += le32_to_cpu(s->rx_alignment_errors);
1658                 ns->rx_over_errors += le32_to_cpu(s->rx_overrun_errors);
1659                 ns->rx_fifo_errors += le32_to_cpu(s->rx_overrun_errors);
1660                 ns->rx_missed_errors += le32_to_cpu(s->rx_resource_errors);
1661                 ns->rx_errors += le32_to_cpu(s->rx_crc_errors) +
1662                         le32_to_cpu(s->rx_alignment_errors) +
1663                         le32_to_cpu(s->rx_short_frame_errors) +
1664                         le32_to_cpu(s->rx_cdt_errors);
1665                 nic->tx_deferred += le32_to_cpu(s->tx_deferred);
1666                 nic->tx_single_collisions +=
1667                         le32_to_cpu(s->tx_single_collisions);
1668                 nic->tx_multiple_collisions +=
1669                         le32_to_cpu(s->tx_multiple_collisions);
1670                 if (nic->mac >= mac_82558_D101_A4) {
1671                         nic->tx_fc_pause += le32_to_cpu(s->fc_xmt_pause);
1672                         nic->rx_fc_pause += le32_to_cpu(s->fc_rcv_pause);
1673                         nic->rx_fc_unsupported +=
1674                                 le32_to_cpu(s->fc_rcv_unsupported);
1675                         if (nic->mac >= mac_82559_D101M) {
1676                                 nic->tx_tco_frames +=
1677                                         le16_to_cpu(s->xmt_tco_frames);
1678                                 nic->rx_tco_frames +=
1679                                         le16_to_cpu(s->rcv_tco_frames);
1680                         }
1681                 }
1682         }
1683
1684
1685         if (e100_exec_cmd(nic, cuc_dump_reset, 0))
1686                 netif_printk(nic, tx_err, KERN_DEBUG, nic->netdev,
1687                              "exec cuc_dump_reset failed\n");
1688 }
1689
1690 static void e100_adjust_adaptive_ifs(struct nic *nic, int speed, int duplex)
1691 {
1692         /* Adjust inter-frame-spacing (IFS) between two transmits if
1693          * we're getting collisions on a half-duplex connection. */
1694
1695         if (duplex == DUPLEX_HALF) {
1696                 u32 prev = nic->adaptive_ifs;
1697                 u32 min_frames = (speed == SPEED_100) ? 1000 : 100;
1698
1699                 if ((nic->tx_frames / 32 < nic->tx_collisions) &&
1700                    (nic->tx_frames > min_frames)) {
1701                         if (nic->adaptive_ifs < 60)
1702                                 nic->adaptive_ifs += 5;
1703                 } else if (nic->tx_frames < min_frames) {
1704                         if (nic->adaptive_ifs >= 5)
1705                                 nic->adaptive_ifs -= 5;
1706                 }
1707                 if (nic->adaptive_ifs != prev)
1708                         e100_exec_cb(nic, NULL, e100_configure);
1709         }
1710 }
1711
1712 static void e100_watchdog(unsigned long data)
1713 {
1714         struct nic *nic = (struct nic *)data;
1715         struct ethtool_cmd cmd = { .cmd = ETHTOOL_GSET };
1716         u32 speed;
1717
1718         netif_printk(nic, timer, KERN_DEBUG, nic->netdev,
1719                      "right now = %ld\n", jiffies);
1720
1721         /* mii library handles link maintenance tasks */
1722
1723         mii_ethtool_gset(&nic->mii, &cmd);
1724         speed = ethtool_cmd_speed(&cmd);
1725
1726         if (mii_link_ok(&nic->mii) && !netif_carrier_ok(nic->netdev)) {
1727                 netdev_info(nic->netdev, "NIC Link is Up %u Mbps %s Duplex\n",
1728                             speed == SPEED_100 ? 100 : 10,
1729                             cmd.duplex == DUPLEX_FULL ? "Full" : "Half");
1730         } else if (!mii_link_ok(&nic->mii) && netif_carrier_ok(nic->netdev)) {
1731                 netdev_info(nic->netdev, "NIC Link is Down\n");
1732         }
1733
1734         mii_check_link(&nic->mii);
1735
1736         /* Software generated interrupt to recover from (rare) Rx
1737          * allocation failure.
1738          * Unfortunately have to use a spinlock to not re-enable interrupts
1739          * accidentally, due to hardware that shares a register between the
1740          * interrupt mask bit and the SW Interrupt generation bit */
1741         spin_lock_irq(&nic->cmd_lock);
1742         iowrite8(ioread8(&nic->csr->scb.cmd_hi) | irq_sw_gen,&nic->csr->scb.cmd_hi);
1743         e100_write_flush(nic);
1744         spin_unlock_irq(&nic->cmd_lock);
1745
1746         e100_update_stats(nic);
1747         e100_adjust_adaptive_ifs(nic, speed, cmd.duplex);
1748
1749         if (nic->mac <= mac_82557_D100_C)
1750                 /* Issue a multicast command to workaround a 557 lock up */
1751                 e100_set_multicast_list(nic->netdev);
1752
1753         if (nic->flags & ich && speed == SPEED_10 && cmd.duplex == DUPLEX_HALF)
1754                 /* Need SW workaround for ICH[x] 10Mbps/half duplex Tx hang. */
1755                 nic->flags |= ich_10h_workaround;
1756         else
1757                 nic->flags &= ~ich_10h_workaround;
1758
1759         mod_timer(&nic->watchdog,
1760                   round_jiffies(jiffies + E100_WATCHDOG_PERIOD));
1761 }
1762
1763 static int e100_xmit_prepare(struct nic *nic, struct cb *cb,
1764         struct sk_buff *skb)
1765 {
1766         dma_addr_t dma_addr;
1767         cb->command = nic->tx_command;
1768
1769         dma_addr = pci_map_single(nic->pdev,
1770                                   skb->data, skb->len, PCI_DMA_TODEVICE);
1771         /* If we can't map the skb, have the upper layer try later */
1772         if (pci_dma_mapping_error(nic->pdev, dma_addr)) {
1773                 dev_kfree_skb_any(skb);
1774                 skb = NULL;
1775                 return -ENOMEM;
1776         }
1777
1778         /*
1779          * Use the last 4 bytes of the SKB payload packet as the CRC, used for
1780          * testing, ie sending frames with bad CRC.
1781          */
1782         if (unlikely(skb->no_fcs))
1783                 cb->command |= cpu_to_le16(cb_tx_nc);
1784         else
1785                 cb->command &= ~cpu_to_le16(cb_tx_nc);
1786
1787         /* interrupt every 16 packets regardless of delay */
1788         if ((nic->cbs_avail & ~15) == nic->cbs_avail)
1789                 cb->command |= cpu_to_le16(cb_i);
1790         cb->u.tcb.tbd_array = cb->dma_addr + offsetof(struct cb, u.tcb.tbd);
1791         cb->u.tcb.tcb_byte_count = 0;
1792         cb->u.tcb.threshold = nic->tx_threshold;
1793         cb->u.tcb.tbd_count = 1;
1794         cb->u.tcb.tbd.buf_addr = cpu_to_le32(dma_addr);
1795         cb->u.tcb.tbd.size = cpu_to_le16(skb->len);
1796         skb_tx_timestamp(skb);
1797         return 0;
1798 }
1799
1800 static netdev_tx_t e100_xmit_frame(struct sk_buff *skb,
1801                                    struct net_device *netdev)
1802 {
1803         struct nic *nic = netdev_priv(netdev);
1804         int err;
1805
1806         if (nic->flags & ich_10h_workaround) {
1807                 /* SW workaround for ICH[x] 10Mbps/half duplex Tx hang.
1808                    Issue a NOP command followed by a 1us delay before
1809                    issuing the Tx command. */
1810                 if (e100_exec_cmd(nic, cuc_nop, 0))
1811                         netif_printk(nic, tx_err, KERN_DEBUG, nic->netdev,
1812                                      "exec cuc_nop failed\n");
1813                 udelay(1);
1814         }
1815
1816         err = e100_exec_cb(nic, skb, e100_xmit_prepare);
1817
1818         switch (err) {
1819         case -ENOSPC:
1820                 /* We queued the skb, but now we're out of space. */
1821                 netif_printk(nic, tx_err, KERN_DEBUG, nic->netdev,
1822                              "No space for CB\n");
1823                 netif_stop_queue(netdev);
1824                 break;
1825         case -ENOMEM:
1826                 /* This is a hard error - log it. */
1827                 netif_printk(nic, tx_err, KERN_DEBUG, nic->netdev,
1828                              "Out of Tx resources, returning skb\n");
1829                 netif_stop_queue(netdev);
1830                 return NETDEV_TX_BUSY;
1831         }
1832
1833         return NETDEV_TX_OK;
1834 }
1835
1836 static int e100_tx_clean(struct nic *nic)
1837 {
1838         struct net_device *dev = nic->netdev;
1839         struct cb *cb;
1840         int tx_cleaned = 0;
1841
1842         spin_lock(&nic->cb_lock);
1843
1844         /* Clean CBs marked complete */
1845         for (cb = nic->cb_to_clean;
1846             cb->status & cpu_to_le16(cb_complete);
1847             cb = nic->cb_to_clean = cb->next) {
1848                 dma_rmb(); /* read skb after status */
1849                 netif_printk(nic, tx_done, KERN_DEBUG, nic->netdev,
1850                              "cb[%d]->status = 0x%04X\n",
1851                              (int)(((void*)cb - (void*)nic->cbs)/sizeof(struct cb)),
1852                              cb->status);
1853
1854                 if (likely(cb->skb != NULL)) {
1855                         dev->stats.tx_packets++;
1856                         dev->stats.tx_bytes += cb->skb->len;
1857
1858                         pci_unmap_single(nic->pdev,
1859                                 le32_to_cpu(cb->u.tcb.tbd.buf_addr),
1860                                 le16_to_cpu(cb->u.tcb.tbd.size),
1861                                 PCI_DMA_TODEVICE);
1862                         dev_kfree_skb_any(cb->skb);
1863                         cb->skb = NULL;
1864                         tx_cleaned = 1;
1865                 }
1866                 cb->status = 0;
1867                 nic->cbs_avail++;
1868         }
1869
1870         spin_unlock(&nic->cb_lock);
1871
1872         /* Recover from running out of Tx resources in xmit_frame */
1873         if (unlikely(tx_cleaned && netif_queue_stopped(nic->netdev)))
1874                 netif_wake_queue(nic->netdev);
1875
1876         return tx_cleaned;
1877 }
1878
1879 static void e100_clean_cbs(struct nic *nic)
1880 {
1881         if (nic->cbs) {
1882                 while (nic->cbs_avail != nic->params.cbs.count) {
1883                         struct cb *cb = nic->cb_to_clean;
1884                         if (cb->skb) {
1885                                 pci_unmap_single(nic->pdev,
1886                                         le32_to_cpu(cb->u.tcb.tbd.buf_addr),
1887                                         le16_to_cpu(cb->u.tcb.tbd.size),
1888                                         PCI_DMA_TODEVICE);
1889                                 dev_kfree_skb(cb->skb);
1890                         }
1891                         nic->cb_to_clean = nic->cb_to_clean->next;
1892                         nic->cbs_avail++;
1893                 }
1894                 pci_pool_free(nic->cbs_pool, nic->cbs, nic->cbs_dma_addr);
1895                 nic->cbs = NULL;
1896                 nic->cbs_avail = 0;
1897         }
1898         nic->cuc_cmd = cuc_start;
1899         nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean =
1900                 nic->cbs;
1901 }
1902
1903 static int e100_alloc_cbs(struct nic *nic)
1904 {
1905         struct cb *cb;
1906         unsigned int i, count = nic->params.cbs.count;
1907
1908         nic->cuc_cmd = cuc_start;
1909         nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = NULL;
1910         nic->cbs_avail = 0;
1911
1912         nic->cbs = pci_pool_alloc(nic->cbs_pool, GFP_KERNEL,
1913                                   &nic->cbs_dma_addr);
1914         if (!nic->cbs)
1915                 return -ENOMEM;
1916         memset(nic->cbs, 0, count * sizeof(struct cb));
1917
1918         for (cb = nic->cbs, i = 0; i < count; cb++, i++) {
1919                 cb->next = (i + 1 < count) ? cb + 1 : nic->cbs;
1920                 cb->prev = (i == 0) ? nic->cbs + count - 1 : cb - 1;
1921
1922                 cb->dma_addr = nic->cbs_dma_addr + i * sizeof(struct cb);
1923                 cb->link = cpu_to_le32(nic->cbs_dma_addr +
1924                         ((i+1) % count) * sizeof(struct cb));
1925         }
1926
1927         nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = nic->cbs;
1928         nic->cbs_avail = count;
1929
1930         return 0;
1931 }
1932
1933 static inline void e100_start_receiver(struct nic *nic, struct rx *rx)
1934 {
1935         if (!nic->rxs) return;
1936         if (RU_SUSPENDED != nic->ru_running) return;
1937
1938         /* handle init time starts */
1939         if (!rx) rx = nic->rxs;
1940
1941         /* (Re)start RU if suspended or idle and RFA is non-NULL */
1942         if (rx->skb) {
1943                 e100_exec_cmd(nic, ruc_start, rx->dma_addr);
1944                 nic->ru_running = RU_RUNNING;
1945         }
1946 }
1947
1948 #define RFD_BUF_LEN (sizeof(struct rfd) + VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
1949 static int e100_rx_alloc_skb(struct nic *nic, struct rx *rx)
1950 {
1951         if (!(rx->skb = netdev_alloc_skb_ip_align(nic->netdev, RFD_BUF_LEN)))
1952                 return -ENOMEM;
1953
1954         /* Init, and map the RFD. */
1955         skb_copy_to_linear_data(rx->skb, &nic->blank_rfd, sizeof(struct rfd));
1956         rx->dma_addr = pci_map_single(nic->pdev, rx->skb->data,
1957                 RFD_BUF_LEN, PCI_DMA_BIDIRECTIONAL);
1958
1959         if (pci_dma_mapping_error(nic->pdev, rx->dma_addr)) {
1960                 dev_kfree_skb_any(rx->skb);
1961                 rx->skb = NULL;
1962                 rx->dma_addr = 0;
1963                 return -ENOMEM;
1964         }
1965
1966         /* Link the RFD to end of RFA by linking previous RFD to
1967          * this one.  We are safe to touch the previous RFD because
1968          * it is protected by the before last buffer's el bit being set */
1969         if (rx->prev->skb) {
1970                 struct rfd *prev_rfd = (struct rfd *)rx->prev->skb->data;
1971                 put_unaligned_le32(rx->dma_addr, &prev_rfd->link);
1972                 pci_dma_sync_single_for_device(nic->pdev, rx->prev->dma_addr,
1973                         sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL);
1974         }
1975
1976         return 0;
1977 }
1978
1979 static int e100_rx_indicate(struct nic *nic, struct rx *rx,
1980         unsigned int *work_done, unsigned int work_to_do)
1981 {
1982         struct net_device *dev = nic->netdev;
1983         struct sk_buff *skb = rx->skb;
1984         struct rfd *rfd = (struct rfd *)skb->data;
1985         u16 rfd_status, actual_size;
1986         u16 fcs_pad = 0;
1987
1988         if (unlikely(work_done && *work_done >= work_to_do))
1989                 return -EAGAIN;
1990
1991         /* Need to sync before taking a peek at cb_complete bit */
1992         pci_dma_sync_single_for_cpu(nic->pdev, rx->dma_addr,
1993                 sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL);
1994         rfd_status = le16_to_cpu(rfd->status);
1995
1996         netif_printk(nic, rx_status, KERN_DEBUG, nic->netdev,
1997                      "status=0x%04X\n", rfd_status);
1998         dma_rmb(); /* read size after status bit */
1999
2000         /* If data isn't ready, nothing to indicate */
2001         if (unlikely(!(rfd_status & cb_complete))) {
2002                 /* If the next buffer has the el bit, but we think the receiver
2003                  * is still running, check to see if it really stopped while
2004                  * we had interrupts off.
2005                  * This allows for a fast restart without re-enabling
2006                  * interrupts */
2007                 if ((le16_to_cpu(rfd->command) & cb_el) &&
2008                     (RU_RUNNING == nic->ru_running))
2009
2010                         if (ioread8(&nic->csr->scb.status) & rus_no_res)
2011                                 nic->ru_running = RU_SUSPENDED;
2012                 pci_dma_sync_single_for_device(nic->pdev, rx->dma_addr,
2013                                                sizeof(struct rfd),
2014                                                PCI_DMA_FROMDEVICE);
2015                 return -ENODATA;
2016         }
2017
2018         /* Get actual data size */
2019         if (unlikely(dev->features & NETIF_F_RXFCS))
2020                 fcs_pad = 4;
2021         actual_size = le16_to_cpu(rfd->actual_size) & 0x3FFF;
2022         if (unlikely(actual_size > RFD_BUF_LEN - sizeof(struct rfd)))
2023                 actual_size = RFD_BUF_LEN - sizeof(struct rfd);
2024
2025         /* Get data */
2026         pci_unmap_single(nic->pdev, rx->dma_addr,
2027                 RFD_BUF_LEN, PCI_DMA_BIDIRECTIONAL);
2028
2029         /* If this buffer has the el bit, but we think the receiver
2030          * is still running, check to see if it really stopped while
2031          * we had interrupts off.
2032          * This allows for a fast restart without re-enabling interrupts.
2033          * This can happen when the RU sees the size change but also sees
2034          * the el bit set. */
2035         if ((le16_to_cpu(rfd->command) & cb_el) &&
2036             (RU_RUNNING == nic->ru_running)) {
2037
2038             if (ioread8(&nic->csr->scb.status) & rus_no_res)
2039                 nic->ru_running = RU_SUSPENDED;
2040         }
2041
2042         /* Pull off the RFD and put the actual data (minus eth hdr) */
2043         skb_reserve(skb, sizeof(struct rfd));
2044         skb_put(skb, actual_size);
2045         skb->protocol = eth_type_trans(skb, nic->netdev);
2046
2047         /* If we are receiving all frames, then don't bother
2048          * checking for errors.
2049          */
2050         if (unlikely(dev->features & NETIF_F_RXALL)) {
2051                 if (actual_size > ETH_DATA_LEN + VLAN_ETH_HLEN + fcs_pad)
2052                         /* Received oversized frame, but keep it. */
2053                         nic->rx_over_length_errors++;
2054                 goto process_skb;
2055         }
2056
2057         if (unlikely(!(rfd_status & cb_ok))) {
2058                 /* Don't indicate if hardware indicates errors */
2059                 dev_kfree_skb_any(skb);
2060         } else if (actual_size > ETH_DATA_LEN + VLAN_ETH_HLEN + fcs_pad) {
2061                 /* Don't indicate oversized frames */
2062                 nic->rx_over_length_errors++;
2063                 dev_kfree_skb_any(skb);
2064         } else {
2065 process_skb:
2066                 dev->stats.rx_packets++;
2067                 dev->stats.rx_bytes += (actual_size - fcs_pad);
2068                 netif_receive_skb(skb);
2069                 if (work_done)
2070                         (*work_done)++;
2071         }
2072
2073         rx->skb = NULL;
2074
2075         return 0;
2076 }
2077
2078 static void e100_rx_clean(struct nic *nic, unsigned int *work_done,
2079         unsigned int work_to_do)
2080 {
2081         struct rx *rx;
2082         int restart_required = 0, err = 0;
2083         struct rx *old_before_last_rx, *new_before_last_rx;
2084         struct rfd *old_before_last_rfd, *new_before_last_rfd;
2085
2086         /* Indicate newly arrived packets */
2087         for (rx = nic->rx_to_clean; rx->skb; rx = nic->rx_to_clean = rx->next) {
2088                 err = e100_rx_indicate(nic, rx, work_done, work_to_do);
2089                 /* Hit quota or no more to clean */
2090                 if (-EAGAIN == err || -ENODATA == err)
2091                         break;
2092         }
2093
2094
2095         /* On EAGAIN, hit quota so have more work to do, restart once
2096          * cleanup is complete.
2097          * Else, are we already rnr? then pay attention!!! this ensures that
2098          * the state machine progression never allows a start with a
2099          * partially cleaned list, avoiding a race between hardware
2100          * and rx_to_clean when in NAPI mode */
2101         if (-EAGAIN != err && RU_SUSPENDED == nic->ru_running)
2102                 restart_required = 1;
2103
2104         old_before_last_rx = nic->rx_to_use->prev->prev;
2105         old_before_last_rfd = (struct rfd *)old_before_last_rx->skb->data;
2106
2107         /* Alloc new skbs to refill list */
2108         for (rx = nic->rx_to_use; !rx->skb; rx = nic->rx_to_use = rx->next) {
2109                 if (unlikely(e100_rx_alloc_skb(nic, rx)))
2110                         break; /* Better luck next time (see watchdog) */
2111         }
2112
2113         new_before_last_rx = nic->rx_to_use->prev->prev;
2114         if (new_before_last_rx != old_before_last_rx) {
2115                 /* Set the el-bit on the buffer that is before the last buffer.
2116                  * This lets us update the next pointer on the last buffer
2117                  * without worrying about hardware touching it.
2118                  * We set the size to 0 to prevent hardware from touching this
2119                  * buffer.
2120                  * When the hardware hits the before last buffer with el-bit
2121                  * and size of 0, it will RNR interrupt, the RUS will go into
2122                  * the No Resources state.  It will not complete nor write to
2123                  * this buffer. */
2124                 new_before_last_rfd =
2125                         (struct rfd *)new_before_last_rx->skb->data;
2126                 new_before_last_rfd->size = 0;
2127                 new_before_last_rfd->command |= cpu_to_le16(cb_el);
2128                 pci_dma_sync_single_for_device(nic->pdev,
2129                         new_before_last_rx->dma_addr, sizeof(struct rfd),
2130                         PCI_DMA_BIDIRECTIONAL);
2131
2132                 /* Now that we have a new stopping point, we can clear the old
2133                  * stopping point.  We must sync twice to get the proper
2134                  * ordering on the hardware side of things. */
2135                 old_before_last_rfd->command &= ~cpu_to_le16(cb_el);
2136                 pci_dma_sync_single_for_device(nic->pdev,
2137                         old_before_last_rx->dma_addr, sizeof(struct rfd),
2138                         PCI_DMA_BIDIRECTIONAL);
2139                 old_before_last_rfd->size = cpu_to_le16(VLAN_ETH_FRAME_LEN
2140                                                         + ETH_FCS_LEN);
2141                 pci_dma_sync_single_for_device(nic->pdev,
2142                         old_before_last_rx->dma_addr, sizeof(struct rfd),
2143                         PCI_DMA_BIDIRECTIONAL);
2144         }
2145
2146         if (restart_required) {
2147                 // ack the rnr?
2148                 iowrite8(stat_ack_rnr, &nic->csr->scb.stat_ack);
2149                 e100_start_receiver(nic, nic->rx_to_clean);
2150                 if (work_done)
2151                         (*work_done)++;
2152         }
2153 }
2154
2155 static void e100_rx_clean_list(struct nic *nic)
2156 {
2157         struct rx *rx;
2158         unsigned int i, count = nic->params.rfds.count;
2159
2160         nic->ru_running = RU_UNINITIALIZED;
2161
2162         if (nic->rxs) {
2163                 for (rx = nic->rxs, i = 0; i < count; rx++, i++) {
2164                         if (rx->skb) {
2165                                 pci_unmap_single(nic->pdev, rx->dma_addr,
2166                                         RFD_BUF_LEN, PCI_DMA_BIDIRECTIONAL);
2167                                 dev_kfree_skb(rx->skb);
2168                         }
2169                 }
2170                 kfree(nic->rxs);
2171                 nic->rxs = NULL;
2172         }
2173
2174         nic->rx_to_use = nic->rx_to_clean = NULL;
2175 }
2176
2177 static int e100_rx_alloc_list(struct nic *nic)
2178 {
2179         struct rx *rx;
2180         unsigned int i, count = nic->params.rfds.count;
2181         struct rfd *before_last;
2182
2183         nic->rx_to_use = nic->rx_to_clean = NULL;
2184         nic->ru_running = RU_UNINITIALIZED;
2185
2186         if (!(nic->rxs = kcalloc(count, sizeof(struct rx), GFP_ATOMIC)))
2187                 return -ENOMEM;
2188
2189         for (rx = nic->rxs, i = 0; i < count; rx++, i++) {
2190                 rx->next = (i + 1 < count) ? rx + 1 : nic->rxs;
2191                 rx->prev = (i == 0) ? nic->rxs + count - 1 : rx - 1;
2192                 if (e100_rx_alloc_skb(nic, rx)) {
2193                         e100_rx_clean_list(nic);
2194                         return -ENOMEM;
2195                 }
2196         }
2197         /* Set the el-bit on the buffer that is before the last buffer.
2198          * This lets us update the next pointer on the last buffer without
2199          * worrying about hardware touching it.
2200          * We set the size to 0 to prevent hardware from touching this buffer.
2201          * When the hardware hits the before last buffer with el-bit and size
2202          * of 0, it will RNR interrupt, the RU will go into the No Resources
2203          * state.  It will not complete nor write to this buffer. */
2204         rx = nic->rxs->prev->prev;
2205         before_last = (struct rfd *)rx->skb->data;
2206         before_last->command |= cpu_to_le16(cb_el);
2207         before_last->size = 0;
2208         pci_dma_sync_single_for_device(nic->pdev, rx->dma_addr,
2209                 sizeof(struct rfd), PCI_DMA_BIDIRECTIONAL);
2210
2211         nic->rx_to_use = nic->rx_to_clean = nic->rxs;
2212         nic->ru_running = RU_SUSPENDED;
2213
2214         return 0;
2215 }
2216
2217 static irqreturn_t e100_intr(int irq, void *dev_id)
2218 {
2219         struct net_device *netdev = dev_id;
2220         struct nic *nic = netdev_priv(netdev);
2221         u8 stat_ack = ioread8(&nic->csr->scb.stat_ack);
2222
2223         netif_printk(nic, intr, KERN_DEBUG, nic->netdev,
2224                      "stat_ack = 0x%02X\n", stat_ack);
2225
2226         if (stat_ack == stat_ack_not_ours ||    /* Not our interrupt */
2227            stat_ack == stat_ack_not_present)    /* Hardware is ejected */
2228                 return IRQ_NONE;
2229
2230         /* Ack interrupt(s) */
2231         iowrite8(stat_ack, &nic->csr->scb.stat_ack);
2232
2233         /* We hit Receive No Resource (RNR); restart RU after cleaning */
2234         if (stat_ack & stat_ack_rnr)
2235                 nic->ru_running = RU_SUSPENDED;
2236
2237         if (likely(napi_schedule_prep(&nic->napi))) {
2238                 e100_disable_irq(nic);
2239                 __napi_schedule(&nic->napi);
2240         }
2241
2242         return IRQ_HANDLED;
2243 }
2244
2245 static int e100_poll(struct napi_struct *napi, int budget)
2246 {
2247         struct nic *nic = container_of(napi, struct nic, napi);
2248         unsigned int work_done = 0;
2249
2250         e100_rx_clean(nic, &work_done, budget);
2251         e100_tx_clean(nic);
2252
2253         /* If budget not fully consumed, exit the polling mode */
2254         if (work_done < budget) {
2255                 napi_complete_done(napi, work_done);
2256                 e100_enable_irq(nic);
2257         }
2258
2259         return work_done;
2260 }
2261
2262 #ifdef CONFIG_NET_POLL_CONTROLLER
2263 static void e100_netpoll(struct net_device *netdev)
2264 {
2265         struct nic *nic = netdev_priv(netdev);
2266
2267         e100_disable_irq(nic);
2268         e100_intr(nic->pdev->irq, netdev);
2269         e100_tx_clean(nic);
2270         e100_enable_irq(nic);
2271 }
2272 #endif
2273
2274 static int e100_set_mac_address(struct net_device *netdev, void *p)
2275 {
2276         struct nic *nic = netdev_priv(netdev);
2277         struct sockaddr *addr = p;
2278
2279         if (!is_valid_ether_addr(addr->sa_data))
2280                 return -EADDRNOTAVAIL;
2281
2282         memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2283         e100_exec_cb(nic, NULL, e100_setup_iaaddr);
2284
2285         return 0;
2286 }
2287
2288 static int e100_asf(struct nic *nic)
2289 {
2290         /* ASF can be enabled from eeprom */
2291         return (nic->pdev->device >= 0x1050) && (nic->pdev->device <= 0x1057) &&
2292            (le16_to_cpu(nic->eeprom[eeprom_config_asf]) & eeprom_asf) &&
2293            !(le16_to_cpu(nic->eeprom[eeprom_config_asf]) & eeprom_gcl) &&
2294            ((le16_to_cpu(nic->eeprom[eeprom_smbus_addr]) & 0xFF) != 0xFE);
2295 }
2296
2297 static int e100_up(struct nic *nic)
2298 {
2299         int err;
2300
2301         if ((err = e100_rx_alloc_list(nic)))
2302                 return err;
2303         if ((err = e100_alloc_cbs(nic)))
2304                 goto err_rx_clean_list;
2305         if ((err = e100_hw_init(nic)))
2306                 goto err_clean_cbs;
2307         e100_set_multicast_list(nic->netdev);
2308         e100_start_receiver(nic, NULL);
2309         mod_timer(&nic->watchdog, jiffies);
2310         if ((err = request_irq(nic->pdev->irq, e100_intr, IRQF_SHARED,
2311                 nic->netdev->name, nic->netdev)))
2312                 goto err_no_irq;
2313         netif_wake_queue(nic->netdev);
2314         napi_enable(&nic->napi);
2315         /* enable ints _after_ enabling poll, preventing a race between
2316          * disable ints+schedule */
2317         e100_enable_irq(nic);
2318         return 0;
2319
2320 err_no_irq:
2321         del_timer_sync(&nic->watchdog);
2322 err_clean_cbs:
2323         e100_clean_cbs(nic);
2324 err_rx_clean_list:
2325         e100_rx_clean_list(nic);
2326         return err;
2327 }
2328
2329 static void e100_down(struct nic *nic)
2330 {
2331         /* wait here for poll to complete */
2332         napi_disable(&nic->napi);
2333         netif_stop_queue(nic->netdev);
2334         e100_hw_reset(nic);
2335         free_irq(nic->pdev->irq, nic->netdev);
2336         del_timer_sync(&nic->watchdog);
2337         netif_carrier_off(nic->netdev);
2338         e100_clean_cbs(nic);
2339         e100_rx_clean_list(nic);
2340 }
2341
2342 static void e100_tx_timeout(struct net_device *netdev)
2343 {
2344         struct nic *nic = netdev_priv(netdev);
2345
2346         /* Reset outside of interrupt context, to avoid request_irq
2347          * in interrupt context */
2348         schedule_work(&nic->tx_timeout_task);
2349 }
2350
2351 static void e100_tx_timeout_task(struct work_struct *work)
2352 {
2353         struct nic *nic = container_of(work, struct nic, tx_timeout_task);
2354         struct net_device *netdev = nic->netdev;
2355
2356         netif_printk(nic, tx_err, KERN_DEBUG, nic->netdev,
2357                      "scb.status=0x%02X\n", ioread8(&nic->csr->scb.status));
2358
2359         rtnl_lock();
2360         if (netif_running(netdev)) {
2361                 e100_down(netdev_priv(netdev));
2362                 e100_up(netdev_priv(netdev));
2363         }
2364         rtnl_unlock();
2365 }
2366
2367 static int e100_loopback_test(struct nic *nic, enum loopback loopback_mode)
2368 {
2369         int err;
2370         struct sk_buff *skb;
2371
2372         /* Use driver resources to perform internal MAC or PHY
2373          * loopback test.  A single packet is prepared and transmitted
2374          * in loopback mode, and the test passes if the received
2375          * packet compares byte-for-byte to the transmitted packet. */
2376
2377         if ((err = e100_rx_alloc_list(nic)))
2378                 return err;
2379         if ((err = e100_alloc_cbs(nic)))
2380                 goto err_clean_rx;
2381
2382         /* ICH PHY loopback is broken so do MAC loopback instead */
2383         if (nic->flags & ich && loopback_mode == lb_phy)
2384                 loopback_mode = lb_mac;
2385
2386         nic->loopback = loopback_mode;
2387         if ((err = e100_hw_init(nic)))
2388                 goto err_loopback_none;
2389
2390         if (loopback_mode == lb_phy)
2391                 mdio_write(nic->netdev, nic->mii.phy_id, MII_BMCR,
2392                         BMCR_LOOPBACK);
2393
2394         e100_start_receiver(nic, NULL);
2395
2396         if (!(skb = netdev_alloc_skb(nic->netdev, ETH_DATA_LEN))) {
2397                 err = -ENOMEM;
2398                 goto err_loopback_none;
2399         }
2400         skb_put(skb, ETH_DATA_LEN);
2401         memset(skb->data, 0xFF, ETH_DATA_LEN);
2402         e100_xmit_frame(skb, nic->netdev);
2403
2404         msleep(10);
2405
2406         pci_dma_sync_single_for_cpu(nic->pdev, nic->rx_to_clean->dma_addr,
2407                         RFD_BUF_LEN, PCI_DMA_BIDIRECTIONAL);
2408
2409         if (memcmp(nic->rx_to_clean->skb->data + sizeof(struct rfd),
2410            skb->data, ETH_DATA_LEN))
2411                 err = -EAGAIN;
2412
2413 err_loopback_none:
2414         mdio_write(nic->netdev, nic->mii.phy_id, MII_BMCR, 0);
2415         nic->loopback = lb_none;
2416         e100_clean_cbs(nic);
2417         e100_hw_reset(nic);
2418 err_clean_rx:
2419         e100_rx_clean_list(nic);
2420         return err;
2421 }
2422
2423 #define MII_LED_CONTROL 0x1B
2424 #define E100_82552_LED_OVERRIDE 0x19
2425 #define E100_82552_LED_ON       0x000F /* LEDTX and LED_RX both on */
2426 #define E100_82552_LED_OFF      0x000A /* LEDTX and LED_RX both off */
2427
2428 static int e100_get_link_ksettings(struct net_device *netdev,
2429                                    struct ethtool_link_ksettings *cmd)
2430 {
2431         struct nic *nic = netdev_priv(netdev);
2432
2433         mii_ethtool_get_link_ksettings(&nic->mii, cmd);
2434
2435         return 0;
2436 }
2437
2438 static int e100_set_link_ksettings(struct net_device *netdev,
2439                                    const struct ethtool_link_ksettings *cmd)
2440 {
2441         struct nic *nic = netdev_priv(netdev);
2442         int err;
2443
2444         mdio_write(netdev, nic->mii.phy_id, MII_BMCR, BMCR_RESET);
2445         err = mii_ethtool_set_link_ksettings(&nic->mii, cmd);
2446         e100_exec_cb(nic, NULL, e100_configure);
2447
2448         return err;
2449 }
2450
2451 static void e100_get_drvinfo(struct net_device *netdev,
2452         struct ethtool_drvinfo *info)
2453 {
2454         struct nic *nic = netdev_priv(netdev);
2455         strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
2456         strlcpy(info->version, DRV_VERSION, sizeof(info->version));
2457         strlcpy(info->bus_info, pci_name(nic->pdev),
2458                 sizeof(info->bus_info));
2459 }
2460
2461 #define E100_PHY_REGS 0x1D
2462 static int e100_get_regs_len(struct net_device *netdev)
2463 {
2464         struct nic *nic = netdev_priv(netdev);
2465
2466         /* We know the number of registers, and the size of the dump buffer.
2467          * Calculate the total size in bytes.
2468          */
2469         return (1 + E100_PHY_REGS) * sizeof(u32) + sizeof(nic->mem->dump_buf);
2470 }
2471
2472 static void e100_get_regs(struct net_device *netdev,
2473         struct ethtool_regs *regs, void *p)
2474 {
2475         struct nic *nic = netdev_priv(netdev);
2476         u32 *buff = p;
2477         int i;
2478
2479         regs->version = (1 << 24) | nic->pdev->revision;
2480         buff[0] = ioread8(&nic->csr->scb.cmd_hi) << 24 |
2481                 ioread8(&nic->csr->scb.cmd_lo) << 16 |
2482                 ioread16(&nic->csr->scb.status);
2483         for (i = 0; i < E100_PHY_REGS; i++)
2484                 /* Note that we read the registers in reverse order. This
2485                  * ordering is the ABI apparently used by ethtool and other
2486                  * applications.
2487                  */
2488                 buff[1 + i] = mdio_read(netdev, nic->mii.phy_id,
2489                                         E100_PHY_REGS - 1 - i);
2490         memset(nic->mem->dump_buf, 0, sizeof(nic->mem->dump_buf));
2491         e100_exec_cb(nic, NULL, e100_dump);
2492         msleep(10);
2493         memcpy(&buff[1 + E100_PHY_REGS], nic->mem->dump_buf,
2494                sizeof(nic->mem->dump_buf));
2495 }
2496
2497 static void e100_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2498 {
2499         struct nic *nic = netdev_priv(netdev);
2500         wol->supported = (nic->mac >= mac_82558_D101_A4) ?  WAKE_MAGIC : 0;
2501         wol->wolopts = (nic->flags & wol_magic) ? WAKE_MAGIC : 0;
2502 }
2503
2504 static int e100_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2505 {
2506         struct nic *nic = netdev_priv(netdev);
2507
2508         if ((wol->wolopts && wol->wolopts != WAKE_MAGIC) ||
2509             !device_can_wakeup(&nic->pdev->dev))
2510                 return -EOPNOTSUPP;
2511
2512         if (wol->wolopts)
2513                 nic->flags |= wol_magic;
2514         else
2515                 nic->flags &= ~wol_magic;
2516
2517         device_set_wakeup_enable(&nic->pdev->dev, wol->wolopts);
2518
2519         e100_exec_cb(nic, NULL, e100_configure);
2520
2521         return 0;
2522 }
2523
2524 static u32 e100_get_msglevel(struct net_device *netdev)
2525 {
2526         struct nic *nic = netdev_priv(netdev);
2527         return nic->msg_enable;
2528 }
2529
2530 static void e100_set_msglevel(struct net_device *netdev, u32 value)
2531 {
2532         struct nic *nic = netdev_priv(netdev);
2533         nic->msg_enable = value;
2534 }
2535
2536 static int e100_nway_reset(struct net_device *netdev)
2537 {
2538         struct nic *nic = netdev_priv(netdev);
2539         return mii_nway_restart(&nic->mii);
2540 }
2541
2542 static u32 e100_get_link(struct net_device *netdev)
2543 {
2544         struct nic *nic = netdev_priv(netdev);
2545         return mii_link_ok(&nic->mii);
2546 }
2547
2548 static int e100_get_eeprom_len(struct net_device *netdev)
2549 {
2550         struct nic *nic = netdev_priv(netdev);
2551         return nic->eeprom_wc << 1;
2552 }
2553
2554 #define E100_EEPROM_MAGIC       0x1234
2555 static int e100_get_eeprom(struct net_device *netdev,
2556         struct ethtool_eeprom *eeprom, u8 *bytes)
2557 {
2558         struct nic *nic = netdev_priv(netdev);
2559
2560         eeprom->magic = E100_EEPROM_MAGIC;
2561         memcpy(bytes, &((u8 *)nic->eeprom)[eeprom->offset], eeprom->len);
2562
2563         return 0;
2564 }
2565
2566 static int e100_set_eeprom(struct net_device *netdev,
2567         struct ethtool_eeprom *eeprom, u8 *bytes)
2568 {
2569         struct nic *nic = netdev_priv(netdev);
2570
2571         if (eeprom->magic != E100_EEPROM_MAGIC)
2572                 return -EINVAL;
2573
2574         memcpy(&((u8 *)nic->eeprom)[eeprom->offset], bytes, eeprom->len);
2575
2576         return e100_eeprom_save(nic, eeprom->offset >> 1,
2577                 (eeprom->len >> 1) + 1);
2578 }
2579
2580 static void e100_get_ringparam(struct net_device *netdev,
2581         struct ethtool_ringparam *ring)
2582 {
2583         struct nic *nic = netdev_priv(netdev);
2584         struct param_range *rfds = &nic->params.rfds;
2585         struct param_range *cbs = &nic->params.cbs;
2586
2587         ring->rx_max_pending = rfds->max;
2588         ring->tx_max_pending = cbs->max;
2589         ring->rx_pending = rfds->count;
2590         ring->tx_pending = cbs->count;
2591 }
2592
2593 static int e100_set_ringparam(struct net_device *netdev,
2594         struct ethtool_ringparam *ring)
2595 {
2596         struct nic *nic = netdev_priv(netdev);
2597         struct param_range *rfds = &nic->params.rfds;
2598         struct param_range *cbs = &nic->params.cbs;
2599
2600         if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
2601                 return -EINVAL;
2602
2603         if (netif_running(netdev))
2604                 e100_down(nic);
2605         rfds->count = max(ring->rx_pending, rfds->min);
2606         rfds->count = min(rfds->count, rfds->max);
2607         cbs->count = max(ring->tx_pending, cbs->min);
2608         cbs->count = min(cbs->count, cbs->max);
2609         netif_info(nic, drv, nic->netdev, "Ring Param settings: rx: %d, tx %d\n",
2610                    rfds->count, cbs->count);
2611         if (netif_running(netdev))
2612                 e100_up(nic);
2613
2614         return 0;
2615 }
2616
2617 static const char e100_gstrings_test[][ETH_GSTRING_LEN] = {
2618         "Link test     (on/offline)",
2619         "Eeprom test   (on/offline)",
2620         "Self test        (offline)",
2621         "Mac loopback     (offline)",
2622         "Phy loopback     (offline)",
2623 };
2624 #define E100_TEST_LEN   ARRAY_SIZE(e100_gstrings_test)
2625
2626 static void e100_diag_test(struct net_device *netdev,
2627         struct ethtool_test *test, u64 *data)
2628 {
2629         struct ethtool_cmd cmd;
2630         struct nic *nic = netdev_priv(netdev);
2631         int i, err;
2632
2633         memset(data, 0, E100_TEST_LEN * sizeof(u64));
2634         data[0] = !mii_link_ok(&nic->mii);
2635         data[1] = e100_eeprom_load(nic);
2636         if (test->flags & ETH_TEST_FL_OFFLINE) {
2637
2638                 /* save speed, duplex & autoneg settings */
2639                 err = mii_ethtool_gset(&nic->mii, &cmd);
2640
2641                 if (netif_running(netdev))
2642                         e100_down(nic);
2643                 data[2] = e100_self_test(nic);
2644                 data[3] = e100_loopback_test(nic, lb_mac);
2645                 data[4] = e100_loopback_test(nic, lb_phy);
2646
2647                 /* restore speed, duplex & autoneg settings */
2648                 err = mii_ethtool_sset(&nic->mii, &cmd);
2649
2650                 if (netif_running(netdev))
2651                         e100_up(nic);
2652         }
2653         for (i = 0; i < E100_TEST_LEN; i++)
2654                 test->flags |= data[i] ? ETH_TEST_FL_FAILED : 0;
2655
2656         msleep_interruptible(4 * 1000);
2657 }
2658
2659 static int e100_set_phys_id(struct net_device *netdev,
2660                             enum ethtool_phys_id_state state)
2661 {
2662         struct nic *nic = netdev_priv(netdev);
2663         enum led_state {
2664                 led_on     = 0x01,
2665                 led_off    = 0x04,
2666                 led_on_559 = 0x05,
2667                 led_on_557 = 0x07,
2668         };
2669         u16 led_reg = (nic->phy == phy_82552_v) ? E100_82552_LED_OVERRIDE :
2670                 MII_LED_CONTROL;
2671         u16 leds = 0;
2672
2673         switch (state) {
2674         case ETHTOOL_ID_ACTIVE:
2675                 return 2;
2676
2677         case ETHTOOL_ID_ON:
2678                 leds = (nic->phy == phy_82552_v) ? E100_82552_LED_ON :
2679                        (nic->mac < mac_82559_D101M) ? led_on_557 : led_on_559;
2680                 break;
2681
2682         case ETHTOOL_ID_OFF:
2683                 leds = (nic->phy == phy_82552_v) ? E100_82552_LED_OFF : led_off;
2684                 break;
2685
2686         case ETHTOOL_ID_INACTIVE:
2687                 break;
2688         }
2689
2690         mdio_write(netdev, nic->mii.phy_id, led_reg, leds);
2691         return 0;
2692 }
2693
2694 static const char e100_gstrings_stats[][ETH_GSTRING_LEN] = {
2695         "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
2696         "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
2697         "rx_length_errors", "rx_over_errors", "rx_crc_errors",
2698         "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
2699         "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
2700         "tx_heartbeat_errors", "tx_window_errors",
2701         /* device-specific stats */
2702         "tx_deferred", "tx_single_collisions", "tx_multi_collisions",
2703         "tx_flow_control_pause", "rx_flow_control_pause",
2704         "rx_flow_control_unsupported", "tx_tco_packets", "rx_tco_packets",
2705         "rx_short_frame_errors", "rx_over_length_errors",
2706 };
2707 #define E100_NET_STATS_LEN      21
2708 #define E100_STATS_LEN  ARRAY_SIZE(e100_gstrings_stats)
2709
2710 static int e100_get_sset_count(struct net_device *netdev, int sset)
2711 {
2712         switch (sset) {
2713         case ETH_SS_TEST:
2714                 return E100_TEST_LEN;
2715         case ETH_SS_STATS:
2716                 return E100_STATS_LEN;
2717         default:
2718                 return -EOPNOTSUPP;
2719         }
2720 }
2721
2722 static void e100_get_ethtool_stats(struct net_device *netdev,
2723         struct ethtool_stats *stats, u64 *data)
2724 {
2725         struct nic *nic = netdev_priv(netdev);
2726         int i;
2727
2728         for (i = 0; i < E100_NET_STATS_LEN; i++)
2729                 data[i] = ((unsigned long *)&netdev->stats)[i];
2730
2731         data[i++] = nic->tx_deferred;
2732         data[i++] = nic->tx_single_collisions;
2733         data[i++] = nic->tx_multiple_collisions;
2734         data[i++] = nic->tx_fc_pause;
2735         data[i++] = nic->rx_fc_pause;
2736         data[i++] = nic->rx_fc_unsupported;
2737         data[i++] = nic->tx_tco_frames;
2738         data[i++] = nic->rx_tco_frames;
2739         data[i++] = nic->rx_short_frame_errors;
2740         data[i++] = nic->rx_over_length_errors;
2741 }
2742
2743 static void e100_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
2744 {
2745         switch (stringset) {
2746         case ETH_SS_TEST:
2747                 memcpy(data, *e100_gstrings_test, sizeof(e100_gstrings_test));
2748                 break;
2749         case ETH_SS_STATS:
2750                 memcpy(data, *e100_gstrings_stats, sizeof(e100_gstrings_stats));
2751                 break;
2752         }
2753 }
2754
2755 static const struct ethtool_ops e100_ethtool_ops = {
2756         .get_drvinfo            = e100_get_drvinfo,
2757         .get_regs_len           = e100_get_regs_len,
2758         .get_regs               = e100_get_regs,
2759         .get_wol                = e100_get_wol,
2760         .set_wol                = e100_set_wol,
2761         .get_msglevel           = e100_get_msglevel,
2762         .set_msglevel           = e100_set_msglevel,
2763         .nway_reset             = e100_nway_reset,
2764         .get_link               = e100_get_link,
2765         .get_eeprom_len         = e100_get_eeprom_len,
2766         .get_eeprom             = e100_get_eeprom,
2767         .set_eeprom             = e100_set_eeprom,
2768         .get_ringparam          = e100_get_ringparam,
2769         .set_ringparam          = e100_set_ringparam,
2770         .self_test              = e100_diag_test,
2771         .get_strings            = e100_get_strings,
2772         .set_phys_id            = e100_set_phys_id,
2773         .get_ethtool_stats      = e100_get_ethtool_stats,
2774         .get_sset_count         = e100_get_sset_count,
2775         .get_ts_info            = ethtool_op_get_ts_info,
2776         .get_link_ksettings     = e100_get_link_ksettings,
2777         .set_link_ksettings     = e100_set_link_ksettings,
2778 };
2779
2780 static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2781 {
2782         struct nic *nic = netdev_priv(netdev);
2783
2784         return generic_mii_ioctl(&nic->mii, if_mii(ifr), cmd, NULL);
2785 }
2786
2787 static int e100_alloc(struct nic *nic)
2788 {
2789         nic->mem = pci_alloc_consistent(nic->pdev, sizeof(struct mem),
2790                 &nic->dma_addr);
2791         return nic->mem ? 0 : -ENOMEM;
2792 }
2793
2794 static void e100_free(struct nic *nic)
2795 {
2796         if (nic->mem) {
2797                 pci_free_consistent(nic->pdev, sizeof(struct mem),
2798                         nic->mem, nic->dma_addr);
2799                 nic->mem = NULL;
2800         }
2801 }
2802
2803 static int e100_open(struct net_device *netdev)
2804 {
2805         struct nic *nic = netdev_priv(netdev);
2806         int err = 0;
2807
2808         netif_carrier_off(netdev);
2809         if ((err = e100_up(nic)))
2810                 netif_err(nic, ifup, nic->netdev, "Cannot open interface, aborting\n");
2811         return err;
2812 }
2813
2814 static int e100_close(struct net_device *netdev)
2815 {
2816         e100_down(netdev_priv(netdev));
2817         return 0;
2818 }
2819
2820 static int e100_set_features(struct net_device *netdev,
2821                              netdev_features_t features)
2822 {
2823         struct nic *nic = netdev_priv(netdev);
2824         netdev_features_t changed = features ^ netdev->features;
2825
2826         if (!(changed & (NETIF_F_RXFCS | NETIF_F_RXALL)))
2827                 return 0;
2828
2829         netdev->features = features;
2830         e100_exec_cb(nic, NULL, e100_configure);
2831         return 0;
2832 }
2833
2834 static const struct net_device_ops e100_netdev_ops = {
2835         .ndo_open               = e100_open,
2836         .ndo_stop               = e100_close,
2837         .ndo_start_xmit         = e100_xmit_frame,
2838         .ndo_validate_addr      = eth_validate_addr,
2839         .ndo_set_rx_mode        = e100_set_multicast_list,
2840         .ndo_set_mac_address    = e100_set_mac_address,
2841         .ndo_do_ioctl           = e100_do_ioctl,
2842         .ndo_tx_timeout         = e100_tx_timeout,
2843 #ifdef CONFIG_NET_POLL_CONTROLLER
2844         .ndo_poll_controller    = e100_netpoll,
2845 #endif
2846         .ndo_set_features       = e100_set_features,
2847 };
2848
2849 static int e100_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2850 {
2851         struct net_device *netdev;
2852         struct nic *nic;
2853         int err;
2854
2855         if (!(netdev = alloc_etherdev(sizeof(struct nic))))
2856                 return -ENOMEM;
2857
2858         netdev->hw_features |= NETIF_F_RXFCS;
2859         netdev->priv_flags |= IFF_SUPP_NOFCS;
2860         netdev->hw_features |= NETIF_F_RXALL;
2861
2862         netdev->netdev_ops = &e100_netdev_ops;
2863         netdev->ethtool_ops = &e100_ethtool_ops;
2864         netdev->watchdog_timeo = E100_WATCHDOG_PERIOD;
2865         strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
2866
2867         nic = netdev_priv(netdev);
2868         netif_napi_add(netdev, &nic->napi, e100_poll, E100_NAPI_WEIGHT);
2869         nic->netdev = netdev;
2870         nic->pdev = pdev;
2871         nic->msg_enable = (1 << debug) - 1;
2872         nic->mdio_ctrl = mdio_ctrl_hw;
2873         pci_set_drvdata(pdev, netdev);
2874
2875         if ((err = pci_enable_device(pdev))) {
2876                 netif_err(nic, probe, nic->netdev, "Cannot enable PCI device, aborting\n");
2877                 goto err_out_free_dev;
2878         }
2879
2880         if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
2881                 netif_err(nic, probe, nic->netdev, "Cannot find proper PCI device base address, aborting\n");
2882                 err = -ENODEV;
2883                 goto err_out_disable_pdev;
2884         }
2885
2886         if ((err = pci_request_regions(pdev, DRV_NAME))) {
2887                 netif_err(nic, probe, nic->netdev, "Cannot obtain PCI resources, aborting\n");
2888                 goto err_out_disable_pdev;
2889         }
2890
2891         if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))) {
2892                 netif_err(nic, probe, nic->netdev, "No usable DMA configuration, aborting\n");
2893                 goto err_out_free_res;
2894         }
2895
2896         SET_NETDEV_DEV(netdev, &pdev->dev);
2897
2898         if (use_io)
2899                 netif_info(nic, probe, nic->netdev, "using i/o access mode\n");
2900
2901         nic->csr = pci_iomap(pdev, (use_io ? 1 : 0), sizeof(struct csr));
2902         if (!nic->csr) {
2903                 netif_err(nic, probe, nic->netdev, "Cannot map device registers, aborting\n");
2904                 err = -ENOMEM;
2905                 goto err_out_free_res;
2906         }
2907
2908         if (ent->driver_data)
2909                 nic->flags |= ich;
2910         else
2911                 nic->flags &= ~ich;
2912
2913         e100_get_defaults(nic);
2914
2915         /* D100 MAC doesn't allow rx of vlan packets with normal MTU */
2916         if (nic->mac < mac_82558_D101_A4)
2917                 netdev->features |= NETIF_F_VLAN_CHALLENGED;
2918
2919         /* locks must be initialized before calling hw_reset */
2920         spin_lock_init(&nic->cb_lock);
2921         spin_lock_init(&nic->cmd_lock);
2922         spin_lock_init(&nic->mdio_lock);
2923
2924         /* Reset the device before pci_set_master() in case device is in some
2925          * funky state and has an interrupt pending - hint: we don't have the
2926          * interrupt handler registered yet. */
2927         e100_hw_reset(nic);
2928
2929         pci_set_master(pdev);
2930
2931         setup_timer(&nic->watchdog, e100_watchdog, (unsigned long)nic);
2932
2933         INIT_WORK(&nic->tx_timeout_task, e100_tx_timeout_task);
2934
2935         if ((err = e100_alloc(nic))) {
2936                 netif_err(nic, probe, nic->netdev, "Cannot alloc driver memory, aborting\n");
2937                 goto err_out_iounmap;
2938         }
2939
2940         if ((err = e100_eeprom_load(nic)))
2941                 goto err_out_free;
2942
2943         e100_phy_init(nic);
2944
2945         memcpy(netdev->dev_addr, nic->eeprom, ETH_ALEN);
2946         if (!is_valid_ether_addr(netdev->dev_addr)) {
2947                 if (!eeprom_bad_csum_allow) {
2948                         netif_err(nic, probe, nic->netdev, "Invalid MAC address from EEPROM, aborting\n");
2949                         err = -EAGAIN;
2950                         goto err_out_free;
2951                 } else {
2952                         netif_err(nic, probe, nic->netdev, "Invalid MAC address from EEPROM, you MUST configure one.\n");
2953                 }
2954         }
2955
2956         /* Wol magic packet can be enabled from eeprom */
2957         if ((nic->mac >= mac_82558_D101_A4) &&
2958            (le16_to_cpu(nic->eeprom[eeprom_id]) & eeprom_id_wol)) {
2959                 nic->flags |= wol_magic;
2960                 device_set_wakeup_enable(&pdev->dev, true);
2961         }
2962
2963         /* ack any pending wake events, disable PME */
2964         pci_pme_active(pdev, false);
2965
2966         strcpy(netdev->name, "eth%d");
2967         if ((err = register_netdev(netdev))) {
2968                 netif_err(nic, probe, nic->netdev, "Cannot register net device, aborting\n");
2969                 goto err_out_free;
2970         }
2971         nic->cbs_pool = pci_pool_create(netdev->name,
2972                            nic->pdev,
2973                            nic->params.cbs.max * sizeof(struct cb),
2974                            sizeof(u32),
2975                            0);
2976         if (!nic->cbs_pool) {
2977                 netif_err(nic, probe, nic->netdev, "Cannot create DMA pool, aborting\n");
2978                 err = -ENOMEM;
2979                 goto err_out_pool;
2980         }
2981         netif_info(nic, probe, nic->netdev,
2982                    "addr 0x%llx, irq %d, MAC addr %pM\n",
2983                    (unsigned long long)pci_resource_start(pdev, use_io ? 1 : 0),
2984                    pdev->irq, netdev->dev_addr);
2985
2986         return 0;
2987
2988 err_out_pool:
2989         unregister_netdev(netdev);
2990 err_out_free:
2991         e100_free(nic);
2992 err_out_iounmap:
2993         pci_iounmap(pdev, nic->csr);
2994 err_out_free_res:
2995         pci_release_regions(pdev);
2996 err_out_disable_pdev:
2997         pci_disable_device(pdev);
2998 err_out_free_dev:
2999         free_netdev(netdev);
3000         return err;
3001 }
3002
3003 static void e100_remove(struct pci_dev *pdev)
3004 {
3005         struct net_device *netdev = pci_get_drvdata(pdev);
3006
3007         if (netdev) {
3008                 struct nic *nic = netdev_priv(netdev);
3009                 unregister_netdev(netdev);
3010                 e100_free(nic);
3011                 pci_iounmap(pdev, nic->csr);
3012                 pci_pool_destroy(nic->cbs_pool);
3013                 free_netdev(netdev);
3014                 pci_release_regions(pdev);
3015                 pci_disable_device(pdev);
3016         }
3017 }
3018
3019 #define E100_82552_SMARTSPEED   0x14   /* SmartSpeed Ctrl register */
3020 #define E100_82552_REV_ANEG     0x0200 /* Reverse auto-negotiation */
3021 #define E100_82552_ANEG_NOW     0x0400 /* Auto-negotiate now */
3022 static void __e100_shutdown(struct pci_dev *pdev, bool *enable_wake)
3023 {
3024         struct net_device *netdev = pci_get_drvdata(pdev);
3025         struct nic *nic = netdev_priv(netdev);
3026
3027         if (netif_running(netdev))
3028                 e100_down(nic);
3029         netif_device_detach(netdev);
3030
3031         pci_save_state(pdev);
3032
3033         if ((nic->flags & wol_magic) | e100_asf(nic)) {
3034                 /* enable reverse auto-negotiation */
3035                 if (nic->phy == phy_82552_v) {
3036                         u16 smartspeed = mdio_read(netdev, nic->mii.phy_id,
3037                                                    E100_82552_SMARTSPEED);
3038
3039                         mdio_write(netdev, nic->mii.phy_id,
3040                                    E100_82552_SMARTSPEED, smartspeed |
3041                                    E100_82552_REV_ANEG | E100_82552_ANEG_NOW);
3042                 }
3043                 *enable_wake = true;
3044         } else {
3045                 *enable_wake = false;
3046         }
3047
3048         pci_clear_master(pdev);
3049 }
3050
3051 static int __e100_power_off(struct pci_dev *pdev, bool wake)
3052 {
3053         if (wake)
3054                 return pci_prepare_to_sleep(pdev);
3055
3056         pci_wake_from_d3(pdev, false);
3057         pci_set_power_state(pdev, PCI_D3hot);
3058
3059         return 0;
3060 }
3061
3062 #ifdef CONFIG_PM
3063 static int e100_suspend(struct pci_dev *pdev, pm_message_t state)
3064 {
3065         bool wake;
3066         __e100_shutdown(pdev, &wake);
3067         return __e100_power_off(pdev, wake);
3068 }
3069
3070 static int e100_resume(struct pci_dev *pdev)
3071 {
3072         struct net_device *netdev = pci_get_drvdata(pdev);
3073         struct nic *nic = netdev_priv(netdev);
3074
3075         pci_set_power_state(pdev, PCI_D0);
3076         pci_restore_state(pdev);
3077         /* ack any pending wake events, disable PME */
3078         pci_enable_wake(pdev, PCI_D0, 0);
3079
3080         /* disable reverse auto-negotiation */
3081         if (nic->phy == phy_82552_v) {
3082                 u16 smartspeed = mdio_read(netdev, nic->mii.phy_id,
3083                                            E100_82552_SMARTSPEED);
3084
3085                 mdio_write(netdev, nic->mii.phy_id,
3086                            E100_82552_SMARTSPEED,
3087                            smartspeed & ~(E100_82552_REV_ANEG));
3088         }
3089
3090         netif_device_attach(netdev);
3091         if (netif_running(netdev))
3092                 e100_up(nic);
3093
3094         return 0;
3095 }
3096 #endif /* CONFIG_PM */
3097
3098 static void e100_shutdown(struct pci_dev *pdev)
3099 {
3100         bool wake;
3101         __e100_shutdown(pdev, &wake);
3102         if (system_state == SYSTEM_POWER_OFF)
3103                 __e100_power_off(pdev, wake);
3104 }
3105
3106 /* ------------------ PCI Error Recovery infrastructure  -------------- */
3107 /**
3108  * e100_io_error_detected - called when PCI error is detected.
3109  * @pdev: Pointer to PCI device
3110  * @state: The current pci connection state
3111  */
3112 static pci_ers_result_t e100_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
3113 {
3114         struct net_device *netdev = pci_get_drvdata(pdev);
3115         struct nic *nic = netdev_priv(netdev);
3116
3117         netif_device_detach(netdev);
3118
3119         if (state == pci_channel_io_perm_failure)
3120                 return PCI_ERS_RESULT_DISCONNECT;
3121
3122         if (netif_running(netdev))
3123                 e100_down(nic);
3124         pci_disable_device(pdev);
3125
3126         /* Request a slot reset. */
3127         return PCI_ERS_RESULT_NEED_RESET;
3128 }
3129
3130 /**
3131  * e100_io_slot_reset - called after the pci bus has been reset.
3132  * @pdev: Pointer to PCI device
3133  *
3134  * Restart the card from scratch.
3135  */
3136 static pci_ers_result_t e100_io_slot_reset(struct pci_dev *pdev)
3137 {
3138         struct net_device *netdev = pci_get_drvdata(pdev);
3139         struct nic *nic = netdev_priv(netdev);
3140
3141         if (pci_enable_device(pdev)) {
3142                 pr_err("Cannot re-enable PCI device after reset\n");
3143                 return PCI_ERS_RESULT_DISCONNECT;
3144         }
3145         pci_set_master(pdev);
3146
3147         /* Only one device per card can do a reset */
3148         if (0 != PCI_FUNC(pdev->devfn))
3149                 return PCI_ERS_RESULT_RECOVERED;
3150         e100_hw_reset(nic);
3151         e100_phy_init(nic);
3152
3153         return PCI_ERS_RESULT_RECOVERED;
3154 }
3155
3156 /**
3157  * e100_io_resume - resume normal operations
3158  * @pdev: Pointer to PCI device
3159  *
3160  * Resume normal operations after an error recovery
3161  * sequence has been completed.
3162  */
3163 static void e100_io_resume(struct pci_dev *pdev)
3164 {
3165         struct net_device *netdev = pci_get_drvdata(pdev);
3166         struct nic *nic = netdev_priv(netdev);
3167
3168         /* ack any pending wake events, disable PME */
3169         pci_enable_wake(pdev, PCI_D0, 0);
3170
3171         netif_device_attach(netdev);
3172         if (netif_running(netdev)) {
3173                 e100_open(netdev);
3174                 mod_timer(&nic->watchdog, jiffies);
3175         }
3176 }
3177
3178 static const struct pci_error_handlers e100_err_handler = {
3179         .error_detected = e100_io_error_detected,
3180         .slot_reset = e100_io_slot_reset,
3181         .resume = e100_io_resume,
3182 };
3183
3184 static struct pci_driver e100_driver = {
3185         .name =         DRV_NAME,
3186         .id_table =     e100_id_table,
3187         .probe =        e100_probe,
3188         .remove =       e100_remove,
3189 #ifdef CONFIG_PM
3190         /* Power Management hooks */
3191         .suspend =      e100_suspend,
3192         .resume =       e100_resume,
3193 #endif
3194         .shutdown =     e100_shutdown,
3195         .err_handler = &e100_err_handler,
3196 };
3197
3198 static int __init e100_init_module(void)
3199 {
3200         if (((1 << debug) - 1) & NETIF_MSG_DRV) {
3201                 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
3202                 pr_info("%s\n", DRV_COPYRIGHT);
3203         }
3204         return pci_register_driver(&e100_driver);
3205 }
3206
3207 static void __exit e100_cleanup_module(void)
3208 {
3209         pci_unregister_driver(&e100_driver);
3210 }
3211
3212 module_init(e100_init_module);
3213 module_exit(e100_cleanup_module);