blob: 3dde1df33487724319a382eccb3b40da9869fa16 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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__
214static int rx_copybreak = 200;
215#else
216/* ARM systems perform better by disregarding the bus-master
217 transfer capability of these cards. -- rmk */
218static int rx_copybreak = 1513;
219#endif
220/* Allow setting MTU to a larger size, bypassing the normal ethernet setup. */
221static const int mtu = 1500;
222/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
223static int max_interrupt_work = 32;
224/* Tx timeout interval (millisecs) */
225static 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
236static int vortex_debug = VORTEX_DEBUG;
237#else
238static 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>
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -0800261#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#include <asm/irq.h> /* For NR_IRQS only. */
263#include <asm/io.h>
264#include <asm/uaccess.h>
265
266/* Kernel compatibility defines, some common to David Hinds' PCMCIA package.
267 This is only in the support-all-kernels source code. */
268
269#define RUN_AT(x) (jiffies + (x))
270
271#include <linux/delay.h>
272
273
274static char version[] __devinitdata =
275DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.html\n";
276
277MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
278MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "
279 DRV_VERSION " " DRV_RELDATE);
280MODULE_LICENSE("GPL");
281MODULE_VERSION(DRV_VERSION);
282
283
284/* Operational parameter that usually are not changed. */
285
286/* The Vortex size is twice that of the original EtherLinkIII series: the
287 runtime register window, window 1, is now always mapped in.
288 The Boomerang size is twice as large as the Vortex -- it has additional
289 bus master control registers. */
290#define VORTEX_TOTAL_SIZE 0x20
291#define BOOMERANG_TOTAL_SIZE 0x40
292
293/* Set iff a MII transceiver on any interface requires mdio preamble.
294 This only set with the original DP83840 on older 3c905 boards, so the extra
295 code size of a per-interface flag is not worthwhile. */
296static char mii_preamble_required;
297
298#define PFX DRV_NAME ": "
299
300
301
302/*
303 Theory of Operation
304
305I. Board Compatibility
306
307This device driver is designed for the 3Com FastEtherLink and FastEtherLink
308XL, 3Com's PCI to 10/100baseT adapters. It also works with the 10Mbs
309versions of the FastEtherLink cards. The supported product IDs are
310 3c590, 3c592, 3c595, 3c597, 3c900, 3c905
311
312The related ISA 3c515 is supported with a separate driver, 3c515.c, included
313with the kernel source or available from
314 cesdis.gsfc.nasa.gov:/pub/linux/drivers/3c515.html
315
316II. Board-specific settings
317
318PCI bus devices are configured by the system at boot time, so no jumpers
319need to be set on the board. The system BIOS should be set to assign the
320PCI INTA signal to an otherwise unused system IRQ line.
321
322The EEPROM settings for media type and forced-full-duplex are observed.
323The EEPROM media type should be left at the default "autoselect" unless using
32410base2 or AUI connections which cannot be reliably detected.
325
326III. Driver operation
327
328The 3c59x series use an interface that's very similar to the previous 3c5x9
329series. The primary interface is two programmed-I/O FIFOs, with an
330alternate single-contiguous-region bus-master transfer (see next).
331
332The 3c900 "Boomerang" series uses a full-bus-master interface with separate
333lists of transmit and receive descriptors, similar to the AMD LANCE/PCnet,
334DEC Tulip and Intel Speedo3. The first chip version retains a compatible
335programmed-I/O interface that has been removed in 'B' and subsequent board
336revisions.
337
338One extension that is advertised in a very large font is that the adapters
339are capable of being bus masters. On the Vortex chip this capability was
340only for a single contiguous region making it far less useful than the full
341bus master capability. There is a significant performance impact of taking
342an extra interrupt or polling for the completion of each transfer, as well
343as difficulty sharing the single transfer engine between the transmit and
344receive threads. Using DMA transfers is a win only with large blocks or
345with the flawed versions of the Intel Orion motherboard PCI controller.
346
347The Boomerang chip's full-bus-master interface is useful, and has the
348currently-unused advantages over other similar chips that queued transmit
349packets may be reordered and receive buffer groups are associated with a
350single frame.
351
352With full-bus-master support, this driver uses a "RX_COPYBREAK" scheme.
353Rather than a fixed intermediate receive buffer, this scheme allocates
354full-sized skbuffs as receive buffers. The value RX_COPYBREAK is used as
355the copying breakpoint: it is chosen to trade-off the memory wasted by
356passing the full-sized skbuff to the queue layer for all frames vs. the
357copying cost of copying a frame to a correctly-sized skbuff.
358
359IIIC. Synchronization
360The driver runs as two independent, single-threaded flows of control. One
361is the send-packet routine, which enforces single-threaded use by the
362dev->tbusy flag. The other thread is the interrupt handler, which is single
363threaded by the hardware and other software.
364
365IV. Notes
366
367Thanks to Cameron Spitzer and Terry Murphy of 3Com for providing development
3683c590, 3c595, and 3c900 boards.
369The name "Vortex" is the internal 3Com project name for the PCI ASIC, and
370the EISA version is called "Demon". According to Terry these names come
371from rides at the local amusement park.
372
373The new chips support both ethernet (1.5K) and FDDI (4.5K) packet sizes!
374This driver only supports ethernet packets because of the skbuff allocation
375limit of 4K.
376*/
377
378/* This table drives the PCI probe routines. It's mostly boilerplate in all
379 of the drivers, and will likely be provided by some future kernel.
380*/
381enum pci_flags_bit {
382 PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
383 PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
384};
385
386enum { IS_VORTEX=1, IS_BOOMERANG=2, IS_CYCLONE=4, IS_TORNADO=8,
387 EEPROM_8BIT=0x10, /* AKPM: Uses 0x230 as the base bitmaps for EEPROM reads */
388 HAS_PWR_CTRL=0x20, HAS_MII=0x40, HAS_NWAY=0x80, HAS_CB_FNS=0x100,
389 INVERT_MII_PWR=0x200, INVERT_LED_PWR=0x400, MAX_COLLISION_RESET=0x800,
390 EEPROM_OFFSET=0x1000, HAS_HWCKSM=0x2000, WNO_XCVR_PWR=0x4000,
391 EXTRA_PREAMBLE=0x8000, EEPROM_RESET=0x10000, };
392
393enum vortex_chips {
394 CH_3C590 = 0,
395 CH_3C592,
396 CH_3C597,
397 CH_3C595_1,
398 CH_3C595_2,
399
400 CH_3C595_3,
401 CH_3C900_1,
402 CH_3C900_2,
403 CH_3C900_3,
404 CH_3C900_4,
405
406 CH_3C900_5,
407 CH_3C900B_FL,
408 CH_3C905_1,
409 CH_3C905_2,
410 CH_3C905B_1,
411
412 CH_3C905B_2,
413 CH_3C905B_FX,
414 CH_3C905C,
415 CH_3C9202,
416 CH_3C980,
417 CH_3C9805,
418
419 CH_3CSOHO100_TX,
420 CH_3C555,
421 CH_3C556,
422 CH_3C556B,
423 CH_3C575,
424
425 CH_3C575_1,
426 CH_3CCFE575,
427 CH_3CCFE575CT,
428 CH_3CCFE656,
429 CH_3CCFEM656,
430
431 CH_3CCFEM656_1,
432 CH_3C450,
433 CH_3C920,
434 CH_3C982A,
435 CH_3C982B,
436
437 CH_905BT4,
438 CH_920B_EMB_WNM,
439};
440
441
442/* note: this array directly indexed by above enums, and MUST
443 * be kept in sync with both the enums above, and the PCI device
444 * table below
445 */
446static struct vortex_chip_info {
447 const char *name;
448 int flags;
449 int drv_flags;
450 int io_size;
451} vortex_info_tbl[] __devinitdata = {
452 {"3c590 Vortex 10Mbps",
453 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
454 {"3c592 EISA 10Mbps Demon/Vortex", /* AKPM: from Don's 3c59x_cb.c 0.49H */
455 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
456 {"3c597 EISA Fast Demon/Vortex", /* AKPM: from Don's 3c59x_cb.c 0.49H */
457 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
458 {"3c595 Vortex 100baseTx",
459 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
460 {"3c595 Vortex 100baseT4",
461 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
462
463 {"3c595 Vortex 100base-MII",
464 PCI_USES_IO|PCI_USES_MASTER, IS_VORTEX, 32, },
465 {"3c900 Boomerang 10baseT",
466 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|EEPROM_RESET, 64, },
467 {"3c900 Boomerang 10Mbps Combo",
468 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|EEPROM_RESET, 64, },
469 {"3c900 Cyclone 10Mbps TPO", /* AKPM: from Don's 0.99M */
470 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
471 {"3c900 Cyclone 10Mbps Combo",
472 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
473
474 {"3c900 Cyclone 10Mbps TPC", /* AKPM: from Don's 0.99M */
475 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
476 {"3c900B-FL Cyclone 10base-FL",
477 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
478 {"3c905 Boomerang 100baseTx",
479 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
480 {"3c905 Boomerang 100baseT4",
481 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
482 {"3c905B Cyclone 100baseTx",
483 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
484
485 {"3c905B Cyclone 10/100/BNC",
486 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
487 {"3c905B-FX Cyclone 100baseFx",
488 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
489 {"3c905C Tornado",
490 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
491 {"3c920B-EMB-WNM (ATI Radeon 9100 IGP)",
492 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_MII|HAS_HWCKSM, 128, },
493 {"3c980 Cyclone",
494 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_HWCKSM, 128, },
495
496 {"3c980C Python-T",
497 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
498 {"3cSOHO100-TX Hurricane",
499 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM, 128, },
500 {"3c555 Laptop Hurricane",
501 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|EEPROM_8BIT|HAS_HWCKSM, 128, },
502 {"3c556 Laptop Tornado",
503 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_8BIT|HAS_CB_FNS|INVERT_MII_PWR|
504 HAS_HWCKSM, 128, },
505 {"3c556B Laptop Hurricane",
506 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|EEPROM_OFFSET|HAS_CB_FNS|INVERT_MII_PWR|
507 WNO_XCVR_PWR|HAS_HWCKSM, 128, },
508
509 {"3c575 [Megahertz] 10/100 LAN CardBus",
510 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
511 {"3c575 Boomerang CardBus",
512 PCI_USES_IO|PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_8BIT, 128, },
513 {"3CCFE575BT Cyclone CardBus",
514 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|
515 INVERT_LED_PWR|HAS_HWCKSM, 128, },
516 {"3CCFE575CT Tornado CardBus",
517 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
518 MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
519 {"3CCFE656 Cyclone CardBus",
520 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
521 INVERT_LED_PWR|HAS_HWCKSM, 128, },
522
523 {"3CCFEM656B Cyclone+Winmodem CardBus",
524 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
525 INVERT_LED_PWR|HAS_HWCKSM, 128, },
526 {"3CXFEM656C Tornado+Winmodem CardBus", /* From pcmcia-cs-3.1.5 */
527 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_CB_FNS|EEPROM_8BIT|INVERT_MII_PWR|
528 MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
529 {"3c450 HomePNA Tornado", /* AKPM: from Don's 0.99Q */
530 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
531 {"3c920 Tornado",
532 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
533 {"3c982 Hydra Dual Port A",
534 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, },
535
536 {"3c982 Hydra Dual Port B",
537 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, },
538 {"3c905B-T4",
539 PCI_USES_IO|PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
540 {"3c920B-EMB-WNM Tornado",
541 PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, },
542
543 {NULL,}, /* NULL terminated list. */
544};
545
546
547static struct pci_device_id vortex_pci_tbl[] = {
548 { 0x10B7, 0x5900, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C590 },
549 { 0x10B7, 0x5920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C592 },
550 { 0x10B7, 0x5970, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C597 },
551 { 0x10B7, 0x5950, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_1 },
552 { 0x10B7, 0x5951, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_2 },
553
554 { 0x10B7, 0x5952, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C595_3 },
555 { 0x10B7, 0x9000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_1 },
556 { 0x10B7, 0x9001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_2 },
557 { 0x10B7, 0x9004, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_3 },
558 { 0x10B7, 0x9005, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_4 },
559
560 { 0x10B7, 0x9006, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900_5 },
561 { 0x10B7, 0x900A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900B_FL },
562 { 0x10B7, 0x9050, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_1 },
563 { 0x10B7, 0x9051, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_2 },
564 { 0x10B7, 0x9055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_1 },
565
566 { 0x10B7, 0x9058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_2 },
567 { 0x10B7, 0x905A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_FX },
568 { 0x10B7, 0x9200, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905C },
569 { 0x10B7, 0x9202, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C9202 },
570 { 0x10B7, 0x9800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C980 },
571 { 0x10B7, 0x9805, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C9805 },
572
573 { 0x10B7, 0x7646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CSOHO100_TX },
574 { 0x10B7, 0x5055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C555 },
575 { 0x10B7, 0x6055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556 },
576 { 0x10B7, 0x6056, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C556B },
577 { 0x10B7, 0x5b57, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575 },
578
579 { 0x10B7, 0x5057, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C575_1 },
580 { 0x10B7, 0x5157, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575 },
581 { 0x10B7, 0x5257, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE575CT },
582 { 0x10B7, 0x6560, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFE656 },
583 { 0x10B7, 0x6562, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656 },
584
585 { 0x10B7, 0x6564, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656_1 },
586 { 0x10B7, 0x4500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C450 },
587 { 0x10B7, 0x9201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C920 },
588 { 0x10B7, 0x1201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982A },
589 { 0x10B7, 0x1202, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982B },
590
591 { 0x10B7, 0x9056, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_905BT4 },
592 { 0x10B7, 0x9210, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_920B_EMB_WNM },
593
594 {0,} /* 0 terminated list. */
595};
596MODULE_DEVICE_TABLE(pci, vortex_pci_tbl);
597
598
599/* Operational definitions.
600 These are not used by other compilation units and thus are not
601 exported in a ".h" file.
602
603 First the windows. There are eight register windows, with the command
604 and status registers available in each.
605 */
John W. Linville62afe592005-11-07 00:58:02 -0800606#define EL3WINDOW(win_num) iowrite16(SelectWindow + (win_num), ioaddr + EL3_CMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#define EL3_CMD 0x0e
608#define EL3_STATUS 0x0e
609
610/* The top five bits written to EL3_CMD are a command, the lower
611 11 bits are the parameter, if applicable.
612 Note that 11 parameters bits was fine for ethernet, but the new chip
613 can handle FDDI length frames (~4500 octets) and now parameters count
614 32-bit 'Dwords' rather than octets. */
615
616enum vortex_cmd {
617 TotalReset = 0<<11, SelectWindow = 1<<11, StartCoax = 2<<11,
618 RxDisable = 3<<11, RxEnable = 4<<11, RxReset = 5<<11,
619 UpStall = 6<<11, UpUnstall = (6<<11)+1,
620 DownStall = (6<<11)+2, DownUnstall = (6<<11)+3,
621 RxDiscard = 8<<11, TxEnable = 9<<11, TxDisable = 10<<11, TxReset = 11<<11,
622 FakeIntr = 12<<11, AckIntr = 13<<11, SetIntrEnb = 14<<11,
623 SetStatusEnb = 15<<11, SetRxFilter = 16<<11, SetRxThreshold = 17<<11,
624 SetTxThreshold = 18<<11, SetTxStart = 19<<11,
625 StartDMAUp = 20<<11, StartDMADown = (20<<11)+1, StatsEnable = 21<<11,
626 StatsDisable = 22<<11, StopCoax = 23<<11, SetFilterBit = 25<<11,};
627
628/* The SetRxFilter command accepts the following classes: */
629enum RxFilter {
630 RxStation = 1, RxMulticast = 2, RxBroadcast = 4, RxProm = 8 };
631
632/* Bits in the general status register. */
633enum vortex_status {
634 IntLatch = 0x0001, HostError = 0x0002, TxComplete = 0x0004,
635 TxAvailable = 0x0008, RxComplete = 0x0010, RxEarly = 0x0020,
636 IntReq = 0x0040, StatsFull = 0x0080,
637 DMADone = 1<<8, DownComplete = 1<<9, UpComplete = 1<<10,
638 DMAInProgress = 1<<11, /* DMA controller is still busy.*/
639 CmdInProgress = 1<<12, /* EL3_CMD is still busy.*/
640};
641
642/* Register window 1 offsets, the window used in normal operation.
643 On the Vortex this window is always mapped at offsets 0x10-0x1f. */
644enum Window1 {
645 TX_FIFO = 0x10, RX_FIFO = 0x10, RxErrors = 0x14,
646 RxStatus = 0x18, Timer=0x1A, TxStatus = 0x1B,
647 TxFree = 0x1C, /* Remaining free bytes in Tx buffer. */
648};
649enum Window0 {
650 Wn0EepromCmd = 10, /* Window 0: EEPROM command register. */
651 Wn0EepromData = 12, /* Window 0: EEPROM results register. */
652 IntrStatus=0x0E, /* Valid in all windows. */
653};
654enum Win0_EEPROM_bits {
655 EEPROM_Read = 0x80, EEPROM_WRITE = 0x40, EEPROM_ERASE = 0xC0,
656 EEPROM_EWENB = 0x30, /* Enable erasing/writing for 10 msec. */
657 EEPROM_EWDIS = 0x00, /* Disable EWENB before 10 msec timeout. */
658};
659/* EEPROM locations. */
660enum eeprom_offset {
661 PhysAddr01=0, PhysAddr23=1, PhysAddr45=2, ModelID=3,
662 EtherLink3ID=7, IFXcvrIO=8, IRQLine=9,
663 NodeAddr01=10, NodeAddr23=11, NodeAddr45=12,
664 DriverTune=13, Checksum=15};
665
666enum Window2 { /* Window 2. */
667 Wn2_ResetOptions=12,
668};
669enum Window3 { /* Window 3: MAC/config bits. */
670 Wn3_Config=0, Wn3_MaxPktSize=4, Wn3_MAC_Ctrl=6, Wn3_Options=8,
671};
672
673#define BFEXT(value, offset, bitcount) \
674 ((((unsigned long)(value)) >> (offset)) & ((1 << (bitcount)) - 1))
675
676#define BFINS(lhs, rhs, offset, bitcount) \
677 (((lhs) & ~((((1 << (bitcount)) - 1)) << (offset))) | \
678 (((rhs) & ((1 << (bitcount)) - 1)) << (offset)))
679
680#define RAM_SIZE(v) BFEXT(v, 0, 3)
681#define RAM_WIDTH(v) BFEXT(v, 3, 1)
682#define RAM_SPEED(v) BFEXT(v, 4, 2)
683#define ROM_SIZE(v) BFEXT(v, 6, 2)
684#define RAM_SPLIT(v) BFEXT(v, 16, 2)
685#define XCVR(v) BFEXT(v, 20, 4)
686#define AUTOSELECT(v) BFEXT(v, 24, 1)
687
688enum Window4 { /* Window 4: Xcvr/media bits. */
689 Wn4_FIFODiag = 4, Wn4_NetDiag = 6, Wn4_PhysicalMgmt=8, Wn4_Media = 10,
690};
691enum Win4_Media_bits {
692 Media_SQE = 0x0008, /* Enable SQE error counting for AUI. */
693 Media_10TP = 0x00C0, /* Enable link beat and jabber for 10baseT. */
694 Media_Lnk = 0x0080, /* Enable just link beat for 100TX/100FX. */
695 Media_LnkBeat = 0x0800,
696};
697enum Window7 { /* Window 7: Bus Master control. */
698 Wn7_MasterAddr = 0, Wn7_VlanEtherType=4, Wn7_MasterLen = 6,
699 Wn7_MasterStatus = 12,
700};
701/* Boomerang bus master control registers. */
702enum MasterCtrl {
703 PktStatus = 0x20, DownListPtr = 0x24, FragAddr = 0x28, FragLen = 0x2c,
704 TxFreeThreshold = 0x2f, UpPktStatus = 0x30, UpListPtr = 0x38,
705};
706
707/* The Rx and Tx descriptor lists.
708 Caution Alpha hackers: these types are 32 bits! Note also the 8 byte
709 alignment contraint on tx_ring[] and rx_ring[]. */
710#define LAST_FRAG 0x80000000 /* Last Addr/Len pair in descriptor. */
711#define DN_COMPLETE 0x00010000 /* This packet has been downloaded */
712struct boom_rx_desc {
713 u32 next; /* Last entry points to 0. */
714 s32 status;
715 u32 addr; /* Up to 63 addr/len pairs possible. */
716 s32 length; /* Set LAST_FRAG to indicate last pair. */
717};
718/* Values for the Rx status entry. */
719enum rx_desc_status {
720 RxDComplete=0x00008000, RxDError=0x4000,
721 /* See boomerang_rx() for actual error bits */
722 IPChksumErr=1<<25, TCPChksumErr=1<<26, UDPChksumErr=1<<27,
723 IPChksumValid=1<<29, TCPChksumValid=1<<30, UDPChksumValid=1<<31,
724};
725
726#ifdef MAX_SKB_FRAGS
727#define DO_ZEROCOPY 1
728#else
729#define DO_ZEROCOPY 0
730#endif
731
732struct boom_tx_desc {
733 u32 next; /* Last entry points to 0. */
734 s32 status; /* bits 0:12 length, others see below. */
735#if DO_ZEROCOPY
736 struct {
737 u32 addr;
738 s32 length;
739 } frag[1+MAX_SKB_FRAGS];
740#else
741 u32 addr;
742 s32 length;
743#endif
744};
745
746/* Values for the Tx status entry. */
747enum tx_desc_status {
748 CRCDisable=0x2000, TxDComplete=0x8000,
749 AddIPChksum=0x02000000, AddTCPChksum=0x04000000, AddUDPChksum=0x08000000,
750 TxIntrUploaded=0x80000000, /* IRQ when in FIFO, but maybe not sent. */
751};
752
753/* Chip features we care about in vp->capabilities, read from the EEPROM. */
754enum ChipCaps { CapBusMaster=0x20, CapPwrMgmt=0x2000 };
755
756struct vortex_extra_stats {
757 unsigned long tx_deferred;
758 unsigned long tx_multiple_collisions;
759 unsigned long rx_bad_ssd;
760};
761
762struct vortex_private {
763 /* The Rx and Tx rings should be quad-word-aligned. */
764 struct boom_rx_desc* rx_ring;
765 struct boom_tx_desc* tx_ring;
766 dma_addr_t rx_ring_dma;
767 dma_addr_t tx_ring_dma;
768 /* The addresses of transmit- and receive-in-place skbuffs. */
769 struct sk_buff* rx_skbuff[RX_RING_SIZE];
770 struct sk_buff* tx_skbuff[TX_RING_SIZE];
771 unsigned int cur_rx, cur_tx; /* The next free ring entry */
772 unsigned int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
773 struct net_device_stats stats; /* Generic stats */
774 struct vortex_extra_stats xstats; /* NIC-specific extra stats */
775 struct sk_buff *tx_skb; /* Packet being eaten by bus master ctrl. */
776 dma_addr_t tx_skb_dma; /* Allocated DMA address for bus master ctrl DMA. */
777
778 /* PCI configuration space information. */
779 struct device *gendev;
John W. Linville62afe592005-11-07 00:58:02 -0800780 void __iomem *ioaddr; /* IO address space */
781 void __iomem *cb_fn_base; /* CardBus function status addr space. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* Some values here only for performance evaluation and path-coverage */
784 int rx_nocopy, rx_copy, queued_packet, rx_csumhits;
785 int card_idx;
786
787 /* The remainder are related to chip state, mostly media selection. */
788 struct timer_list timer; /* Media selection timer. */
789 struct timer_list rx_oom_timer; /* Rx skb allocation retry timer */
790 int options; /* User-settable misc. driver options. */
791 unsigned int media_override:4, /* Passed-in media type. */
792 default_media:4, /* Read from the EEPROM/Wn3_Config. */
793 full_duplex:1, force_fd:1, autoselect:1,
794 bus_master:1, /* Vortex can only do a fragment bus-m. */
795 full_bus_master_tx:1, full_bus_master_rx:2, /* Boomerang */
796 flow_ctrl:1, /* Use 802.3x flow control (PAUSE only) */
797 partner_flow_ctrl:1, /* Partner supports flow control */
798 has_nway:1,
799 enable_wol:1, /* Wake-on-LAN is enabled */
800 pm_state_valid:1, /* pci_dev->saved_config_space has sane contents */
801 open:1,
802 medialock:1,
803 must_free_region:1, /* Flag: if zero, Cardbus owns the I/O region */
804 large_frames:1; /* accept large frames */
805 int drv_flags;
806 u16 status_enable;
807 u16 intr_enable;
808 u16 available_media; /* From Wn3_Options. */
809 u16 capabilities, info1, info2; /* Various, from EEPROM. */
810 u16 advertising; /* NWay media advertisement */
811 unsigned char phys[2]; /* MII device addresses. */
812 u16 deferred; /* Resend these interrupts when we
813 * bale from the ISR */
814 u16 io_size; /* Size of PCI region (for release_region) */
815 spinlock_t lock; /* Serialise access to device & its vortex_private */
816 struct mii_if_info mii; /* MII lib hooks/info */
817};
818
819#ifdef CONFIG_PCI
820#define DEVICE_PCI(dev) (((dev)->bus == &pci_bus_type) ? to_pci_dev((dev)) : NULL)
821#else
822#define DEVICE_PCI(dev) NULL
823#endif
824
825#define VORTEX_PCI(vp) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL)
826
827#ifdef CONFIG_EISA
828#define DEVICE_EISA(dev) (((dev)->bus == &eisa_bus_type) ? to_eisa_device((dev)) : NULL)
829#else
830#define DEVICE_EISA(dev) NULL
831#endif
832
833#define VORTEX_EISA(vp) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : NULL)
834
835/* The action to take with a media selection timer tick.
836 Note that we deviate from the 3Com order by checking 10base2 before AUI.
837 */
838enum xcvr_types {
839 XCVR_10baseT=0, XCVR_AUI, XCVR_10baseTOnly, XCVR_10base2, XCVR_100baseTx,
840 XCVR_100baseFx, XCVR_MII=6, XCVR_NWAY=8, XCVR_ExtMII=9, XCVR_Default=10,
841};
842
843static struct media_table {
844 char *name;
845 unsigned int media_bits:16, /* Bits to set in Wn4_Media register. */
846 mask:8, /* The transceiver-present bit in Wn3_Config.*/
847 next:8; /* The media type to try next. */
848 int wait; /* Time before we check media status. */
849} media_tbl[] = {
850 { "10baseT", Media_10TP,0x08, XCVR_10base2, (14*HZ)/10},
851 { "10Mbs AUI", Media_SQE, 0x20, XCVR_Default, (1*HZ)/10},
852 { "undefined", 0, 0x80, XCVR_10baseT, 10000},
853 { "10base2", 0, 0x10, XCVR_AUI, (1*HZ)/10},
854 { "100baseTX", Media_Lnk, 0x02, XCVR_100baseFx, (14*HZ)/10},
855 { "100baseFX", Media_Lnk, 0x04, XCVR_MII, (14*HZ)/10},
856 { "MII", 0, 0x41, XCVR_10baseT, 3*HZ },
857 { "undefined", 0, 0x01, XCVR_10baseT, 10000},
858 { "Autonegotiate", 0, 0x41, XCVR_10baseT, 3*HZ},
859 { "MII-External", 0, 0x41, XCVR_10baseT, 3*HZ },
860 { "Default", 0, 0xFF, XCVR_10baseT, 10000},
861};
862
863static struct {
864 const char str[ETH_GSTRING_LEN];
865} ethtool_stats_keys[] = {
866 { "tx_deferred" },
867 { "tx_multiple_collisions" },
868 { "rx_bad_ssd" },
869};
870
871/* number of ETHTOOL_GSTATS u64's */
872#define VORTEX_NUM_STATS 3
873
John W. Linville62afe592005-11-07 00:58:02 -0800874static int vortex_probe1(struct device *gendev, void __iomem *ioaddr, int irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int chip_idx, int card_idx);
876static void vortex_up(struct net_device *dev);
877static void vortex_down(struct net_device *dev, int final);
878static int vortex_open(struct net_device *dev);
John W. Linville62afe592005-11-07 00:58:02 -0800879static void mdio_sync(void __iomem *ioaddr, int bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880static int mdio_read(struct net_device *dev, int phy_id, int location);
881static void mdio_write(struct net_device *vp, int phy_id, int location, int value);
882static void vortex_timer(unsigned long arg);
883static void rx_oom_timer(unsigned long arg);
884static int vortex_start_xmit(struct sk_buff *skb, struct net_device *dev);
885static int boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev);
886static int vortex_rx(struct net_device *dev);
887static int boomerang_rx(struct net_device *dev);
888static irqreturn_t vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs);
889static irqreturn_t boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs);
890static int vortex_close(struct net_device *dev);
891static void dump_tx_ring(struct net_device *dev);
John W. Linville62afe592005-11-07 00:58:02 -0800892static void update_stats(void __iomem *ioaddr, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893static struct net_device_stats *vortex_get_stats(struct net_device *dev);
894static void set_rx_mode(struct net_device *dev);
895#ifdef CONFIG_PCI
896static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
897#endif
898static void vortex_tx_timeout(struct net_device *dev);
899static void acpi_set_WOL(struct net_device *dev);
900static struct ethtool_ops vortex_ethtool_ops;
901static void set_8021q_mode(struct net_device *dev, int enable);
902
903
904/* This driver uses 'options' to pass the media type, full-duplex flag, etc. */
905/* Option count limit only -- unlimited interfaces are supported. */
906#define MAX_UNITS 8
John W. Linville9954ab72005-11-07 00:58:06 -0800907static int options[MAX_UNITS] = { [0 ... MAX_UNITS-1] = -1 };
908static int full_duplex[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
909static int hw_checksums[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
910static int flow_ctrl[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
911static int enable_wol[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
John W. Linville900fd172005-11-07 00:58:08 -0800912static int use_mmio[MAX_UNITS] = {[0 ... MAX_UNITS-1] = -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static int global_options = -1;
914static int global_full_duplex = -1;
915static int global_enable_wol = -1;
John W. Linville900fd172005-11-07 00:58:08 -0800916static int global_use_mmio = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918/* #define dev_alloc_skb dev_alloc_skb_debug */
919
920/* Variables to work-around the Compaq PCI BIOS32 problem. */
921static int compaq_ioaddr, compaq_irq, compaq_device_id = 0x5900;
922static struct net_device *compaq_net_device;
923
924static int vortex_cards_found;
925
926module_param(debug, int, 0);
927module_param(global_options, int, 0);
928module_param_array(options, int, NULL, 0);
929module_param(global_full_duplex, int, 0);
930module_param_array(full_duplex, int, NULL, 0);
931module_param_array(hw_checksums, int, NULL, 0);
932module_param_array(flow_ctrl, int, NULL, 0);
933module_param(global_enable_wol, int, 0);
934module_param_array(enable_wol, int, NULL, 0);
935module_param(rx_copybreak, int, 0);
936module_param(max_interrupt_work, int, 0);
937module_param(compaq_ioaddr, int, 0);
938module_param(compaq_irq, int, 0);
939module_param(compaq_device_id, int, 0);
940module_param(watchdog, int, 0);
John W. Linville900fd172005-11-07 00:58:08 -0800941module_param(global_use_mmio, int, 0);
942module_param_array(use_mmio, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943MODULE_PARM_DESC(debug, "3c59x debug level (0-6)");
944MODULE_PARM_DESC(options, "3c59x: Bits 0-3: media type, bit 4: bus mastering, bit 9: full duplex");
945MODULE_PARM_DESC(global_options, "3c59x: same as options, but applies to all NICs if options is unset");
946MODULE_PARM_DESC(full_duplex, "3c59x full duplex setting(s) (1)");
John W. Linville46e5e4a2005-11-07 00:58:06 -0800947MODULE_PARM_DESC(global_full_duplex, "3c59x: same as full_duplex, but applies to all NICs if full_duplex is unset");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948MODULE_PARM_DESC(hw_checksums, "3c59x Hardware checksum checking by adapter(s) (0-1)");
949MODULE_PARM_DESC(flow_ctrl, "3c59x 802.3x flow control usage (PAUSE only) (0-1)");
950MODULE_PARM_DESC(enable_wol, "3c59x: Turn on Wake-on-LAN for adapter(s) (0-1)");
John W. Linville46e5e4a2005-11-07 00:58:06 -0800951MODULE_PARM_DESC(global_enable_wol, "3c59x: same as enable_wol, but applies to all NICs if enable_wol is unset");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952MODULE_PARM_DESC(rx_copybreak, "3c59x copy breakpoint for copy-only-tiny-frames");
953MODULE_PARM_DESC(max_interrupt_work, "3c59x maximum events handled per interrupt");
954MODULE_PARM_DESC(compaq_ioaddr, "3c59x PCI I/O base address (Compaq BIOS problem workaround)");
955MODULE_PARM_DESC(compaq_irq, "3c59x PCI IRQ number (Compaq BIOS problem workaround)");
956MODULE_PARM_DESC(compaq_device_id, "3c59x PCI device ID (Compaq BIOS problem workaround)");
957MODULE_PARM_DESC(watchdog, "3c59x transmit timeout in milliseconds");
John W. Linville900fd172005-11-07 00:58:08 -0800958MODULE_PARM_DESC(global_use_mmio, "3c59x: same as use_mmio, but applies to all NICs if options is unset");
959MODULE_PARM_DESC(use_mmio, "3c59x: use memory-mapped PCI I/O resource (0-1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961#ifdef CONFIG_NET_POLL_CONTROLLER
962static void poll_vortex(struct net_device *dev)
963{
964 struct vortex_private *vp = netdev_priv(dev);
965 unsigned long flags;
966 local_save_flags(flags);
967 local_irq_disable();
968 (vp->full_bus_master_rx ? boomerang_interrupt:vortex_interrupt)(dev->irq,dev,NULL);
969 local_irq_restore(flags);
970}
971#endif
972
973#ifdef CONFIG_PM
974
975static int vortex_suspend (struct pci_dev *pdev, pm_message_t state)
976{
977 struct net_device *dev = pci_get_drvdata(pdev);
978
979 if (dev && dev->priv) {
980 if (netif_running(dev)) {
981 netif_device_detach(dev);
982 vortex_down(dev, 1);
983 }
Rafael J. Wysocki5b039e62005-09-06 15:16:22 -0700984 pci_save_state(pdev);
985 pci_enable_wake(pdev, pci_choose_state(pdev, state), 0);
986 free_irq(dev->irq, dev);
987 pci_disable_device(pdev);
988 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990 return 0;
991}
992
993static int vortex_resume (struct pci_dev *pdev)
994{
995 struct net_device *dev = pci_get_drvdata(pdev);
Rafael J. Wysocki5b039e62005-09-06 15:16:22 -0700996 struct vortex_private *vp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Rafael J. Wysocki5b039e62005-09-06 15:16:22 -0700998 if (dev && vp) {
999 pci_set_power_state(pdev, PCI_D0);
1000 pci_restore_state(pdev);
1001 pci_enable_device(pdev);
1002 pci_set_master(pdev);
1003 if (request_irq(dev->irq, vp->full_bus_master_rx ?
1004 &boomerang_interrupt : &vortex_interrupt, SA_SHIRQ, dev->name, dev)) {
1005 printk(KERN_WARNING "%s: Could not reserve IRQ %d\n", dev->name, dev->irq);
1006 pci_disable_device(pdev);
1007 return -EBUSY;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (netif_running(dev)) {
1010 vortex_up(dev);
1011 netif_device_attach(dev);
1012 }
1013 }
1014 return 0;
1015}
1016
1017#endif /* CONFIG_PM */
1018
1019#ifdef CONFIG_EISA
1020static struct eisa_device_id vortex_eisa_ids[] = {
1021 { "TCM5920", CH_3C592 },
1022 { "TCM5970", CH_3C597 },
1023 { "" }
1024};
1025
1026static int vortex_eisa_probe (struct device *device);
1027static int vortex_eisa_remove (struct device *device);
1028
1029static struct eisa_driver vortex_eisa_driver = {
1030 .id_table = vortex_eisa_ids,
1031 .driver = {
1032 .name = "3c59x",
1033 .probe = vortex_eisa_probe,
1034 .remove = vortex_eisa_remove
1035 }
1036};
1037
1038static int vortex_eisa_probe (struct device *device)
1039{
John W. Linville62afe592005-11-07 00:58:02 -08001040 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct eisa_device *edev;
1042
1043 edev = to_eisa_device (device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
John W. Linville62afe592005-11-07 00:58:02 -08001045 if (!request_region(edev->base_addr, VORTEX_TOTAL_SIZE, DRV_NAME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return -EBUSY;
1047
John W. Linville62afe592005-11-07 00:58:02 -08001048 ioaddr = ioport_map(edev->base_addr, VORTEX_TOTAL_SIZE);
1049
1050 if (vortex_probe1(device, ioaddr, ioread16(ioaddr + 0xC88) >> 12,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 edev->id.driver_data, vortex_cards_found)) {
John W. Linville62afe592005-11-07 00:58:02 -08001052 release_region (edev->base_addr, VORTEX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return -ENODEV;
1054 }
1055
1056 vortex_cards_found++;
1057
1058 return 0;
1059}
1060
1061static int vortex_eisa_remove (struct device *device)
1062{
1063 struct eisa_device *edev;
1064 struct net_device *dev;
1065 struct vortex_private *vp;
John W. Linville62afe592005-11-07 00:58:02 -08001066 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 edev = to_eisa_device (device);
1069 dev = eisa_get_drvdata (edev);
1070
1071 if (!dev) {
1072 printk("vortex_eisa_remove called for Compaq device!\n");
1073 BUG();
1074 }
1075
1076 vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08001077 ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 unregister_netdev (dev);
John W. Linville62afe592005-11-07 00:58:02 -08001080 iowrite16 (TotalReset|0x14, ioaddr + EL3_CMD);
1081 release_region (dev->base_addr, VORTEX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 free_netdev (dev);
1084 return 0;
1085}
1086#endif
1087
1088/* returns count found (>= 0), or negative on error */
1089static int __init vortex_eisa_init (void)
1090{
1091 int eisa_found = 0;
1092 int orig_cards_found = vortex_cards_found;
1093
1094#ifdef CONFIG_EISA
1095 if (eisa_driver_register (&vortex_eisa_driver) >= 0) {
1096 /* Because of the way EISA bus is probed, we cannot assume
1097 * any device have been found when we exit from
1098 * eisa_driver_register (the bus root driver may not be
1099 * initialized yet). So we blindly assume something was
1100 * found, and let the sysfs magic happend... */
1101
1102 eisa_found = 1;
1103 }
1104#endif
1105
1106 /* Special code to work-around the Compaq PCI BIOS32 problem. */
1107 if (compaq_ioaddr) {
John W. Linville62afe592005-11-07 00:58:02 -08001108 vortex_probe1(NULL, ioport_map(compaq_ioaddr, VORTEX_TOTAL_SIZE),
1109 compaq_irq, compaq_device_id, vortex_cards_found++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
1112 return vortex_cards_found - orig_cards_found + eisa_found;
1113}
1114
1115/* returns count (>= 0), or negative on error */
1116static int __devinit vortex_init_one (struct pci_dev *pdev,
1117 const struct pci_device_id *ent)
1118{
John W. Linville900fd172005-11-07 00:58:08 -08001119 int rc, unit, pci_bar;
1120 struct vortex_chip_info *vci;
1121 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 /* wake up and enable device */
1124 rc = pci_enable_device (pdev);
1125 if (rc < 0)
1126 goto out;
1127
John W. Linville900fd172005-11-07 00:58:08 -08001128 unit = vortex_cards_found;
1129
1130 if (global_use_mmio < 0 && (unit >= MAX_UNITS || use_mmio[unit] < 0)) {
1131 /* Determine the default if the user didn't override us */
1132 vci = &vortex_info_tbl[ent->driver_data];
1133 pci_bar = vci->drv_flags & (IS_CYCLONE | IS_TORNADO) ? 1 : 0;
1134 } else if (unit < MAX_UNITS && use_mmio[unit] >= 0)
1135 pci_bar = use_mmio[unit] ? 1 : 0;
1136 else
1137 pci_bar = global_use_mmio ? 1 : 0;
1138
1139 ioaddr = pci_iomap(pdev, pci_bar, 0);
1140 if (!ioaddr) /* If mapping fails, fall-back to BAR 0... */
1141 ioaddr = pci_iomap(pdev, 0, 0);
1142
1143 rc = vortex_probe1(&pdev->dev, ioaddr, pdev->irq,
1144 ent->driver_data, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (rc < 0) {
1146 pci_disable_device (pdev);
1147 goto out;
1148 }
1149
1150 vortex_cards_found++;
1151
1152out:
1153 return rc;
1154}
1155
1156/*
1157 * Start up the PCI/EISA device which is described by *gendev.
1158 * Return 0 on success.
1159 *
1160 * NOTE: pdev can be NULL, for the case of a Compaq device
1161 */
1162static int __devinit vortex_probe1(struct device *gendev,
John W. Linville62afe592005-11-07 00:58:02 -08001163 void __iomem *ioaddr, int irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 int chip_idx, int card_idx)
1165{
1166 struct vortex_private *vp;
1167 int option;
1168 unsigned int eeprom[0x40], checksum = 0; /* EEPROM contents */
1169 int i, step;
1170 struct net_device *dev;
1171 static int printed_version;
1172 int retval, print_info;
1173 struct vortex_chip_info * const vci = &vortex_info_tbl[chip_idx];
1174 char *print_name = "3c59x";
1175 struct pci_dev *pdev = NULL;
1176 struct eisa_device *edev = NULL;
1177
1178 if (!printed_version) {
1179 printk (version);
1180 printed_version = 1;
1181 }
1182
1183 if (gendev) {
1184 if ((pdev = DEVICE_PCI(gendev))) {
1185 print_name = pci_name(pdev);
1186 }
1187
1188 if ((edev = DEVICE_EISA(gendev))) {
1189 print_name = edev->dev.bus_id;
1190 }
1191 }
1192
1193 dev = alloc_etherdev(sizeof(*vp));
1194 retval = -ENOMEM;
1195 if (!dev) {
1196 printk (KERN_ERR PFX "unable to allocate etherdev, aborting\n");
1197 goto out;
1198 }
1199 SET_MODULE_OWNER(dev);
1200 SET_NETDEV_DEV(dev, gendev);
1201 vp = netdev_priv(dev);
1202
1203 option = global_options;
1204
1205 /* The lower four bits are the media type. */
1206 if (dev->mem_start) {
1207 /*
1208 * The 'options' param is passed in as the third arg to the
1209 * LILO 'ether=' argument for non-modular use
1210 */
1211 option = dev->mem_start;
1212 }
1213 else if (card_idx < MAX_UNITS) {
1214 if (options[card_idx] >= 0)
1215 option = options[card_idx];
1216 }
1217
1218 if (option > 0) {
1219 if (option & 0x8000)
1220 vortex_debug = 7;
1221 if (option & 0x4000)
1222 vortex_debug = 2;
1223 if (option & 0x0400)
1224 vp->enable_wol = 1;
1225 }
1226
1227 print_info = (vortex_debug > 1);
1228 if (print_info)
1229 printk (KERN_INFO "See Documentation/networking/vortex.txt\n");
1230
John W. Linville62afe592005-11-07 00:58:02 -08001231 printk(KERN_INFO "%s: 3Com %s %s at %p. Vers " DRV_VERSION "\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 print_name,
1233 pdev ? "PCI" : "EISA",
1234 vci->name,
1235 ioaddr);
1236
John W. Linville62afe592005-11-07 00:58:02 -08001237 dev->base_addr = (unsigned long)ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 dev->irq = irq;
1239 dev->mtu = mtu;
John W. Linville62afe592005-11-07 00:58:02 -08001240 vp->ioaddr = ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 vp->large_frames = mtu > 1500;
1242 vp->drv_flags = vci->drv_flags;
1243 vp->has_nway = (vci->drv_flags & HAS_NWAY) ? 1 : 0;
1244 vp->io_size = vci->io_size;
1245 vp->card_idx = card_idx;
1246
1247 /* module list only for Compaq device */
1248 if (gendev == NULL) {
1249 compaq_net_device = dev;
1250 }
1251
1252 /* PCI-only startup logic */
1253 if (pdev) {
1254 /* EISA resources already marked, so only PCI needs to do this here */
1255 /* Ignore return value, because Cardbus drivers already allocate for us */
John W. Linville62afe592005-11-07 00:58:02 -08001256 if (request_region(dev->base_addr, vci->io_size, print_name) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 vp->must_free_region = 1;
1258
1259 /* enable bus-mastering if necessary */
1260 if (vci->flags & PCI_USES_MASTER)
1261 pci_set_master (pdev);
1262
1263 if (vci->drv_flags & IS_VORTEX) {
1264 u8 pci_latency;
1265 u8 new_latency = 248;
1266
1267 /* Check the PCI latency value. On the 3c590 series the latency timer
1268 must be set to the maximum value to avoid data corruption that occurs
1269 when the timer expires during a transfer. This bug exists the Vortex
1270 chip only. */
1271 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &pci_latency);
1272 if (pci_latency < new_latency) {
1273 printk(KERN_INFO "%s: Overriding PCI latency"
1274 " timer (CFLT) setting of %d, new value is %d.\n",
1275 print_name, pci_latency, new_latency);
1276 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, new_latency);
1277 }
1278 }
1279 }
1280
1281 spin_lock_init(&vp->lock);
1282 vp->gendev = gendev;
1283 vp->mii.dev = dev;
1284 vp->mii.mdio_read = mdio_read;
1285 vp->mii.mdio_write = mdio_write;
1286 vp->mii.phy_id_mask = 0x1f;
1287 vp->mii.reg_num_mask = 0x1f;
1288
1289 /* Makes sure rings are at least 16 byte aligned. */
1290 vp->rx_ring = pci_alloc_consistent(pdev, sizeof(struct boom_rx_desc) * RX_RING_SIZE
1291 + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
1292 &vp->rx_ring_dma);
1293 retval = -ENOMEM;
1294 if (vp->rx_ring == 0)
1295 goto free_region;
1296
1297 vp->tx_ring = (struct boom_tx_desc *)(vp->rx_ring + RX_RING_SIZE);
1298 vp->tx_ring_dma = vp->rx_ring_dma + sizeof(struct boom_rx_desc) * RX_RING_SIZE;
1299
1300 /* if we are a PCI driver, we store info in pdev->driver_data
1301 * instead of a module list */
1302 if (pdev)
1303 pci_set_drvdata(pdev, dev);
1304 if (edev)
1305 eisa_set_drvdata (edev, dev);
1306
1307 vp->media_override = 7;
1308 if (option >= 0) {
1309 vp->media_override = ((option & 7) == 2) ? 0 : option & 15;
1310 if (vp->media_override != 7)
1311 vp->medialock = 1;
1312 vp->full_duplex = (option & 0x200) ? 1 : 0;
1313 vp->bus_master = (option & 16) ? 1 : 0;
1314 }
1315
1316 if (global_full_duplex > 0)
1317 vp->full_duplex = 1;
1318 if (global_enable_wol > 0)
1319 vp->enable_wol = 1;
1320
1321 if (card_idx < MAX_UNITS) {
1322 if (full_duplex[card_idx] > 0)
1323 vp->full_duplex = 1;
1324 if (flow_ctrl[card_idx] > 0)
1325 vp->flow_ctrl = 1;
1326 if (enable_wol[card_idx] > 0)
1327 vp->enable_wol = 1;
1328 }
1329
1330 vp->force_fd = vp->full_duplex;
1331 vp->options = option;
1332 /* Read the station address from the EEPROM. */
1333 EL3WINDOW(0);
1334 {
1335 int base;
1336
1337 if (vci->drv_flags & EEPROM_8BIT)
1338 base = 0x230;
1339 else if (vci->drv_flags & EEPROM_OFFSET)
1340 base = EEPROM_Read + 0x30;
1341 else
1342 base = EEPROM_Read;
1343
1344 for (i = 0; i < 0x40; i++) {
1345 int timer;
John W. Linville62afe592005-11-07 00:58:02 -08001346 iowrite16(base + i, ioaddr + Wn0EepromCmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /* Pause for at least 162 us. for the read to take place. */
1348 for (timer = 10; timer >= 0; timer--) {
1349 udelay(162);
John W. Linville62afe592005-11-07 00:58:02 -08001350 if ((ioread16(ioaddr + Wn0EepromCmd) & 0x8000) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break;
1352 }
John W. Linville62afe592005-11-07 00:58:02 -08001353 eeprom[i] = ioread16(ioaddr + Wn0EepromData);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
1355 }
1356 for (i = 0; i < 0x18; i++)
1357 checksum ^= eeprom[i];
1358 checksum = (checksum ^ (checksum >> 8)) & 0xff;
1359 if (checksum != 0x00) { /* Grrr, needless incompatible change 3Com. */
1360 while (i < 0x21)
1361 checksum ^= eeprom[i++];
1362 checksum = (checksum ^ (checksum >> 8)) & 0xff;
1363 }
1364 if ((checksum != 0x00) && !(vci->drv_flags & IS_TORNADO))
1365 printk(" ***INVALID CHECKSUM %4.4x*** ", checksum);
1366 for (i = 0; i < 3; i++)
1367 ((u16 *)dev->dev_addr)[i] = htons(eeprom[i + 10]);
John W. Linvillebb531fc2005-11-07 00:58:07 -08001368 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (print_info) {
1370 for (i = 0; i < 6; i++)
1371 printk("%c%2.2x", i ? ':' : ' ', dev->dev_addr[i]);
1372 }
1373 /* Unfortunately an all zero eeprom passes the checksum and this
1374 gets found in the wild in failure cases. Crypto is hard 8) */
1375 if (!is_valid_ether_addr(dev->dev_addr)) {
1376 retval = -EINVAL;
1377 printk(KERN_ERR "*** EEPROM MAC address is invalid.\n");
1378 goto free_ring; /* With every pack */
1379 }
1380 EL3WINDOW(2);
1381 for (i = 0; i < 6; i++)
John W. Linville62afe592005-11-07 00:58:02 -08001382 iowrite8(dev->dev_addr[i], ioaddr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384#ifdef __sparc__
1385 if (print_info)
1386 printk(", IRQ %s\n", __irq_itoa(dev->irq));
1387#else
1388 if (print_info)
1389 printk(", IRQ %d\n", dev->irq);
1390 /* Tell them about an invalid IRQ. */
1391 if (dev->irq <= 0 || dev->irq >= NR_IRQS)
1392 printk(KERN_WARNING " *** Warning: IRQ %d is unlikely to work! ***\n",
1393 dev->irq);
1394#endif
1395
1396 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08001397 step = (ioread8(ioaddr + Wn4_NetDiag) & 0x1e) >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (print_info) {
1399 printk(KERN_INFO " product code %02x%02x rev %02x.%d date %02d-"
1400 "%02d-%02d\n", eeprom[6]&0xff, eeprom[6]>>8, eeprom[0x14],
1401 step, (eeprom[4]>>5) & 15, eeprom[4] & 31, eeprom[4]>>9);
1402 }
1403
1404
1405 if (pdev && vci->drv_flags & HAS_CB_FNS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 unsigned short n;
1407
John W. Linville62afe592005-11-07 00:58:02 -08001408 vp->cb_fn_base = pci_iomap(pdev, 2, 0);
1409 if (!vp->cb_fn_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 retval = -ENOMEM;
John W. Linville62afe592005-11-07 00:58:02 -08001411 goto free_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
John W. Linville62afe592005-11-07 00:58:02 -08001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (print_info) {
1415 printk(KERN_INFO "%s: CardBus functions mapped %8.8lx->%p\n",
John W. Linville62afe592005-11-07 00:58:02 -08001416 print_name, pci_resource_start(pdev, 2),
1417 vp->cb_fn_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419 EL3WINDOW(2);
1420
John W. Linville62afe592005-11-07 00:58:02 -08001421 n = ioread16(ioaddr + Wn2_ResetOptions) & ~0x4010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (vp->drv_flags & INVERT_LED_PWR)
1423 n |= 0x10;
1424 if (vp->drv_flags & INVERT_MII_PWR)
1425 n |= 0x4000;
John W. Linville62afe592005-11-07 00:58:02 -08001426 iowrite16(n, ioaddr + Wn2_ResetOptions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (vp->drv_flags & WNO_XCVR_PWR) {
1428 EL3WINDOW(0);
John W. Linville62afe592005-11-07 00:58:02 -08001429 iowrite16(0x0800, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 }
1432
1433 /* Extract our information from the EEPROM data. */
1434 vp->info1 = eeprom[13];
1435 vp->info2 = eeprom[15];
1436 vp->capabilities = eeprom[16];
1437
1438 if (vp->info1 & 0x8000) {
1439 vp->full_duplex = 1;
1440 if (print_info)
1441 printk(KERN_INFO "Full duplex capable\n");
1442 }
1443
1444 {
1445 static const char * ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
1446 unsigned int config;
1447 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08001448 vp->available_media = ioread16(ioaddr + Wn3_Options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if ((vp->available_media & 0xff) == 0) /* Broken 3c916 */
1450 vp->available_media = 0x40;
John W. Linville62afe592005-11-07 00:58:02 -08001451 config = ioread32(ioaddr + Wn3_Config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (print_info) {
1453 printk(KERN_DEBUG " Internal config register is %4.4x, "
John W. Linville62afe592005-11-07 00:58:02 -08001454 "transceivers %#x.\n", config, ioread16(ioaddr + Wn3_Options));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 printk(KERN_INFO " %dK %s-wide RAM %s Rx:Tx split, %s%s interface.\n",
1456 8 << RAM_SIZE(config),
1457 RAM_WIDTH(config) ? "word" : "byte",
1458 ram_split[RAM_SPLIT(config)],
1459 AUTOSELECT(config) ? "autoselect/" : "",
1460 XCVR(config) > XCVR_ExtMII ? "<invalid transceiver>" :
1461 media_tbl[XCVR(config)].name);
1462 }
1463 vp->default_media = XCVR(config);
1464 if (vp->default_media == XCVR_NWAY)
1465 vp->has_nway = 1;
1466 vp->autoselect = AUTOSELECT(config);
1467 }
1468
1469 if (vp->media_override != 7) {
1470 printk(KERN_INFO "%s: Media override to transceiver type %d (%s).\n",
1471 print_name, vp->media_override,
1472 media_tbl[vp->media_override].name);
1473 dev->if_port = vp->media_override;
1474 } else
1475 dev->if_port = vp->default_media;
1476
1477 if ((vp->available_media & 0x40) || (vci->drv_flags & HAS_NWAY) ||
1478 dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
1479 int phy, phy_idx = 0;
1480 EL3WINDOW(4);
1481 mii_preamble_required++;
1482 if (vp->drv_flags & EXTRA_PREAMBLE)
1483 mii_preamble_required++;
1484 mdio_sync(ioaddr, 32);
Neil Horman106427e2005-11-07 00:58:03 -08001485 mdio_read(dev, 24, MII_BMSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 for (phy = 0; phy < 32 && phy_idx < 1; phy++) {
1487 int mii_status, phyx;
1488
1489 /*
1490 * For the 3c905CX we look at index 24 first, because it bogusly
1491 * reports an external PHY at all indices
1492 */
1493 if (phy == 0)
1494 phyx = 24;
1495 else if (phy <= 24)
1496 phyx = phy - 1;
1497 else
1498 phyx = phy;
Neil Horman106427e2005-11-07 00:58:03 -08001499 mii_status = mdio_read(dev, phyx, MII_BMSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (mii_status && mii_status != 0xffff) {
1501 vp->phys[phy_idx++] = phyx;
1502 if (print_info) {
1503 printk(KERN_INFO " MII transceiver found at address %d,"
1504 " status %4x.\n", phyx, mii_status);
1505 }
1506 if ((mii_status & 0x0040) == 0)
1507 mii_preamble_required++;
1508 }
1509 }
1510 mii_preamble_required--;
1511 if (phy_idx == 0) {
1512 printk(KERN_WARNING" ***WARNING*** No MII transceivers found!\n");
1513 vp->phys[0] = 24;
1514 } else {
Neil Horman106427e2005-11-07 00:58:03 -08001515 vp->advertising = mdio_read(dev, vp->phys[0], MII_ADVERTISE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (vp->full_duplex) {
1517 /* Only advertise the FD media types. */
1518 vp->advertising &= ~0x02A0;
1519 mdio_write(dev, vp->phys[0], 4, vp->advertising);
1520 }
1521 }
1522 vp->mii.phy_id = vp->phys[0];
1523 }
1524
1525 if (vp->capabilities & CapBusMaster) {
1526 vp->full_bus_master_tx = 1;
1527 if (print_info) {
1528 printk(KERN_INFO " Enabling bus-master transmits and %s receives.\n",
1529 (vp->info2 & 1) ? "early" : "whole-frame" );
1530 }
1531 vp->full_bus_master_rx = (vp->info2 & 1) ? 1 : 2;
1532 vp->bus_master = 0; /* AKPM: vortex only */
1533 }
1534
1535 /* The 3c59x-specific entries in the device structure. */
1536 dev->open = vortex_open;
1537 if (vp->full_bus_master_tx) {
1538 dev->hard_start_xmit = boomerang_start_xmit;
1539 /* Actually, it still should work with iommu. */
John W. Linville32fb5f02005-11-07 00:58:05 -08001540 if (card_idx < MAX_UNITS &&
1541 ((hw_checksums[card_idx] == -1 && (vp->drv_flags & HAS_HWCKSM)) ||
1542 hw_checksums[card_idx] == 1)) {
Stephen Hemmingerd311b0d2005-11-07 00:58:09 -08001543 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
1545 } else {
1546 dev->hard_start_xmit = vortex_start_xmit;
1547 }
1548
1549 if (print_info) {
1550 printk(KERN_INFO "%s: scatter/gather %sabled. h/w checksums %sabled\n",
1551 print_name,
1552 (dev->features & NETIF_F_SG) ? "en":"dis",
1553 (dev->features & NETIF_F_IP_CSUM) ? "en":"dis");
1554 }
1555
1556 dev->stop = vortex_close;
1557 dev->get_stats = vortex_get_stats;
1558#ifdef CONFIG_PCI
1559 dev->do_ioctl = vortex_ioctl;
1560#endif
1561 dev->ethtool_ops = &vortex_ethtool_ops;
1562 dev->set_multicast_list = set_rx_mode;
1563 dev->tx_timeout = vortex_tx_timeout;
1564 dev->watchdog_timeo = (watchdog * HZ) / 1000;
1565#ifdef CONFIG_NET_POLL_CONTROLLER
1566 dev->poll_controller = poll_vortex;
1567#endif
1568 if (pdev) {
1569 vp->pm_state_valid = 1;
1570 pci_save_state(VORTEX_PCI(vp));
1571 acpi_set_WOL(dev);
1572 }
1573 retval = register_netdev(dev);
1574 if (retval == 0)
1575 return 0;
1576
1577free_ring:
1578 pci_free_consistent(pdev,
1579 sizeof(struct boom_rx_desc) * RX_RING_SIZE
1580 + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
1581 vp->rx_ring,
1582 vp->rx_ring_dma);
1583free_region:
1584 if (vp->must_free_region)
John W. Linville62afe592005-11-07 00:58:02 -08001585 release_region(dev->base_addr, vci->io_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 free_netdev(dev);
1587 printk(KERN_ERR PFX "vortex_probe1 fails. Returns %d\n", retval);
1588out:
1589 return retval;
1590}
1591
1592static void
1593issue_and_wait(struct net_device *dev, int cmd)
1594{
John W. Linville62afe592005-11-07 00:58:02 -08001595 struct vortex_private *vp = netdev_priv(dev);
1596 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 int i;
1598
John W. Linville62afe592005-11-07 00:58:02 -08001599 iowrite16(cmd, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 for (i = 0; i < 2000; i++) {
John W. Linville62afe592005-11-07 00:58:02 -08001601 if (!(ioread16(ioaddr + EL3_STATUS) & CmdInProgress))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return;
1603 }
1604
1605 /* OK, that didn't work. Do it the slow way. One second */
1606 for (i = 0; i < 100000; i++) {
John W. Linville62afe592005-11-07 00:58:02 -08001607 if (!(ioread16(ioaddr + EL3_STATUS) & CmdInProgress)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (vortex_debug > 1)
1609 printk(KERN_INFO "%s: command 0x%04x took %d usecs\n",
1610 dev->name, cmd, i * 10);
1611 return;
1612 }
1613 udelay(10);
1614 }
1615 printk(KERN_ERR "%s: command 0x%04x did not complete! Status=0x%x\n",
John W. Linville62afe592005-11-07 00:58:02 -08001616 dev->name, cmd, ioread16(ioaddr + EL3_STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619static void
1620vortex_up(struct net_device *dev)
1621{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08001623 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 unsigned int config;
1625 int i;
1626
1627 if (VORTEX_PCI(vp)) {
1628 pci_set_power_state(VORTEX_PCI(vp), PCI_D0); /* Go active */
Daniel Ritz3c8fad12005-05-05 16:15:44 -07001629 if (vp->pm_state_valid)
1630 pci_restore_state(VORTEX_PCI(vp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 pci_enable_device(VORTEX_PCI(vp));
1632 }
1633
1634 /* Before initializing select the active media port. */
1635 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08001636 config = ioread32(ioaddr + Wn3_Config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 if (vp->media_override != 7) {
1639 printk(KERN_INFO "%s: Media override to transceiver %d (%s).\n",
1640 dev->name, vp->media_override,
1641 media_tbl[vp->media_override].name);
1642 dev->if_port = vp->media_override;
1643 } else if (vp->autoselect) {
1644 if (vp->has_nway) {
1645 if (vortex_debug > 1)
1646 printk(KERN_INFO "%s: using NWAY device table, not %d\n",
1647 dev->name, dev->if_port);
1648 dev->if_port = XCVR_NWAY;
1649 } else {
1650 /* Find first available media type, starting with 100baseTx. */
1651 dev->if_port = XCVR_100baseTx;
1652 while (! (vp->available_media & media_tbl[dev->if_port].mask))
1653 dev->if_port = media_tbl[dev->if_port].next;
1654 if (vortex_debug > 1)
1655 printk(KERN_INFO "%s: first available media type: %s\n",
1656 dev->name, media_tbl[dev->if_port].name);
1657 }
1658 } else {
1659 dev->if_port = vp->default_media;
1660 if (vortex_debug > 1)
1661 printk(KERN_INFO "%s: using default media %s\n",
1662 dev->name, media_tbl[dev->if_port].name);
1663 }
1664
1665 init_timer(&vp->timer);
1666 vp->timer.expires = RUN_AT(media_tbl[dev->if_port].wait);
1667 vp->timer.data = (unsigned long)dev;
1668 vp->timer.function = vortex_timer; /* timer handler */
1669 add_timer(&vp->timer);
1670
1671 init_timer(&vp->rx_oom_timer);
1672 vp->rx_oom_timer.data = (unsigned long)dev;
1673 vp->rx_oom_timer.function = rx_oom_timer;
1674
1675 if (vortex_debug > 1)
1676 printk(KERN_DEBUG "%s: Initial media type %s.\n",
1677 dev->name, media_tbl[dev->if_port].name);
1678
1679 vp->full_duplex = vp->force_fd;
1680 config = BFINS(config, dev->if_port, 20, 4);
1681 if (vortex_debug > 6)
1682 printk(KERN_DEBUG "vortex_up(): writing 0x%x to InternalConfig\n", config);
John W. Linville62afe592005-11-07 00:58:02 -08001683 iowrite32(config, ioaddr + Wn3_Config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 if (dev->if_port == XCVR_MII || dev->if_port == XCVR_NWAY) {
1686 int mii_reg1, mii_reg5;
1687 EL3WINDOW(4);
1688 /* Read BMSR (reg1) only to clear old status. */
Neil Horman106427e2005-11-07 00:58:03 -08001689 mii_reg1 = mdio_read(dev, vp->phys[0], MII_BMSR);
1690 mii_reg5 = mdio_read(dev, vp->phys[0], MII_LPA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (mii_reg5 == 0xffff || mii_reg5 == 0x0000) {
1692 netif_carrier_off(dev); /* No MII device or no link partner report */
1693 } else {
1694 mii_reg5 &= vp->advertising;
1695 if ((mii_reg5 & 0x0100) != 0 /* 100baseTx-FD */
1696 || (mii_reg5 & 0x00C0) == 0x0040) /* 10T-FD, but not 100-HD */
1697 vp->full_duplex = 1;
1698 netif_carrier_on(dev);
1699 }
1700 vp->partner_flow_ctrl = ((mii_reg5 & 0x0400) != 0);
1701 if (vortex_debug > 1)
1702 printk(KERN_INFO "%s: MII #%d status %4.4x, link partner capability %4.4x,"
1703 " info1 %04x, setting %s-duplex.\n",
1704 dev->name, vp->phys[0],
1705 mii_reg1, mii_reg5,
1706 vp->info1, ((vp->info1 & 0x8000) || vp->full_duplex) ? "full" : "half");
1707 EL3WINDOW(3);
1708 }
1709
1710 /* Set the full-duplex bit. */
John W. Linville62afe592005-11-07 00:58:02 -08001711 iowrite16( ((vp->info1 & 0x8000) || vp->full_duplex ? 0x20 : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 (vp->large_frames ? 0x40 : 0) |
1713 ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
1714 ioaddr + Wn3_MAC_Ctrl);
1715
1716 if (vortex_debug > 1) {
1717 printk(KERN_DEBUG "%s: vortex_up() InternalConfig %8.8x.\n",
1718 dev->name, config);
1719 }
1720
1721 issue_and_wait(dev, TxReset);
1722 /*
1723 * Don't reset the PHY - that upsets autonegotiation during DHCP operations.
1724 */
1725 issue_and_wait(dev, RxReset|0x04);
1726
John W. Linville62afe592005-11-07 00:58:02 -08001727 iowrite16(SetStatusEnb | 0x00, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 if (vortex_debug > 1) {
1730 EL3WINDOW(4);
1731 printk(KERN_DEBUG "%s: vortex_up() irq %d media status %4.4x.\n",
John W. Linville62afe592005-11-07 00:58:02 -08001732 dev->name, dev->irq, ioread16(ioaddr + Wn4_Media));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734
1735 /* Set the station address and mask in window 2 each time opened. */
1736 EL3WINDOW(2);
1737 for (i = 0; i < 6; i++)
John W. Linville62afe592005-11-07 00:58:02 -08001738 iowrite8(dev->dev_addr[i], ioaddr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 for (; i < 12; i+=2)
John W. Linville62afe592005-11-07 00:58:02 -08001740 iowrite16(0, ioaddr + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 if (vp->cb_fn_base) {
John W. Linville62afe592005-11-07 00:58:02 -08001743 unsigned short n = ioread16(ioaddr + Wn2_ResetOptions) & ~0x4010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (vp->drv_flags & INVERT_LED_PWR)
1745 n |= 0x10;
1746 if (vp->drv_flags & INVERT_MII_PWR)
1747 n |= 0x4000;
John W. Linville62afe592005-11-07 00:58:02 -08001748 iowrite16(n, ioaddr + Wn2_ResetOptions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750
1751 if (dev->if_port == XCVR_10base2)
1752 /* Start the thinnet transceiver. We should really wait 50ms...*/
John W. Linville62afe592005-11-07 00:58:02 -08001753 iowrite16(StartCoax, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (dev->if_port != XCVR_NWAY) {
1755 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08001756 iowrite16((ioread16(ioaddr + Wn4_Media) & ~(Media_10TP|Media_SQE)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
1758 }
1759
1760 /* Switch to the stats window, and clear all stats by reading. */
John W. Linville62afe592005-11-07 00:58:02 -08001761 iowrite16(StatsDisable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 EL3WINDOW(6);
1763 for (i = 0; i < 10; i++)
John W. Linville62afe592005-11-07 00:58:02 -08001764 ioread8(ioaddr + i);
1765 ioread16(ioaddr + 10);
1766 ioread16(ioaddr + 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /* New: On the Vortex we must also clear the BadSSD counter. */
1768 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08001769 ioread8(ioaddr + 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* ..and on the Boomerang we enable the extra statistics bits. */
John W. Linville62afe592005-11-07 00:58:02 -08001771 iowrite16(0x0040, ioaddr + Wn4_NetDiag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 /* Switch to register set 7 for normal use. */
1774 EL3WINDOW(7);
1775
1776 if (vp->full_bus_master_rx) { /* Boomerang bus master. */
1777 vp->cur_rx = vp->dirty_rx = 0;
1778 /* Initialize the RxEarly register as recommended. */
John W. Linville62afe592005-11-07 00:58:02 -08001779 iowrite16(SetRxThreshold + (1536>>2), ioaddr + EL3_CMD);
1780 iowrite32(0x0020, ioaddr + PktStatus);
1781 iowrite32(vp->rx_ring_dma, ioaddr + UpListPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783 if (vp->full_bus_master_tx) { /* Boomerang bus master Tx. */
1784 vp->cur_tx = vp->dirty_tx = 0;
1785 if (vp->drv_flags & IS_BOOMERANG)
John W. Linville62afe592005-11-07 00:58:02 -08001786 iowrite8(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold); /* Room for a packet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Clear the Rx, Tx rings. */
1788 for (i = 0; i < RX_RING_SIZE; i++) /* AKPM: this is done in vortex_open, too */
1789 vp->rx_ring[i].status = 0;
1790 for (i = 0; i < TX_RING_SIZE; i++)
1791 vp->tx_skbuff[i] = NULL;
John W. Linville62afe592005-11-07 00:58:02 -08001792 iowrite32(0, ioaddr + DownListPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794 /* Set receiver mode: presumably accept b-case and phys addr only. */
1795 set_rx_mode(dev);
1796 /* enable 802.1q tagged frames */
1797 set_8021q_mode(dev, 1);
John W. Linville62afe592005-11-07 00:58:02 -08001798 iowrite16(StatsEnable, ioaddr + EL3_CMD); /* Turn on statistics. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800// issue_and_wait(dev, SetTxStart|0x07ff);
John W. Linville62afe592005-11-07 00:58:02 -08001801 iowrite16(RxEnable, ioaddr + EL3_CMD); /* Enable the receiver. */
1802 iowrite16(TxEnable, ioaddr + EL3_CMD); /* Enable transmitter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 /* Allow status bits to be seen. */
1804 vp->status_enable = SetStatusEnb | HostError|IntReq|StatsFull|TxComplete|
1805 (vp->full_bus_master_tx ? DownComplete : TxAvailable) |
1806 (vp->full_bus_master_rx ? UpComplete : RxComplete) |
1807 (vp->bus_master ? DMADone : 0);
1808 vp->intr_enable = SetIntrEnb | IntLatch | TxAvailable |
1809 (vp->full_bus_master_rx ? 0 : RxComplete) |
1810 StatsFull | HostError | TxComplete | IntReq
1811 | (vp->bus_master ? DMADone : 0) | UpComplete | DownComplete;
John W. Linville62afe592005-11-07 00:58:02 -08001812 iowrite16(vp->status_enable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 /* Ack all pending events, and set active indicator mask. */
John W. Linville62afe592005-11-07 00:58:02 -08001814 iowrite16(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ioaddr + EL3_CMD);
John W. Linville62afe592005-11-07 00:58:02 -08001816 iowrite16(vp->intr_enable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (vp->cb_fn_base) /* The PCMCIA people are idiots. */
John W. Linville62afe592005-11-07 00:58:02 -08001818 iowrite32(0x8000, vp->cb_fn_base + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 netif_start_queue (dev);
1820}
1821
1822static int
1823vortex_open(struct net_device *dev)
1824{
1825 struct vortex_private *vp = netdev_priv(dev);
1826 int i;
1827 int retval;
1828
1829 /* Use the now-standard shared IRQ implementation. */
1830 if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ?
1831 &boomerang_interrupt : &vortex_interrupt, SA_SHIRQ, dev->name, dev))) {
1832 printk(KERN_ERR "%s: Could not reserve IRQ %d\n", dev->name, dev->irq);
1833 goto out;
1834 }
1835
1836 if (vp->full_bus_master_rx) { /* Boomerang bus master. */
1837 if (vortex_debug > 2)
1838 printk(KERN_DEBUG "%s: Filling in the Rx ring.\n", dev->name);
1839 for (i = 0; i < RX_RING_SIZE; i++) {
1840 struct sk_buff *skb;
1841 vp->rx_ring[i].next = cpu_to_le32(vp->rx_ring_dma + sizeof(struct boom_rx_desc) * (i+1));
1842 vp->rx_ring[i].status = 0; /* Clear complete bit. */
1843 vp->rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ | LAST_FRAG);
1844 skb = dev_alloc_skb(PKT_BUF_SZ);
1845 vp->rx_skbuff[i] = skb;
1846 if (skb == NULL)
1847 break; /* Bad news! */
1848 skb->dev = dev; /* Mark as being used by this device. */
1849 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
David S. Miller689be432005-06-28 15:25:31 -07001850 vp->rx_ring[i].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852 if (i != RX_RING_SIZE) {
1853 int j;
1854 printk(KERN_EMERG "%s: no memory for rx ring\n", dev->name);
1855 for (j = 0; j < i; j++) {
1856 if (vp->rx_skbuff[j]) {
1857 dev_kfree_skb(vp->rx_skbuff[j]);
1858 vp->rx_skbuff[j] = NULL;
1859 }
1860 }
1861 retval = -ENOMEM;
1862 goto out_free_irq;
1863 }
1864 /* Wrap the ring. */
1865 vp->rx_ring[i-1].next = cpu_to_le32(vp->rx_ring_dma);
1866 }
1867
1868 vortex_up(dev);
1869 return 0;
1870
1871out_free_irq:
1872 free_irq(dev->irq, dev);
1873out:
1874 if (vortex_debug > 1)
1875 printk(KERN_ERR "%s: vortex_open() fails: returning %d\n", dev->name, retval);
1876 return retval;
1877}
1878
1879static void
1880vortex_timer(unsigned long data)
1881{
1882 struct net_device *dev = (struct net_device *)data;
1883 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08001884 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 int next_tick = 60*HZ;
1886 int ok = 0;
1887 int media_status, mii_status, old_window;
1888
1889 if (vortex_debug > 2) {
1890 printk(KERN_DEBUG "%s: Media selection timer tick happened, %s.\n",
1891 dev->name, media_tbl[dev->if_port].name);
1892 printk(KERN_DEBUG "dev->watchdog_timeo=%d\n", dev->watchdog_timeo);
1893 }
1894
1895 if (vp->medialock)
1896 goto leave_media_alone;
1897 disable_irq(dev->irq);
John W. Linville62afe592005-11-07 00:58:02 -08001898 old_window = ioread16(ioaddr + EL3_CMD) >> 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08001900 media_status = ioread16(ioaddr + Wn4_Media);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 switch (dev->if_port) {
1902 case XCVR_10baseT: case XCVR_100baseTx: case XCVR_100baseFx:
1903 if (media_status & Media_LnkBeat) {
1904 netif_carrier_on(dev);
1905 ok = 1;
1906 if (vortex_debug > 1)
1907 printk(KERN_DEBUG "%s: Media %s has link beat, %x.\n",
1908 dev->name, media_tbl[dev->if_port].name, media_status);
1909 } else {
1910 netif_carrier_off(dev);
1911 if (vortex_debug > 1) {
1912 printk(KERN_DEBUG "%s: Media %s has no link beat, %x.\n",
1913 dev->name, media_tbl[dev->if_port].name, media_status);
1914 }
1915 }
1916 break;
1917 case XCVR_MII: case XCVR_NWAY:
1918 {
1919 spin_lock_bh(&vp->lock);
Neil Horman106427e2005-11-07 00:58:03 -08001920 mii_status = mdio_read(dev, vp->phys[0], MII_BMSR);
Tommy Christensend9e46de2005-11-07 00:58:04 -08001921 if (!(mii_status & BMSR_LSTATUS)) {
1922 /* Re-read to get actual link status */
1923 mii_status = mdio_read(dev, vp->phys[0], MII_BMSR);
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 ok = 1;
1926 if (vortex_debug > 2)
1927 printk(KERN_DEBUG "%s: MII transceiver has status %4.4x.\n",
1928 dev->name, mii_status);
1929 if (mii_status & BMSR_LSTATUS) {
Neil Horman106427e2005-11-07 00:58:03 -08001930 int mii_reg5 = mdio_read(dev, vp->phys[0], MII_LPA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (! vp->force_fd && mii_reg5 != 0xffff) {
1932 int duplex;
1933
1934 mii_reg5 &= vp->advertising;
1935 duplex = (mii_reg5&0x0100) || (mii_reg5 & 0x01C0) == 0x0040;
1936 if (vp->full_duplex != duplex) {
1937 vp->full_duplex = duplex;
1938 printk(KERN_INFO "%s: Setting %s-duplex based on MII "
1939 "#%d link partner capability of %4.4x.\n",
1940 dev->name, vp->full_duplex ? "full" : "half",
1941 vp->phys[0], mii_reg5);
1942 /* Set the full-duplex bit. */
1943 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08001944 iowrite16( (vp->full_duplex ? 0x20 : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 (vp->large_frames ? 0x40 : 0) |
1946 ((vp->full_duplex && vp->flow_ctrl && vp->partner_flow_ctrl) ? 0x100 : 0),
1947 ioaddr + Wn3_MAC_Ctrl);
1948 if (vortex_debug > 1)
1949 printk(KERN_DEBUG "Setting duplex in Wn3_MAC_Ctrl\n");
1950 /* AKPM: bug: should reset Tx and Rx after setting Duplex. Page 180 */
1951 }
1952 }
1953 netif_carrier_on(dev);
1954 } else {
1955 netif_carrier_off(dev);
1956 }
1957 spin_unlock_bh(&vp->lock);
1958 }
1959 break;
1960 default: /* Other media types handled by Tx timeouts. */
1961 if (vortex_debug > 1)
1962 printk(KERN_DEBUG "%s: Media %s has no indication, %x.\n",
1963 dev->name, media_tbl[dev->if_port].name, media_status);
1964 ok = 1;
1965 }
1966 if ( ! ok) {
1967 unsigned int config;
1968
1969 do {
1970 dev->if_port = media_tbl[dev->if_port].next;
1971 } while ( ! (vp->available_media & media_tbl[dev->if_port].mask));
1972 if (dev->if_port == XCVR_Default) { /* Go back to default. */
1973 dev->if_port = vp->default_media;
1974 if (vortex_debug > 1)
1975 printk(KERN_DEBUG "%s: Media selection failing, using default "
1976 "%s port.\n",
1977 dev->name, media_tbl[dev->if_port].name);
1978 } else {
1979 if (vortex_debug > 1)
1980 printk(KERN_DEBUG "%s: Media selection failed, now trying "
1981 "%s port.\n",
1982 dev->name, media_tbl[dev->if_port].name);
1983 next_tick = media_tbl[dev->if_port].wait;
1984 }
John W. Linville62afe592005-11-07 00:58:02 -08001985 iowrite16((media_status & ~(Media_10TP|Media_SQE)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 media_tbl[dev->if_port].media_bits, ioaddr + Wn4_Media);
1987
1988 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08001989 config = ioread32(ioaddr + Wn3_Config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 config = BFINS(config, dev->if_port, 20, 4);
John W. Linville62afe592005-11-07 00:58:02 -08001991 iowrite32(config, ioaddr + Wn3_Config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
John W. Linville62afe592005-11-07 00:58:02 -08001993 iowrite16(dev->if_port == XCVR_10base2 ? StartCoax : StopCoax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 ioaddr + EL3_CMD);
1995 if (vortex_debug > 1)
1996 printk(KERN_DEBUG "wrote 0x%08x to Wn3_Config\n", config);
1997 /* AKPM: FIXME: Should reset Rx & Tx here. P60 of 3c90xc.pdf */
1998 }
1999 EL3WINDOW(old_window);
2000 enable_irq(dev->irq);
2001
2002leave_media_alone:
2003 if (vortex_debug > 2)
2004 printk(KERN_DEBUG "%s: Media selection timer finished, %s.\n",
2005 dev->name, media_tbl[dev->if_port].name);
2006
2007 mod_timer(&vp->timer, RUN_AT(next_tick));
2008 if (vp->deferred)
John W. Linville62afe592005-11-07 00:58:02 -08002009 iowrite16(FakeIntr, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return;
2011}
2012
2013static void vortex_tx_timeout(struct net_device *dev)
2014{
2015 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002016 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 printk(KERN_ERR "%s: transmit timed out, tx_status %2.2x status %4.4x.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002019 dev->name, ioread8(ioaddr + TxStatus),
2020 ioread16(ioaddr + EL3_STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 EL3WINDOW(4);
2022 printk(KERN_ERR " diagnostics: net %04x media %04x dma %08x fifo %04x\n",
John W. Linville62afe592005-11-07 00:58:02 -08002023 ioread16(ioaddr + Wn4_NetDiag),
2024 ioread16(ioaddr + Wn4_Media),
2025 ioread32(ioaddr + PktStatus),
2026 ioread16(ioaddr + Wn4_FIFODiag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /* Slight code bloat to be user friendly. */
John W. Linville62afe592005-11-07 00:58:02 -08002028 if ((ioread8(ioaddr + TxStatus) & 0x88) == 0x88)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 printk(KERN_ERR "%s: Transmitter encountered 16 collisions --"
2030 " network cable problem?\n", dev->name);
John W. Linville62afe592005-11-07 00:58:02 -08002031 if (ioread16(ioaddr + EL3_STATUS) & IntLatch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 printk(KERN_ERR "%s: Interrupt posted but not delivered --"
2033 " IRQ blocked by another device?\n", dev->name);
2034 /* Bad idea here.. but we might as well handle a few events. */
2035 {
2036 /*
2037 * Block interrupts because vortex_interrupt does a bare spin_lock()
2038 */
2039 unsigned long flags;
2040 local_irq_save(flags);
2041 if (vp->full_bus_master_tx)
2042 boomerang_interrupt(dev->irq, dev, NULL);
2043 else
2044 vortex_interrupt(dev->irq, dev, NULL);
2045 local_irq_restore(flags);
2046 }
2047 }
2048
2049 if (vortex_debug > 0)
2050 dump_tx_ring(dev);
2051
2052 issue_and_wait(dev, TxReset);
2053
2054 vp->stats.tx_errors++;
2055 if (vp->full_bus_master_tx) {
2056 printk(KERN_DEBUG "%s: Resetting the Tx ring pointer.\n", dev->name);
John W. Linville62afe592005-11-07 00:58:02 -08002057 if (vp->cur_tx - vp->dirty_tx > 0 && ioread32(ioaddr + DownListPtr) == 0)
2058 iowrite32(vp->tx_ring_dma + (vp->dirty_tx % TX_RING_SIZE) * sizeof(struct boom_tx_desc),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 ioaddr + DownListPtr);
2060 if (vp->cur_tx - vp->dirty_tx < TX_RING_SIZE)
2061 netif_wake_queue (dev);
2062 if (vp->drv_flags & IS_BOOMERANG)
John W. Linville62afe592005-11-07 00:58:02 -08002063 iowrite8(PKT_BUF_SZ>>8, ioaddr + TxFreeThreshold);
2064 iowrite16(DownUnstall, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 } else {
2066 vp->stats.tx_dropped++;
2067 netif_wake_queue(dev);
2068 }
2069
2070 /* Issue Tx Enable */
John W. Linville62afe592005-11-07 00:58:02 -08002071 iowrite16(TxEnable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 dev->trans_start = jiffies;
2073
2074 /* Switch to register set 7 for normal use. */
2075 EL3WINDOW(7);
2076}
2077
2078/*
2079 * Handle uncommon interrupt sources. This is a separate routine to minimize
2080 * the cache impact.
2081 */
2082static void
2083vortex_error(struct net_device *dev, int status)
2084{
2085 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002086 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 int do_tx_reset = 0, reset_mask = 0;
2088 unsigned char tx_status = 0;
2089
2090 if (vortex_debug > 2) {
2091 printk(KERN_ERR "%s: vortex_error(), status=0x%x\n", dev->name, status);
2092 }
2093
2094 if (status & TxComplete) { /* Really "TxError" for us. */
John W. Linville62afe592005-11-07 00:58:02 -08002095 tx_status = ioread8(ioaddr + TxStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 /* Presumably a tx-timeout. We must merely re-enable. */
2097 if (vortex_debug > 2
2098 || (tx_status != 0x88 && vortex_debug > 0)) {
2099 printk(KERN_ERR "%s: Transmit error, Tx status register %2.2x.\n",
2100 dev->name, tx_status);
2101 if (tx_status == 0x82) {
2102 printk(KERN_ERR "Probably a duplex mismatch. See "
2103 "Documentation/networking/vortex.txt\n");
2104 }
2105 dump_tx_ring(dev);
2106 }
2107 if (tx_status & 0x14) vp->stats.tx_fifo_errors++;
2108 if (tx_status & 0x38) vp->stats.tx_aborted_errors++;
John W. Linville62afe592005-11-07 00:58:02 -08002109 iowrite8(0, ioaddr + TxStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (tx_status & 0x30) { /* txJabber or txUnderrun */
2111 do_tx_reset = 1;
2112 } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) { /* maxCollisions */
2113 do_tx_reset = 1;
2114 reset_mask = 0x0108; /* Reset interface logic, but not download logic */
2115 } else { /* Merely re-enable the transmitter. */
John W. Linville62afe592005-11-07 00:58:02 -08002116 iowrite16(TxEnable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118 }
2119
2120 if (status & RxEarly) { /* Rx early is unused. */
2121 vortex_rx(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002122 iowrite16(AckIntr | RxEarly, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 if (status & StatsFull) { /* Empty statistics. */
2125 static int DoneDidThat;
2126 if (vortex_debug > 4)
2127 printk(KERN_DEBUG "%s: Updating stats.\n", dev->name);
2128 update_stats(ioaddr, dev);
2129 /* HACK: Disable statistics as an interrupt source. */
2130 /* This occurs when we have the wrong media type! */
2131 if (DoneDidThat == 0 &&
John W. Linville62afe592005-11-07 00:58:02 -08002132 ioread16(ioaddr + EL3_STATUS) & StatsFull) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 printk(KERN_WARNING "%s: Updating statistics failed, disabling "
2134 "stats as an interrupt source.\n", dev->name);
2135 EL3WINDOW(5);
John W. Linville62afe592005-11-07 00:58:02 -08002136 iowrite16(SetIntrEnb | (ioread16(ioaddr + 10) & ~StatsFull), ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 vp->intr_enable &= ~StatsFull;
2138 EL3WINDOW(7);
2139 DoneDidThat++;
2140 }
2141 }
2142 if (status & IntReq) { /* Restore all interrupt sources. */
John W. Linville62afe592005-11-07 00:58:02 -08002143 iowrite16(vp->status_enable, ioaddr + EL3_CMD);
2144 iowrite16(vp->intr_enable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146 if (status & HostError) {
2147 u16 fifo_diag;
2148 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08002149 fifo_diag = ioread16(ioaddr + Wn4_FIFODiag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 printk(KERN_ERR "%s: Host error, FIFO diagnostic register %4.4x.\n",
2151 dev->name, fifo_diag);
2152 /* Adapter failure requires Tx/Rx reset and reinit. */
2153 if (vp->full_bus_master_tx) {
John W. Linville62afe592005-11-07 00:58:02 -08002154 int bus_status = ioread32(ioaddr + PktStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /* 0x80000000 PCI master abort. */
2156 /* 0x40000000 PCI target abort. */
2157 if (vortex_debug)
2158 printk(KERN_ERR "%s: PCI bus error, bus status %8.8x\n", dev->name, bus_status);
2159
2160 /* In this case, blow the card away */
2161 /* Must not enter D3 or we can't legally issue the reset! */
2162 vortex_down(dev, 0);
2163 issue_and_wait(dev, TotalReset | 0xff);
2164 vortex_up(dev); /* AKPM: bug. vortex_up() assumes that the rx ring is full. It may not be. */
2165 } else if (fifo_diag & 0x0400)
2166 do_tx_reset = 1;
2167 if (fifo_diag & 0x3000) {
2168 /* Reset Rx fifo and upload logic */
2169 issue_and_wait(dev, RxReset|0x07);
2170 /* Set the Rx filter to the current state. */
2171 set_rx_mode(dev);
2172 /* enable 802.1q VLAN tagged frames */
2173 set_8021q_mode(dev, 1);
John W. Linville62afe592005-11-07 00:58:02 -08002174 iowrite16(RxEnable, ioaddr + EL3_CMD); /* Re-enable the receiver. */
2175 iowrite16(AckIntr | HostError, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
2177 }
2178
2179 if (do_tx_reset) {
2180 issue_and_wait(dev, TxReset|reset_mask);
John W. Linville62afe592005-11-07 00:58:02 -08002181 iowrite16(TxEnable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (!vp->full_bus_master_tx)
2183 netif_wake_queue(dev);
2184 }
2185}
2186
2187static int
2188vortex_start_xmit(struct sk_buff *skb, struct net_device *dev)
2189{
2190 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002191 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 /* Put out the doubleword header... */
John W. Linville62afe592005-11-07 00:58:02 -08002194 iowrite32(skb->len, ioaddr + TX_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (vp->bus_master) {
2196 /* Set the bus-master controller to transfer the packet. */
2197 int len = (skb->len + 3) & ~3;
John W. Linville62afe592005-11-07 00:58:02 -08002198 iowrite32( vp->tx_skb_dma = pci_map_single(VORTEX_PCI(vp), skb->data, len, PCI_DMA_TODEVICE),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 ioaddr + Wn7_MasterAddr);
John W. Linville62afe592005-11-07 00:58:02 -08002200 iowrite16(len, ioaddr + Wn7_MasterLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 vp->tx_skb = skb;
John W. Linville62afe592005-11-07 00:58:02 -08002202 iowrite16(StartDMADown, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 /* netif_wake_queue() will be called at the DMADone interrupt. */
2204 } else {
2205 /* ... and the packet rounded to a doubleword. */
John W. Linville62afe592005-11-07 00:58:02 -08002206 iowrite32_rep(ioaddr + TX_FIFO, skb->data, (skb->len + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 dev_kfree_skb (skb);
John W. Linville62afe592005-11-07 00:58:02 -08002208 if (ioread16(ioaddr + TxFree) > 1536) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 netif_start_queue (dev); /* AKPM: redundant? */
2210 } else {
2211 /* Interrupt us when the FIFO has room for max-sized packet. */
2212 netif_stop_queue(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002213 iowrite16(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215 }
2216
2217 dev->trans_start = jiffies;
2218
2219 /* Clear the Tx status stack. */
2220 {
2221 int tx_status;
2222 int i = 32;
2223
John W. Linville62afe592005-11-07 00:58:02 -08002224 while (--i > 0 && (tx_status = ioread8(ioaddr + TxStatus)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (tx_status & 0x3C) { /* A Tx-disabling error occurred. */
2226 if (vortex_debug > 2)
2227 printk(KERN_DEBUG "%s: Tx error, status %2.2x.\n",
2228 dev->name, tx_status);
2229 if (tx_status & 0x04) vp->stats.tx_fifo_errors++;
2230 if (tx_status & 0x38) vp->stats.tx_aborted_errors++;
2231 if (tx_status & 0x30) {
2232 issue_and_wait(dev, TxReset);
2233 }
John W. Linville62afe592005-11-07 00:58:02 -08002234 iowrite16(TxEnable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
John W. Linville62afe592005-11-07 00:58:02 -08002236 iowrite8(0x00, ioaddr + TxStatus); /* Pop the status stack. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238 }
2239 return 0;
2240}
2241
2242static int
2243boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev)
2244{
2245 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002246 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 /* Calculate the next Tx descriptor entry. */
2248 int entry = vp->cur_tx % TX_RING_SIZE;
2249 struct boom_tx_desc *prev_entry = &vp->tx_ring[(vp->cur_tx-1) % TX_RING_SIZE];
2250 unsigned long flags;
2251
2252 if (vortex_debug > 6) {
2253 printk(KERN_DEBUG "boomerang_start_xmit()\n");
John W. Linville0f667ff2005-06-21 17:15:14 -07002254 printk(KERN_DEBUG "%s: Trying to send a packet, Tx index %d.\n",
2255 dev->name, vp->cur_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
2257
2258 if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) {
2259 if (vortex_debug > 0)
2260 printk(KERN_WARNING "%s: BUG! Tx Ring full, refusing to send buffer.\n",
2261 dev->name);
2262 netif_stop_queue(dev);
2263 return 1;
2264 }
2265
2266 vp->tx_skbuff[entry] = skb;
2267
2268 vp->tx_ring[entry].next = 0;
2269#if DO_ZEROCOPY
2270 if (skb->ip_summed != CHECKSUM_HW)
2271 vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
2272 else
2273 vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded | AddTCPChksum | AddUDPChksum);
2274
2275 if (!skb_shinfo(skb)->nr_frags) {
2276 vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data,
2277 skb->len, PCI_DMA_TODEVICE));
2278 vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len | LAST_FRAG);
2279 } else {
2280 int i;
2281
2282 vp->tx_ring[entry].frag[0].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data,
2283 skb->len-skb->data_len, PCI_DMA_TODEVICE));
2284 vp->tx_ring[entry].frag[0].length = cpu_to_le32(skb->len-skb->data_len);
2285
2286 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2287 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2288
2289 vp->tx_ring[entry].frag[i+1].addr =
2290 cpu_to_le32(pci_map_single(VORTEX_PCI(vp),
2291 (void*)page_address(frag->page) + frag->page_offset,
2292 frag->size, PCI_DMA_TODEVICE));
2293
2294 if (i == skb_shinfo(skb)->nr_frags-1)
2295 vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size|LAST_FRAG);
2296 else
2297 vp->tx_ring[entry].frag[i+1].length = cpu_to_le32(frag->size);
2298 }
2299 }
2300#else
2301 vp->tx_ring[entry].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, skb->len, PCI_DMA_TODEVICE));
2302 vp->tx_ring[entry].length = cpu_to_le32(skb->len | LAST_FRAG);
2303 vp->tx_ring[entry].status = cpu_to_le32(skb->len | TxIntrUploaded);
2304#endif
2305
2306 spin_lock_irqsave(&vp->lock, flags);
2307 /* Wait for the stall to complete. */
2308 issue_and_wait(dev, DownStall);
2309 prev_entry->next = cpu_to_le32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc));
John W. Linville62afe592005-11-07 00:58:02 -08002310 if (ioread32(ioaddr + DownListPtr) == 0) {
2311 iowrite32(vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc), ioaddr + DownListPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 vp->queued_packet++;
2313 }
2314
2315 vp->cur_tx++;
2316 if (vp->cur_tx - vp->dirty_tx > TX_RING_SIZE - 1) {
2317 netif_stop_queue (dev);
2318 } else { /* Clear previous interrupt enable. */
2319#if defined(tx_interrupt_mitigation)
2320 /* Dubious. If in boomeang_interrupt "faster" cyclone ifdef
2321 * were selected, this would corrupt DN_COMPLETE. No?
2322 */
2323 prev_entry->status &= cpu_to_le32(~TxIntrUploaded);
2324#endif
2325 }
John W. Linville62afe592005-11-07 00:58:02 -08002326 iowrite16(DownUnstall, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 spin_unlock_irqrestore(&vp->lock, flags);
2328 dev->trans_start = jiffies;
2329 return 0;
2330}
2331
2332/* The interrupt handler does all of the Rx thread work and cleans up
2333 after the Tx thread. */
2334
2335/*
2336 * This is the ISR for the vortex series chips.
2337 * full_bus_master_tx == 0 && full_bus_master_rx == 0
2338 */
2339
2340static irqreturn_t
2341vortex_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2342{
2343 struct net_device *dev = dev_id;
2344 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002345 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 int status;
2347 int work_done = max_interrupt_work;
2348 int handled = 0;
2349
John W. Linville62afe592005-11-07 00:58:02 -08002350 ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 spin_lock(&vp->lock);
2352
John W. Linville62afe592005-11-07 00:58:02 -08002353 status = ioread16(ioaddr + EL3_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 if (vortex_debug > 6)
2356 printk("vortex_interrupt(). status=0x%4x\n", status);
2357
2358 if ((status & IntLatch) == 0)
2359 goto handler_exit; /* No interrupt: shared IRQs cause this */
2360 handled = 1;
2361
2362 if (status & IntReq) {
2363 status |= vp->deferred;
2364 vp->deferred = 0;
2365 }
2366
2367 if (status == 0xffff) /* h/w no longer present (hotplug)? */
2368 goto handler_exit;
2369
2370 if (vortex_debug > 4)
2371 printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002372 dev->name, status, ioread8(ioaddr + Timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374 do {
2375 if (vortex_debug > 5)
2376 printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.\n",
2377 dev->name, status);
2378 if (status & RxComplete)
2379 vortex_rx(dev);
2380
2381 if (status & TxAvailable) {
2382 if (vortex_debug > 5)
2383 printk(KERN_DEBUG " TX room bit was handled.\n");
2384 /* There's room in the FIFO for a full-sized packet. */
John W. Linville62afe592005-11-07 00:58:02 -08002385 iowrite16(AckIntr | TxAvailable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 netif_wake_queue (dev);
2387 }
2388
2389 if (status & DMADone) {
John W. Linville62afe592005-11-07 00:58:02 -08002390 if (ioread16(ioaddr + Wn7_MasterStatus) & 0x1000) {
2391 iowrite16(0x1000, ioaddr + Wn7_MasterStatus); /* Ack the event. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 pci_unmap_single(VORTEX_PCI(vp), vp->tx_skb_dma, (vp->tx_skb->len + 3) & ~3, PCI_DMA_TODEVICE);
2393 dev_kfree_skb_irq(vp->tx_skb); /* Release the transferred buffer */
John W. Linville62afe592005-11-07 00:58:02 -08002394 if (ioread16(ioaddr + TxFree) > 1536) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 /*
2396 * AKPM: FIXME: I don't think we need this. If the queue was stopped due to
2397 * insufficient FIFO room, the TxAvailable test will succeed and call
2398 * netif_wake_queue()
2399 */
2400 netif_wake_queue(dev);
2401 } else { /* Interrupt when FIFO has room for max-sized packet. */
John W. Linville62afe592005-11-07 00:58:02 -08002402 iowrite16(SetTxThreshold + (1536>>2), ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 netif_stop_queue(dev);
2404 }
2405 }
2406 }
2407 /* Check for all uncommon interrupts at once. */
2408 if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq)) {
2409 if (status == 0xffff)
2410 break;
2411 vortex_error(dev, status);
2412 }
2413
2414 if (--work_done < 0) {
2415 printk(KERN_WARNING "%s: Too much work in interrupt, status "
2416 "%4.4x.\n", dev->name, status);
2417 /* Disable all pending interrupts. */
2418 do {
2419 vp->deferred |= status;
John W. Linville62afe592005-11-07 00:58:02 -08002420 iowrite16(SetStatusEnb | (~vp->deferred & vp->status_enable),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 ioaddr + EL3_CMD);
John W. Linville62afe592005-11-07 00:58:02 -08002422 iowrite16(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
2423 } while ((status = ioread16(ioaddr + EL3_CMD)) & IntLatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 /* The timer will reenable interrupts. */
2425 mod_timer(&vp->timer, jiffies + 1*HZ);
2426 break;
2427 }
2428 /* Acknowledge the IRQ. */
John W. Linville62afe592005-11-07 00:58:02 -08002429 iowrite16(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
2430 } while ((status = ioread16(ioaddr + EL3_STATUS)) & (IntLatch | RxComplete));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 if (vortex_debug > 4)
2433 printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.\n",
2434 dev->name, status);
2435handler_exit:
2436 spin_unlock(&vp->lock);
2437 return IRQ_RETVAL(handled);
2438}
2439
2440/*
2441 * This is the ISR for the boomerang series chips.
2442 * full_bus_master_tx == 1 && full_bus_master_rx == 1
2443 */
2444
2445static irqreturn_t
2446boomerang_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2447{
2448 struct net_device *dev = dev_id;
2449 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002450 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 int status;
2452 int work_done = max_interrupt_work;
2453
John W. Linville62afe592005-11-07 00:58:02 -08002454 ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 /*
2457 * It seems dopey to put the spinlock this early, but we could race against vortex_tx_timeout
2458 * and boomerang_start_xmit
2459 */
2460 spin_lock(&vp->lock);
2461
John W. Linville62afe592005-11-07 00:58:02 -08002462 status = ioread16(ioaddr + EL3_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464 if (vortex_debug > 6)
2465 printk(KERN_DEBUG "boomerang_interrupt. status=0x%4x\n", status);
2466
2467 if ((status & IntLatch) == 0)
2468 goto handler_exit; /* No interrupt: shared IRQs can cause this */
2469
2470 if (status == 0xffff) { /* h/w no longer present (hotplug)? */
2471 if (vortex_debug > 1)
2472 printk(KERN_DEBUG "boomerang_interrupt(1): status = 0xffff\n");
2473 goto handler_exit;
2474 }
2475
2476 if (status & IntReq) {
2477 status |= vp->deferred;
2478 vp->deferred = 0;
2479 }
2480
2481 if (vortex_debug > 4)
2482 printk(KERN_DEBUG "%s: interrupt, status %4.4x, latency %d ticks.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002483 dev->name, status, ioread8(ioaddr + Timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 do {
2485 if (vortex_debug > 5)
2486 printk(KERN_DEBUG "%s: In interrupt loop, status %4.4x.\n",
2487 dev->name, status);
2488 if (status & UpComplete) {
John W. Linville62afe592005-11-07 00:58:02 -08002489 iowrite16(AckIntr | UpComplete, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 if (vortex_debug > 5)
2491 printk(KERN_DEBUG "boomerang_interrupt->boomerang_rx\n");
2492 boomerang_rx(dev);
2493 }
2494
2495 if (status & DownComplete) {
2496 unsigned int dirty_tx = vp->dirty_tx;
2497
John W. Linville62afe592005-11-07 00:58:02 -08002498 iowrite16(AckIntr | DownComplete, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 while (vp->cur_tx - dirty_tx > 0) {
2500 int entry = dirty_tx % TX_RING_SIZE;
2501#if 1 /* AKPM: the latter is faster, but cyclone-only */
John W. Linville62afe592005-11-07 00:58:02 -08002502 if (ioread32(ioaddr + DownListPtr) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 vp->tx_ring_dma + entry * sizeof(struct boom_tx_desc))
2504 break; /* It still hasn't been processed. */
2505#else
2506 if ((vp->tx_ring[entry].status & DN_COMPLETE) == 0)
2507 break; /* It still hasn't been processed. */
2508#endif
2509
2510 if (vp->tx_skbuff[entry]) {
2511 struct sk_buff *skb = vp->tx_skbuff[entry];
2512#if DO_ZEROCOPY
2513 int i;
2514 for (i=0; i<=skb_shinfo(skb)->nr_frags; i++)
2515 pci_unmap_single(VORTEX_PCI(vp),
2516 le32_to_cpu(vp->tx_ring[entry].frag[i].addr),
2517 le32_to_cpu(vp->tx_ring[entry].frag[i].length)&0xFFF,
2518 PCI_DMA_TODEVICE);
2519#else
2520 pci_unmap_single(VORTEX_PCI(vp),
2521 le32_to_cpu(vp->tx_ring[entry].addr), skb->len, PCI_DMA_TODEVICE);
2522#endif
2523 dev_kfree_skb_irq(skb);
2524 vp->tx_skbuff[entry] = NULL;
2525 } else {
2526 printk(KERN_DEBUG "boomerang_interrupt: no skb!\n");
2527 }
2528 /* vp->stats.tx_packets++; Counted below. */
2529 dirty_tx++;
2530 }
2531 vp->dirty_tx = dirty_tx;
2532 if (vp->cur_tx - dirty_tx <= TX_RING_SIZE - 1) {
2533 if (vortex_debug > 6)
2534 printk(KERN_DEBUG "boomerang_interrupt: wake queue\n");
2535 netif_wake_queue (dev);
2536 }
2537 }
2538
2539 /* Check for all uncommon interrupts at once. */
2540 if (status & (HostError | RxEarly | StatsFull | TxComplete | IntReq))
2541 vortex_error(dev, status);
2542
2543 if (--work_done < 0) {
2544 printk(KERN_WARNING "%s: Too much work in interrupt, status "
2545 "%4.4x.\n", dev->name, status);
2546 /* Disable all pending interrupts. */
2547 do {
2548 vp->deferred |= status;
John W. Linville62afe592005-11-07 00:58:02 -08002549 iowrite16(SetStatusEnb | (~vp->deferred & vp->status_enable),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 ioaddr + EL3_CMD);
John W. Linville62afe592005-11-07 00:58:02 -08002551 iowrite16(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD);
2552 } while ((status = ioread16(ioaddr + EL3_CMD)) & IntLatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 /* The timer will reenable interrupts. */
2554 mod_timer(&vp->timer, jiffies + 1*HZ);
2555 break;
2556 }
2557 /* Acknowledge the IRQ. */
John W. Linville62afe592005-11-07 00:58:02 -08002558 iowrite16(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (vp->cb_fn_base) /* The PCMCIA people are idiots. */
John W. Linville62afe592005-11-07 00:58:02 -08002560 iowrite32(0x8000, vp->cb_fn_base + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
John W. Linville62afe592005-11-07 00:58:02 -08002562 } while ((status = ioread16(ioaddr + EL3_STATUS)) & IntLatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564 if (vortex_debug > 4)
2565 printk(KERN_DEBUG "%s: exiting interrupt, status %4.4x.\n",
2566 dev->name, status);
2567handler_exit:
2568 spin_unlock(&vp->lock);
2569 return IRQ_HANDLED;
2570}
2571
2572static int vortex_rx(struct net_device *dev)
2573{
2574 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002575 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 int i;
2577 short rx_status;
2578
2579 if (vortex_debug > 5)
2580 printk(KERN_DEBUG "vortex_rx(): status %4.4x, rx_status %4.4x.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002581 ioread16(ioaddr+EL3_STATUS), ioread16(ioaddr+RxStatus));
2582 while ((rx_status = ioread16(ioaddr + RxStatus)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (rx_status & 0x4000) { /* Error, update stats. */
John W. Linville62afe592005-11-07 00:58:02 -08002584 unsigned char rx_error = ioread8(ioaddr + RxErrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 if (vortex_debug > 2)
2586 printk(KERN_DEBUG " Rx error: status %2.2x.\n", rx_error);
2587 vp->stats.rx_errors++;
2588 if (rx_error & 0x01) vp->stats.rx_over_errors++;
2589 if (rx_error & 0x02) vp->stats.rx_length_errors++;
2590 if (rx_error & 0x04) vp->stats.rx_frame_errors++;
2591 if (rx_error & 0x08) vp->stats.rx_crc_errors++;
2592 if (rx_error & 0x10) vp->stats.rx_length_errors++;
2593 } else {
2594 /* The packet length: up to 4.5K!. */
2595 int pkt_len = rx_status & 0x1fff;
2596 struct sk_buff *skb;
2597
2598 skb = dev_alloc_skb(pkt_len + 5);
2599 if (vortex_debug > 4)
2600 printk(KERN_DEBUG "Receiving packet size %d status %4.4x.\n",
2601 pkt_len, rx_status);
2602 if (skb != NULL) {
2603 skb->dev = dev;
2604 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
2605 /* 'skb_put()' points to the start of sk_buff data area. */
2606 if (vp->bus_master &&
John W. Linville62afe592005-11-07 00:58:02 -08002607 ! (ioread16(ioaddr + Wn7_MasterStatus) & 0x8000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 dma_addr_t dma = pci_map_single(VORTEX_PCI(vp), skb_put(skb, pkt_len),
2609 pkt_len, PCI_DMA_FROMDEVICE);
John W. Linville62afe592005-11-07 00:58:02 -08002610 iowrite32(dma, ioaddr + Wn7_MasterAddr);
2611 iowrite16((skb->len + 3) & ~3, ioaddr + Wn7_MasterLen);
2612 iowrite16(StartDMAUp, ioaddr + EL3_CMD);
2613 while (ioread16(ioaddr + Wn7_MasterStatus) & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 ;
2615 pci_unmap_single(VORTEX_PCI(vp), dma, pkt_len, PCI_DMA_FROMDEVICE);
2616 } else {
John W. Linville62afe592005-11-07 00:58:02 -08002617 ioread32_rep(ioaddr + RX_FIFO,
2618 skb_put(skb, pkt_len),
2619 (pkt_len + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
John W. Linville62afe592005-11-07 00:58:02 -08002621 iowrite16(RxDiscard, ioaddr + EL3_CMD); /* Pop top Rx packet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 skb->protocol = eth_type_trans(skb, dev);
2623 netif_rx(skb);
2624 dev->last_rx = jiffies;
2625 vp->stats.rx_packets++;
2626 /* Wait a limited time to go to next packet. */
2627 for (i = 200; i >= 0; i--)
John W. Linville62afe592005-11-07 00:58:02 -08002628 if ( ! (ioread16(ioaddr + EL3_STATUS) & CmdInProgress))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 break;
2630 continue;
2631 } else if (vortex_debug > 0)
2632 printk(KERN_NOTICE "%s: No memory to allocate a sk_buff of "
2633 "size %d.\n", dev->name, pkt_len);
John W. Linville35b30672005-11-07 00:58:08 -08002634 vp->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 issue_and_wait(dev, RxDiscard);
2637 }
2638
2639 return 0;
2640}
2641
2642static int
2643boomerang_rx(struct net_device *dev)
2644{
2645 struct vortex_private *vp = netdev_priv(dev);
2646 int entry = vp->cur_rx % RX_RING_SIZE;
John W. Linville62afe592005-11-07 00:58:02 -08002647 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 int rx_status;
2649 int rx_work_limit = vp->dirty_rx + RX_RING_SIZE - vp->cur_rx;
2650
2651 if (vortex_debug > 5)
John W. Linville62afe592005-11-07 00:58:02 -08002652 printk(KERN_DEBUG "boomerang_rx(): status %4.4x\n", ioread16(ioaddr+EL3_STATUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654 while ((rx_status = le32_to_cpu(vp->rx_ring[entry].status)) & RxDComplete){
2655 if (--rx_work_limit < 0)
2656 break;
2657 if (rx_status & RxDError) { /* Error, update stats. */
2658 unsigned char rx_error = rx_status >> 16;
2659 if (vortex_debug > 2)
2660 printk(KERN_DEBUG " Rx error: status %2.2x.\n", rx_error);
2661 vp->stats.rx_errors++;
2662 if (rx_error & 0x01) vp->stats.rx_over_errors++;
2663 if (rx_error & 0x02) vp->stats.rx_length_errors++;
2664 if (rx_error & 0x04) vp->stats.rx_frame_errors++;
2665 if (rx_error & 0x08) vp->stats.rx_crc_errors++;
2666 if (rx_error & 0x10) vp->stats.rx_length_errors++;
2667 } else {
2668 /* The packet length: up to 4.5K!. */
2669 int pkt_len = rx_status & 0x1fff;
2670 struct sk_buff *skb;
2671 dma_addr_t dma = le32_to_cpu(vp->rx_ring[entry].addr);
2672
2673 if (vortex_debug > 4)
2674 printk(KERN_DEBUG "Receiving packet size %d status %4.4x.\n",
2675 pkt_len, rx_status);
2676
2677 /* Check if the packet is long enough to just accept without
2678 copying to a properly sized skbuff. */
2679 if (pkt_len < rx_copybreak && (skb = dev_alloc_skb(pkt_len + 2)) != 0) {
2680 skb->dev = dev;
2681 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
2682 pci_dma_sync_single_for_cpu(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2683 /* 'skb_put()' points to the start of sk_buff data area. */
2684 memcpy(skb_put(skb, pkt_len),
David S. Miller689be432005-06-28 15:25:31 -07002685 vp->rx_skbuff[entry]->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 pkt_len);
2687 pci_dma_sync_single_for_device(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2688 vp->rx_copy++;
2689 } else {
2690 /* Pass up the skbuff already on the Rx ring. */
2691 skb = vp->rx_skbuff[entry];
2692 vp->rx_skbuff[entry] = NULL;
2693 skb_put(skb, pkt_len);
2694 pci_unmap_single(VORTEX_PCI(vp), dma, PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2695 vp->rx_nocopy++;
2696 }
2697 skb->protocol = eth_type_trans(skb, dev);
2698 { /* Use hardware checksum info. */
2699 int csum_bits = rx_status & 0xee000000;
2700 if (csum_bits &&
2701 (csum_bits == (IPChksumValid | TCPChksumValid) ||
2702 csum_bits == (IPChksumValid | UDPChksumValid))) {
2703 skb->ip_summed = CHECKSUM_UNNECESSARY;
2704 vp->rx_csumhits++;
2705 }
2706 }
2707 netif_rx(skb);
2708 dev->last_rx = jiffies;
2709 vp->stats.rx_packets++;
2710 }
2711 entry = (++vp->cur_rx) % RX_RING_SIZE;
2712 }
2713 /* Refill the Rx ring buffers. */
2714 for (; vp->cur_rx - vp->dirty_rx > 0; vp->dirty_rx++) {
2715 struct sk_buff *skb;
2716 entry = vp->dirty_rx % RX_RING_SIZE;
2717 if (vp->rx_skbuff[entry] == NULL) {
2718 skb = dev_alloc_skb(PKT_BUF_SZ);
2719 if (skb == NULL) {
2720 static unsigned long last_jif;
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -08002721 if (time_after(jiffies, last_jif + 10 * HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 printk(KERN_WARNING "%s: memory shortage\n", dev->name);
2723 last_jif = jiffies;
2724 }
2725 if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE)
2726 mod_timer(&vp->rx_oom_timer, RUN_AT(HZ * 1));
2727 break; /* Bad news! */
2728 }
2729 skb->dev = dev; /* Mark as being used by this device. */
2730 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
David S. Miller689be432005-06-28 15:25:31 -07002731 vp->rx_ring[entry].addr = cpu_to_le32(pci_map_single(VORTEX_PCI(vp), skb->data, PKT_BUF_SZ, PCI_DMA_FROMDEVICE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 vp->rx_skbuff[entry] = skb;
2733 }
2734 vp->rx_ring[entry].status = 0; /* Clear complete bit. */
John W. Linville62afe592005-11-07 00:58:02 -08002735 iowrite16(UpUnstall, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 }
2737 return 0;
2738}
2739
2740/*
2741 * If we've hit a total OOM refilling the Rx ring we poll once a second
2742 * for some memory. Otherwise there is no way to restart the rx process.
2743 */
2744static void
2745rx_oom_timer(unsigned long arg)
2746{
2747 struct net_device *dev = (struct net_device *)arg;
2748 struct vortex_private *vp = netdev_priv(dev);
2749
2750 spin_lock_irq(&vp->lock);
2751 if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE) /* This test is redundant, but makes me feel good */
2752 boomerang_rx(dev);
2753 if (vortex_debug > 1) {
2754 printk(KERN_DEBUG "%s: rx_oom_timer %s\n", dev->name,
2755 ((vp->cur_rx - vp->dirty_rx) != RX_RING_SIZE) ? "succeeded" : "retrying");
2756 }
2757 spin_unlock_irq(&vp->lock);
2758}
2759
2760static void
2761vortex_down(struct net_device *dev, int final_down)
2762{
2763 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002764 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 netif_stop_queue (dev);
2767
2768 del_timer_sync(&vp->rx_oom_timer);
2769 del_timer_sync(&vp->timer);
2770
2771 /* Turn off statistics ASAP. We update vp->stats below. */
John W. Linville62afe592005-11-07 00:58:02 -08002772 iowrite16(StatsDisable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 /* Disable the receiver and transmitter. */
John W. Linville62afe592005-11-07 00:58:02 -08002775 iowrite16(RxDisable, ioaddr + EL3_CMD);
2776 iowrite16(TxDisable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 /* Disable receiving 802.1q tagged frames */
2779 set_8021q_mode(dev, 0);
2780
2781 if (dev->if_port == XCVR_10base2)
2782 /* Turn off thinnet power. Green! */
John W. Linville62afe592005-11-07 00:58:02 -08002783 iowrite16(StopCoax, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
John W. Linville62afe592005-11-07 00:58:02 -08002785 iowrite16(SetIntrEnb | 0x0000, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787 update_stats(ioaddr, dev);
2788 if (vp->full_bus_master_rx)
John W. Linville62afe592005-11-07 00:58:02 -08002789 iowrite32(0, ioaddr + UpListPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (vp->full_bus_master_tx)
John W. Linville62afe592005-11-07 00:58:02 -08002791 iowrite32(0, ioaddr + DownListPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793 if (final_down && VORTEX_PCI(vp)) {
Daniel Ritz3c8fad12005-05-05 16:15:44 -07002794 vp->pm_state_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 pci_save_state(VORTEX_PCI(vp));
2796 acpi_set_WOL(dev);
2797 }
2798}
2799
2800static int
2801vortex_close(struct net_device *dev)
2802{
2803 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002804 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 int i;
2806
2807 if (netif_device_present(dev))
2808 vortex_down(dev, 1);
2809
2810 if (vortex_debug > 1) {
2811 printk(KERN_DEBUG"%s: vortex_close() status %4.4x, Tx status %2.2x.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002812 dev->name, ioread16(ioaddr + EL3_STATUS), ioread8(ioaddr + TxStatus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 printk(KERN_DEBUG "%s: vortex close stats: rx_nocopy %d rx_copy %d"
2814 " tx_queued %d Rx pre-checksummed %d.\n",
2815 dev->name, vp->rx_nocopy, vp->rx_copy, vp->queued_packet, vp->rx_csumhits);
2816 }
2817
2818#if DO_ZEROCOPY
John W. Linville32fb5f02005-11-07 00:58:05 -08002819 if (vp->rx_csumhits &&
2820 (vp->drv_flags & HAS_HWCKSM) == 0 &&
2821 (vp->card_idx >= MAX_UNITS || hw_checksums[vp->card_idx] == -1)) {
2822 printk(KERN_WARNING "%s supports hardware checksums, and we're "
2823 "not using them!\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 }
2825#endif
2826
2827 free_irq(dev->irq, dev);
2828
2829 if (vp->full_bus_master_rx) { /* Free Boomerang bus master Rx buffers. */
2830 for (i = 0; i < RX_RING_SIZE; i++)
2831 if (vp->rx_skbuff[i]) {
2832 pci_unmap_single( VORTEX_PCI(vp), le32_to_cpu(vp->rx_ring[i].addr),
2833 PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
2834 dev_kfree_skb(vp->rx_skbuff[i]);
2835 vp->rx_skbuff[i] = NULL;
2836 }
2837 }
2838 if (vp->full_bus_master_tx) { /* Free Boomerang bus master Tx buffers. */
2839 for (i = 0; i < TX_RING_SIZE; i++) {
2840 if (vp->tx_skbuff[i]) {
2841 struct sk_buff *skb = vp->tx_skbuff[i];
2842#if DO_ZEROCOPY
2843 int k;
2844
2845 for (k=0; k<=skb_shinfo(skb)->nr_frags; k++)
2846 pci_unmap_single(VORTEX_PCI(vp),
2847 le32_to_cpu(vp->tx_ring[i].frag[k].addr),
2848 le32_to_cpu(vp->tx_ring[i].frag[k].length)&0xFFF,
2849 PCI_DMA_TODEVICE);
2850#else
2851 pci_unmap_single(VORTEX_PCI(vp), le32_to_cpu(vp->tx_ring[i].addr), skb->len, PCI_DMA_TODEVICE);
2852#endif
2853 dev_kfree_skb(skb);
2854 vp->tx_skbuff[i] = NULL;
2855 }
2856 }
2857 }
2858
2859 return 0;
2860}
2861
2862static void
2863dump_tx_ring(struct net_device *dev)
2864{
2865 if (vortex_debug > 0) {
2866 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002867 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869 if (vp->full_bus_master_tx) {
2870 int i;
John W. Linville62afe592005-11-07 00:58:02 -08002871 int stalled = ioread32(ioaddr + PktStatus) & 0x04; /* Possible racy. But it's only debug stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 printk(KERN_ERR " Flags; bus-master %d, dirty %d(%d) current %d(%d)\n",
2874 vp->full_bus_master_tx,
2875 vp->dirty_tx, vp->dirty_tx % TX_RING_SIZE,
2876 vp->cur_tx, vp->cur_tx % TX_RING_SIZE);
2877 printk(KERN_ERR " Transmit list %8.8x vs. %p.\n",
John W. Linville62afe592005-11-07 00:58:02 -08002878 ioread32(ioaddr + DownListPtr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 &vp->tx_ring[vp->dirty_tx % TX_RING_SIZE]);
2880 issue_and_wait(dev, DownStall);
2881 for (i = 0; i < TX_RING_SIZE; i++) {
2882 printk(KERN_ERR " %d: @%p length %8.8x status %8.8x\n", i,
2883 &vp->tx_ring[i],
2884#if DO_ZEROCOPY
2885 le32_to_cpu(vp->tx_ring[i].frag[0].length),
2886#else
2887 le32_to_cpu(vp->tx_ring[i].length),
2888#endif
2889 le32_to_cpu(vp->tx_ring[i].status));
2890 }
2891 if (!stalled)
John W. Linville62afe592005-11-07 00:58:02 -08002892 iowrite16(DownUnstall, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 }
2894 }
2895}
2896
2897static struct net_device_stats *vortex_get_stats(struct net_device *dev)
2898{
2899 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002900 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 unsigned long flags;
2902
2903 if (netif_device_present(dev)) { /* AKPM: Used to be netif_running */
2904 spin_lock_irqsave (&vp->lock, flags);
John W. Linville62afe592005-11-07 00:58:02 -08002905 update_stats(ioaddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 spin_unlock_irqrestore (&vp->lock, flags);
2907 }
2908 return &vp->stats;
2909}
2910
2911/* Update statistics.
2912 Unlike with the EL3 we need not worry about interrupts changing
2913 the window setting from underneath us, but we must still guard
2914 against a race condition with a StatsUpdate interrupt updating the
2915 table. This is done by checking that the ASM (!) code generated uses
2916 atomic updates with '+='.
2917 */
John W. Linville62afe592005-11-07 00:58:02 -08002918static void update_stats(void __iomem *ioaddr, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919{
2920 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002921 int old_window = ioread16(ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 if (old_window == 0xffff) /* Chip suspended or ejected. */
2924 return;
2925 /* Unlike the 3c5x9 we need not turn off stats updates while reading. */
2926 /* Switch to the stats window, and read everything. */
2927 EL3WINDOW(6);
John W. Linville62afe592005-11-07 00:58:02 -08002928 vp->stats.tx_carrier_errors += ioread8(ioaddr + 0);
2929 vp->stats.tx_heartbeat_errors += ioread8(ioaddr + 1);
2930 vp->stats.collisions += ioread8(ioaddr + 3);
2931 vp->stats.tx_window_errors += ioread8(ioaddr + 4);
2932 vp->stats.rx_fifo_errors += ioread8(ioaddr + 5);
2933 vp->stats.tx_packets += ioread8(ioaddr + 6);
2934 vp->stats.tx_packets += (ioread8(ioaddr + 9)&0x30) << 4;
2935 /* Rx packets */ ioread8(ioaddr + 7); /* Must read to clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 /* Don't bother with register 9, an extension of registers 6&7.
2937 If we do use the 6&7 values the atomic update assumption above
2938 is invalid. */
John W. Linville62afe592005-11-07 00:58:02 -08002939 vp->stats.rx_bytes += ioread16(ioaddr + 10);
2940 vp->stats.tx_bytes += ioread16(ioaddr + 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 /* Extra stats for get_ethtool_stats() */
John W. Linville62afe592005-11-07 00:58:02 -08002942 vp->xstats.tx_multiple_collisions += ioread8(ioaddr + 2);
2943 vp->xstats.tx_deferred += ioread8(ioaddr + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 EL3WINDOW(4);
John W. Linville62afe592005-11-07 00:58:02 -08002945 vp->xstats.rx_bad_ssd += ioread8(ioaddr + 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
2947 {
John W. Linville62afe592005-11-07 00:58:02 -08002948 u8 up = ioread8(ioaddr + 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 vp->stats.rx_bytes += (up & 0x0f) << 16;
2950 vp->stats.tx_bytes += (up & 0xf0) << 12;
2951 }
2952
2953 EL3WINDOW(old_window >> 13);
2954 return;
2955}
2956
2957static int vortex_nway_reset(struct net_device *dev)
2958{
2959 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002960 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 unsigned long flags;
2962 int rc;
2963
2964 spin_lock_irqsave(&vp->lock, flags);
2965 EL3WINDOW(4);
2966 rc = mii_nway_restart(&vp->mii);
2967 spin_unlock_irqrestore(&vp->lock, flags);
2968 return rc;
2969}
2970
2971static u32 vortex_get_link(struct net_device *dev)
2972{
2973 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002974 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 unsigned long flags;
2976 int rc;
2977
2978 spin_lock_irqsave(&vp->lock, flags);
2979 EL3WINDOW(4);
2980 rc = mii_link_ok(&vp->mii);
2981 spin_unlock_irqrestore(&vp->lock, flags);
2982 return rc;
2983}
2984
2985static int vortex_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2986{
2987 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08002988 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 unsigned long flags;
2990 int rc;
2991
2992 spin_lock_irqsave(&vp->lock, flags);
2993 EL3WINDOW(4);
2994 rc = mii_ethtool_gset(&vp->mii, cmd);
2995 spin_unlock_irqrestore(&vp->lock, flags);
2996 return rc;
2997}
2998
2999static int vortex_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
3000{
3001 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08003002 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 unsigned long flags;
3004 int rc;
3005
3006 spin_lock_irqsave(&vp->lock, flags);
3007 EL3WINDOW(4);
3008 rc = mii_ethtool_sset(&vp->mii, cmd);
3009 spin_unlock_irqrestore(&vp->lock, flags);
3010 return rc;
3011}
3012
3013static u32 vortex_get_msglevel(struct net_device *dev)
3014{
3015 return vortex_debug;
3016}
3017
3018static void vortex_set_msglevel(struct net_device *dev, u32 dbg)
3019{
3020 vortex_debug = dbg;
3021}
3022
3023static int vortex_get_stats_count(struct net_device *dev)
3024{
3025 return VORTEX_NUM_STATS;
3026}
3027
3028static void vortex_get_ethtool_stats(struct net_device *dev,
3029 struct ethtool_stats *stats, u64 *data)
3030{
3031 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08003032 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 unsigned long flags;
3034
3035 spin_lock_irqsave(&vp->lock, flags);
John W. Linville62afe592005-11-07 00:58:02 -08003036 update_stats(ioaddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 spin_unlock_irqrestore(&vp->lock, flags);
3038
3039 data[0] = vp->xstats.tx_deferred;
3040 data[1] = vp->xstats.tx_multiple_collisions;
3041 data[2] = vp->xstats.rx_bad_ssd;
3042}
3043
3044
3045static void vortex_get_strings(struct net_device *dev, u32 stringset, u8 *data)
3046{
3047 switch (stringset) {
3048 case ETH_SS_STATS:
3049 memcpy(data, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
3050 break;
3051 default:
3052 WARN_ON(1);
3053 break;
3054 }
3055}
3056
3057static void vortex_get_drvinfo(struct net_device *dev,
3058 struct ethtool_drvinfo *info)
3059{
3060 struct vortex_private *vp = netdev_priv(dev);
3061
3062 strcpy(info->driver, DRV_NAME);
3063 strcpy(info->version, DRV_VERSION);
3064 if (VORTEX_PCI(vp)) {
3065 strcpy(info->bus_info, pci_name(VORTEX_PCI(vp)));
3066 } else {
3067 if (VORTEX_EISA(vp))
3068 sprintf(info->bus_info, vp->gendev->bus_id);
3069 else
3070 sprintf(info->bus_info, "EISA 0x%lx %d",
3071 dev->base_addr, dev->irq);
3072 }
3073}
3074
3075static struct ethtool_ops vortex_ethtool_ops = {
3076 .get_drvinfo = vortex_get_drvinfo,
3077 .get_strings = vortex_get_strings,
3078 .get_msglevel = vortex_get_msglevel,
3079 .set_msglevel = vortex_set_msglevel,
3080 .get_ethtool_stats = vortex_get_ethtool_stats,
3081 .get_stats_count = vortex_get_stats_count,
3082 .get_settings = vortex_get_settings,
3083 .set_settings = vortex_set_settings,
3084 .get_link = vortex_get_link,
3085 .nway_reset = vortex_nway_reset,
John W. Linvillebb531fc2005-11-07 00:58:07 -08003086 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087};
3088
3089#ifdef CONFIG_PCI
3090/*
3091 * Must power the device up to do MDIO operations
3092 */
3093static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3094{
3095 int err;
3096 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08003097 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 unsigned long flags;
3099 int state = 0;
3100
3101 if(VORTEX_PCI(vp))
3102 state = VORTEX_PCI(vp)->current_state;
3103
3104 /* The kernel core really should have pci_get_power_state() */
3105
3106 if(state != 0)
3107 pci_set_power_state(VORTEX_PCI(vp), PCI_D0);
3108 spin_lock_irqsave(&vp->lock, flags);
3109 EL3WINDOW(4);
3110 err = generic_mii_ioctl(&vp->mii, if_mii(rq), cmd, NULL);
3111 spin_unlock_irqrestore(&vp->lock, flags);
3112 if(state != 0)
3113 pci_set_power_state(VORTEX_PCI(vp), state);
3114
3115 return err;
3116}
3117#endif
3118
3119
3120/* Pre-Cyclone chips have no documented multicast filter, so the only
3121 multicast setting is to receive all multicast frames. At least
3122 the chip has a very clean way to set the mode, unlike many others. */
3123static void set_rx_mode(struct net_device *dev)
3124{
John W. Linville62afe592005-11-07 00:58:02 -08003125 struct vortex_private *vp = netdev_priv(dev);
3126 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 int new_mode;
3128
3129 if (dev->flags & IFF_PROMISC) {
3130 if (vortex_debug > 0)
3131 printk(KERN_NOTICE "%s: Setting promiscuous mode.\n", dev->name);
3132 new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast|RxProm;
3133 } else if ((dev->mc_list) || (dev->flags & IFF_ALLMULTI)) {
3134 new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast;
3135 } else
3136 new_mode = SetRxFilter | RxStation | RxBroadcast;
3137
John W. Linville62afe592005-11-07 00:58:02 -08003138 iowrite16(new_mode, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139}
3140
3141#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
3142/* Setup the card so that it can receive frames with an 802.1q VLAN tag.
3143 Note that this must be done after each RxReset due to some backwards
3144 compatibility logic in the Cyclone and Tornado ASICs */
3145
3146/* The Ethernet Type used for 802.1q tagged frames */
3147#define VLAN_ETHER_TYPE 0x8100
3148
3149static void set_8021q_mode(struct net_device *dev, int enable)
3150{
3151 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08003152 void __iomem *ioaddr = vp->ioaddr;
3153 int old_window = ioread16(ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 int mac_ctrl;
3155
3156 if ((vp->drv_flags&IS_CYCLONE) || (vp->drv_flags&IS_TORNADO)) {
3157 /* cyclone and tornado chipsets can recognize 802.1q
3158 * tagged frames and treat them correctly */
3159
3160 int max_pkt_size = dev->mtu+14; /* MTU+Ethernet header */
3161 if (enable)
3162 max_pkt_size += 4; /* 802.1Q VLAN tag */
3163
3164 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08003165 iowrite16(max_pkt_size, ioaddr+Wn3_MaxPktSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167 /* set VlanEtherType to let the hardware checksumming
3168 treat tagged frames correctly */
3169 EL3WINDOW(7);
John W. Linville62afe592005-11-07 00:58:02 -08003170 iowrite16(VLAN_ETHER_TYPE, ioaddr+Wn7_VlanEtherType);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 } else {
3172 /* on older cards we have to enable large frames */
3173
3174 vp->large_frames = dev->mtu > 1500 || enable;
3175
3176 EL3WINDOW(3);
John W. Linville62afe592005-11-07 00:58:02 -08003177 mac_ctrl = ioread16(ioaddr+Wn3_MAC_Ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 if (vp->large_frames)
3179 mac_ctrl |= 0x40;
3180 else
3181 mac_ctrl &= ~0x40;
John W. Linville62afe592005-11-07 00:58:02 -08003182 iowrite16(mac_ctrl, ioaddr+Wn3_MAC_Ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184
3185 EL3WINDOW(old_window);
3186}
3187#else
3188
3189static void set_8021q_mode(struct net_device *dev, int enable)
3190{
3191}
3192
3193
3194#endif
3195
3196/* MII transceiver control section.
3197 Read and write the MII registers using software-generated serial
3198 MDIO protocol. See the MII specifications or DP83840A data sheet
3199 for details. */
3200
3201/* The maximum data clock rate is 2.5 Mhz. The minimum timing is usually
3202 met by back-to-back PCI I/O cycles, but we insert a delay to avoid
3203 "overclocking" issues. */
John W. Linville62afe592005-11-07 00:58:02 -08003204#define mdio_delay() ioread32(mdio_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206#define MDIO_SHIFT_CLK 0x01
3207#define MDIO_DIR_WRITE 0x04
3208#define MDIO_DATA_WRITE0 (0x00 | MDIO_DIR_WRITE)
3209#define MDIO_DATA_WRITE1 (0x02 | MDIO_DIR_WRITE)
3210#define MDIO_DATA_READ 0x02
3211#define MDIO_ENB_IN 0x00
3212
3213/* Generate the preamble required for initial synchronization and
3214 a few older transceivers. */
John W. Linville62afe592005-11-07 00:58:02 -08003215static void mdio_sync(void __iomem *ioaddr, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
John W. Linville62afe592005-11-07 00:58:02 -08003217 void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 /* Establish sync by sending at least 32 logic ones. */
3220 while (-- bits >= 0) {
John W. Linville62afe592005-11-07 00:58:02 -08003221 iowrite16(MDIO_DATA_WRITE1, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 mdio_delay();
John W. Linville62afe592005-11-07 00:58:02 -08003223 iowrite16(MDIO_DATA_WRITE1 | MDIO_SHIFT_CLK, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 mdio_delay();
3225 }
3226}
3227
3228static int mdio_read(struct net_device *dev, int phy_id, int location)
3229{
3230 int i;
John W. Linville62afe592005-11-07 00:58:02 -08003231 struct vortex_private *vp = netdev_priv(dev);
3232 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 int read_cmd = (0xf6 << 10) | (phy_id << 5) | location;
3234 unsigned int retval = 0;
John W. Linville62afe592005-11-07 00:58:02 -08003235 void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 if (mii_preamble_required)
3238 mdio_sync(ioaddr, 32);
3239
3240 /* Shift the read command bits out. */
3241 for (i = 14; i >= 0; i--) {
3242 int dataval = (read_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
John W. Linville62afe592005-11-07 00:58:02 -08003243 iowrite16(dataval, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 mdio_delay();
John W. Linville62afe592005-11-07 00:58:02 -08003245 iowrite16(dataval | MDIO_SHIFT_CLK, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 mdio_delay();
3247 }
3248 /* Read the two transition, 16 data, and wire-idle bits. */
3249 for (i = 19; i > 0; i--) {
John W. Linville62afe592005-11-07 00:58:02 -08003250 iowrite16(MDIO_ENB_IN, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 mdio_delay();
John W. Linville62afe592005-11-07 00:58:02 -08003252 retval = (retval << 1) | ((ioread16(mdio_addr) & MDIO_DATA_READ) ? 1 : 0);
3253 iowrite16(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 mdio_delay();
3255 }
3256 return retval & 0x20000 ? 0xffff : retval>>1 & 0xffff;
3257}
3258
3259static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
3260{
John W. Linville62afe592005-11-07 00:58:02 -08003261 struct vortex_private *vp = netdev_priv(dev);
3262 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 int write_cmd = 0x50020000 | (phy_id << 23) | (location << 18) | value;
John W. Linville62afe592005-11-07 00:58:02 -08003264 void __iomem *mdio_addr = ioaddr + Wn4_PhysicalMgmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 int i;
3266
3267 if (mii_preamble_required)
3268 mdio_sync(ioaddr, 32);
3269
3270 /* Shift the command bits out. */
3271 for (i = 31; i >= 0; i--) {
3272 int dataval = (write_cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
John W. Linville62afe592005-11-07 00:58:02 -08003273 iowrite16(dataval, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 mdio_delay();
John W. Linville62afe592005-11-07 00:58:02 -08003275 iowrite16(dataval | MDIO_SHIFT_CLK, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 mdio_delay();
3277 }
3278 /* Leave the interface idle. */
3279 for (i = 1; i >= 0; i--) {
John W. Linville62afe592005-11-07 00:58:02 -08003280 iowrite16(MDIO_ENB_IN, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 mdio_delay();
John W. Linville62afe592005-11-07 00:58:02 -08003282 iowrite16(MDIO_ENB_IN | MDIO_SHIFT_CLK, mdio_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 mdio_delay();
3284 }
3285 return;
3286}
3287
3288/* ACPI: Advanced Configuration and Power Interface. */
3289/* Set Wake-On-LAN mode and put the board into D3 (power-down) state. */
3290static void acpi_set_WOL(struct net_device *dev)
3291{
3292 struct vortex_private *vp = netdev_priv(dev);
John W. Linville62afe592005-11-07 00:58:02 -08003293 void __iomem *ioaddr = vp->ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295 if (vp->enable_wol) {
3296 /* Power up on: 1==Downloaded Filter, 2==Magic Packets, 4==Link Status. */
3297 EL3WINDOW(7);
John W. Linville62afe592005-11-07 00:58:02 -08003298 iowrite16(2, ioaddr + 0x0c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 /* The RxFilter must accept the WOL frames. */
John W. Linville62afe592005-11-07 00:58:02 -08003300 iowrite16(SetRxFilter|RxStation|RxMulticast|RxBroadcast, ioaddr + EL3_CMD);
3301 iowrite16(RxEnable, ioaddr + EL3_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
3303 pci_enable_wake(VORTEX_PCI(vp), 0, 1);
Daniel Ritz3c8fad12005-05-05 16:15:44 -07003304
3305 /* Change the power state to D3; RxEnable doesn't take effect. */
3306 pci_set_power_state(VORTEX_PCI(vp), PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
3310
3311static void __devexit vortex_remove_one (struct pci_dev *pdev)
3312{
3313 struct net_device *dev = pci_get_drvdata(pdev);
3314 struct vortex_private *vp;
3315
3316 if (!dev) {
3317 printk("vortex_remove_one called for Compaq device!\n");
3318 BUG();
3319 }
3320
3321 vp = netdev_priv(dev);
3322
John W. Linville62afe592005-11-07 00:58:02 -08003323 if (vp->cb_fn_base)
3324 pci_iounmap(VORTEX_PCI(vp), vp->cb_fn_base);
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 unregister_netdev(dev);
3327
3328 if (VORTEX_PCI(vp)) {
3329 pci_set_power_state(VORTEX_PCI(vp), PCI_D0); /* Go active */
3330 if (vp->pm_state_valid)
3331 pci_restore_state(VORTEX_PCI(vp));
3332 pci_disable_device(VORTEX_PCI(vp));
3333 }
3334 /* Should really use issue_and_wait() here */
John W. Linville62afe592005-11-07 00:58:02 -08003335 iowrite16(TotalReset | ((vp->drv_flags & EEPROM_RESET) ? 0x04 : 0x14),
3336 vp->ioaddr + EL3_CMD);
3337
3338 pci_iounmap(VORTEX_PCI(vp), vp->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340 pci_free_consistent(pdev,
3341 sizeof(struct boom_rx_desc) * RX_RING_SIZE
3342 + sizeof(struct boom_tx_desc) * TX_RING_SIZE,
3343 vp->rx_ring,
3344 vp->rx_ring_dma);
3345 if (vp->must_free_region)
3346 release_region(dev->base_addr, vp->io_size);
3347 free_netdev(dev);
3348}
3349
3350
3351static struct pci_driver vortex_driver = {
3352 .name = "3c59x",
3353 .probe = vortex_init_one,
3354 .remove = __devexit_p(vortex_remove_one),
3355 .id_table = vortex_pci_tbl,
3356#ifdef CONFIG_PM
3357 .suspend = vortex_suspend,
3358 .resume = vortex_resume,
3359#endif
3360};
3361
3362
3363static int vortex_have_pci;
3364static int vortex_have_eisa;
3365
3366
3367static int __init vortex_init (void)
3368{
3369 int pci_rc, eisa_rc;
3370
3371 pci_rc = pci_module_init(&vortex_driver);
3372 eisa_rc = vortex_eisa_init();
3373
3374 if (pci_rc == 0)
3375 vortex_have_pci = 1;
3376 if (eisa_rc > 0)
3377 vortex_have_eisa = 1;
3378
3379 return (vortex_have_pci + vortex_have_eisa) ? 0 : -ENODEV;
3380}
3381
3382
3383static void __exit vortex_eisa_cleanup (void)
3384{
3385 struct vortex_private *vp;
John W. Linville62afe592005-11-07 00:58:02 -08003386 void __iomem *ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
3388#ifdef CONFIG_EISA
3389 /* Take care of the EISA devices */
3390 eisa_driver_unregister (&vortex_eisa_driver);
3391#endif
3392
3393 if (compaq_net_device) {
3394 vp = compaq_net_device->priv;
John W. Linville62afe592005-11-07 00:58:02 -08003395 ioaddr = ioport_map(compaq_net_device->base_addr,
3396 VORTEX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
3398 unregister_netdev (compaq_net_device);
John W. Linville62afe592005-11-07 00:58:02 -08003399 iowrite16 (TotalReset, ioaddr + EL3_CMD);
3400 release_region(compaq_net_device->base_addr,
3401 VORTEX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
3403 free_netdev (compaq_net_device);
3404 }
3405}
3406
3407
3408static void __exit vortex_cleanup (void)
3409{
3410 if (vortex_have_pci)
3411 pci_unregister_driver (&vortex_driver);
3412 if (vortex_have_eisa)
3413 vortex_eisa_cleanup ();
3414}
3415
3416
3417module_init(vortex_init);
3418module_exit(vortex_cleanup);
3419
3420
3421/*
3422 * Local variables:
3423 * c-indent-level: 4
3424 * c-basic-offset: 4
3425 * tab-width: 4
3426 * End:
3427 */