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