[PATCH] 3c59x: don't enable scatter/gather w/o checksum support
[safe/jmp/linux-2.6] / drivers / net / 3c59x.c
1 /* EtherLinkXL.c: A 3Com EtherLink PCI III/XL ethernet driver for linux. */
2 /*
3         Written 1996-1999 by Donald Becker.
4
5         This software may be used and distributed according to the terms
6         of the GNU General Public License, incorporated herein by reference.
7
8         This driver is for the 3Com "Vortex" and "Boomerang" series ethercards.
9         Members of the series include Fast EtherLink 3c590/3c592/3c595/3c597
10         and the EtherLink XL 3c900 and 3c905 cards.
11
12         Problem reports and questions should be directed to
13         vortex@scyld.com
14
15         The author may be reached as becker@scyld.com, or C/O
16         Scyld Computing Corporation
17         410 Severn Ave., Suite 210
18         Annapolis MD 21403
19
20         Linux Kernel Additions:
21         
22         0.99H+lk0.9 - David S. Miller - softnet, PCI DMA updates
23         0.99H+lk1.0 - Jeff Garzik <jgarzik@pobox.com>
24                 Remove compatibility defines for kernel versions < 2.2.x.
25                 Update for new 2.3.x module interface
26         LK1.1.2 (March 19, 2000)
27         * New PCI interface (jgarzik)
28
29     LK1.1.3 25 April 2000, Andrew Morton <andrewm@uow.edu.au>
30     - Merged with 3c575_cb.c
31     - Don't set RxComplete in boomerang interrupt enable reg
32     - spinlock in vortex_timer to protect mdio functions
33     - disable local interrupts around call to vortex_interrupt in
34       vortex_tx_timeout() (So vortex_interrupt can use spin_lock())
35     - Select window 3 in vortex_timer()'s write to Wn3_MAC_Ctrl
36     - In vortex_start_xmit(), move the lock to _after_ we've altered
37       vp->cur_tx and vp->tx_full.  This defeats the race between
38       vortex_start_xmit() and vortex_interrupt which was identified
39       by Bogdan Costescu.
40     - Merged back support for six new cards from various sources
41     - Set vortex_have_pci if pci_module_init returns zero (fixes cardbus
42       insertion oops)
43     - Tell it that 3c905C has NWAY for 100bT autoneg
44     - Fix handling of SetStatusEnd in 'Too much work..' code, as
45       per 2.3.99's 3c575_cb (Dave Hinds).
46     - Split ISR into two for vortex & boomerang
47     - Fix MOD_INC/DEC races
48     - Handle resource allocation failures.
49     - Fix 3CCFE575CT LED polarity
50     - Make tx_interrupt_mitigation the default
51
52     LK1.1.4 25 April 2000, Andrew Morton <andrewm@uow.edu.au>    
53     - Add extra TxReset to vortex_up() to fix 575_cb hotplug initialisation probs.
54     - Put vortex_info_tbl into __devinitdata
55     - In the vortex_error StatsFull HACK, disable stats in vp->intr_enable as well
56       as in the hardware.
57     - Increased the loop counter in issue_and_wait from 2,000 to 4,000.
58
59     LK1.1.5 28 April 2000, andrewm
60     - Added powerpc defines (John Daniel <jdaniel@etresoft.com> said these work...)
61     - Some extra diagnostics
62     - In vortex_error(), reset the Tx on maxCollisions.  Otherwise most
63       chips usually get a Tx timeout.
64     - Added extra_reset module parm
65     - Replaced some inline timer manip with mod_timer
66       (Franois romieu <Francois.Romieu@nic.fr>)
67     - In vortex_up(), don't make Wn3_config initialisation dependent upon has_nway
68       (this came across from 3c575_cb).
69
70     LK1.1.6 06 Jun 2000, andrewm
71     - Backed out the PPC defines.
72     - Use del_timer_sync(), mod_timer().
73     - Fix wrapped ulong comparison in boomerang_rx()
74     - Add IS_TORNADO, use it to suppress 3c905C checksum error msg
75       (Donald Becker, I Lee Hetherington <ilh@sls.lcs.mit.edu>)
76     - Replace union wn3_config with BFINS/BFEXT manipulation for
77       sparc64 (Pete Zaitcev, Peter Jones)
78     - In vortex_error, do_tx_reset and vortex_tx_timeout(Vortex):
79       do a netif_wake_queue() to better recover from errors. (Anders Pedersen,
80       Donald Becker)
81     - Print a warning on out-of-memory (rate limited to 1 per 10 secs)
82     - Added two more Cardbus 575 NICs: 5b57 and 6564 (Paul Wagland)
83
84     LK1.1.7 2 Jul 2000 andrewm
85     - Better handling of shared IRQs
86     - Reset the transmitter on a Tx reclaim error
87     - Fixed crash under OOM during vortex_open() (Mark Hemment)
88     - Fix Rx cessation problem during OOM (help from Mark Hemment)
89     - The spinlocks around the mdio access were blocking interrupts for 300uS.
90       Fix all this to use spin_lock_bh() within mdio_read/write
91     - Only write to TxFreeThreshold if it's a boomerang - other NICs don't
92       have one.
93     - Added 802.3x MAC-layer flow control support
94
95    LK1.1.8 13 Aug 2000 andrewm
96     - Ignore request_region() return value - already reserved if Cardbus.
97     - Merged some additional Cardbus flags from Don's 0.99Qk
98     - Some fixes for 3c556 (Fred Maciel)
99     - Fix for EISA initialisation (Jan Rekorajski)
100     - Renamed MII_XCVR_PWR and EEPROM_230 to align with 3c575_cb and D. Becker's drivers
101     - Fixed MII_XCVR_PWR for 3CCFE575CT
102     - Added INVERT_LED_PWR, used it.
103     - Backed out the extra_reset stuff
104
105    LK1.1.9 12 Sep 2000 andrewm
106     - Backed out the tx_reset_resume flags.  It was a no-op.
107     - In vortex_error, don't reset the Tx on txReclaim errors
108     - In vortex_error, don't reset the Tx on maxCollisions errors.
109       Hence backed out all the DownListPtr logic here.
110     - In vortex_error, give Tornado cards a partial TxReset on
111       maxCollisions (David Hinds).  Defined MAX_COLLISION_RESET for this.
112     - Redid some driver flags and device names based on pcmcia_cs-3.1.20.
113     - Fixed a bug where, if vp->tx_full is set when the interface
114       is downed, it remains set when the interface is upped.  Bad
115       things happen.
116
117    LK1.1.10 17 Sep 2000 andrewm
118     - Added EEPROM_8BIT for 3c555 (Fred Maciel)
119     - Added experimental support for the 3c556B Laptop Hurricane (Louis Gerbarg)
120     - Add HAS_NWAY to "3c900 Cyclone 10Mbps TPO"
121
122    LK1.1.11 13 Nov 2000 andrewm
123     - Dump MOD_INC/DEC_USE_COUNT, use SET_MODULE_OWNER
124
125    LK1.1.12 1 Jan 2001 andrewm (2.4.0-pre1)
126     - Call pci_enable_device before we request our IRQ (Tobias Ringstrom)
127     - Add 3c590 PCI latency timer hack to vortex_probe1 (from 0.99Ra)
128     - Added extended issue_and_wait for the 3c905CX.
129     - Look for an MII on PHY index 24 first (3c905CX oddity).
130     - Add HAS_NWAY to 3cSOHO100-TX (Brett Frankenberger)
131     - Don't free skbs we don't own on oom path in vortex_open().
132
133    LK1.1.13 27 Jan 2001
134     - Added explicit `medialock' flag so we can truly
135       lock the media type down with `options'.
136     - "check ioremap return and some tidbits" (Arnaldo Carvalho de Melo <acme@conectiva.com.br>)
137     - Added and used EEPROM_NORESET for 3c556B PM resumes.
138     - Fixed leakage of vp->rx_ring.
139     - Break out separate HAS_HWCKSM device capability flag.
140     - Kill vp->tx_full (ANK)
141     - Merge zerocopy fragment handling (ANK?)
142
143    LK1.1.14 15 Feb 2001
144     - Enable WOL.  Can be turned on with `enable_wol' module option.
145     - EISA and PCI initialisation fixes (jgarzik, Manfred Spraul)
146     - If a device's internalconfig register reports it has NWAY,
147       use it, even if autoselect is enabled.
148
149    LK1.1.15 6 June 2001 akpm
150     - Prevent double counting of received bytes (Lars Christensen)
151     - Add ethtool support (jgarzik)
152     - Add module parm descriptions (Andrzej M. Krzysztofowicz)
153     - Implemented alloc_etherdev() API
154     - Special-case the 'Tx error 82' message.
155
156    LK1.1.16 18 July 2001 akpm
157     - Make NETIF_F_SG dependent upon nr_free_highpages(), not on CONFIG_HIGHMEM
158     - Lessen verbosity of bootup messages
159     - Fix WOL - use new PM API functions.
160     - Use netif_running() instead of vp->open in suspend/resume.
161     - Don't reset the interface logic on open/close/rmmod.  It upsets
162       autonegotiation, and hence DHCP (from 0.99T).
163     - Back out EEPROM_NORESET flag because of the above (we do it for all
164       NICs).
165     - Correct 3c982 identification string
166     - Rename wait_for_completion() to issue_and_wait() to avoid completion.h
167       clash.
168
169    LK1.1.17 18Dec01 akpm
170     - PCI ID 9805 is a Python-T, not a dual-port Cyclone.  Apparently.
171       And it has NWAY.
172     - Mask our advertised modes (vp->advertising) with our capabilities
173           (MII reg5) when deciding which duplex mode to use.
174     - Add `global_options' as default for options[].  Ditto global_enable_wol,
175       global_full_duplex.
176
177    LK1.1.18 01Jul02 akpm
178     - Fix for undocumented transceiver power-up bit on some 3c566B's
179       (Donald Becker, Rahul Karnik)
180
181     - See http://www.zip.com.au/~akpm/linux/#3c59x-2.3 for more details.
182     - Also see Documentation/networking/vortex.txt
183
184    LK1.1.19 10Nov02 Marc Zyngier <maz@wild-wind.fr.eu.org>
185     - EISA sysfs integration.
186 */
187
188 /*
189  * FIXME: This driver _could_ support MTU changing, but doesn't.  See Don's hamachi.c implementation
190  * as well as other drivers
191  *
192  * NOTE: If you make 'vortex_debug' a constant (#define vortex_debug 0) the driver shrinks by 2k
193  * due to dead code elimination.  There will be some performance benefits from this due to
194  * elimination of all the tests and reduced cache footprint.
195  */
196
197
198 #define DRV_NAME        "3c59x"
199 #define DRV_VERSION     "LK1.1.19"
200 #define DRV_RELDATE     "10 Nov 2002"
201
202
203
204 /* A few values that may be tweaked. */
205 /* Keep the ring sizes a power of two for efficiency. */
206 #define TX_RING_SIZE    16
207 #define RX_RING_SIZE    32
208 #define PKT_BUF_SZ              1536                    /* Size of each temporary Rx buffer.*/
209
210 /* "Knobs" that adjust features and parameters. */
211 /* Set the copy breakpoint for the copy-only-tiny-frames scheme.
212    Setting to > 1512 effectively disables this feature. */
213 #ifndef __arm__
214 static int rx_copybreak = 200;
215 #else
216 /* ARM systems perform better by disregarding the bus-master
217    transfer capability of these cards. -- rmk */
218 static int rx_copybreak = 1513;
219 #endif
220 /* Allow setting MTU to a larger size, bypassing the normal ethernet setup. */
221 static const int mtu = 1500;
222 /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
223 static int max_interrupt_work = 32;
224 /* Tx timeout interval (millisecs) */
225 static int watchdog = 5000;
226
227 /* Allow aggregation of Tx interrupts.  Saves CPU load at the cost
228  * of possible Tx stalls if the system is blocking interrupts
229  * somewhere else.  Undefine this to disable.
230  */
231 #define tx_interrupt_mitigation 1
232
233 /* Put out somewhat more debugging messages. (0: no msg, 1 minimal .. 6). */
234 #define vortex_debug debug
235 #ifdef VORTEX_DEBUG
236 static int vortex_debug = VORTEX_DEBUG;
237 #else
238 static int vortex_debug = 1;
239 #endif
240
241 #include <linux/config.h>
242 #include <linux/module.h>
243 #include <linux/kernel.h>
244 #include <linux/string.h>
245 #include <linux/timer.h>
246 #include <linux/errno.h>
247 #include <linux/in.h>
248 #include <linux/ioport.h>
249 #include <linux/slab.h>
250 #include <linux/interrupt.h>
251 #include <linux/pci.h>
252 #include <linux/mii.h>
253 #include <linux/init.h>
254 #include <linux/netdevice.h>
255 #include <linux/etherdevice.h>
256 #include <linux/skbuff.h>
257 #include <linux/ethtool.h>
258 #include <linux/highmem.h>
259 #include <linux/eisa.h>
260 #include <linux/bitops.h>
261 #include <asm/irq.h>                    /* For NR_IRQS only. */
262 #include <asm/io.h>
263 #include <asm/uaccess.h>
264
265 /* Kernel compatibility defines, some common to David Hinds' PCMCIA package.
266    This is only in the support-all-kernels source code. */
267
268 #define RUN_AT(x) (jiffies + (x))
269
270 #include <linux/delay.h>
271
272
273 static char version[] __devinitdata =
274 DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.html\n";
275
276 MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
277 MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "
278                                         DRV_VERSION " " DRV_RELDATE);
279 MODULE_LICENSE("GPL");
280 MODULE_VERSION(DRV_VERSION);
281
282
283 /* Operational parameter that usually are not changed. */
284
285 /* The Vortex size is twice that of the original EtherLinkIII series: the
286    runtime register window, window 1, is now always mapped in.
287    The Boomerang size is twice as large as the Vortex -- it has additional
288    bus master control registers. */
289 #define VORTEX_TOTAL_SIZE 0x20
290 #define BOOMERANG_TOTAL_SIZE 0x40
291
292 /* Set iff a MII transceiver on any interface requires mdio preamble.
293    This only set with the original DP83840 on older 3c905 boards, so the extra
294    code size of a per-interface flag is not worthwhile. */
295 static char mii_preamble_required;
296
297 #define PFX DRV_NAME ": "
298
299
300
301 /*
302                                 Theory of Operation
303
304 I. Board Compatibility
305
306 This device driver is designed for the 3Com FastEtherLink and FastEtherLink
307 XL, 3Com's PCI to 10/100baseT adapters.  It also works with the 10Mbs
308 versions of the FastEtherLink cards.  The supported product IDs are
309   3c590, 3c592, 3c595, 3c597, 3c900, 3c905
310
311 The related ISA 3c515 is supported with a separate driver, 3c515.c, included
312 with the kernel source or available from
313     cesdis.gsfc.nasa.gov:/pub/linux/drivers/3c515.html
314
315 II. Board-specific settings
316
317 PCI bus devices are configured by the system at boot time, so no jumpers
318 need to be set on the board.  The system BIOS should be set to assign the
319 PCI INTA signal to an otherwise unused system IRQ line.
320
321 The EEPROM settings for media type and forced-full-duplex are observed.
322 The EEPROM media type should be left at the default "autoselect" unless using
323 10base2 or AUI connections which cannot be reliably detected.
324
325 III. Driver operation
326
327 The 3c59x series use an interface that's very similar to the previous 3c5x9
328 series.  The primary interface is two programmed-I/O FIFOs, with an
329 alternate single-contiguous-region bus-master transfer (see next).
330
331 The 3c900 "Boomerang" series uses a full-bus-master interface with separate
332 lists of transmit and receive descriptors, similar to the AMD LANCE/PCnet,
333 DEC Tulip and Intel Speedo3.  The first chip version retains a compatible
334 programmed-I/O interface that has been removed in 'B' and subsequent board
335 revisions.
336
337 One extension that is advertised in a very large font is that the adapters
338 are capable of being bus masters.  On the Vortex chip this capability was
339 only for a single contiguous region making it far less useful than the full
340 bus master capability.  There is a significant performance impact of taking
341 an extra interrupt or polling for the completion of each transfer, as well
342 as difficulty sharing the single transfer engine between the transmit and
343 receive threads.  Using DMA transfers is a win only with large blocks or
344 with the flawed versions of the Intel Orion motherboard PCI controller.
345
346 The Boomerang chip's full-bus-master interface is useful, and has the
347 currently-unused advantages over other similar chips that queued transmit
348 packets may be reordered and receive buffer groups are associated with a
349 single frame.
350
351 With full-bus-master support, this driver uses a "RX_COPYBREAK" scheme.
352 Rather than a fixed intermediate receive buffer, this scheme allocates
353 full-sized skbuffs as receive buffers.  The value RX_COPYBREAK is used as
354 the copying breakpoint: it is chosen to trade-off the memory wasted by
355 passing the full-sized skbuff to the queue layer for all frames vs. the
356 copying cost of copying a frame to a correctly-sized skbuff.
357
358 IIIC. Synchronization
359 The driver runs as two independent, single-threaded flows of control.  One
360 is the send-packet routine, which enforces single-threaded use by the
361 dev->tbusy flag.  The other thread is the interrupt handler, which is single
362 threaded by the hardware and other software.
363
364 IV. Notes
365
366 Thanks to Cameron Spitzer and Terry Murphy of 3Com for providing development
367 3c590, 3c595, and 3c900 boards.
368 The name "Vortex" is the internal 3Com project name for the PCI ASIC, and
369 the EISA version is called "Demon".  According to Terry these names come
370 from rides at the local amusement park.
371
372 The new chips support both ethernet (1.5K) and FDDI (4.5K) packet sizes!
373 This driver only supports ethernet packets because of the skbuff allocation
374 limit of 4K.
375 */
376
377 /* This table drives the PCI probe routines.  It's mostly boilerplate in all
378    of the drivers, and will likely be provided by some future kernel.
379 */
380 enum pci_flags_bit {
381         PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
382         PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
383 };
384
385 enum {  IS_VORTEX=1, IS_BOOMERANG=2, IS_CYCLONE=4, IS_TORNADO=8,
386         EEPROM_8BIT=0x10,       /* AKPM: Uses 0x230 as the base bitmaps for EEPROM reads */
387         HAS_PWR_CTRL=0x20, HAS_MII=0x40, HAS_NWAY=0x80, HAS_CB_FNS=0x100,
388         INVERT_MII_PWR=0x200, INVERT_LED_PWR=0x400, MAX_COLLISION_RESET=0x800,
389         EEPROM_OFFSET=0x1000, HAS_HWCKSM=0x2000, WNO_XCVR_PWR=0x4000,
390         EXTRA_PREAMBLE=0x8000, EEPROM_RESET=0x10000, };
391
392 enum vortex_chips {
393         CH_3C590 = 0,
394         CH_3C592,
395         CH_3C597,
396         CH_3C595_1,
397         CH_3C595_2,
398
399         CH_3C595_3,
400         CH_3C900_1,
401         CH_3C900_2,
402         CH_3C900_3,
403         CH_3C900_4,
404
405         CH_3C900_5,
406         CH_3C900B_FL,
407         CH_3C905_1,
408         CH_3C905_2,
409         CH_3C905B_1,
410
411         CH_3C905B_2,
412         CH_3C905B_FX,
413         CH_3C905C,
414         CH_3C9202,
415         CH_3C980,
416         CH_3C9805,
417
418         CH_3CSOHO100_TX,
419         CH_3C555,
420         CH_3C556,
421         CH_3C556B,
422         CH_3C575,
423
424         CH_3C575_1,
425         CH_3CCFE575,
426         CH_3CCFE575CT,
427         CH_3CCFE656,
428         CH_3CCFEM656,
429
430         CH_3CCFEM656_1,
431         CH_3C450,
432         CH_3C920,
433         CH_3C982A,
434         CH_3C982B,
435
436         CH_905BT4,
437         CH_920B_EMB_WNM,
438 };
439
440
441 /* note: this array directly indexed by above enums, and MUST
442  * be kept in sync with both the enums above, and the PCI device
443  * table below
444  */
445 static struct vortex_chip_info {
446         const char *name;
447         int flags;
448         int drv_flags;
449         int io_size;
450 } vortex_info_tbl[] __devinitdata = {
451         {"3c590 Vortex 10Mbps",
452          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
453         {"3c592 EISA 10Mbps Demon/Vortex",                                      /* AKPM: from Don's 3c59x_cb.c 0.49H */
454          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
455         {"3c597 EISA Fast Demon/Vortex",                                        /* AKPM: from Don's 3c59x_cb.c 0.49H */
456          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
457         {"3c595 Vortex 100baseTx",
458          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
459         {"3c595 Vortex 100baseT4",
460          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
461
462         {"3c595 Vortex 100base-MII",
463          PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
464         {"3c900 Boomerang 10baseT",
465          PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|EEPROM_RESET, 64, },
466         {"3c900 Boomerang 10Mbps Combo",
467          PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|EEPROM_RESET, 64, },
468         {"3c900 Cyclone 10Mbps TPO",                                            /* AKPM: from Don's 0.99M */
469          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
470         {"3c900 Cyclone 10Mbps Combo",
471          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
472
473         {"3c900 Cyclone 10Mbps TPC",                                            /* AKPM: from Don's 0.99M */
474          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
475         {"3c900B-FL Cyclone 10base-FL",
476          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
477         {"3c905 Boomerang 100baseTx",
478          PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
479         {"3c905 Boomerang 100baseT4",
480          PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
481         {"3c905B Cyclone 100baseTx",
482          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
483
484         {"3c905B Cyclone 10/100/BNC",
485          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
486         {"3c905B-FX Cyclone 100baseFx",
487          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
488         {"3c905C Tornado",
489         PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
490         {"3c920B-EMB-WNM (ATI Radeon 9100 IGP)",
491          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_MII|HAS_HWCKSM, 128, },
492         {"3c980 Cyclone",
493          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
494
495         {"3c980C Python-T",
496          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
497         {"3cSOHO100-TX Hurricane",
498          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
499         {"3c555 Laptop Hurricane",
500          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|EEPROM_8BIT|HAS_HWCKSM, 128, },
501         {"3c556 Laptop Tornado",
502          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_8BIT|HAS_CB_FNS|INVERT_MII_PWR|
503                                                                         HAS_HWCKSM, 128, },
504         {"3c556B Laptop Hurricane",
505          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_OFFSET|HAS_CB_FNS|INVERT_MII_PWR|
506                                         WNO_XCVR_PWR|HAS_HWCKSM, 128, },
507
508         {"3c575 [Megahertz] 10/100 LAN  CardBus",
509         PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
510         {"3c575 Boomerang CardBus",
511          PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
512         {"3CCFE575BT Cyclone CardBus",
513          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|
514                                                                         INVERT_LED_PWR|HAS_HWCKSM, 128, },
515         {"3CCFE575CT Tornado CardBus",
516          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
517                                                                         MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
518         {"3CCFE656 Cyclone CardBus",
519          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
520                                                                         INVERT_LED_PWR|HAS_HWCKSM, 128, },
521
522         {"3CCFEM656B Cyclone+Winmodem CardBus",
523          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
524                                                                         INVERT_LED_PWR|HAS_HWCKSM, 128, },
525         {"3CXFEM656C Tornado+Winmodem CardBus",                 /* From pcmcia-cs-3.1.5 */
526          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
527                                                                         MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
528         {"3c450 HomePNA Tornado",                                               /* AKPM: from Don's 0.99Q */
529          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
530         {"3c920 Tornado",
531          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
532         {"3c982 Hydra Dual Port A",
533          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, },
534
535         {"3c982 Hydra Dual Port B",
536          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, },
537         {"3c905B-T4",
538          PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
539         {"3c920B-EMB-WNM Tornado",
540          PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
541
542         {NULL,}, /* NULL terminated list. */
543 };
544
545
546 static struct pci_device_id vortex_pci_tbl[] = {
547         { 0x10B7, 0x5900, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C590 },
548         { 0x10B7, 0x5920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C592 },
549         { 0x10B7, 0x5970, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C597 },
550         { 0x10B7, 0x5950, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_1 },
551         { 0x10B7, 0x5951, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_2 },
552
553         { 0x10B7, 0x5952, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_3 },
554         { 0x10B7, 0x9000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_1 },
555         { 0x10B7, 0x9001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_2 },
556         { 0x10B7, 0x9004, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_3 },
557         { 0x10B7, 0x9005, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_4 },
558
559         { 0x10B7, 0x9006, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_5 },
560         { 0x10B7, 0x900A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900B_FL },
561         { 0x10B7, 0x9050, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_1 },
562         { 0x10B7, 0x9051, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_2 },
563         { 0x10B7, 0x9055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_1 },
564
565         { 0x10B7, 0x9058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_2 },
566         { 0x10B7, 0x905A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_FX },
567         { 0x10B7, 0x9200, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905C },
568         { 0x10B7, 0x9202, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C9202 },
569         { 0x10B7, 0x9800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C980 },
570         { 0x10B7, 0x9805, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C9805 },
571
572         { 0x10B7, 0x7646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CSOHO100_TX },
573         { 0x10B7, 0x5055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C555 },
574         { 0x10B7, 0x6055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556 },
575         { 0x10B7, 0x6056, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556B },
576         { 0x10B7, 0x5b57, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575 },
577
578         { 0x10B7, 0x5057, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575_1 },
579         { 0x10B7, 0x5157, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575 },
580         { 0x10B7, 0x5257, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575CT },
581         { 0x10B7, 0x6560, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE656 },
582         { 0x10B7, 0x6562, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656 },
583
584         { 0x10B7, 0x6564, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656_1 },
585         { 0x10B7, 0x4500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C450 },
586         { 0x10B7, 0x9201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C920 },
587         { 0x10B7, 0x1201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982A },
588         { 0x10B7, 0x1202, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982B },
589
590         { 0x10B7, 0x9056, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_905BT4 },
591         { 0x10B7, 0x9210, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_920B_EMB_WNM },
592
593         {0,}                                            /* 0 terminated list. */
594 };
595 MODULE_DEVICE_TABLE(pci, vortex_pci_tbl);
596
597
598 /* Operational definitions.
599    These are not used by other compilation units and thus are not
600    exported in a ".h" file.
601
602    First the windows.  There are eight register windows, with the command
603    and status registers available in each.
604    */
605 #define EL3WINDOW(win_num) iowrite16(SelectWindow + (win_num), ioaddr + EL3_CMD)
606 #define EL3_CMD 0x0e
607 #define EL3_STATUS 0x0e
608
609 /* The top five bits written to EL3_CMD are a command, the lower
610    11 bits are the parameter, if applicable.
611    Note that 11 parameters bits was fine for ethernet, but the new chip
612    can handle FDDI length frames (~4500 octets) and now parameters count
613    32-bit 'Dwords' rather than octets. */
614
615 enum vortex_cmd {
616         TotalReset = 0<<11, SelectWindow = 1<<11, StartCoax = 2<<11,
617         RxDisable = 3<<11, RxEnable = 4<<11, RxReset = 5<<11,
618         UpStall = 6<<11, UpUnstall = (6<<11)+1,
619         DownStall = (6<<11)+2, DownUnstall = (6<<11)+3,
620         RxDiscard = 8<<11, TxEnable = 9<<11, TxDisable = 10<<11, TxReset = 11<<11,
621         FakeIntr = 12<<11, AckIntr = 13<<11, SetIntrEnb = 14<<11,
622         SetStatusEnb = 15<<11, SetRxFilter = 16<<11, SetRxThreshold = 17<<11,
623         SetTxThreshold = 18<<11, SetTxStart = 19<<11,
624         StartDMAUp = 20<<11, StartDMADown = (20<<11)+1, StatsEnable = 21<<11,
625         StatsDisable = 22<<11, StopCoax = 23<<11, SetFilterBit = 25<<11,};
626
627 /* The SetRxFilter command accepts the following classes: */
628 enum RxFilter {
629         RxStation = 1, RxMulticast = 2, RxBroadcast = 4, RxProm = 8 };
630
631 /* Bits in the general status register. */
632 enum vortex_status {
633         IntLatch = 0x0001, HostError = 0x0002, TxComplete = 0x0004,
634         TxAvailable = 0x0008, RxComplete = 0x0010, RxEarly = 0x0020,
635         IntReq = 0x0040, StatsFull = 0x0080,
636         DMADone = 1<<8, DownComplete = 1<<9, UpComplete = 1<<10,
637         DMAInProgress = 1<<11,                  /* DMA controller is still busy.*/
638         CmdInProgress = 1<<12,                  /* EL3_CMD is still busy.*/
639 };
640
641 /* Register window 1 offsets, the window used in normal operation.
642    On the Vortex this window is always mapped at offsets 0x10-0x1f. */
643 enum Window1 {
644         TX_FIFO = 0x10,  RX_FIFO = 0x10,  RxErrors = 0x14,
645         RxStatus = 0x18,  Timer=0x1A, TxStatus = 0x1B,
646         TxFree = 0x1C, /* Remaining free bytes in Tx buffer. */
647 };
648 enum Window0 {
649         Wn0EepromCmd = 10,              /* Window 0: EEPROM command register. */
650         Wn0EepromData = 12,             /* Window 0: EEPROM results register. */
651         IntrStatus=0x0E,                /* Valid in all windows. */
652 };
653 enum Win0_EEPROM_bits {
654         EEPROM_Read = 0x80, EEPROM_WRITE = 0x40, EEPROM_ERASE = 0xC0,
655         EEPROM_EWENB = 0x30,            /* Enable erasing/writing for 10 msec. */
656         EEPROM_EWDIS = 0x00,            /* Disable EWENB before 10 msec timeout. */
657 };
658 /* EEPROM locations. */
659 enum eeprom_offset {
660         PhysAddr01=0, PhysAddr23=1, PhysAddr45=2, ModelID=3,
661         EtherLink3ID=7, IFXcvrIO=8, IRQLine=9,
662         NodeAddr01=10, NodeAddr23=11, NodeAddr45=12,
663         DriverTune=13, Checksum=15};
664
665 enum Window2 {                  /* Window 2. */
666         Wn2_ResetOptions=12,
667 };
668 enum Window3 {                  /* Window 3: MAC/config bits. */
669         Wn3_Config=0, Wn3_MaxPktSize=4, Wn3_MAC_Ctrl=6, Wn3_Options=8,
670 };
671
672 #define BFEXT(value, offset, bitcount)  \
673     ((((unsigned long)(value)) >> (offset)) & ((1 << (bitcount)) - 1))
674
675 #define BFINS(lhs, rhs, offset, bitcount)                                       \
676         (((lhs) & ~((((1 << (bitcount)) - 1)) << (offset))) |   \
677         (((rhs) & ((1 << (bitcount)) - 1)) << (offset)))
678
679 #define RAM_SIZE(v)             BFEXT(v, 0, 3)
680 #define RAM_WIDTH(v)    BFEXT(v, 3, 1)
681 #define RAM_SPEED(v)    BFEXT(v, 4, 2)
682 #define ROM_SIZE(v)             BFEXT(v, 6, 2)
683 #define RAM_SPLIT(v)    BFEXT(v, 16, 2)
684 #define XCVR(v)                 BFEXT(v, 20, 4)
685 #define AUTOSELECT(v)   BFEXT(v, 24, 1)
686
687 enum Window4 {          /* Window 4: Xcvr/media bits. */
688         Wn4_FIFODiag = 4, Wn4_NetDiag = 6, Wn4_PhysicalMgmt=8, Wn4_Media = 10,
689 };
690 enum Win4_Media_bits {
691         Media_SQE = 0x0008,             /* Enable SQE error counting for AUI. */
692         Media_10TP = 0x00C0,    /* Enable link beat and jabber for 10baseT. */
693         Media_Lnk = 0x0080,             /* Enable just link beat for 100TX/100FX. */
694         Media_LnkBeat = 0x0800,
695 };
696 enum Window7 {                                  /* Window 7: Bus Master control. */
697         Wn7_MasterAddr = 0, Wn7_VlanEtherType=4, Wn7_MasterLen = 6,
698         Wn7_MasterStatus = 12,
699 };
700 /* Boomerang bus master control registers. */
701 enum MasterCtrl {
702         PktStatus = 0x20, DownListPtr = 0x24, FragAddr = 0x28, FragLen = 0x2c,
703         TxFreeThreshold = 0x2f, UpPktStatus = 0x30, UpListPtr = 0x38,
704 };
705
706 /* The Rx and Tx descriptor lists.
707    Caution Alpha hackers: these types are 32 bits!  Note also the 8 byte
708    alignment contraint on tx_ring[] and rx_ring[]. */
709 #define LAST_FRAG       0x80000000                      /* Last Addr/Len pair in descriptor. */
710 #define DN_COMPLETE     0x00010000                      /* This packet has been downloaded */
711 struct boom_rx_desc {
712         u32 next;                                       /* Last entry points to 0.   */
713         s32 status;
714         u32 addr;                                       /* Up to 63 addr/len pairs possible. */
715         s32 length;                                     /* Set LAST_FRAG to indicate last pair. */
716 };
717 /* Values for the Rx status entry. */
718 enum rx_desc_status {
719         RxDComplete=0x00008000, RxDError=0x4000,
720         /* See boomerang_rx() for actual error bits */
721         IPChksumErr=1<<25, TCPChksumErr=1<<26, UDPChksumErr=1<<27,
722         IPChksumValid=1<<29, TCPChksumValid=1<<30, UDPChksumValid=1<<31,
723 };
724
725 #ifdef MAX_SKB_FRAGS
726 #define DO_ZEROCOPY 1
727 #else
728 #define DO_ZEROCOPY 0
729 #endif
730
731 struct boom_tx_desc {
732         u32 next;                                       /* Last entry points to 0.   */
733         s32 status;                                     /* bits 0:12 length, others see below.  */
734 #if DO_ZEROCOPY
735         struct {
736                 u32 addr;
737                 s32 length;
738         } frag[1+MAX_SKB_FRAGS];
739 #else
740                 u32 addr;
741                 s32 length;
742 #endif
743 };
744
745 /* Values for the Tx status entry. */
746 enum tx_desc_status {
747         CRCDisable=0x2000, TxDComplete=0x8000,
748         AddIPChksum=0x02000000, AddTCPChksum=0x04000000, AddUDPChksum=0x08000000,
749         TxIntrUploaded=0x80000000,              /* IRQ when in FIFO, but maybe not sent. */
750 };
751
752 /* Chip features we care about in vp->capabilities, read from the EEPROM. */
753 enum ChipCaps { CapBusMaster=0x20, CapPwrMgmt=0x2000 };
754
755 struct vortex_extra_stats {
756         unsigned long tx_deferred;
757         unsigned long tx_multiple_collisions;
758         unsigned long rx_bad_ssd;
759 };
760
761 struct vortex_private {
762         /* The Rx and Tx rings should be quad-word-aligned. */
763         struct boom_rx_desc* rx_ring;
764         struct boom_tx_desc* tx_ring;
765         dma_addr_t rx_ring_dma;
766         dma_addr_t tx_ring_dma;
767         /* The addresses of transmit- and receive-in-place skbuffs. */
768         struct sk_buff* rx_skbuff[RX_RING_SIZE];
769         struct sk_buff* tx_skbuff[TX_RING_SIZE];
770         unsigned int cur_rx, cur_tx;            /* The next free ring entry */
771         unsigned int dirty_rx, dirty_tx;        /* The ring entries to be free()ed. */
772         struct net_device_stats stats;          /* Generic stats */
773         struct vortex_extra_stats xstats;       /* NIC-specific extra stats */
774         struct sk_buff *tx_skb;                         /* Packet being eaten by bus master ctrl.  */
775         dma_addr_t tx_skb_dma;                          /* Allocated DMA address for bus master ctrl DMA.   */
776
777         /* PCI configuration space information. */
778         struct device *gendev;
779         void __iomem *ioaddr;                   /* IO address space */
780         void __iomem *cb_fn_base;               /* CardBus function status addr space. */
781
782         /* Some values here only for performance evaluation and path-coverage */
783         int rx_nocopy, rx_copy, queued_packet, rx_csumhits;
784         int card_idx;
785
786         /* The remainder are related to chip state, mostly media selection. */
787         struct timer_list timer;                        /* Media selection timer. */
788         struct timer_list rx_oom_timer;         /* Rx skb allocation retry timer */
789         int options;                                            /* User-settable misc. driver options. */
790         unsigned int media_override:4,          /* Passed-in media type. */
791                 default_media:4,                                /* Read from the EEPROM/Wn3_Config. */
792                 full_duplex:1, force_fd:1, autoselect:1,
793                 bus_master:1,                                   /* Vortex can only do a fragment bus-m. */
794                 full_bus_master_tx:1, full_bus_master_rx:2, /* Boomerang  */
795                 flow_ctrl:1,                                    /* Use 802.3x flow control (PAUSE only) */
796                 partner_flow_ctrl:1,                    /* Partner supports flow control */
797                 has_nway:1,
798                 enable_wol:1,                                   /* Wake-on-LAN is enabled */
799                 pm_state_valid:1,                               /* pci_dev->saved_config_space has sane contents */
800                 open:1,
801                 medialock:1,
802                 must_free_region:1,                             /* Flag: if zero, Cardbus owns the I/O region */
803                 large_frames:1;                 /* accept large frames */
804         int drv_flags;
805         u16 status_enable;
806         u16 intr_enable;
807         u16 available_media;                            /* From Wn3_Options. */
808         u16 capabilities, info1, info2;         /* Various, from EEPROM. */
809         u16 advertising;                                        /* NWay media advertisement */
810         unsigned char phys[2];                          /* MII device addresses. */
811         u16 deferred;                                           /* Resend these interrupts when we
812                                                                                  * bale from the ISR */
813         u16 io_size;                                            /* Size of PCI region (for release_region) */
814         spinlock_t lock;                                        /* Serialise access to device & its vortex_private */
815         struct mii_if_info mii;                         /* MII lib hooks/info */
816 };
817
818 #ifdef CONFIG_PCI
819 #define DEVICE_PCI(dev) (((dev)->bus == &pci_bus_type) ? to_pci_dev((dev)) : NULL)
820 #else
821 #define DEVICE_PCI(dev) NULL
822 #endif
823
824 #define VORTEX_PCI(vp) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL)
825
826 #ifdef CONFIG_EISA
827 #define DEVICE_EISA(dev) (((dev)->bus == &eisa_bus_type) ? to_eisa_device((dev)) : NULL)
828 #else
829 #define DEVICE_EISA(dev) NULL
830 #endif
831
832 #define VORTEX_EISA(vp) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : NULL)
833
834 /* The action to take with a media selection timer tick.
835    Note that we deviate from the 3Com order by checking 10base2 before AUI.
836  */
837 enum xcvr_types {
838         XCVR_10baseT=0, XCVR_AUI, XCVR_10baseTOnly, XCVR_10base2, XCVR_100baseTx,
839         XCVR_100baseFx, XCVR_MII=6, XCVR_NWAY=8, XCVR_ExtMII=9, XCVR_Default=10,
840 };
841
842 static struct media_table {
843         char *name;
844         unsigned int media_bits:16,             /* Bits to set in Wn4_Media register. */
845                 mask:8,                                         /* The transceiver-present bit in Wn3_Config.*/
846                 next:8;                                         /* The media type to try next. */
847         int wait;                                               /* Time before we check media status. */
848 } media_tbl[] = {
849   {     "10baseT",   Media_10TP,0x08, XCVR_10base2, (14*HZ)/10},
850   { "10Mbs AUI", Media_SQE, 0x20, XCVR_Default, (1*HZ)/10},
851   { "undefined", 0,                     0x80, XCVR_10baseT, 10000},
852   { "10base2",   0,                     0x10, XCVR_AUI,         (1*HZ)/10},
853   { "100baseTX", Media_Lnk, 0x02, XCVR_100baseFx, (14*HZ)/10},
854   { "100baseFX", Media_Lnk, 0x04, XCVR_MII,             (14*HZ)/10},
855   { "MII",               0,                     0x41, XCVR_10baseT, 3*HZ },
856   { "undefined", 0,                     0x01, XCVR_10baseT, 10000},
857   { "Autonegotiate", 0,         0x41, XCVR_10baseT, 3*HZ},
858   { "MII-External",      0,             0x41, XCVR_10baseT, 3*HZ },
859   { "Default",   0,                     0xFF, XCVR_10baseT, 10000},
860 };
861
862 static struct {
863         const char str[ETH_GSTRING_LEN];
864 } ethtool_stats_keys[] = {
865         { "tx_deferred" },
866         { "tx_multiple_collisions" },
867         { "rx_bad_ssd" },
868 };
869
870 /* number of ETHTOOL_GSTATS u64's */
871 #define VORTEX_NUM_STATS     3
872
873 static int vortex_probe1(struct device *gendev, void __iomem *ioaddr, int irq,
874                                    int chip_idx, int card_idx);
875 static void vortex_up(struct net_device *dev);
876 static void vortex_down(struct net_device *dev, int final);
877 static int vortex_open(struct net_device *dev);
878 static void mdio_sync(void __iomem *ioaddr, int bits);
879 static int mdio_read(struct net_device *dev, int phy_id, int location);
880 static void mdio_write(struct net_device *vp, int phy_id, int location, int value);
881 static void vortex_timer(unsigned long arg);
882 static void rx_oom_timer(unsigned long arg);
883 static int vortex_start_xmit(struct sk_buff *skb, struct net_device *dev);
884 static int boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev);
885 static int vortex_rx(struct net_device *dev);
886 static int boomerang_rx(struct net_device *dev);
887 static irqreturn_t vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs);
888 static irqreturn_t boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs);
889 static int vortex_close(struct net_device *dev);
890 static void dump_tx_ring(struct net_device *dev);
891 static void update_stats(void __iomem *ioaddr, struct net_device *dev);
892 static struct net_device_stats *vortex_get_stats(struct net_device *dev);
893 static void set_rx_mode(struct net_device *dev);
894 #ifdef CONFIG_PCI
895 static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
896 #endif
897 static void vortex_tx_timeout(struct net_device *dev);
898 static void acpi_set_WOL(struct net_device *dev);
899 static struct ethtool_ops vortex_ethtool_ops;
900 static void set_8021q_mode(struct net_device *dev, int enable);
901
902 \f
903 /* This driver uses 'options' to pass the media type, full-duplex flag, etc. */
904 /* Option count limit only -- unlimited interfaces are supported. */
905 #define MAX_UNITS 8
906 static int options[MAX_UNITS] = { [0 ... MAX_UNITS-1] = -1 };
907 static int full_duplex[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
908 static int hw_checksums[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
909 static int flow_ctrl[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
910 static int enable_wol[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
911 static int use_mmio[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
912 static int global_options = -1;
913 static int global_full_duplex = -1;
914 static int global_enable_wol = -1;
915 static int global_use_mmio = -1;
916
917 /* #define dev_alloc_skb dev_alloc_skb_debug */
918
919 /* Variables to work-around the Compaq PCI BIOS32 problem. */
920 static int compaq_ioaddr, compaq_irq, compaq_device_id = 0x5900;
921 static struct net_device *compaq_net_device;
922
923 static int vortex_cards_found;
924
925 module_param(debug, int, 0);
926 module_param(global_options, int, 0);
927 module_param_array(options, int, NULL, 0);
928 module_param(global_full_duplex, int, 0);
929 module_param_array(full_duplex, int, NULL, 0);
930 module_param_array(hw_checksums, int, NULL, 0);
931 module_param_array(flow_ctrl, int, NULL, 0);
932 module_param(global_enable_wol, int, 0);
933 module_param_array(enable_wol, int, NULL, 0);
934 module_param(rx_copybreak, int, 0);
935 module_param(max_interrupt_work, int, 0);
936 module_param(compaq_ioaddr, int, 0);
937 module_param(compaq_irq, int, 0);
938 module_param(compaq_device_id, int, 0);
939 module_param(watchdog, int, 0);
940 module_param(global_use_mmio, int, 0);
941 module_param_array(use_mmio, int, NULL, 0);
942 MODULE_PARM_DESC(debug, "3c59x debug level (0-6)");
943 MODULE_PARM_DESC(options, "3c59x: Bits 0-3: media type, bit 4: bus mastering, bit 9: full duplex");
944 MODULE_PARM_DESC(global_options, "3c59x: same as options, but applies to all NICs if options is unset");
945 MODULE_PARM_DESC(full_duplex, "3c59x full duplex setting(s) (1)");
946 MODULE_PARM_DESC(global_full_duplex, "3c59x: same as full_duplex, but applies to all NICs if full_duplex is unset");
947 MODULE_PARM_DESC(hw_checksums, "3c59x Hardware checksum checking by adapter(s) (0-1)");
948 MODULE_PARM_DESC(flow_ctrl, "3c59x 802.3x flow control usage (PAUSE only) (0-1)");
949 MODULE_PARM_DESC(enable_wol, "3c59x: Turn on Wake-on-LAN for adapter(s) (0-1)");
950 MODULE_PARM_DESC(global_enable_wol, "3c59x: same as enable_wol, but applies to all NICs if enable_wol is unset");
951 MODULE_PARM_DESC(rx_copybreak, "3c59x copy breakpoint for copy-only-tiny-frames");
952 MODULE_PARM_DESC(max_interrupt_work, "3c59x maximum events handled per interrupt");
953 MODULE_PARM_DESC(compaq_ioaddr, "3c59x PCI I/O base address (Compaq BIOS problem workaround)");
954 MODULE_PARM_DESC(compaq_irq, "3c59x PCI IRQ number (Compaq BIOS problem workaround)");
955 MODULE_PARM_DESC(compaq_device_id, "3c59x PCI device ID (Compaq BIOS problem workaround)");
956 MODULE_PARM_DESC(watchdog, "3c59x transmit timeout in milliseconds");
957 MODULE_PARM_DESC(global_use_mmio, "3c59x: same as use_mmio, but applies to all NICs if options is unset");
958 MODULE_PARM_DESC(use_mmio, "3c59x: use memory-mapped PCI I/O resource (0-1)");
959
960 #ifdef CONFIG_NET_POLL_CONTROLLER
961 static void poll_vortex(struct net_device *dev)
962 {
963         struct vortex_private *vp = netdev_priv(dev);
964         unsigned long flags;
965         local_save_flags(flags);
966         local_irq_disable();
967         (vp->full_bus_master_rx ? boomerang_interrupt:vortex_interrupt)(dev->irq,dev,NULL);
968         local_irq_restore(flags);
969
970 #endif
971
972 #ifdef CONFIG_PM
973
974 static int vortex_suspend (struct pci_dev *pdev, pm_message_t state)
975 {
976         struct net_device *dev = pci_get_drvdata(pdev);
977
978         if (dev && dev->priv) {
979                 if (netif_running(dev)) {
980                         netif_device_detach(dev);
981                         vortex_down(dev, 1);
982                 }
983                 pci_save_state(pdev);
984                 pci_enable_wake(pdev, pci_choose_state(pdev, state), 0);
985                 free_irq(dev->irq, dev);
986                 pci_disable_device(pdev);
987                 pci_set_power_state(pdev, pci_choose_state(pdev, state));
988         }
989         return 0;
990 }
991
992 static int vortex_resume (struct pci_dev *pdev)
993 {
994         struct net_device *dev = pci_get_drvdata(pdev);
995         struct vortex_private *vp = netdev_priv(dev);
996
997         if (dev && vp) {
998                 pci_set_power_state(pdev, PCI_D0);
999                 pci_restore_state(pdev);
1000                 pci_enable_device(pdev);
1001                 pci_set_master(pdev);
1002                 if (request_irq(dev->irq, vp->full_bus_master_rx ?
1003                                 &boomerang_interrupt : &vortex_interrupt, SA_SHIRQ, dev->name, dev)) {
1004                         printk(KERN_WARNING "%s: Could not reserve IRQ %d\n", dev->name, dev->irq);
1005                         pci_disable_device(pdev);
1006                         return -EBUSY;
1007                 }
1008                 if (netif_running(dev)) {
1009                         vortex_up(dev);
1010                         netif_device_attach(dev);
1011                 }
1012         }
1013         return 0;
1014 }
1015
1016 #endif /* CONFIG_PM */
1017
1018 #ifdef CONFIG_EISA
1019 static struct eisa_device_id vortex_eisa_ids[] = {
1020         { "TCM5920", CH_3C592 },
1021         { "TCM5970", CH_3C597 },
1022         { "" }
1023 };
1024
1025 static int vortex_eisa_probe (struct device *device);
1026 static int vortex_eisa_remove (struct device *device);
1027
1028 static struct eisa_driver vortex_eisa_driver = {
1029         .id_table = vortex_eisa_ids,
1030         .driver   = {
1031                 .name    = "3c59x",
1032                 .probe   = vortex_eisa_probe,
1033                 .remove  = vortex_eisa_remove
1034         }
1035 };
1036
1037 static int vortex_eisa_probe (struct device *device)
1038 {
1039         void __iomem *ioaddr;
1040         struct eisa_device *edev;
1041
1042         edev = to_eisa_device (device);
1043
1044         if (!request_region(edev->base_addr, VORTEX_TOTAL_SIZE, DRV_NAME))
1045                 return -EBUSY;
1046
1047         ioaddr = ioport_map(edev->base_addr, VORTEX_TOTAL_SIZE);
1048
1049         if (vortex_probe1(device, ioaddr, ioread16(ioaddr + 0xC88) >> 12,
1050                                           edev->id.driver_data, vortex_cards_found)) {
1051                 release_region (edev->base_addr, VORTEX_TOTAL_SIZE);
1052                 return -ENODEV;
1053         }
1054
1055         vortex_cards_found++;
1056
1057         return 0;
1058 }
1059
1060 static int vortex_eisa_remove (struct device *device)
1061 {
1062         struct eisa_device *edev;
1063         struct net_device *dev;
1064         struct vortex_private *vp;
1065         void __iomem *ioaddr;
1066
1067         edev = to_eisa_device (device);
1068         dev = eisa_get_drvdata (edev);
1069
1070         if (!dev) {
1071                 printk("vortex_eisa_remove called for Compaq device!\n");
1072                 BUG();
1073         }
1074
1075         vp = netdev_priv(dev);
1076         ioaddr = vp->ioaddr;
1077         
1078         unregister_netdev (dev);
1079         iowrite16 (TotalReset|0x14, ioaddr + EL3_CMD);
1080         release_region (dev->base_addr, VORTEX_TOTAL_SIZE);
1081
1082         free_netdev (dev);
1083         return 0;
1084 }
1085 #endif
1086
1087 /* returns count found (>= 0), or negative on error */
1088 static int __init vortex_eisa_init (void)
1089 {
1090         int eisa_found = 0;
1091         int orig_cards_found = vortex_cards_found;
1092
1093 #ifdef CONFIG_EISA
1094         if (eisa_driver_register (&vortex_eisa_driver) >= 0) {
1095                         /* Because of the way EISA bus is probed, we cannot assume
1096                          * any device have been found when we exit from
1097                          * eisa_driver_register (the bus root driver may not be
1098                          * initialized yet). So we blindly assume something was
1099                          * found, and let the sysfs magic happend... */
1100                         
1101                         eisa_found = 1;
1102         }
1103 #endif
1104         
1105         /* Special code to work-around the Compaq PCI BIOS32 problem. */
1106         if (compaq_ioaddr) {
1107                 vortex_probe1(NULL, ioport_map(compaq_ioaddr, VORTEX_TOTAL_SIZE),
1108                               compaq_irq, compaq_device_id, vortex_cards_found++);
1109         }
1110
1111         return vortex_cards_found - orig_cards_found + eisa_found;
1112 }
1113
1114 /* returns count (>= 0), or negative on error */
1115 static int __devinit vortex_init_one (struct pci_dev *pdev,
1116                                       const struct pci_device_id *ent)
1117 {
1118         int rc, unit, pci_bar;
1119         struct vortex_chip_info *vci;
1120         void __iomem *ioaddr;
1121
1122         /* wake up and enable device */         
1123         rc = pci_enable_device (pdev);
1124         if (rc < 0)
1125                 goto out;
1126
1127         unit = vortex_cards_found;
1128
1129         if (global_use_mmio < 0 && (unit >= MAX_UNITS || use_mmio[unit] < 0)) {
1130                 /* Determine the default if the user didn't override us */
1131                 vci = &vortex_info_tbl[ent->driver_data];
1132                 pci_bar = vci->drv_flags & (IS_CYCLONE | IS_TORNADO) ? 1 : 0;
1133         } else if (unit < MAX_UNITS && use_mmio[unit] >= 0)
1134                 pci_bar = use_mmio[unit] ? 1 : 0;
1135         else
1136                 pci_bar = global_use_mmio ? 1 : 0;
1137
1138         ioaddr = pci_iomap(pdev, pci_bar, 0);
1139         if (!ioaddr) /* If mapping fails, fall-back to BAR 0... */
1140                 ioaddr = pci_iomap(pdev, 0, 0);
1141
1142         rc = vortex_probe1(&pdev->dev, ioaddr, pdev->irq,
1143                            ent->driver_data, unit);
1144         if (rc < 0) {
1145                 pci_disable_device (pdev);
1146                 goto out;
1147         }
1148
1149         vortex_cards_found++;
1150
1151 out:
1152         return rc;
1153 }
1154
1155 /*
1156  * Start up the PCI/EISA device which is described by *gendev.
1157  * Return 0 on success.
1158  *
1159  * NOTE: pdev can be NULL, for the case of a Compaq device
1160  */
1161 static int __devinit vortex_probe1(struct device *gendev,
1162                                    void __iomem *ioaddr, int irq,
1163                                    int chip_idx, int card_idx)
1164 {
1165         struct vortex_private *vp;
1166         int option;
1167         unsigned int eeprom[0x40], checksum = 0;                /* EEPROM contents */
1168         int i, step;
1169         struct net_device *dev;
1170         static int printed_version;
1171         int retval, print_info;
1172         struct vortex_chip_info * const vci = &vortex_info_tbl[chip_idx];
1173         char *print_name = "3c59x";
1174         struct pci_dev *pdev = NULL;
1175         struct eisa_device *edev = NULL;
1176
1177         if (!printed_version) {
1178                 printk (version);
1179                 printed_version = 1;
1180         }
1181
1182         if (gendev) {
1183                 if ((pdev = DEVICE_PCI(gendev))) {
1184                         print_name = pci_name(pdev);
1185                 }
1186
1187                 if ((edev = DEVICE_EISA(gendev))) {
1188                         print_name = edev->dev.bus_id;
1189                 }
1190         }
1191
1192         dev = alloc_etherdev(sizeof(*vp));
1193         retval = -ENOMEM;
1194         if (!dev) {
1195                 printk (KERN_ERR PFX "unable to allocate etherdev, aborting\n");
1196                 goto out;
1197         }
1198         SET_MODULE_OWNER(dev);
1199         SET_NETDEV_DEV(dev, gendev);
1200         vp = netdev_priv(dev);
1201
1202         option = global_options;
1203
1204         /* The lower four bits are the media type. */
1205         if (dev->mem_start) {
1206                 /*
1207                  * The 'options' param is passed in as the third arg to the
1208                  * LILO 'ether=' argument for non-modular use
1209                  */
1210                 option = dev->mem_start;
1211         }
1212         else if (card_idx < MAX_UNITS) {
1213                 if (options[card_idx] >= 0)
1214                         option = options[card_idx];
1215         }
1216
1217         if (option > 0) {
1218                 if (option & 0x8000)
1219                         vortex_debug = 7;
1220                 if (option & 0x4000)
1221                         vortex_debug = 2;
1222                 if (option & 0x0400)
1223                         vp->enable_wol = 1;
1224         }
1225
1226         print_info = (vortex_debug > 1);
1227         if (print_info)
1228                 printk (KERN_INFO "See Documentation/networking/vortex.txt\n");
1229
1230         printk(KERN_INFO "%s: 3Com %s %s at %p. Vers " DRV_VERSION "\n",
1231                print_name,
1232                pdev ? "PCI" : "EISA",
1233                vci->name,
1234                ioaddr);
1235
1236         dev->base_addr = (unsigned long)ioaddr;
1237         dev->irq = irq;
1238         dev->mtu = mtu;
1239         vp->ioaddr = ioaddr;
1240         vp->large_frames = mtu > 1500;
1241         vp->drv_flags = vci->drv_flags;
1242         vp->has_nway = (vci->drv_flags & HAS_NWAY) ? 1 : 0;
1243         vp->io_size = vci->io_size;
1244         vp->card_idx = card_idx;
1245
1246         /* module list only for Compaq device */
1247         if (gendev == NULL) {
1248                 compaq_net_device = dev;
1249         }
1250
1251         /* PCI-only startup logic */
1252         if (pdev) {
1253                 /* EISA resources already marked, so only PCI needs to do this here */
1254                 /* Ignore return value, because Cardbus drivers already allocate for us */
1255                 if (request_region(dev->base_addr, vci->io_size, print_name) != NULL)
1256                         vp->must_free_region = 1;
1257
1258                 /* enable bus-mastering if necessary */         
1259                 if (vci->flags & PCI_USES_MASTER)
1260                         pci_set_master (pdev);
1261
1262                 if (vci->drv_flags & IS_VORTEX) {
1263                         u8 pci_latency;
1264                         u8 new_latency = 248;
1265
1266                         /* Check the PCI latency value.  On the 3c590 series the latency timer
1267                            must be set to the maximum value to avoid data corruption that occurs
1268                            when the timer expires during a transfer.  This bug exists the Vortex
1269                            chip only. */
1270                         pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &pci_latency);
1271                         if (pci_latency < new_latency) {
1272                                 printk(KERN_INFO "%s: Overriding PCI latency"
1273                                         " timer (CFLT) setting of %d, new value is %d.\n",
1274                                         print_name, pci_latency, new_latency);
1275                                         pci_write_config_byte(pdev, PCI_LATENCY_TIMER, new_latency);
1276                         }
1277                 }
1278         }
1279
1280         spin_lock_init(&vp->lock);
1281         vp->gendev = gendev;
1282         vp->mii.dev = dev;
1283         vp->mii.mdio_read = mdio_read;
1284         vp->mii.mdio_write = mdio_write;
1285         vp->mii.phy_id_mask = 0x1f;
1286         vp->mii.reg_num_mask = 0x1f;
1287
1288         /* Makes sure rings are at least 16 byte aligned. */
1289         vp->rx_ring = pci_alloc_consistent(pdev, sizeof(struct boom_rx_desc) * RX_RING_SIZE
1290                                            + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
1291                                            &vp->rx_ring_dma);
1292         retval = -ENOMEM;
1293         if (vp->rx_ring == 0)
1294                 goto free_region;
1295
1296         vp->tx_ring = (struct boom_tx_desc *)(vp->rx_ring + RX_RING_SIZE);
1297         vp->tx_ring_dma = vp->rx_ring_dma + sizeof(struct boom_rx_desc) * RX_RING_SIZE;
1298
1299         /* if we are a PCI driver, we store info in pdev->driver_data
1300          * instead of a module list */  
1301         if (pdev)
1302                 pci_set_drvdata(pdev, dev);
1303         if (edev)
1304                 eisa_set_drvdata (edev, dev);
1305
1306         vp->media_override = 7;
1307         if (option >= 0) {
1308                 vp->media_override = ((option & 7) == 2)  ?  0  :  option & 15;
1309                 if (vp->media_override != 7)
1310                         vp->medialock = 1;
1311                 vp->full_duplex = (option & 0x200) ? 1 : 0;
1312                 vp->bus_master = (option & 16) ? 1 : 0;
1313         }
1314
1315         if (global_full_duplex > 0)
1316                 vp->full_duplex = 1;
1317         if (global_enable_wol > 0)
1318                 vp->enable_wol = 1;
1319
1320         if (card_idx < MAX_UNITS) {
1321                 if (full_duplex[card_idx] > 0)
1322                         vp->full_duplex = 1;
1323                 if (flow_ctrl[card_idx] > 0)
1324                         vp->flow_ctrl = 1;
1325                 if (enable_wol[card_idx] > 0)
1326                         vp->enable_wol = 1;
1327         }
1328
1329         vp->force_fd = vp->full_duplex;
1330         vp->options = option;
1331         /* Read the station address from the EEPROM. */
1332         EL3WINDOW(0);
1333         {
1334                 int base;
1335
1336                 if (vci->drv_flags & EEPROM_8BIT)
1337                         base = 0x230;
1338                 else if (vci->drv_flags & EEPROM_OFFSET)
1339                         base = EEPROM_Read + 0x30;
1340                 else
1341                         base = EEPROM_Read;
1342
1343                 for (i = 0; i < 0x40; i++) {
1344                         int timer;
1345                         iowrite16(base + i, ioaddr + Wn0EepromCmd);
1346                         /* Pause for at least 162 us. for the read to take place. */
1347                         for (timer = 10; timer >= 0; timer--) {
1348                                 udelay(162);
1349                                 if ((ioread16(ioaddr + Wn0EepromCmd) & 0x8000) == 0)
1350                                         break;
1351                         }
1352                         eeprom[i] = ioread16(ioaddr + Wn0EepromData);
1353                 }
1354         }
1355         for (i = 0; i < 0x18; i++)
1356                 checksum ^= eeprom[i];
1357         checksum = (checksum ^ (checksum >> 8)) & 0xff;
1358         if (checksum != 0x00) {         /* Grrr, needless incompatible change 3Com. */
1359                 while (i < 0x21)
1360                         checksum ^= eeprom[i++];
1361                 checksum = (checksum ^ (checksum >> 8)) & 0xff;
1362         }
1363         if ((checksum != 0x00) && !(vci->drv_flags & IS_TORNADO))
1364                 printk(" ***INVALID CHECKSUM %4.4x*** ", checksum);
1365         for (i = 0; i < 3; i++)
1366                 ((u16 *)dev->dev_addr)[i] = htons(eeprom[i + 10]);
1367         memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
1368         if (print_info) {
1369                 for (i = 0; i < 6; i++)
1370                         printk("%c%2.2x", i ? ':' : ' ', dev->dev_addr[i]);
1371         }
1372         /* Unfortunately an all zero eeprom passes the checksum and this
1373            gets found in the wild in failure cases. Crypto is hard 8) */
1374         if (!is_valid_ether_addr(dev->dev_addr)) {
1375                 retval = -EINVAL;
1376                 printk(KERN_ERR "*** EEPROM MAC address is invalid.\n");
1377                 goto free_ring; /* With every pack */
1378         }
1379         EL3WINDOW(2);
1380         for (i = 0; i < 6; i++)
1381                 iowrite8(dev->dev_addr[i], ioaddr + i);
1382
1383 #ifdef __sparc__
1384         if (print_info)
1385                 printk(", IRQ %s\n", __irq_itoa(dev->irq));
1386 #else
1387         if (print_info)
1388                 printk(", IRQ %d\n", dev->irq);
1389         /* Tell them about an invalid IRQ. */
1390         if (dev->irq <= 0 || dev->irq >= NR_IRQS)
1391                 printk(KERN_WARNING " *** Warning: IRQ %d is unlikely to work! ***\n",
1392                            dev->irq);
1393 #endif
1394
1395         EL3WINDOW(4);
1396         step = (ioread8(ioaddr + Wn4_NetDiag) & 0x1e) >> 1;
1397         if (print_info) {
1398                 printk(KERN_INFO "  product code %02x%02x rev %02x.%d date %02d-"
1399                         "%02d-%02d\n", eeprom[6]&0xff, eeprom[6]>>8, eeprom[0x14],
1400                         step, (eeprom[4]>>5) & 15, eeprom[4] & 31, eeprom[4]>>9);
1401         }
1402
1403
1404         if (pdev && vci->drv_flags & HAS_CB_FNS) {
1405                 unsigned short n;
1406
1407                 vp->cb_fn_base = pci_iomap(pdev, 2, 0);
1408                 if (!vp->cb_fn_base) {
1409                         retval = -ENOMEM;
1410                         goto free_ring;
1411                 }
1412
1413                 if (print_info) {
1414                         printk(KERN_INFO "%s: CardBus functions mapped %8.8lx->%p\n",
1415                                 print_name, pci_resource_start(pdev, 2),
1416                                 vp->cb_fn_base);
1417                 }
1418                 EL3WINDOW(2);
1419
1420                 n = ioread16(ioaddr + Wn2_ResetOptions) & ~0x4010;
1421                 if (vp->drv_flags & INVERT_LED_PWR)
1422                         n |= 0x10;
1423                 if (vp->drv_flags & INVERT_MII_PWR)
1424                         n |= 0x4000;
1425                 iowrite16(n, ioaddr + Wn2_ResetOptions);
1426                 if (vp->drv_flags & WNO_XCVR_PWR) {
1427                         EL3WINDOW(0);
1428                         iowrite16(0x0800, ioaddr);
1429                 }
1430         }
1431
1432         /* Extract our information from the EEPROM data. */
1433         vp->info1 = eeprom[13];
1434         vp->info2 = eeprom[15];
1435         vp->capabilities = eeprom[16];
1436
1437         if (vp->info1 & 0x8000) {
1438                 vp->full_duplex = 1;
1439                 if (print_info)
1440                         printk(KERN_INFO "Full duplex capable\n");
1441         }
1442
1443         {
1444                 static const char * ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
1445                 unsigned int config;
1446                 EL3WINDOW(3);
1447                 vp->available_media = ioread16(ioaddr + Wn3_Options);
1448                 if ((vp->available_media & 0xff) == 0)          /* Broken 3c916 */
1449                         vp->available_media = 0x40;
1450                 config = ioread32(ioaddr + Wn3_Config);
1451                 if (print_info) {
1452                         printk(KERN_DEBUG "  Internal config register is %4.4x, "
1453                                    "transceivers %#x.\n", config, ioread16(ioaddr + Wn3_Options));
1454                         printk(KERN_INFO "  %dK %s-wide RAM %s Rx:Tx split, %s%s interface.\n",
1455                                    8 << RAM_SIZE(config),
1456                                    RAM_WIDTH(config) ? "word" : "byte",
1457                                    ram_split[RAM_SPLIT(config)],
1458                                    AUTOSELECT(config) ? "autoselect/" : "",
1459                                    XCVR(config) > XCVR_ExtMII ? "<invalid transceiver>" :
1460                                    media_tbl[XCVR(config)].name);
1461                 }
1462                 vp->default_media = XCVR(config);
1463                 if (vp->default_media == XCVR_NWAY)
1464                         vp->has_nway = 1;
1465                 vp->autoselect = AUTOSELECT(config);
1466         }
1467
1468         if (vp->media_override != 7) {
1469                 printk(KERN_INFO "%s:  Media override to transceiver type %d (%s).\n",
1470                                 print_name, vp->media_override,
1471                                 media_tbl[vp->media_override].name);
1472                 dev->if_port = vp->media_override;
1473         } else
1474                 dev->if_port = vp->default_media;
1475
1476         if ((vp->available_media & 0x40) || (vci->drv_flags & HAS_NWAY) ||
1477                 dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
1478                 int phy, phy_idx = 0;
1479                 EL3WINDOW(4);
1480                 mii_preamble_required++;
1481                 if (vp->drv_flags & EXTRA_PREAMBLE)
1482                         mii_preamble_required++;
1483                 mdio_sync(ioaddr, 32);
1484                 mdio_read(dev, 24, MII_BMSR);
1485                 for (phy = 0; phy < 32 && phy_idx < 1; phy++) {
1486                         int mii_status, phyx;
1487
1488                         /*
1489                          * For the 3c905CX we look at index 24 first, because it bogusly
1490                          * reports an external PHY at all indices
1491                          */
1492                         if (phy == 0)
1493                                 phyx = 24;
1494                         else if (phy <= 24)
1495                                 phyx = phy - 1;
1496                         else
1497                                 phyx = phy;
1498                         mii_status = mdio_read(dev, phyx, MII_BMSR);
1499                         if (mii_status  &&  mii_status != 0xffff) {
1500                                 vp->phys[phy_idx++] = phyx;
1501                                 if (print_info) {
1502                                         printk(KERN_INFO "  MII transceiver found at address %d,"
1503                                                 " status %4x.\n", phyx, mii_status);
1504                                 }
1505                                 if ((mii_status & 0x0040) == 0)
1506                                         mii_preamble_required++;
1507                         }
1508                 }
1509                 mii_preamble_required--;
1510                 if (phy_idx == 0) {
1511                         printk(KERN_WARNING"  ***WARNING*** No MII transceivers found!\n");
1512                         vp->phys[0] = 24;
1513                 } else {
1514                         vp->advertising = mdio_read(dev, vp->phys[0], MII_ADVERTISE);
1515                         if (vp->full_duplex) {
1516                                 /* Only advertise the FD media types. */
1517                                 vp->advertising &= ~0x02A0;
1518                                 mdio_write(dev, vp->phys[0], 4, vp->advertising);
1519                         }
1520                 }
1521                 vp->mii.phy_id = vp->phys[0];
1522         }
1523
1524         if (vp->capabilities & CapBusMaster) {
1525                 vp->full_bus_master_tx = 1;
1526                 if (print_info) {
1527                         printk(KERN_INFO "  Enabling bus-master transmits and %s receives.\n",
1528                         (vp->info2 & 1) ? "early" : "whole-frame" );
1529                 }
1530                 vp->full_bus_master_rx = (vp->info2 & 1) ? 1 : 2;
1531                 vp->bus_master = 0;             /* AKPM: vortex only */
1532         }
1533
1534         /* The 3c59x-specific entries in the device structure. */
1535         dev->open = vortex_open;
1536         if (vp->full_bus_master_tx) {
1537                 dev->hard_start_xmit = boomerang_start_xmit;
1538                 /* Actually, it still should work with iommu. */
1539                 if (card_idx < MAX_UNITS &&
1540                     ((hw_checksums[card_idx] == -1 && (vp->drv_flags & HAS_HWCKSM)) ||
1541                                 hw_checksums[card_idx] == 1)) {
1542                         dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
1543                 }
1544         } else {
1545                 dev->hard_start_xmit = vortex_start_xmit;
1546         }
1547
1548         if (print_info) {
1549                 printk(KERN_INFO "%s: scatter/gather %sabled. h/w checksums %sabled\n",
1550                                 print_name,
1551                                 (dev->features & NETIF_F_SG) ? "en":"dis",
1552                                 (dev->features & NETIF_F_IP_CSUM) ? "en":"dis");
1553         }
1554
1555         dev->stop = vortex_close;
1556         dev->get_stats = vortex_get_stats;
1557 #ifdef CONFIG_PCI
1558         dev->do_ioctl = vortex_ioctl;
1559 #endif
1560         dev->ethtool_ops = &vortex_ethtool_ops;
1561         dev->set_multicast_list = set_rx_mode;
1562         dev->tx_timeout = vortex_tx_timeout;
1563         dev->watchdog_timeo = (watchdog * HZ) / 1000;
1564 #ifdef CONFIG_NET_POLL_CONTROLLER
1565         dev->poll_controller = poll_vortex; 
1566 #endif
1567         if (pdev) {
1568                 vp->pm_state_valid = 1;
1569                 pci_save_state(VORTEX_PCI(vp));
1570                 acpi_set_WOL(dev);
1571         }
1572         retval = register_netdev(dev);
1573         if (retval == 0)
1574                 return 0;
1575
1576 free_ring:
1577         pci_free_consistent(pdev,
1578                                                 sizeof(struct boom_rx_desc) * RX_RING_SIZE
1579                                                         + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
1580                                                 vp->rx_ring,
1581                                                 vp->rx_ring_dma);
1582 free_region:
1583         if (vp->must_free_region)
1584                 release_region(dev->base_addr, vci->io_size);
1585         free_netdev(dev);
1586         printk(KERN_ERR PFX "vortex_probe1 fails.  Returns %d\n", retval);
1587 out:
1588         return retval;
1589 }
1590
1591 static void
1592 issue_and_wait(struct net_device *dev, int cmd)
1593 {
1594         struct vortex_private *vp = netdev_priv(dev);
1595         void __iomem *ioaddr = vp->ioaddr;
1596         int i;
1597
1598         iowrite16(cmd, ioaddr + EL3_CMD);
1599         for (i = 0; i < 2000; i++) {
1600                 if (!(ioread16(ioaddr + EL3_STATUS) & CmdInProgress))
1601                         return;
1602         }
1603
1604         /* OK, that didn't work.  Do it the slow way.  One second */
1605         for (i = 0; i < 100000; i++) {
1606                 if (!(ioread16(ioaddr + EL3_STATUS) & CmdInProgress)) {
1607                         if (vortex_debug > 1)
1608                                 printk(KERN_INFO "%s: command 0x%04x took %d usecs\n",
1609                                            dev->name, cmd, i * 10);
1610                         return;
1611                 }
1612                 udelay(10);
1613         }
1614         printk(KERN_ERR "%s: command 0x%04x did not complete! Status=0x%x\n",
1615                            dev->name, cmd, ioread16(ioaddr + EL3_STATUS));
1616 }
1617
1618 static void
1619 vortex_up(struct net_device *dev)
1620 {
1621         struct vortex_private *vp = netdev_priv(dev);
1622         void __iomem *ioaddr = vp->ioaddr;
1623         unsigned int config;
1624         int i;
1625
1626         if (VORTEX_PCI(vp)) {
1627                 pci_set_power_state(VORTEX_PCI(vp), PCI_D0);    /* Go active */
1628                 if (vp->pm_state_valid)
1629                         pci_restore_state(VORTEX_PCI(vp));
1630                 pci_enable_device(VORTEX_PCI(vp));
1631         }
1632
1633         /* Before initializing select the active media port. */
1634         EL3WINDOW(3);
1635         config = ioread32(ioaddr + Wn3_Config);
1636
1637         if (vp->media_override != 7) {
1638                 printk(KERN_INFO "%s: Media override to transceiver %d (%s).\n",
1639                            dev->name, vp->media_override,
1640                            media_tbl[vp->media_override].name);
1641                 dev->if_port = vp->media_override;
1642         } else if (vp->autoselect) {
1643                 if (vp->has_nway) {
1644                         if (vortex_debug > 1)
1645                                 printk(KERN_INFO "%s: using NWAY device table, not %d\n",
1646                                                                 dev->name, dev->if_port);
1647                         dev->if_port = XCVR_NWAY;
1648                 } else {
1649                         /* Find first available media type, starting with 100baseTx. */
1650                         dev->if_port = XCVR_100baseTx;
1651                         while (! (vp->available_media & media_tbl[dev->if_port].mask))
1652                                 dev->if_port = media_tbl[dev->if_port].next;
1653                         if (vortex_debug > 1)
1654                                 printk(KERN_INFO "%s: first available media type: %s\n",
1655                                         dev->name, media_tbl[dev->if_port].name);
1656                 }
1657         } else {
1658                 dev->if_port = vp->default_media;
1659                 if (vortex_debug > 1)
1660                         printk(KERN_INFO "%s: using default media %s\n",
1661                                 dev->name, media_tbl[dev->if_port].name);
1662         }
1663
1664         init_timer(&vp->timer);
1665         vp->timer.expires = RUN_AT(media_tbl[dev->if_port].wait);
1666         vp->timer.data = (unsigned long)dev;
1667         vp->timer.function = vortex_timer;              /* timer handler */
1668         add_timer(&vp->timer);
1669
1670         init_timer(&vp->rx_oom_timer);
1671         vp->rx_oom_timer.data = (unsigned long)dev;
1672         vp->rx_oom_timer.function = rx_oom_timer;
1673
1674         if (vortex_debug > 1)
1675                 printk(KERN_DEBUG "%s: Initial media type %s.\n",
1676                            dev->name, media_tbl[dev->if_port].name);
1677
1678         vp->full_duplex = vp->force_fd;
1679         config = BFINS(config, dev->if_port, 20, 4);
1680         if (vortex_debug > 6)
1681                 printk(KERN_DEBUG "vortex_up(): writing 0x%x to InternalConfig\n", config);
1682         iowrite32(config, ioaddr + Wn3_Config);
1683
1684         if (dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
1685                 int mii_reg1, mii_reg5;
1686                 EL3WINDOW(4);
1687                 /* Read BMSR (reg1) only to clear old status. */
1688                 mii_reg1 = mdio_read(dev, vp->phys[0], MII_BMSR);
1689                 mii_reg5 = mdio_read(dev, vp->phys[0], MII_LPA);
1690                 if (mii_reg5 == 0xffff  ||  mii_reg5 == 0x0000) {
1691                         netif_carrier_off(dev); /* No MII device or no link partner report */
1692                 } else {
1693                         mii_reg5 &= vp->advertising;
1694                         if ((mii_reg5 & 0x0100) != 0    /* 100baseTx-FD */
1695                                  || (mii_reg5 & 0x00C0) == 0x0040) /* 10T-FD, but not 100-HD */
1696                         vp->full_duplex = 1;
1697                         netif_carrier_on(dev);
1698                 }
1699                 vp->partner_flow_ctrl = ((mii_reg5 & 0x0400) != 0);
1700                 if (vortex_debug > 1)
1701                         printk(KERN_INFO "%s: MII #%d status %4.4x, link partner capability %4.4x,"
1702                                    " info1 %04x, setting %s-duplex.\n",
1703                                         dev->name, vp->phys[0],
1704                                         mii_reg1, mii_reg5,
1705                                         vp->info1, ((vp->info1 & 0x8000) || vp->full_duplex) ? "full" : "half");
1706                 EL3WINDOW(3);
1707         }
1708
1709         /* Set the full-duplex bit. */
1710         iowrite16(      ((vp->info1 & 0x8000) || vp->full_duplex ? 0x20 : 0) |
1711                         (vp->large_frames ? 0x40 : 0) |
1712                         ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
1713                         ioaddr + Wn3_MAC_Ctrl);
1714
1715         if (vortex_debug > 1) {
1716                 printk(KERN_DEBUG "%s: vortex_up() InternalConfig %8.8x.\n",
1717                         dev->name, config);
1718         }
1719
1720         issue_and_wait(dev, TxReset);
1721         /*
1722          * Don't reset the PHY - that upsets autonegotiation during DHCP operations.
1723          */
1724         issue_and_wait(dev, RxReset|0x04);
1725
1726         iowrite16(SetStatusEnb | 0x00, ioaddr + EL3_CMD);
1727
1728         if (vortex_debug > 1) {
1729                 EL3WINDOW(4);
1730                 printk(KERN_DEBUG "%s: vortex_up() irq %d media status %4.4x.\n",
1731                            dev->name, dev->irq, ioread16(ioaddr + Wn4_Media));
1732         }
1733
1734         /* Set the station address and mask in window 2 each time opened. */
1735         EL3WINDOW(2);
1736         for (i = 0; i < 6; i++)
1737                 iowrite8(dev->dev_addr[i], ioaddr + i);
1738         for (; i < 12; i+=2)
1739                 iowrite16(0, ioaddr + i);
1740
1741         if (vp->cb_fn_base) {
1742                 unsigned short n = ioread16(ioaddr + Wn2_ResetOptions) & ~0x4010;
1743                 if (vp->drv_flags & INVERT_LED_PWR)
1744                         n |= 0x10;
1745                 if (vp->drv_flags & INVERT_MII_PWR)
1746                         n |= 0x4000;
1747                 iowrite16(n, ioaddr + Wn2_ResetOptions);
1748         }
1749
1750         if (dev->if_port == XCVR_10base2)
1751                 /* Start the thinnet transceiver. We should really wait 50ms...*/
1752                 iowrite16(StartCoax, ioaddr + EL3_CMD);
1753         if (dev->if_port != XCVR_NWAY) {
1754                 EL3WINDOW(4);
1755                 iowrite16((ioread16(ioaddr + Wn4_Media) & ~(Media_10TP|Media_SQE)) |
1756                          media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
1757         }
1758
1759         /* Switch to the stats window, and clear all stats by reading. */
1760         iowrite16(StatsDisable, ioaddr + EL3_CMD);
1761         EL3WINDOW(6);
1762         for (i = 0; i < 10; i++)
1763                 ioread8(ioaddr + i);
1764         ioread16(ioaddr + 10);
1765         ioread16(ioaddr + 12);
1766         /* New: On the Vortex we must also clear the BadSSD counter. */
1767         EL3WINDOW(4);
1768         ioread8(ioaddr + 12);
1769         /* ..and on the Boomerang we enable the extra statistics bits. */
1770         iowrite16(0x0040, ioaddr + Wn4_NetDiag);
1771
1772         /* Switch to register set 7 for normal use. */
1773         EL3WINDOW(7);
1774
1775         if (vp->full_bus_master_rx) { /* Boomerang bus master. */
1776                 vp->cur_rx = vp->dirty_rx = 0;
1777                 /* Initialize the RxEarly register as recommended. */
1778                 iowrite16(SetRxThreshold + (1536>>2), ioaddr + EL3_CMD);
1779                 iowrite32(0x0020, ioaddr + PktStatus);
1780                 iowrite32(vp->rx_ring_dma, ioaddr + UpListPtr);
1781         }
1782         if (vp->full_bus_master_tx) {           /* Boomerang bus master Tx. */
1783                 vp->cur_tx = vp->dirty_tx = 0;
1784                 if (vp->drv_flags & IS_BOOMERANG)
1785                         iowrite8(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold); /* Room for a packet. */
1786                 /* Clear the Rx, Tx rings. */
1787                 for (i = 0; i < RX_RING_SIZE; i++)      /* AKPM: this is done in vortex_open, too */
1788                         vp->rx_ring[i].status = 0;
1789                 for (i = 0; i < TX_RING_SIZE; i++)
1790                         vp->tx_skbuff[i] = NULL;
1791                 iowrite32(0, ioaddr + DownListPtr);
1792         }
1793         /* Set receiver mode: presumably accept b-case and phys addr only. */
1794         set_rx_mode(dev);
1795         /* enable 802.1q tagged frames */
1796         set_8021q_mode(dev, 1);
1797         iowrite16(StatsEnable, ioaddr + EL3_CMD); /* Turn on statistics. */
1798
1799 //      issue_and_wait(dev, SetTxStart|0x07ff);
1800         iowrite16(RxEnable, ioaddr + EL3_CMD); /* Enable the receiver. */
1801         iowrite16(TxEnable, ioaddr + EL3_CMD); /* Enable transmitter. */
1802         /* Allow status bits to be seen. */
1803         vp->status_enable = SetStatusEnb | HostError|IntReq|StatsFull|TxComplete|
1804                 (vp->full_bus_master_tx ? DownComplete : TxAvailable) |
1805                 (vp->full_bus_master_rx ? UpComplete : RxComplete) |
1806                 (vp->bus_master ? DMADone : 0);
1807         vp->intr_enable = SetIntrEnb | IntLatch | TxAvailable |
1808                 (vp->full_bus_master_rx ? 0 : RxComplete) |
1809                 StatsFull | HostError | TxComplete | IntReq
1810                 | (vp->bus_master ? DMADone : 0) | UpComplete | DownComplete;
1811         iowrite16(vp->status_enable, ioaddr + EL3_CMD);
1812         /* Ack all pending events, and set active indicator mask. */
1813         iowrite16(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
1814                  ioaddr + EL3_CMD);
1815         iowrite16(vp->intr_enable, ioaddr + EL3_CMD);
1816         if (vp->cb_fn_base)                     /* The PCMCIA people are idiots.  */
1817                 iowrite32(0x8000, vp->cb_fn_base + 4);
1818         netif_start_queue (dev);
1819 }
1820
1821 static int
1822 vortex_open(struct net_device *dev)
1823 {
1824         struct vortex_private *vp = netdev_priv(dev);
1825         int i;
1826         int retval;
1827
1828         /* Use the now-standard shared IRQ implementation. */
1829         if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ?
1830                                 &boomerang_interrupt : &vortex_interrupt, SA_SHIRQ, dev->name, dev))) {
1831                 printk(KERN_ERR "%s: Could not reserve IRQ %d\n", dev->name, dev->irq);
1832                 goto out;
1833         }
1834
1835         if (vp->full_bus_master_rx) { /* Boomerang bus master. */
1836                 if (vortex_debug > 2)
1837                         printk(KERN_DEBUG "%s:  Filling in the Rx ring.\n", dev->name);
1838                 for (i = 0; i < RX_RING_SIZE; i++) {
1839                         struct sk_buff *skb;
1840                         vp->rx_ring[i].next = cpu_to_le32(vp->rx_ring_dma + sizeof(struct boom_rx_desc) * (i+1));
1841                         vp->rx_ring[i].status = 0;      /* Clear complete bit. */
1842                         vp->rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ | LAST_FRAG);
1843                         skb = dev_alloc_skb(PKT_BUF_SZ);
1844                         vp->rx_skbuff[i] = skb;
1845                         if (skb == NULL)
1846                                 break;                  /* Bad news!  */
1847                         skb->dev = dev;                 /* Mark as being used by this device. */
1848                         skb_reserve(skb, 2);    /* Align IP on 16 byte boundaries */
1849                         vp->rx_ring[i].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
1850                 }
1851                 if (i != RX_RING_SIZE) {
1852                         int j;
1853                         printk(KERN_EMERG "%s: no memory for rx ring\n", dev->name);
1854                         for (j = 0; j < i; j++) {
1855                                 if (vp->rx_skbuff[j]) {
1856                                         dev_kfree_skb(vp->rx_skbuff[j]);
1857                                         vp->rx_skbuff[j] = NULL;
1858                                 }
1859                         }
1860                         retval = -ENOMEM;
1861                         goto out_free_irq;
1862                 }
1863                 /* Wrap the ring. */
1864                 vp->rx_ring[i-1].next = cpu_to_le32(vp->rx_ring_dma);
1865         }
1866
1867         vortex_up(dev);
1868         return 0;
1869
1870 out_free_irq:
1871         free_irq(dev->irq, dev);
1872 out:
1873         if (vortex_debug > 1)
1874                 printk(KERN_ERR "%s: vortex_open() fails: returning %d\n", dev->name, retval);
1875         return retval;
1876 }
1877
1878 static void
1879 vortex_timer(unsigned long data)
1880 {
1881         struct net_device *dev = (struct net_device *)data;
1882         struct vortex_private *vp = netdev_priv(dev);
1883         void __iomem *ioaddr = vp->ioaddr;
1884         int next_tick = 60*HZ;
1885         int ok = 0;
1886         int media_status, mii_status, old_window;
1887
1888         if (vortex_debug > 2) {
1889                 printk(KERN_DEBUG "%s: Media selection timer tick happened, %s.\n",
1890                            dev->name, media_tbl[dev->if_port].name);
1891                 printk(KERN_DEBUG "dev->watchdog_timeo=%d\n", dev->watchdog_timeo);
1892         }
1893
1894         if (vp->medialock)
1895                 goto leave_media_alone;
1896         disable_irq(dev->irq);
1897         old_window = ioread16(ioaddr + EL3_CMD) >> 13;
1898         EL3WINDOW(4);
1899         media_status = ioread16(ioaddr + Wn4_Media);
1900         switch (dev->if_port) {
1901         case XCVR_10baseT:  case XCVR_100baseTx:  case XCVR_100baseFx:
1902                 if (media_status & Media_LnkBeat) {
1903                         netif_carrier_on(dev);
1904                         ok = 1;
1905                         if (vortex_debug > 1)
1906                                 printk(KERN_DEBUG "%s: Media %s has link beat, %x.\n",
1907                                            dev->name, media_tbl[dev->if_port].name, media_status);
1908                 } else {
1909                         netif_carrier_off(dev);
1910                         if (vortex_debug > 1) {
1911                                 printk(KERN_DEBUG "%s: Media %s has no link beat, %x.\n",
1912                                            dev->name, media_tbl[dev->if_port].name, media_status);
1913                         }
1914                 }
1915                 break;
1916         case XCVR_MII: case XCVR_NWAY:
1917                 {
1918                         spin_lock_bh(&vp->lock);
1919                         mii_status = mdio_read(dev, vp->phys[0], MII_BMSR);
1920                         if (!(mii_status & BMSR_LSTATUS)) {
1921                                 /* Re-read to get actual link status */
1922                                 mii_status = mdio_read(dev, vp->phys[0], MII_BMSR);
1923                         }
1924                         ok = 1;
1925                         if (vortex_debug > 2)
1926                                 printk(KERN_DEBUG "%s: MII transceiver has status %4.4x.\n",
1927                                         dev->name, mii_status);
1928                         if (mii_status & BMSR_LSTATUS) {
1929                                 int mii_reg5 = mdio_read(dev, vp->phys[0], MII_LPA);
1930                                 if (! vp->force_fd  &&  mii_reg5 != 0xffff) {
1931                                         int duplex;
1932
1933                                         mii_reg5 &= vp->advertising;
1934                                         duplex = (mii_reg5&0x0100) || (mii_reg5 & 0x01C0) == 0x0040;
1935                                         if (vp->full_duplex != duplex) {
1936                                                 vp->full_duplex = duplex;
1937                                                 printk(KERN_INFO "%s: Setting %s-duplex based on MII "
1938                                                         "#%d link partner capability of %4.4x.\n",
1939                                                         dev->name, vp->full_duplex ? "full" : "half",
1940                                                         vp->phys[0], mii_reg5);
1941                                                 /* Set the full-duplex bit. */
1942                                                 EL3WINDOW(3);
1943                                                 iowrite16(      (vp->full_duplex ? 0x20 : 0) |
1944                                                                 (vp->large_frames ? 0x40 : 0) |
1945                                                                 ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
1946                                                                 ioaddr + Wn3_MAC_Ctrl);
1947                                                 if (vortex_debug > 1)
1948                                                         printk(KERN_DEBUG "Setting duplex in Wn3_MAC_Ctrl\n");
1949                                                 /* AKPM: bug: should reset Tx and Rx after setting Duplex.  Page 180 */
1950                                         }
1951                                 }
1952                                 netif_carrier_on(dev);
1953                         } else {
1954                                 netif_carrier_off(dev);
1955                         }
1956                         spin_unlock_bh(&vp->lock);
1957                 }
1958                 break;
1959           default:                                      /* Other media types handled by Tx timeouts. */
1960                 if (vortex_debug > 1)
1961                   printk(KERN_DEBUG "%s: Media %s has no indication, %x.\n",
1962                                  dev->name, media_tbl[dev->if_port].name, media_status);
1963                 ok = 1;
1964         }
1965         if ( ! ok) {
1966                 unsigned int config;
1967
1968                 do {
1969                         dev->if_port = media_tbl[dev->if_port].next;
1970                 } while ( ! (vp->available_media & media_tbl[dev->if_port].mask));
1971                 if (dev->if_port == XCVR_Default) { /* Go back to default. */
1972                   dev->if_port = vp->default_media;
1973                   if (vortex_debug > 1)
1974                         printk(KERN_DEBUG "%s: Media selection failing, using default "
1975                                    "%s port.\n",
1976                                    dev->name, media_tbl[dev->if_port].name);
1977                 } else {
1978                         if (vortex_debug > 1)
1979                                 printk(KERN_DEBUG "%s: Media selection failed, now trying "
1980                                            "%s port.\n",
1981                                            dev->name, media_tbl[dev->if_port].name);
1982                         next_tick = media_tbl[dev->if_port].wait;
1983                 }
1984                 iowrite16((media_status & ~(Media_10TP|Media_SQE)) |
1985                          media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
1986
1987                 EL3WINDOW(3);
1988                 config = ioread32(ioaddr + Wn3_Config);
1989                 config = BFINS(config, dev->if_port, 20, 4);
1990                 iowrite32(config, ioaddr + Wn3_Config);
1991
1992                 iowrite16(dev->if_port == XCVR_10base2 ? StartCoax : StopCoax,
1993                          ioaddr + EL3_CMD);
1994                 if (vortex_debug > 1)
1995                         printk(KERN_DEBUG "wrote 0x%08x to Wn3_Config\n", config);
1996                 /* AKPM: FIXME: Should reset Rx & Tx here.  P60 of 3c90xc.pdf */
1997         }
1998         EL3WINDOW(old_window);
1999         enable_irq(dev->irq);
2000
2001 leave_media_alone:
2002         if (vortex_debug > 2)
2003           printk(KERN_DEBUG "%s: Media selection timer finished, %s.\n",
2004                          dev->name, media_tbl[dev->if_port].name);
2005
2006         mod_timer(&vp->timer, RUN_AT(next_tick));
2007         if (vp->deferred)
2008                 iowrite16(FakeIntr, ioaddr + EL3_CMD);
2009         return;
2010 }
2011
2012 static void vortex_tx_timeout(struct net_device *dev)
2013 {
2014         struct vortex_private *vp = netdev_priv(dev);
2015         void __iomem *ioaddr = vp->ioaddr;
2016
2017         printk(KERN_ERR "%s: transmit timed out, tx_status %2.2x status %4.4x.\n",
2018                    dev->name, ioread8(ioaddr + TxStatus),
2019                    ioread16(ioaddr + EL3_STATUS));
2020         EL3WINDOW(4);
2021         printk(KERN_ERR "  diagnostics: net %04x media %04x dma %08x fifo %04x\n",
2022                         ioread16(ioaddr + Wn4_NetDiag),
2023                         ioread16(ioaddr + Wn4_Media),
2024                         ioread32(ioaddr + PktStatus),
2025                         ioread16(ioaddr + Wn4_FIFODiag));
2026         /* Slight code bloat to be user friendly. */
2027         if ((ioread8(ioaddr + TxStatus) & 0x88) == 0x88)
2028                 printk(KERN_ERR "%s: Transmitter encountered 16 collisions --"
2029                            " network cable problem?\n", dev->name);
2030         if (ioread16(ioaddr + EL3_STATUS) & IntLatch) {
2031                 printk(KERN_ERR "%s: Interrupt posted but not delivered --"
2032                            " IRQ blocked by another device?\n", dev->name);
2033                 /* Bad idea here.. but we might as well handle a few events. */
2034                 {
2035                         /*
2036                          * Block interrupts because vortex_interrupt does a bare spin_lock()
2037                          */
2038                         unsigned long flags;
2039                         local_irq_save(flags);
2040                         if (vp->full_bus_master_tx)
2041                                 boomerang_interrupt(dev->irq, dev, NULL);
2042                         else
2043                                 vortex_interrupt(dev->irq, dev, NULL);
2044                         local_irq_restore(flags);
2045                 }
2046         }
2047
2048         if (vortex_debug > 0)
2049                 dump_tx_ring(dev);
2050
2051         issue_and_wait(dev, TxReset);
2052
2053         vp->stats.tx_errors++;
2054         if (vp->full_bus_master_tx) {
2055                 printk(KERN_DEBUG "%s: Resetting the Tx ring pointer.\n", dev->name);
2056                 if (vp->cur_tx - vp->dirty_tx > 0  &&  ioread32(ioaddr + DownListPtr) == 0)
2057                         iowrite32(vp->tx_ring_dma + (vp->dirty_tx % TX_RING_SIZE) * sizeof(struct boom_tx_desc),
2058                                  ioaddr + DownListPtr);
2059                 if (vp->cur_tx - vp->dirty_tx < TX_RING_SIZE)
2060                         netif_wake_queue (dev);
2061                 if (vp->drv_flags & IS_BOOMERANG)
2062                         iowrite8(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold);
2063                 iowrite16(DownUnstall, ioaddr + EL3_CMD);
2064         } else {
2065                 vp->stats.tx_dropped++;
2066                 netif_wake_queue(dev);
2067         }
2068         
2069         /* Issue Tx Enable */
2070         iowrite16(TxEnable, ioaddr + EL3_CMD);
2071         dev->trans_start = jiffies;
2072         
2073         /* Switch to register set 7 for normal use. */
2074         EL3WINDOW(7);
2075 }
2076
2077 /*
2078  * Handle uncommon interrupt sources.  This is a separate routine to minimize
2079  * the cache impact.
2080  */
2081 static void
2082 vortex_error(struct net_device *dev, int status)
2083 {
2084         struct vortex_private *vp = netdev_priv(dev);
2085         void __iomem *ioaddr = vp->ioaddr;
2086         int do_tx_reset = 0, reset_mask = 0;
2087         unsigned char tx_status = 0;
2088
2089         if (vortex_debug > 2) {
2090                 printk(KERN_ERR "%s: vortex_error(), status=0x%x\n", dev->name, status);
2091         }
2092
2093         if (status & TxComplete) {                      /* Really "TxError" for us. */
2094                 tx_status = ioread8(ioaddr + TxStatus);
2095                 /* Presumably a tx-timeout. We must merely re-enable. */
2096                 if (vortex_debug > 2
2097                         || (tx_status != 0x88 && vortex_debug > 0)) {
2098                         printk(KERN_ERR "%s: Transmit error, Tx status register %2.2x.\n",
2099                                    dev->name, tx_status);
2100                         if (tx_status == 0x82) {
2101                                 printk(KERN_ERR "Probably a duplex mismatch.  See "
2102                                                 "Documentation/networking/vortex.txt\n");
2103                         }
2104                         dump_tx_ring(dev);
2105                 }
2106                 if (tx_status & 0x14)  vp->stats.tx_fifo_errors++;
2107                 if (tx_status & 0x38)  vp->stats.tx_aborted_errors++;
2108                 iowrite8(0, ioaddr + TxStatus);
2109                 if (tx_status & 0x30) {                 /* txJabber or txUnderrun */
2110                         do_tx_reset = 1;
2111                 } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) {       /* maxCollisions */
2112                         do_tx_reset = 1;
2113                         reset_mask = 0x0108;            /* Reset interface logic, but not download logic */
2114                 } else {                                                /* Merely re-enable the transmitter. */
2115                         iowrite16(TxEnable, ioaddr + EL3_CMD);
2116                 }
2117         }
2118
2119         if (status & RxEarly) {                         /* Rx early is unused. */
2120                 vortex_rx(dev);
2121                 iowrite16(AckIntr | RxEarly, ioaddr + EL3_CMD);
2122         }
2123         if (status & StatsFull) {                       /* Empty statistics. */
2124                 static int DoneDidThat;
2125                 if (vortex_debug > 4)
2126                         printk(KERN_DEBUG "%s: Updating stats.\n", dev->name);
2127                 update_stats(ioaddr, dev);
2128                 /* HACK: Disable statistics as an interrupt source. */
2129                 /* This occurs when we have the wrong media type! */
2130                 if (DoneDidThat == 0  &&
2131                         ioread16(ioaddr + EL3_STATUS) & StatsFull) {
2132                         printk(KERN_WARNING "%s: Updating statistics failed, disabling "
2133                                    "stats as an interrupt source.\n", dev->name);
2134                         EL3WINDOW(5);
2135                         iowrite16(SetIntrEnb | (ioread16(ioaddr + 10) & ~StatsFull), ioaddr + EL3_CMD);
2136                         vp->intr_enable &= ~StatsFull;
2137                         EL3WINDOW(7);
2138                         DoneDidThat++;
2139                 }
2140         }
2141         if (status & IntReq) {          /* Restore all interrupt sources.  */
2142                 iowrite16(vp->status_enable, ioaddr + EL3_CMD);
2143                 iowrite16(vp->intr_enable, ioaddr + EL3_CMD);
2144         }
2145         if (status & HostError) {
2146                 u16 fifo_diag;
2147                 EL3WINDOW(4);
2148                 fifo_diag = ioread16(ioaddr + Wn4_FIFODiag);
2149                 printk(KERN_ERR "%s: Host error, FIFO diagnostic register %4.4x.\n",
2150                            dev->name, fifo_diag);
2151                 /* Adapter failure requires Tx/Rx reset and reinit. */
2152                 if (vp->full_bus_master_tx) {
2153                         int bus_status = ioread32(ioaddr + PktStatus);
2154                         /* 0x80000000 PCI master abort. */
2155                         /* 0x40000000 PCI target abort. */
2156                         if (vortex_debug)
2157                                 printk(KERN_ERR "%s: PCI bus error, bus status %8.8x\n", dev->name, bus_status);
2158
2159                         /* In this case, blow the card away */
2160                         /* Must not enter D3 or we can't legally issue the reset! */
2161                         vortex_down(dev, 0);
2162                         issue_and_wait(dev, TotalReset | 0xff);
2163                         vortex_up(dev);         /* AKPM: bug.  vortex_up() assumes that the rx ring is full. It may not be. */
2164                 } else if (fifo_diag & 0x0400)
2165                         do_tx_reset = 1;
2166                 if (fifo_diag & 0x3000) {
2167                         /* Reset Rx fifo and upload logic */
2168                         issue_and_wait(dev, RxReset|0x07);
2169                         /* Set the Rx filter to the current state. */
2170                         set_rx_mode(dev);
2171                         /* enable 802.1q VLAN tagged frames */
2172                         set_8021q_mode(dev, 1);
2173                         iowrite16(RxEnable, ioaddr + EL3_CMD); /* Re-enable the receiver. */
2174                         iowrite16(AckIntr | HostError, ioaddr + EL3_CMD);
2175                 }
2176         }
2177
2178         if (do_tx_reset) {
2179                 issue_and_wait(dev, TxReset|reset_mask);
2180                 iowrite16(TxEnable, ioaddr + EL3_CMD);
2181                 if (!vp->full_bus_master_tx)
2182                         netif_wake_queue(dev);
2183         }
2184 }
2185
2186 static int
2187 vortex_start_xmit(struct sk_buff *skb, struct net_device *dev)
2188 {
2189         struct vortex_private *vp = netdev_priv(dev);
2190         void __iomem *ioaddr = vp->ioaddr;
2191
2192         /* Put out the doubleword header... */
2193         iowrite32(skb->len, ioaddr + TX_FIFO);
2194         if (vp->bus_master) {
2195                 /* Set the bus-master controller to transfer the packet. */
2196                 int len = (skb->len + 3) & ~3;
2197                 iowrite32(      vp->tx_skb_dma = pci_map_single(VORTEX_PCI(vp), skb->data, len, PCI_DMA_TODEVICE),
2198                                 ioaddr + Wn7_MasterAddr);
2199                 iowrite16(len, ioaddr + Wn7_MasterLen);
2200                 vp->tx_skb = skb;
2201                 iowrite16(StartDMADown, ioaddr + EL3_CMD);
2202                 /* netif_wake_queue() will be called at the DMADone interrupt. */
2203         } else {
2204                 /* ... and the packet rounded to a doubleword. */
2205                 iowrite32_rep(ioaddr + TX_FIFO, skb->data, (skb->len + 3) >> 2);
2206                 dev_kfree_skb (skb);
2207                 if (ioread16(ioaddr + TxFree) > 1536) {
2208                         netif_start_queue (dev);        /* AKPM: redundant? */
2209                 } else {
2210                         /* Interrupt us when the FIFO has room for max-sized packet. */
2211                         netif_stop_queue(dev);
2212                         iowrite16(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
2213                 }
2214         }
2215
2216         dev->trans_start = jiffies;
2217
2218         /* Clear the Tx status stack. */
2219         {
2220                 int tx_status;
2221                 int i = 32;
2222
2223                 while (--i > 0  &&      (tx_status = ioread8(ioaddr + TxStatus)) > 0) {
2224                         if (tx_status & 0x3C) {         /* A Tx-disabling error occurred.  */
2225                                 if (vortex_debug > 2)
2226                                   printk(KERN_DEBUG "%s: Tx error, status %2.2x.\n",
2227                                                  dev->name, tx_status);
2228                                 if (tx_status & 0x04) vp->stats.tx_fifo_errors++;
2229                                 if (tx_status & 0x38) vp->stats.tx_aborted_errors++;
2230                                 if (tx_status & 0x30) {
2231                                         issue_and_wait(dev, TxReset);
2232                                 }
2233                                 iowrite16(TxEnable, ioaddr + EL3_CMD);
2234                         }
2235                         iowrite8(0x00, ioaddr + TxStatus); /* Pop the status stack. */
2236                 }
2237         }
2238         return 0;
2239 }
2240
2241 static int
2242 boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev)
2243 {
2244         struct vortex_private *vp = netdev_priv(dev);
2245         void __iomem *ioaddr = vp->ioaddr;
2246         /* Calculate the next Tx descriptor entry. */
2247         int entry = vp->cur_tx % TX_RING_SIZE;
2248         struct boom_tx_desc *prev_entry = &vp->tx_ring[(vp->cur_tx-1) % TX_RING_SIZE];
2249         unsigned long flags;
2250
2251         if (vortex_debug > 6) {
2252                 printk(KERN_DEBUG "boomerang_start_xmit()\n");
2253                 printk(KERN_DEBUG "%s: Trying to send a packet, Tx index %d.\n",
2254                            dev->name, vp->cur_tx);
2255         }
2256
2257         if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) {
2258                 if (vortex_debug > 0)
2259                         printk(KERN_WARNING "%s: BUG! Tx Ring full, refusing to send buffer.\n",
2260                                    dev->name);
2261                 netif_stop_queue(dev);
2262                 return 1;
2263         }
2264
2265         vp->tx_skbuff[entry] = skb;
2266
2267         vp->tx_ring[entry].next = 0;
2268 #if DO_ZEROCOPY
2269         if (skb->ip_summed != CHECKSUM_HW)
2270                         vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
2271         else
2272                         vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded | AddTCPChksum | AddUDPChksum);
2273
2274         if (!skb_shinfo(skb)->nr_frags) {
2275                 vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data,
2276                                                                                 skb->len, PCI_DMA_TODEVICE));
2277                 vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len | LAST_FRAG);
2278         } else {
2279                 int i;
2280
2281                 vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data,
2282                                                                                 skb->len-skb->data_len, PCI_DMA_TODEVICE));
2283                 vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len-skb->data_len);
2284
2285                 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2286                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2287
2288                         vp->tx_ring[entry].frag[i+1].addr =
2289                                         cpu_to_le32(pci_map_single(VORTEX_PCI(vp),
2290                                                                                            (void*)page_address(frag->page) + frag->page_offset,
2291                                                                                            frag->size, PCI_DMA_TODEVICE));
2292
2293                         if (i == skb_shinfo(skb)->nr_frags-1)
2294                                         vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size|LAST_FRAG);
2295                         else
2296                                         vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size);
2297                 }
2298         }
2299 #else
2300         vp->tx_ring[entry].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, skb->len, PCI_DMA_TODEVICE));
2301         vp->tx_ring[entry].length = cpu_to_le32(skb->len | LAST_FRAG);
2302         vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
2303 #endif
2304
2305         spin_lock_irqsave(&vp->lock, flags);
2306         /* Wait for the stall to complete. */
2307         issue_and_wait(dev, DownStall);
2308         prev_entry->next = cpu_to_le32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc));
2309         if (ioread32(ioaddr + DownListPtr) == 0) {
2310                 iowrite32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc), ioaddr + DownListPtr);
2311                 vp->queued_packet++;
2312         }
2313
2314         vp->cur_tx++;
2315         if (vp->cur_tx - vp->dirty_tx > TX_RING_SIZE - 1) {
2316                 netif_stop_queue (dev);
2317         } else {                                        /* Clear previous interrupt enable. */
2318 #if defined(tx_interrupt_mitigation)
2319                 /* Dubious. If in boomeang_interrupt "faster" cyclone ifdef
2320                  * were selected, this would corrupt DN_COMPLETE. No?
2321                  */
2322                 prev_entry->status &= cpu_to_le32(~TxIntrUploaded);
2323 #endif
2324         }
2325         iowrite16(DownUnstall, ioaddr + EL3_CMD);
2326         spin_unlock_irqrestore(&vp->lock, flags);
2327         dev->trans_start = jiffies;
2328         return 0;
2329 }
2330
2331 /* The interrupt handler does all of the Rx thread work and cleans up
2332    after the Tx thread. */
2333
2334 /*
2335  * This is the ISR for the vortex series chips.
2336  * full_bus_master_tx == 0 && full_bus_master_rx == 0
2337  */
2338
2339 static irqreturn_t
2340 vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2341 {
2342         struct net_device *dev = dev_id;
2343         struct vortex_private *vp = netdev_priv(dev);
2344         void __iomem *ioaddr;
2345         int status;
2346         int work_done = max_interrupt_work;
2347         int handled = 0;
2348
2349         ioaddr = vp->ioaddr;
2350         spin_lock(&vp->lock);
2351
2352         status = ioread16(ioaddr + EL3_STATUS);
2353
2354         if (vortex_debug > 6)
2355                 printk("vortex_interrupt(). status=0x%4x\n", status);
2356
2357         if ((status & IntLatch) == 0)
2358                 goto handler_exit;              /* No interrupt: shared IRQs cause this */
2359         handled = 1;
2360
2361         if (status & IntReq) {
2362                 status |= vp->deferred;
2363                 vp->deferred = 0;
2364         }
2365
2366         if (status == 0xffff)           /* h/w no longer present (hotplug)? */
2367                 goto handler_exit;
2368
2369         if (vortex_debug > 4)
2370                 printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.\n",
2371                            dev->name, status, ioread8(ioaddr + Timer));
2372
2373         do {
2374                 if (vortex_debug > 5)
2375                                 printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.\n",
2376                                            dev->name, status);
2377                 if (status & RxComplete)
2378                         vortex_rx(dev);
2379
2380                 if (status & TxAvailable) {
2381                         if (vortex_debug > 5)
2382                                 printk(KERN_DEBUG "     TX room bit was handled.\n");
2383                         /* There's room in the FIFO for a full-sized packet. */
2384                         iowrite16(AckIntr | TxAvailable, ioaddr + EL3_CMD);
2385                         netif_wake_queue (dev);
2386                 }
2387
2388                 if (status & DMADone) {
2389                         if (ioread16(ioaddr + Wn7_MasterStatus) & 0x1000) {
2390                                 iowrite16(0x1000, ioaddr + Wn7_MasterStatus); /* Ack the event. */
2391                                 pci_unmap_single(VORTEX_PCI(vp), vp->tx_skb_dma, (vp->tx_skb->len + 3) & ~3, PCI_DMA_TODEVICE);
2392                                 dev_kfree_skb_irq(vp->tx_skb); /* Release the transferred buffer */
2393                                 if (ioread16(ioaddr + TxFree) > 1536) {
2394                                         /*
2395                                          * AKPM: FIXME: I don't think we need this.  If the queue was stopped due to
2396                                          * insufficient FIFO room, the TxAvailable test will succeed and call
2397                                          * netif_wake_queue()
2398                                          */
2399                                         netif_wake_queue(dev);
2400                                 } else { /* Interrupt when FIFO has room for max-sized packet. */
2401                                         iowrite16(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
2402                                         netif_stop_queue(dev);
2403                                 }
2404                         }
2405                 }
2406                 /* Check for all uncommon interrupts at once. */
2407                 if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq)) {
2408                         if (status == 0xffff)
2409                                 break;
2410                         vortex_error(dev, status);
2411                 }
2412
2413                 if (--work_done < 0) {
2414                         printk(KERN_WARNING "%s: Too much work in interrupt, status "
2415                                    "%4.4x.\n", dev->name, status);
2416                         /* Disable all pending interrupts. */
2417                         do {
2418                                 vp->deferred |= status;
2419                                 iowrite16(SetStatusEnb | (~vp->deferred & vp->status_enable),
2420                                          ioaddr + EL3_CMD);
2421                                 iowrite16(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
2422                         } while ((status = ioread16(ioaddr + EL3_CMD)) & IntLatch);
2423                         /* The timer will reenable interrupts. */
2424                         mod_timer(&vp->timer, jiffies + 1*HZ);
2425                         break;
2426                 }
2427                 /* Acknowledge the IRQ. */
2428                 iowrite16(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
2429         } while ((status = ioread16(ioaddr + EL3_STATUS)) & (IntLatch | RxComplete));
2430
2431         if (vortex_debug > 4)
2432                 printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.\n",
2433                            dev->name, status);
2434 handler_exit:
2435         spin_unlock(&vp->lock);
2436         return IRQ_RETVAL(handled);
2437 }
2438
2439 /*
2440  * This is the ISR for the boomerang series chips.
2441  * full_bus_master_tx == 1 && full_bus_master_rx == 1
2442  */
2443
2444 static irqreturn_t
2445 boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2446 {
2447         struct net_device *dev = dev_id;
2448         struct vortex_private *vp = netdev_priv(dev);
2449         void __iomem *ioaddr;
2450         int status;
2451         int work_done = max_interrupt_work;
2452
2453         ioaddr = vp->ioaddr;
2454
2455         /*
2456          * It seems dopey to put the spinlock this early, but we could race against vortex_tx_timeout
2457          * and boomerang_start_xmit
2458          */
2459         spin_lock(&vp->lock);
2460
2461         status = ioread16(ioaddr + EL3_STATUS);
2462
2463         if (vortex_debug > 6)
2464                 printk(KERN_DEBUG "boomerang_interrupt. status=0x%4x\n", status);
2465
2466         if ((status & IntLatch) == 0)
2467                 goto handler_exit;              /* No interrupt: shared IRQs can cause this */
2468
2469         if (status == 0xffff) {         /* h/w no longer present (hotplug)? */
2470                 if (vortex_debug > 1)
2471                         printk(KERN_DEBUG "boomerang_interrupt(1): status = 0xffff\n");
2472                 goto handler_exit;
2473         }
2474
2475         if (status & IntReq) {
2476                 status |= vp->deferred;
2477                 vp->deferred = 0;
2478         }
2479
2480         if (vortex_debug > 4)
2481                 printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.\n",
2482                            dev->name, status, ioread8(ioaddr + Timer));
2483         do {
2484                 if (vortex_debug > 5)
2485                                 printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.\n",
2486                                            dev->name, status);
2487                 if (status & UpComplete) {
2488                         iowrite16(AckIntr | UpComplete, ioaddr + EL3_CMD);
2489                         if (vortex_debug > 5)
2490                                 printk(KERN_DEBUG "boomerang_interrupt->boomerang_rx\n");
2491                         boomerang_rx(dev);
2492                 }
2493
2494                 if (status & DownComplete) {
2495                         unsigned int dirty_tx = vp->dirty_tx;
2496
2497                         iowrite16(AckIntr | DownComplete, ioaddr + EL3_CMD);
2498                         while (vp->cur_tx - dirty_tx > 0) {
2499                                 int entry = dirty_tx % TX_RING_SIZE;
2500 #if 1   /* AKPM: the latter is faster, but cyclone-only */
2501                                 if (ioread32(ioaddr + DownListPtr) ==
2502                                         vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc))
2503                                         break;                  /* It still hasn't been processed. */
2504 #else
2505                                 if ((vp->tx_ring[entry].status & DN_COMPLETE) == 0)
2506                                         break;                  /* It still hasn't been processed. */
2507 #endif
2508                                         
2509                                 if (vp->tx_skbuff[entry]) {
2510                                         struct sk_buff *skb = vp->tx_skbuff[entry];
2511 #if DO_ZEROCOPY                                 
2512                                         int i;
2513                                         for (i=0; i<=skb_shinfo(skb)->nr_frags; i++)
2514                                                         pci_unmap_single(VORTEX_PCI(vp),
2515                                                                                          le32_to_cpu(vp->tx_ring[entry].frag[i].addr),
2516                                                                                          le32_to_cpu(vp->tx_ring[entry].frag[i].length)&0xFFF,
2517                                                                                          PCI_DMA_TODEVICE);
2518 #else
2519                                         pci_unmap_single(VORTEX_PCI(vp),
2520                                                 le32_to_cpu(vp->tx_ring[entry].addr), skb->len, PCI_DMA_TODEVICE);
2521 #endif
2522                                         dev_kfree_skb_irq(skb);
2523                                         vp->tx_skbuff[entry] = NULL;
2524                                 } else {
2525                                         printk(KERN_DEBUG "boomerang_interrupt: no skb!\n");
2526                                 }
2527                                 /* vp->stats.tx_packets++;  Counted below. */
2528                                 dirty_tx++;
2529                         }
2530                         vp->dirty_tx = dirty_tx;
2531                         if (vp->cur_tx - dirty_tx <= TX_RING_SIZE - 1) {
2532                                 if (vortex_debug > 6)
2533                                         printk(KERN_DEBUG "boomerang_interrupt: wake queue\n");
2534                                 netif_wake_queue (dev);
2535                         }
2536                 }
2537
2538                 /* Check for all uncommon interrupts at once. */
2539                 if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq))
2540                         vortex_error(dev, status);
2541
2542                 if (--work_done < 0) {
2543                         printk(KERN_WARNING "%s: Too much work in interrupt, status "
2544                                    "%4.4x.\n", dev->name, status);
2545                         /* Disable all pending interrupts. */
2546                         do {
2547                                 vp->deferred |= status;
2548                                 iowrite16(SetStatusEnb | (~vp->deferred & vp->status_enable),
2549                                          ioaddr + EL3_CMD);
2550                                 iowrite16(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
2551                         } while ((status = ioread16(ioaddr + EL3_CMD)) & IntLatch);
2552                         /* The timer will reenable interrupts. */
2553                         mod_timer(&vp->timer, jiffies + 1*HZ);
2554                         break;
2555                 }
2556                 /* Acknowledge the IRQ. */
2557                 iowrite16(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
2558                 if (vp->cb_fn_base)                     /* The PCMCIA people are idiots.  */
2559                         iowrite32(0x8000, vp->cb_fn_base + 4);
2560
2561         } while ((status = ioread16(ioaddr + EL3_STATUS)) & IntLatch);
2562
2563         if (vortex_debug > 4)
2564                 printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.\n",
2565                            dev->name, status);
2566 handler_exit:
2567         spin_unlock(&vp->lock);
2568         return IRQ_HANDLED;
2569 }
2570
2571 static int vortex_rx(struct net_device *dev)
2572 {
2573         struct vortex_private *vp = netdev_priv(dev);
2574         void __iomem *ioaddr = vp->ioaddr;
2575         int i;
2576         short rx_status;
2577
2578         if (vortex_debug > 5)
2579                 printk(KERN_DEBUG "vortex_rx(): status %4.4x, rx_status %4.4x.\n",
2580                            ioread16(ioaddr+EL3_STATUS), ioread16(ioaddr+RxStatus));
2581         while ((rx_status = ioread16(ioaddr + RxStatus)) > 0) {
2582                 if (rx_status & 0x4000) { /* Error, update stats. */
2583                         unsigned char rx_error = ioread8(ioaddr + RxErrors);
2584                         if (vortex_debug > 2)
2585                                 printk(KERN_DEBUG " Rx error: status %2.2x.\n", rx_error);
2586                         vp->stats.rx_errors++;
2587                         if (rx_error & 0x01)  vp->stats.rx_over_errors++;
2588                         if (rx_error & 0x02)  vp->stats.rx_length_errors++;
2589                         if (rx_error & 0x04)  vp->stats.rx_frame_errors++;
2590                         if (rx_error & 0x08)  vp->stats.rx_crc_errors++;
2591                         if (rx_error & 0x10)  vp->stats.rx_length_errors++;
2592                 } else {
2593                         /* The packet length: up to 4.5K!. */
2594                         int pkt_len = rx_status & 0x1fff;
2595                         struct sk_buff *skb;
2596
2597                         skb = dev_alloc_skb(pkt_len + 5);
2598                         if (vortex_debug > 4)
2599                                 printk(KERN_DEBUG "Receiving packet size %d status %4.4x.\n",
2600                                            pkt_len, rx_status);
2601                         if (skb != NULL) {
2602                                 skb->dev = dev;
2603                                 skb_reserve(skb, 2);    /* Align IP on 16 byte boundaries */
2604                                 /* 'skb_put()' points to the start of sk_buff data area. */
2605                                 if (vp->bus_master &&
2606                                         ! (ioread16(ioaddr + Wn7_MasterStatus) & 0x8000)) {
2607                                         dma_addr_t dma = pci_map_single(VORTEX_PCI(vp), skb_put(skb, pkt_len),
2608                                                                            pkt_len, PCI_DMA_FROMDEVICE);
2609                                         iowrite32(dma, ioaddr + Wn7_MasterAddr);
2610                                         iowrite16((skb->len + 3) & ~3, ioaddr + Wn7_MasterLen);
2611                                         iowrite16(StartDMAUp, ioaddr + EL3_CMD);
2612                                         while (ioread16(ioaddr + Wn7_MasterStatus) & 0x8000)
2613                                                 ;
2614                                         pci_unmap_single(VORTEX_PCI(vp), dma, pkt_len, PCI_DMA_FROMDEVICE);
2615                                 } else {
2616                                         ioread32_rep(ioaddr + RX_FIFO,
2617                                                      skb_put(skb, pkt_len),
2618                                                      (pkt_len + 3) >> 2);
2619                                 }
2620                                 iowrite16(RxDiscard, ioaddr + EL3_CMD); /* Pop top Rx packet. */
2621                                 skb->protocol = eth_type_trans(skb, dev);
2622                                 netif_rx(skb);
2623                                 dev->last_rx = jiffies;
2624                                 vp->stats.rx_packets++;
2625                                 /* Wait a limited time to go to next packet. */
2626                                 for (i = 200; i >= 0; i--)
2627                                         if ( ! (ioread16(ioaddr + EL3_STATUS) & CmdInProgress))
2628                                                 break;
2629                                 continue;
2630                         } else if (vortex_debug > 0)
2631                                 printk(KERN_NOTICE "%s: No memory to allocate a sk_buff of "
2632                                            "size %d.\n", dev->name, pkt_len);
2633                         vp->stats.rx_dropped++;
2634                 }
2635                 issue_and_wait(dev, RxDiscard);
2636         }
2637
2638         return 0;
2639 }
2640
2641 static int
2642 boomerang_rx(struct net_device *dev)
2643 {
2644         struct vortex_private *vp = netdev_priv(dev);
2645         int entry = vp->cur_rx % RX_RING_SIZE;
2646         void __iomem *ioaddr = vp->ioaddr;
2647         int rx_status;
2648         int rx_work_limit = vp->dirty_rx + RX_RING_SIZE - vp->cur_rx;
2649
2650         if (vortex_debug > 5)
2651                 printk(KERN_DEBUG "boomerang_rx(): status %4.4x\n", ioread16(ioaddr+EL3_STATUS));
2652
2653         while ((rx_status = le32_to_cpu(vp->rx_ring[entry].status)) & RxDComplete){
2654                 if (--rx_work_limit < 0)
2655                         break;
2656                 if (rx_status & RxDError) { /* Error, update stats. */
2657                         unsigned char rx_error = rx_status >> 16;
2658                         if (vortex_debug > 2)
2659                                 printk(KERN_DEBUG " Rx error: status %2.2x.\n", rx_error);
2660                         vp->stats.rx_errors++;
2661                         if (rx_error & 0x01)  vp->stats.rx_over_errors++;
2662                         if (rx_error & 0x02)  vp->stats.rx_length_errors++;
2663                         if (rx_error & 0x04)  vp->stats.rx_frame_errors++;
2664                         if (rx_error & 0x08)  vp->stats.rx_crc_errors++;
2665                         if (rx_error & 0x10)  vp->stats.rx_length_errors++;
2666                 } else {
2667                         /* The packet length: up to 4.5K!. */
2668                         int pkt_len = rx_status & 0x1fff;
2669                         struct sk_buff *skb;
2670                         dma_addr_t dma = le32_to_cpu(vp->rx_ring[entry].addr);
2671
2672                         if (vortex_debug > 4)
2673                                 printk(KERN_DEBUG "Receiving packet size %d status %4.4x.\n",
2674                                            pkt_len, rx_status);
2675
2676                         /* Check if the packet is long enough to just accept without
2677                            copying to a properly sized skbuff. */
2678                         if (pkt_len < rx_copybreak && (skb = dev_alloc_skb(pkt_len + 2)) != 0) {
2679                                 skb->dev = dev;
2680                                 skb_reserve(skb, 2);    /* Align IP on 16 byte boundaries */
2681                                 pci_dma_sync_single_for_cpu(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2682                                 /* 'skb_put()' points to the start of sk_buff data area. */
2683                                 memcpy(skb_put(skb, pkt_len),
2684                                            vp->rx_skbuff[entry]->data,
2685                                            pkt_len);
2686                                 pci_dma_sync_single_for_device(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2687                                 vp->rx_copy++;
2688                         } else {
2689                                 /* Pass up the skbuff already on the Rx ring. */
2690                                 skb = vp->rx_skbuff[entry];
2691                                 vp->rx_skbuff[entry] = NULL;
2692                                 skb_put(skb, pkt_len);
2693                                 pci_unmap_single(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2694                                 vp->rx_nocopy++;
2695                         }
2696                         skb->protocol = eth_type_trans(skb, dev);
2697                         {                                       /* Use hardware checksum info. */
2698                                 int csum_bits = rx_status & 0xee000000;
2699                                 if (csum_bits &&
2700                                         (csum_bits == (IPChksumValid | TCPChksumValid) ||
2701                                          csum_bits == (IPChksumValid | UDPChksumValid))) {
2702                                         skb->ip_summed = CHECKSUM_UNNECESSARY;
2703                                         vp->rx_csumhits++;
2704                                 }
2705                         }
2706                         netif_rx(skb);
2707                         dev->last_rx = jiffies;
2708                         vp->stats.rx_packets++;
2709                 }
2710                 entry = (++vp->cur_rx) % RX_RING_SIZE;
2711         }
2712         /* Refill the Rx ring buffers. */
2713         for (; vp->cur_rx - vp->dirty_rx > 0; vp->dirty_rx++) {
2714                 struct sk_buff *skb;
2715                 entry = vp->dirty_rx % RX_RING_SIZE;
2716                 if (vp->rx_skbuff[entry] == NULL) {
2717                         skb = dev_alloc_skb(PKT_BUF_SZ);
2718                         if (skb == NULL) {
2719                                 static unsigned long last_jif;
2720                                 if ((jiffies - last_jif) > 10 * HZ) {
2721                                         printk(KERN_WARNING "%s: memory shortage\n", dev->name);
2722                                         last_jif = jiffies;
2723                                 }
2724                                 if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE)
2725                                         mod_timer(&vp->rx_oom_timer, RUN_AT(HZ * 1));
2726                                 break;                  /* Bad news!  */
2727                         }
2728                         skb->dev = dev;                 /* Mark as being used by this device. */
2729                         skb_reserve(skb, 2);    /* Align IP on 16 byte boundaries */
2730                         vp->rx_ring[entry].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
2731                         vp->rx_skbuff[entry] = skb;
2732                 }
2733                 vp->rx_ring[entry].status = 0;  /* Clear complete bit. */
2734                 iowrite16(UpUnstall, ioaddr + EL3_CMD);
2735         }
2736         return 0;
2737 }
2738
2739 /*
2740  * If we've hit a total OOM refilling the Rx ring we poll once a second
2741  * for some memory.  Otherwise there is no way to restart the rx process.
2742  */
2743 static void
2744 rx_oom_timer(unsigned long arg)
2745 {
2746         struct net_device *dev = (struct net_device *)arg;
2747         struct vortex_private *vp = netdev_priv(dev);
2748
2749         spin_lock_irq(&vp->lock);
2750         if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE)        /* This test is redundant, but makes me feel good */
2751                 boomerang_rx(dev);
2752         if (vortex_debug > 1) {
2753                 printk(KERN_DEBUG "%s: rx_oom_timer %s\n", dev->name,
2754                         ((vp->cur_rx - vp->dirty_rx) != RX_RING_SIZE) ? "succeeded" : "retrying");
2755         }
2756         spin_unlock_irq(&vp->lock);
2757 }
2758
2759 static void
2760 vortex_down(struct net_device *dev, int final_down)
2761 {
2762         struct vortex_private *vp = netdev_priv(dev);
2763         void __iomem *ioaddr = vp->ioaddr;
2764
2765         netif_stop_queue (dev);
2766
2767         del_timer_sync(&vp->rx_oom_timer);
2768         del_timer_sync(&vp->timer);
2769
2770         /* Turn off statistics ASAP.  We update vp->stats below. */
2771         iowrite16(StatsDisable, ioaddr + EL3_CMD);
2772
2773         /* Disable the receiver and transmitter. */
2774         iowrite16(RxDisable, ioaddr + EL3_CMD);
2775         iowrite16(TxDisable, ioaddr + EL3_CMD);
2776
2777         /* Disable receiving 802.1q tagged frames */
2778         set_8021q_mode(dev, 0);
2779
2780         if (dev->if_port == XCVR_10base2)
2781                 /* Turn off thinnet power.  Green! */
2782                 iowrite16(StopCoax, ioaddr + EL3_CMD);
2783
2784         iowrite16(SetIntrEnb | 0x0000, ioaddr + EL3_CMD);
2785
2786         update_stats(ioaddr, dev);
2787         if (vp->full_bus_master_rx)
2788                 iowrite32(0, ioaddr + UpListPtr);
2789         if (vp->full_bus_master_tx)
2790                 iowrite32(0, ioaddr + DownListPtr);
2791
2792         if (final_down && VORTEX_PCI(vp)) {
2793                 vp->pm_state_valid = 1;
2794                 pci_save_state(VORTEX_PCI(vp));
2795                 acpi_set_WOL(dev);
2796         }
2797 }
2798
2799 static int
2800 vortex_close(struct net_device *dev)
2801 {
2802         struct vortex_private *vp = netdev_priv(dev);
2803         void __iomem *ioaddr = vp->ioaddr;
2804         int i;
2805
2806         if (netif_device_present(dev))
2807                 vortex_down(dev, 1);
2808
2809         if (vortex_debug > 1) {
2810                 printk(KERN_DEBUG"%s: vortex_close() status %4.4x, Tx status %2.2x.\n",
2811                            dev->name, ioread16(ioaddr + EL3_STATUS), ioread8(ioaddr + TxStatus));
2812                 printk(KERN_DEBUG "%s: vortex close stats: rx_nocopy %d rx_copy %d"
2813                            " tx_queued %d Rx pre-checksummed %d.\n",
2814                            dev->name, vp->rx_nocopy, vp->rx_copy, vp->queued_packet, vp->rx_csumhits);
2815         }
2816
2817 #if DO_ZEROCOPY
2818         if (vp->rx_csumhits &&
2819             (vp->drv_flags & HAS_HWCKSM) == 0 &&
2820             (vp->card_idx >= MAX_UNITS || hw_checksums[vp->card_idx] == -1)) {
2821                         printk(KERN_WARNING "%s supports hardware checksums, and we're "
2822                                                 "not using them!\n", dev->name);
2823         }
2824 #endif
2825                 
2826         free_irq(dev->irq, dev);
2827
2828         if (vp->full_bus_master_rx) { /* Free Boomerang bus master Rx buffers. */
2829                 for (i = 0; i < RX_RING_SIZE; i++)
2830                         if (vp->rx_skbuff[i]) {
2831                                 pci_unmap_single(       VORTEX_PCI(vp), le32_to_cpu(vp->rx_ring[i].addr),
2832                                                                         PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2833                                 dev_kfree_skb(vp->rx_skbuff[i]);
2834                                 vp->rx_skbuff[i] = NULL;
2835                         }
2836         }
2837         if (vp->full_bus_master_tx) { /* Free Boomerang bus master Tx buffers. */
2838                 for (i = 0; i < TX_RING_SIZE; i++) {
2839                         if (vp->tx_skbuff[i]) {
2840                                 struct sk_buff *skb = vp->tx_skbuff[i];
2841 #if DO_ZEROCOPY
2842                                 int k;
2843
2844                                 for (k=0; k<=skb_shinfo(skb)->nr_frags; k++)
2845                                                 pci_unmap_single(VORTEX_PCI(vp),
2846                                                                                  le32_to_cpu(vp->tx_ring[i].frag[k].addr),
2847                                                                                  le32_to_cpu(vp->tx_ring[i].frag[k].length)&0xFFF,
2848                                                                                  PCI_DMA_TODEVICE);
2849 #else
2850                                 pci_unmap_single(VORTEX_PCI(vp), le32_to_cpu(vp->tx_ring[i].addr), skb->len, PCI_DMA_TODEVICE);
2851 #endif
2852                                 dev_kfree_skb(skb);
2853                                 vp->tx_skbuff[i] = NULL;
2854                         }
2855                 }
2856         }
2857
2858         return 0;
2859 }
2860
2861 static void
2862 dump_tx_ring(struct net_device *dev)
2863 {
2864         if (vortex_debug > 0) {
2865         struct vortex_private *vp = netdev_priv(dev);
2866                 void __iomem *ioaddr = vp->ioaddr;
2867                 
2868                 if (vp->full_bus_master_tx) {
2869                         int i;
2870                         int stalled = ioread32(ioaddr + PktStatus) & 0x04;      /* Possible racy. But it's only debug stuff */
2871
2872                         printk(KERN_ERR "  Flags; bus-master %d, dirty %d(%d) current %d(%d)\n",
2873                                         vp->full_bus_master_tx,
2874                                         vp->dirty_tx, vp->dirty_tx % TX_RING_SIZE,
2875                                         vp->cur_tx, vp->cur_tx % TX_RING_SIZE);
2876                         printk(KERN_ERR "  Transmit list %8.8x vs. %p.\n",
2877                                    ioread32(ioaddr + DownListPtr),
2878                                    &vp->tx_ring[vp->dirty_tx % TX_RING_SIZE]);
2879                         issue_and_wait(dev, DownStall);
2880                         for (i = 0; i < TX_RING_SIZE; i++) {
2881                                 printk(KERN_ERR "  %d: @%p  length %8.8x status %8.8x\n", i,
2882                                            &vp->tx_ring[i],
2883 #if DO_ZEROCOPY
2884                                            le32_to_cpu(vp->tx_ring[i].frag[0].length),
2885 #else
2886                                            le32_to_cpu(vp->tx_ring[i].length),
2887 #endif
2888                                            le32_to_cpu(vp->tx_ring[i].status));
2889                         }
2890                         if (!stalled)
2891                                 iowrite16(DownUnstall, ioaddr + EL3_CMD);
2892                 }
2893         }
2894 }
2895
2896 static struct net_device_stats *vortex_get_stats(struct net_device *dev)
2897 {
2898         struct vortex_private *vp = netdev_priv(dev);
2899         void __iomem *ioaddr = vp->ioaddr;
2900         unsigned long flags;
2901
2902         if (netif_device_present(dev)) {        /* AKPM: Used to be netif_running */
2903                 spin_lock_irqsave (&vp->lock, flags);
2904                 update_stats(ioaddr, dev);
2905                 spin_unlock_irqrestore (&vp->lock, flags);
2906         }
2907         return &vp->stats;
2908 }
2909
2910 /*  Update statistics.
2911         Unlike with the EL3 we need not worry about interrupts changing
2912         the window setting from underneath us, but we must still guard
2913         against a race condition with a StatsUpdate interrupt updating the
2914         table.  This is done by checking that the ASM (!) code generated uses
2915         atomic updates with '+='.
2916         */
2917 static void update_stats(void __iomem *ioaddr, struct net_device *dev)
2918 {
2919         struct vortex_private *vp = netdev_priv(dev);
2920         int old_window = ioread16(ioaddr + EL3_CMD);
2921
2922         if (old_window == 0xffff)       /* Chip suspended or ejected. */
2923                 return;
2924         /* Unlike the 3c5x9 we need not turn off stats updates while reading. */
2925         /* Switch to the stats window, and read everything. */
2926         EL3WINDOW(6);
2927         vp->stats.tx_carrier_errors             += ioread8(ioaddr + 0);
2928         vp->stats.tx_heartbeat_errors           += ioread8(ioaddr + 1);
2929         vp->stats.collisions                    += ioread8(ioaddr + 3);
2930         vp->stats.tx_window_errors              += ioread8(ioaddr + 4);
2931         vp->stats.rx_fifo_errors                += ioread8(ioaddr + 5);
2932         vp->stats.tx_packets                    += ioread8(ioaddr + 6);
2933         vp->stats.tx_packets                    += (ioread8(ioaddr + 9)&0x30) << 4;
2934         /* Rx packets   */                      ioread8(ioaddr + 7);   /* Must read to clear */
2935         /* Don't bother with register 9, an extension of registers 6&7.
2936            If we do use the 6&7 values the atomic update assumption above
2937            is invalid. */
2938         vp->stats.rx_bytes                      += ioread16(ioaddr + 10);
2939         vp->stats.tx_bytes                      += ioread16(ioaddr + 12);
2940         /* Extra stats for get_ethtool_stats() */
2941         vp->xstats.tx_multiple_collisions       += ioread8(ioaddr + 2);
2942         vp->xstats.tx_deferred                  += ioread8(ioaddr + 8);
2943         EL3WINDOW(4);
2944         vp->xstats.rx_bad_ssd                   += ioread8(ioaddr + 12);
2945
2946         {
2947                 u8 up = ioread8(ioaddr + 13);
2948                 vp->stats.rx_bytes += (up & 0x0f) << 16;
2949                 vp->stats.tx_bytes += (up & 0xf0) << 12;
2950         }
2951
2952         EL3WINDOW(old_window >> 13);
2953         return;
2954 }
2955
2956 static int vortex_nway_reset(struct net_device *dev)
2957 {
2958         struct vortex_private *vp = netdev_priv(dev);
2959         void __iomem *ioaddr = vp->ioaddr;
2960         unsigned long flags;
2961         int rc;
2962
2963         spin_lock_irqsave(&vp->lock, flags);
2964         EL3WINDOW(4);
2965         rc = mii_nway_restart(&vp->mii);
2966         spin_unlock_irqrestore(&vp->lock, flags);
2967         return rc;
2968 }
2969
2970 static u32 vortex_get_link(struct net_device *dev)
2971 {
2972         struct vortex_private *vp = netdev_priv(dev);
2973         void __iomem *ioaddr = vp->ioaddr;
2974         unsigned long flags;
2975         int rc;
2976
2977         spin_lock_irqsave(&vp->lock, flags);
2978         EL3WINDOW(4);
2979         rc = mii_link_ok(&vp->mii);
2980         spin_unlock_irqrestore(&vp->lock, flags);
2981         return rc;
2982 }
2983
2984 static int vortex_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2985 {
2986         struct vortex_private *vp = netdev_priv(dev);
2987         void __iomem *ioaddr = vp->ioaddr;
2988         unsigned long flags;
2989         int rc;
2990
2991         spin_lock_irqsave(&vp->lock, flags);
2992         EL3WINDOW(4);
2993         rc = mii_ethtool_gset(&vp->mii, cmd);
2994         spin_unlock_irqrestore(&vp->lock, flags);
2995         return rc;
2996 }
2997
2998 static int vortex_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2999 {
3000         struct vortex_private *vp = netdev_priv(dev);
3001         void __iomem *ioaddr = vp->ioaddr;
3002         unsigned long flags;
3003         int rc;
3004
3005         spin_lock_irqsave(&vp->lock, flags);
3006         EL3WINDOW(4);
3007         rc = mii_ethtool_sset(&vp->mii, cmd);
3008         spin_unlock_irqrestore(&vp->lock, flags);
3009         return rc;
3010 }
3011
3012 static u32 vortex_get_msglevel(struct net_device *dev)
3013 {
3014         return vortex_debug;
3015 }
3016
3017 static void vortex_set_msglevel(struct net_device *dev, u32 dbg)
3018 {
3019         vortex_debug = dbg;
3020 }
3021
3022 static int vortex_get_stats_count(struct net_device *dev)
3023 {
3024         return VORTEX_NUM_STATS;
3025 }
3026
3027 static void vortex_get_ethtool_stats(struct net_device *dev,
3028         struct ethtool_stats *stats, u64 *data)
3029 {
3030         struct vortex_private *vp = netdev_priv(dev);
3031         void __iomem *ioaddr = vp->ioaddr;
3032         unsigned long flags;
3033
3034         spin_lock_irqsave(&vp->lock, flags);
3035         update_stats(ioaddr, dev);
3036         spin_unlock_irqrestore(&vp->lock, flags);
3037
3038         data[0] = vp->xstats.tx_deferred;
3039         data[1] = vp->xstats.tx_multiple_collisions;
3040         data[2] = vp->xstats.rx_bad_ssd;
3041 }
3042
3043
3044 static void vortex_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3045 {
3046         switch (stringset) {
3047         case ETH_SS_STATS:
3048                 memcpy(data, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
3049                 break;
3050         default:
3051                 WARN_ON(1);
3052                 break;
3053         }
3054 }
3055
3056 static void vortex_get_drvinfo(struct net_device *dev,
3057                                         struct ethtool_drvinfo *info)
3058 {
3059         struct vortex_private *vp = netdev_priv(dev);
3060
3061         strcpy(info->driver, DRV_NAME);
3062         strcpy(info->version, DRV_VERSION);
3063         if (VORTEX_PCI(vp)) {
3064                 strcpy(info->bus_info, pci_name(VORTEX_PCI(vp)));
3065         } else {
3066                 if (VORTEX_EISA(vp))
3067                         sprintf(info->bus_info, vp->gendev->bus_id);
3068                 else
3069                         sprintf(info->bus_info, "EISA 0x%lx %d",
3070                                         dev->base_addr, dev->irq);
3071         }
3072 }
3073
3074 static struct ethtool_ops vortex_ethtool_ops = {
3075         .get_drvinfo            = vortex_get_drvinfo,
3076         .get_strings            = vortex_get_strings,
3077         .get_msglevel           = vortex_get_msglevel,
3078         .set_msglevel           = vortex_set_msglevel,
3079         .get_ethtool_stats      = vortex_get_ethtool_stats,
3080         .get_stats_count        = vortex_get_stats_count,
3081         .get_settings           = vortex_get_settings,
3082         .set_settings           = vortex_set_settings,
3083         .get_link               = vortex_get_link,
3084         .nway_reset             = vortex_nway_reset,
3085         .get_perm_addr                  = ethtool_op_get_perm_addr,
3086 };
3087
3088 #ifdef CONFIG_PCI
3089 /*
3090  *      Must power the device up to do MDIO operations
3091  */
3092 static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3093 {
3094         int err;
3095         struct vortex_private *vp = netdev_priv(dev);
3096         void __iomem *ioaddr = vp->ioaddr;
3097         unsigned long flags;
3098         int state = 0;
3099
3100         if(VORTEX_PCI(vp))
3101                 state = VORTEX_PCI(vp)->current_state;
3102
3103         /* The kernel core really should have pci_get_power_state() */
3104
3105         if(state != 0)
3106                 pci_set_power_state(VORTEX_PCI(vp), PCI_D0);
3107         spin_lock_irqsave(&vp->lock, flags);
3108         EL3WINDOW(4);
3109         err = generic_mii_ioctl(&vp->mii, if_mii(rq), cmd, NULL);
3110         spin_unlock_irqrestore(&vp->lock, flags);
3111         if(state != 0)
3112                 pci_set_power_state(VORTEX_PCI(vp), state);
3113
3114         return err;
3115 }
3116 #endif
3117
3118
3119 /* Pre-Cyclone chips have no documented multicast filter, so the only
3120    multicast setting is to receive all multicast frames.  At least
3121    the chip has a very clean way to set the mode, unlike many others. */
3122 static void set_rx_mode(struct net_device *dev)
3123 {
3124         struct vortex_private *vp = netdev_priv(dev);
3125         void __iomem *ioaddr = vp->ioaddr;
3126         int new_mode;
3127
3128         if (dev->flags & IFF_PROMISC) {
3129                 if (vortex_debug > 0)
3130                         printk(KERN_NOTICE "%s: Setting promiscuous mode.\n", dev->name);
3131                 new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast|RxProm;
3132         } else  if ((dev->mc_list)  ||  (dev->flags & IFF_ALLMULTI)) {
3133                 new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast;
3134         } else
3135                 new_mode = SetRxFilter | RxStation | RxBroadcast;
3136
3137         iowrite16(new_mode, ioaddr + EL3_CMD);
3138 }
3139
3140 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
3141 /* Setup the card so that it can receive frames with an 802.1q VLAN tag.
3142    Note that this must be done after each RxReset due to some backwards
3143    compatibility logic in the Cyclone and Tornado ASICs */
3144
3145 /* The Ethernet Type used for 802.1q tagged frames */
3146 #define VLAN_ETHER_TYPE 0x8100
3147
3148 static void set_8021q_mode(struct net_device *dev, int enable)
3149 {
3150         struct vortex_private *vp = netdev_priv(dev);
3151         void __iomem *ioaddr = vp->ioaddr;
3152         int old_window = ioread16(ioaddr + EL3_CMD);
3153         int mac_ctrl;
3154
3155         if ((vp->drv_flags&IS_CYCLONE) || (vp->drv_flags&IS_TORNADO)) {
3156                 /* cyclone and tornado chipsets can recognize 802.1q
3157                  * tagged frames and treat them correctly */
3158
3159                 int max_pkt_size = dev->mtu+14; /* MTU+Ethernet header */
3160                 if (enable)
3161                         max_pkt_size += 4;      /* 802.1Q VLAN tag */
3162
3163                 EL3WINDOW(3);
3164                 iowrite16(max_pkt_size, ioaddr+Wn3_MaxPktSize);
3165
3166                 /* set VlanEtherType to let the hardware checksumming
3167                    treat tagged frames correctly */
3168                 EL3WINDOW(7);
3169                 iowrite16(VLAN_ETHER_TYPE, ioaddr+Wn7_VlanEtherType);
3170         } else {
3171                 /* on older cards we have to enable large frames */
3172
3173                 vp->large_frames = dev->mtu > 1500 || enable;
3174
3175                 EL3WINDOW(3);
3176                 mac_ctrl = ioread16(ioaddr+Wn3_MAC_Ctrl);
3177                 if (vp->large_frames)
3178                         mac_ctrl |= 0x40;
3179                 else
3180                         mac_ctrl &= ~0x40;
3181                 iowrite16(mac_ctrl, ioaddr+Wn3_MAC_Ctrl);
3182         }
3183
3184         EL3WINDOW(old_window);
3185 }
3186 #else
3187
3188 static void set_8021q_mode(struct net_device *dev, int enable)
3189 {
3190 }
3191
3192
3193 #endif
3194
3195 /* MII transceiver control section.
3196    Read and write the MII registers using software-generated serial
3197    MDIO protocol.  See the MII specifications or DP83840A data sheet
3198    for details. */
3199
3200 /* The maximum data clock rate is 2.5 Mhz.  The minimum timing is usually
3201    met by back-to-back PCI I/O cycles, but we insert a delay to avoid
3202    "overclocking" issues. */
3203 #define mdio_delay() ioread32(mdio_addr)
3204
3205 #define MDIO_SHIFT_CLK  0x01
3206 #define MDIO_DIR_WRITE  0x04
3207 #define MDIO_DATA_WRITE0 (0x00 | MDIO_DIR_WRITE)
3208 #define MDIO_DATA_WRITE1 (0x02 | MDIO_DIR_WRITE)
3209 #define MDIO_DATA_READ  0x02
3210 #define MDIO_ENB_IN             0x00
3211
3212 /* Generate the preamble required for initial synchronization and
3213    a few older transceivers. */
3214 static void mdio_sync(void __iomem *ioaddr, int bits)
3215 {
3216         void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
3217
3218         /* Establish sync by sending at least 32 logic ones. */
3219         while (-- bits >= 0) {
3220                 iowrite16(MDIO_DATA_WRITE1, mdio_addr);
3221                 mdio_delay();
3222                 iowrite16(MDIO_DATA_WRITE1 | MDIO_SHIFT_CLK, mdio_addr);
3223                 mdio_delay();
3224         }
3225 }
3226
3227 static int mdio_read(struct net_device *dev, int phy_id, int location)
3228 {
3229         int i;
3230         struct vortex_private *vp = netdev_priv(dev);
3231         void __iomem *ioaddr = vp->ioaddr;
3232         int read_cmd = (0xf6 << 10) | (phy_id << 5) | location;
3233         unsigned int retval = 0;
3234         void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
3235
3236         if (mii_preamble_required)
3237                 mdio_sync(ioaddr, 32);
3238
3239         /* Shift the read command bits out. */
3240         for (i = 14; i >= 0; i--) {
3241                 int dataval = (read_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
3242                 iowrite16(dataval, mdio_addr);
3243                 mdio_delay();
3244                 iowrite16(dataval | MDIO_SHIFT_CLK, mdio_addr);
3245                 mdio_delay();
3246         }
3247         /* Read the two transition, 16 data, and wire-idle bits. */
3248         for (i = 19; i > 0; i--) {
3249                 iowrite16(MDIO_ENB_IN, mdio_addr);
3250                 mdio_delay();
3251                 retval = (retval << 1) | ((ioread16(mdio_addr) & MDIO_DATA_READ) ? 1 : 0);
3252                 iowrite16(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
3253                 mdio_delay();
3254         }
3255         return retval & 0x20000 ? 0xffff : retval>>1 & 0xffff;
3256 }
3257
3258 static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
3259 {
3260         struct vortex_private *vp = netdev_priv(dev);
3261         void __iomem *ioaddr = vp->ioaddr;
3262         int write_cmd = 0x50020000 | (phy_id << 23) | (location << 18) | value;
3263         void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
3264         int i;
3265
3266         if (mii_preamble_required)
3267                 mdio_sync(ioaddr, 32);
3268
3269         /* Shift the command bits out. */
3270         for (i = 31; i >= 0; i--) {
3271                 int dataval = (write_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
3272                 iowrite16(dataval, mdio_addr);
3273                 mdio_delay();
3274                 iowrite16(dataval | MDIO_SHIFT_CLK, mdio_addr);
3275                 mdio_delay();
3276         }
3277         /* Leave the interface idle. */
3278         for (i = 1; i >= 0; i--) {
3279                 iowrite16(MDIO_ENB_IN, mdio_addr);
3280                 mdio_delay();
3281                 iowrite16(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
3282                 mdio_delay();
3283         }
3284         return;
3285 }
3286 \f
3287 /* ACPI: Advanced Configuration and Power Interface. */
3288 /* Set Wake-On-LAN mode and put the board into D3 (power-down) state. */
3289 static void acpi_set_WOL(struct net_device *dev)
3290 {
3291         struct vortex_private *vp = netdev_priv(dev);
3292         void __iomem *ioaddr = vp->ioaddr;
3293
3294         if (vp->enable_wol) {
3295                 /* Power up on: 1==Downloaded Filter, 2==Magic Packets, 4==Link Status. */
3296                 EL3WINDOW(7);
3297                 iowrite16(2, ioaddr + 0x0c);
3298                 /* The RxFilter must accept the WOL frames. */
3299                 iowrite16(SetRxFilter|RxStation|RxMulticast|RxBroadcast, ioaddr + EL3_CMD);
3300                 iowrite16(RxEnable, ioaddr + EL3_CMD);
3301
3302                 pci_enable_wake(VORTEX_PCI(vp), 0, 1);
3303
3304                 /* Change the power state to D3; RxEnable doesn't take effect. */
3305                 pci_set_power_state(VORTEX_PCI(vp), PCI_D3hot);
3306         }
3307 }
3308
3309
3310 static void __devexit vortex_remove_one (struct pci_dev *pdev)
3311 {
3312         struct net_device *dev = pci_get_drvdata(pdev);
3313         struct vortex_private *vp;
3314
3315         if (!dev) {
3316                 printk("vortex_remove_one called for Compaq device!\n");
3317                 BUG();
3318         }
3319
3320         vp = netdev_priv(dev);
3321
3322         if (vp->cb_fn_base)
3323                 pci_iounmap(VORTEX_PCI(vp), vp->cb_fn_base);
3324
3325         unregister_netdev(dev);
3326
3327         if (VORTEX_PCI(vp)) {
3328                 pci_set_power_state(VORTEX_PCI(vp), PCI_D0);    /* Go active */
3329                 if (vp->pm_state_valid)
3330                         pci_restore_state(VORTEX_PCI(vp));
3331                 pci_disable_device(VORTEX_PCI(vp));
3332         }
3333         /* Should really use issue_and_wait() here */
3334         iowrite16(TotalReset | ((vp->drv_flags & EEPROM_RESET) ? 0x04 : 0x14),
3335              vp->ioaddr + EL3_CMD);
3336
3337         pci_iounmap(VORTEX_PCI(vp), vp->ioaddr);
3338
3339         pci_free_consistent(pdev,
3340                                                 sizeof(struct boom_rx_desc) * RX_RING_SIZE
3341                                                         + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
3342                                                 vp->rx_ring,
3343                                                 vp->rx_ring_dma);
3344         if (vp->must_free_region)
3345                 release_region(dev->base_addr, vp->io_size);
3346         free_netdev(dev);
3347 }
3348
3349
3350 static struct pci_driver vortex_driver = {
3351         .name           = "3c59x",
3352         .probe          = vortex_init_one,
3353         .remove         = __devexit_p(vortex_remove_one),
3354         .id_table       = vortex_pci_tbl,
3355 #ifdef CONFIG_PM
3356         .suspend        = vortex_suspend,
3357         .resume         = vortex_resume,
3358 #endif
3359 };
3360
3361
3362 static int vortex_have_pci;
3363 static int vortex_have_eisa;
3364
3365
3366 static int __init vortex_init (void)
3367 {
3368         int pci_rc, eisa_rc;
3369
3370         pci_rc = pci_module_init(&vortex_driver);
3371         eisa_rc = vortex_eisa_init();
3372
3373         if (pci_rc == 0)
3374                 vortex_have_pci = 1;
3375         if (eisa_rc > 0)
3376                 vortex_have_eisa = 1;
3377
3378         return (vortex_have_pci + vortex_have_eisa) ? 0 : -ENODEV;
3379 }
3380
3381
3382 static void __exit vortex_eisa_cleanup (void)
3383 {
3384         struct vortex_private *vp;
3385         void __iomem *ioaddr;
3386
3387 #ifdef CONFIG_EISA
3388         /* Take care of the EISA devices */
3389         eisa_driver_unregister (&vortex_eisa_driver);
3390 #endif
3391         
3392         if (compaq_net_device) {
3393                 vp = compaq_net_device->priv;
3394                 ioaddr = ioport_map(compaq_net_device->base_addr,
3395                                     VORTEX_TOTAL_SIZE);
3396
3397                 unregister_netdev (compaq_net_device);
3398                 iowrite16 (TotalReset, ioaddr + EL3_CMD);
3399                 release_region(compaq_net_device->base_addr,
3400                                VORTEX_TOTAL_SIZE);
3401
3402                 free_netdev (compaq_net_device);
3403         }
3404 }
3405
3406
3407 static void __exit vortex_cleanup (void)
3408 {
3409         if (vortex_have_pci)
3410                 pci_unregister_driver (&vortex_driver);
3411         if (vortex_have_eisa)
3412                 vortex_eisa_cleanup ();
3413 }
3414
3415
3416 module_init(vortex_init);
3417 module_exit(vortex_cleanup);
3418
3419 \f
3420 /*
3421  * Local variables:
3422  *  c-indent-level: 4
3423  *  c-basic-offset: 4
3424  *  tab-width: 4
3425  * End:
3426  */