]> git.ipfire.org Git - people/ms/linux.git/blame - drivers/net/ethernet/dlink/sundance.c
Replace <asm/uaccess.h> with <linux/uaccess.h> globally
[people/ms/linux.git] / drivers / net / ethernet / dlink / sundance.c
CommitLineData
1da177e4
LT
1/* sundance.c: A Linux device driver for the Sundance ST201 "Alta". */
2/*
3 Written 1999-2000 by Donald Becker.
4
5 This software may be used and distributed according to the terms of
6 the GNU General Public License (GPL), incorporated herein by reference.
7 Drivers based on or derived from this code fall under the GPL and must
8 retain the authorship, copyright and license notice. This file is not
9 a complete program and may only be used when the entire operating
10 system is licensed under the GPL.
11
12 The author may be reached as becker@scyld.com, or C/O
13 Scyld Computing Corporation
14 410 Severn Ave., Suite 210
15 Annapolis MD 21403
16
17 Support and updates available at
18 http://www.scyld.com/network/sundance.html
03a8c661 19 [link no longer provides useful info -jgarzik]
e714d99c
PDM
20 Archives of the mailing list are still available at
21 http://www.beowulf.org/pipermail/netdrivers/
1da177e4 22
1da177e4
LT
23*/
24
25#define DRV_NAME "sundance"
d5b20697
AG
26#define DRV_VERSION "1.2"
27#define DRV_RELDATE "11-Sep-2006"
1da177e4
LT
28
29
30/* The user-configurable values.
31 These may be modified when a driver module is loaded.*/
32static int debug = 1; /* 1 normal messages, 0 quiet .. 7 verbose. */
33/* Maximum number of multicast addresses to filter (vs. rx-all-multicast).
34 Typical is a 64 element hash table based on the Ethernet CRC. */
f71e1309 35static const int multicast_filter_limit = 32;
1da177e4
LT
36
37/* Set the copy breakpoint for the copy-only-tiny-frames scheme.
38 Setting to > 1518 effectively disables this feature.
39 This chip can receive into offset buffers, so the Alpha does not
40 need a copy-align. */
41static int rx_copybreak;
42static int flowctrl=1;
43
44/* media[] specifies the media type the NIC operates at.
45 autosense Autosensing active media.
46 10mbps_hd 10Mbps half duplex.
47 10mbps_fd 10Mbps full duplex.
48 100mbps_hd 100Mbps half duplex.
49 100mbps_fd 100Mbps full duplex.
50 0 Autosensing active media.
51 1 10Mbps half duplex.
52 2 10Mbps full duplex.
53 3 100Mbps half duplex.
54 4 100Mbps full duplex.
55*/
56#define MAX_UNITS 8
57static char *media[MAX_UNITS];
58
59
60/* Operational parameters that are set at compile time. */
61
62/* Keep the ring sizes a power of two for compile efficiency.
63 The compiler will convert <unsigned>'%'<2^N> into a bit mask.
64 Making the Tx ring too large decreases the effectiveness of channel
65 bonding and packet priority, and more than 128 requires modifying the
66 Tx error recovery.
67 Large receive rings merely waste memory. */
68#define TX_RING_SIZE 32
69#define TX_QUEUE_LEN (TX_RING_SIZE - 1) /* Limit ring entries actually used. */
70#define RX_RING_SIZE 64
71#define RX_BUDGET 32
72#define TX_TOTAL_SIZE TX_RING_SIZE*sizeof(struct netdev_desc)
73#define RX_TOTAL_SIZE RX_RING_SIZE*sizeof(struct netdev_desc)
74
75/* Operational parameters that usually are not changed. */
76/* Time in jiffies before concluding the transmitter is hung. */
77#define TX_TIMEOUT (4*HZ)
78#define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
79
80/* Include files, designed to support most kernel versions 2.0.0 and later. */
81#include <linux/module.h>
82#include <linux/kernel.h>
83#include <linux/string.h>
84#include <linux/timer.h>
85#include <linux/errno.h>
86#include <linux/ioport.h>
1da177e4
LT
87#include <linux/interrupt.h>
88#include <linux/pci.h>
89#include <linux/netdevice.h>
90#include <linux/etherdevice.h>
91#include <linux/skbuff.h>
92#include <linux/init.h>
93#include <linux/bitops.h>
7c0f6ba6 94#include <linux/uaccess.h>
1da177e4
LT
95#include <asm/processor.h> /* Processor type for cache alignment. */
96#include <asm/io.h>
97#include <linux/delay.h>
98#include <linux/spinlock.h>
0c8a745f 99#include <linux/dma-mapping.h>
1da177e4
LT
100#include <linux/crc32.h>
101#include <linux/ethtool.h>
102#include <linux/mii.h>
1da177e4
LT
103
104/* These identify the driver base version and may not be removed. */
64bc40de 105static const char version[] =
3af0fe39
SH
106 KERN_INFO DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE
107 " Written by Donald Becker\n";
1da177e4
LT
108
109MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
110MODULE_DESCRIPTION("Sundance Alta Ethernet driver");
111MODULE_LICENSE("GPL");
112
113module_param(debug, int, 0);
114module_param(rx_copybreak, int, 0);
115module_param_array(media, charp, NULL, 0);
116module_param(flowctrl, int, 0);
117MODULE_PARM_DESC(debug, "Sundance Alta debug level (0-5)");
118MODULE_PARM_DESC(rx_copybreak, "Sundance Alta copy breakpoint for copy-only-tiny-frames");
119MODULE_PARM_DESC(flowctrl, "Sundance Alta flow control [0|1]");
120
121/*
122 Theory of Operation
123
124I. Board Compatibility
125
126This driver is designed for the Sundance Technologies "Alta" ST201 chip.
127
128II. Board-specific settings
129
130III. Driver operation
131
132IIIa. Ring buffers
133
134This driver uses two statically allocated fixed-size descriptor lists
135formed into rings by a branch from the final descriptor to the beginning of
136the list. The ring sizes are set at compile time by RX/TX_RING_SIZE.
137Some chips explicitly use only 2^N sized rings, while others use a
138'next descriptor' pointer that the driver forms into rings.
139
140IIIb/c. Transmit/Receive Structure
141
142This driver uses a zero-copy receive and transmit scheme.
143The driver allocates full frame size skbuffs for the Rx ring buffers at
144open() time and passes the skb->data field to the chip as receive data
145buffers. When an incoming frame is less than RX_COPYBREAK bytes long,
146a fresh skbuff is allocated and the frame is copied to the new skbuff.
147When the incoming frame is larger, the skbuff is passed directly up the
148protocol stack. Buffers consumed this way are replaced by newly allocated
149skbuffs in a later phase of receives.
150
151The RX_COPYBREAK value is chosen to trade-off the memory wasted by
152using a full-sized skbuff for small frames vs. the copying costs of larger
153frames. New boards are typically used in generously configured machines
154and the underfilled buffers have negligible impact compared to the benefit of
155a single allocation size, so the default value of zero results in never
156copying packets. When copying is done, the cost is usually mitigated by using
157a combined copy/checksum routine. Copying also preloads the cache, which is
158most useful with small frames.
159
160A subtle aspect of the operation is that the IP header at offset 14 in an
161ethernet frame isn't longword aligned for further processing.
162Unaligned buffers are permitted by the Sundance hardware, so
163frames are received into the skbuff at an offset of "+2", 16-byte aligning
164the IP header.
165
166IIId. Synchronization
167
168The driver runs as two independent, single-threaded flows of control. One
169is the send-packet routine, which enforces single-threaded use by the
170dev->tbusy flag. The other thread is the interrupt handler, which is single
171threaded by the hardware and interrupt handling software.
172
173The send packet thread has partial control over the Tx ring and 'dev->tbusy'
174flag. It sets the tbusy flag whenever it's queuing a Tx packet. If the next
175queue slot is empty, it clears the tbusy flag when finished otherwise it sets
176the 'lp->tx_full' flag.
177
178The interrupt handler has exclusive control over the Rx ring and records stats
179from the Tx ring. After reaping the stats, it marks the Tx queue entry as
180empty by incrementing the dirty_tx mark. Iff the 'lp->tx_full' flag is set, it
181clears both the tx_full and tbusy flags.
182
183IV. Notes
184
185IVb. References
186
187The Sundance ST201 datasheet, preliminary version.
b71b95ef
PDM
188The Kendin KS8723 datasheet, preliminary version.
189The ICplus IP100 datasheet, preliminary version.
190http://www.scyld.com/expert/100mbps.html
191http://www.scyld.com/expert/NWay.html
1da177e4
LT
192
193IVc. Errata
194
195*/
196
197/* Work-around for Kendin chip bugs. */
198#ifndef CONFIG_SUNDANCE_MMIO
199#define USE_IO_OPS 1
200#endif
201
9baa3c34 202static const struct pci_device_id sundance_pci_tbl[] = {
46009c8b
JG
203 { 0x1186, 0x1002, 0x1186, 0x1002, 0, 0, 0 },
204 { 0x1186, 0x1002, 0x1186, 0x1003, 0, 0, 1 },
205 { 0x1186, 0x1002, 0x1186, 0x1012, 0, 0, 2 },
206 { 0x1186, 0x1002, 0x1186, 0x1040, 0, 0, 3 },
207 { 0x1186, 0x1002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 },
208 { 0x13F0, 0x0201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5 },
209 { 0x13F0, 0x0200, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 6 },
210 { }
1da177e4
LT
211};
212MODULE_DEVICE_TABLE(pci, sundance_pci_tbl);
213
214enum {
215 netdev_io_size = 128
216};
217
218struct pci_id_info {
219 const char *name;
220};
64bc40de 221static const struct pci_id_info pci_id_tbl[] = {
1da177e4
LT
222 {"D-Link DFE-550TX FAST Ethernet Adapter"},
223 {"D-Link DFE-550FX 100Mbps Fiber-optics Adapter"},
224 {"D-Link DFE-580TX 4 port Server Adapter"},
225 {"D-Link DFE-530TXS FAST Ethernet Adapter"},
226 {"D-Link DL10050-based FAST Ethernet Adapter"},
227 {"Sundance Technology Alta"},
1668b19f 228 {"IC Plus Corporation IP100A FAST Ethernet Adapter"},
46009c8b 229 { } /* terminate list. */
1da177e4
LT
230};
231
232/* This driver was written to use PCI memory space, however x86-oriented
233 hardware often uses I/O space accesses. */
234
235/* Offsets to the device registers.
236 Unlike software-only systems, device drivers interact with complex hardware.
237 It's not useful to define symbolic names for every register bit in the
238 device. The name can only partially document the semantics and make
239 the driver longer and more difficult to read.
240 In general, only the important configuration values or bits changed
241 multiple times should be defined symbolically.
242*/
243enum alta_offsets {
244 DMACtrl = 0x00,
245 TxListPtr = 0x04,
246 TxDMABurstThresh = 0x08,
247 TxDMAUrgentThresh = 0x09,
248 TxDMAPollPeriod = 0x0a,
249 RxDMAStatus = 0x0c,
250 RxListPtr = 0x10,
251 DebugCtrl0 = 0x1a,
252 DebugCtrl1 = 0x1c,
253 RxDMABurstThresh = 0x14,
254 RxDMAUrgentThresh = 0x15,
255 RxDMAPollPeriod = 0x16,
256 LEDCtrl = 0x1a,
257 ASICCtrl = 0x30,
258 EEData = 0x34,
259 EECtrl = 0x36,
1da177e4
LT
260 FlashAddr = 0x40,
261 FlashData = 0x44,
f210e87b 262 WakeEvent = 0x45,
1da177e4
LT
263 TxStatus = 0x46,
264 TxFrameId = 0x47,
265 DownCounter = 0x18,
266 IntrClear = 0x4a,
267 IntrEnable = 0x4c,
268 IntrStatus = 0x4e,
269 MACCtrl0 = 0x50,
270 MACCtrl1 = 0x52,
271 StationAddr = 0x54,
272 MaxFrameSize = 0x5A,
273 RxMode = 0x5c,
274 MIICtrl = 0x5e,
275 MulticastFilter0 = 0x60,
276 MulticastFilter1 = 0x64,
277 RxOctetsLow = 0x68,
278 RxOctetsHigh = 0x6a,
279 TxOctetsLow = 0x6c,
280 TxOctetsHigh = 0x6e,
281 TxFramesOK = 0x70,
282 RxFramesOK = 0x72,
283 StatsCarrierError = 0x74,
284 StatsLateColl = 0x75,
285 StatsMultiColl = 0x76,
286 StatsOneColl = 0x77,
287 StatsTxDefer = 0x78,
288 RxMissed = 0x79,
289 StatsTxXSDefer = 0x7a,
290 StatsTxAbort = 0x7b,
291 StatsBcastTx = 0x7c,
292 StatsBcastRx = 0x7d,
293 StatsMcastTx = 0x7e,
294 StatsMcastRx = 0x7f,
295 /* Aliased and bogus values! */
296 RxStatus = 0x0c,
297};
24de5285
DK
298
299#define ASIC_HI_WORD(x) ((x) + 2)
300
1da177e4
LT
301enum ASICCtrl_HiWord_bit {
302 GlobalReset = 0x0001,
303 RxReset = 0x0002,
304 TxReset = 0x0004,
305 DMAReset = 0x0008,
306 FIFOReset = 0x0010,
307 NetworkReset = 0x0020,
308 HostReset = 0x0040,
309 ResetBusy = 0x0400,
310};
311
312/* Bits in the interrupt status/mask registers. */
313enum intr_status_bits {
314 IntrSummary=0x0001, IntrPCIErr=0x0002, IntrMACCtrl=0x0008,
315 IntrTxDone=0x0004, IntrRxDone=0x0010, IntrRxStart=0x0020,
316 IntrDrvRqst=0x0040,
317 StatsMax=0x0080, LinkChange=0x0100,
318 IntrTxDMADone=0x0200, IntrRxDMADone=0x0400,
319};
320
321/* Bits in the RxMode register. */
322enum rx_mode_bits {
323 AcceptAllIPMulti=0x20, AcceptMultiHash=0x10, AcceptAll=0x08,
324 AcceptBroadcast=0x04, AcceptMulticast=0x02, AcceptMyPhys=0x01,
325};
326/* Bits in MACCtrl. */
327enum mac_ctrl0_bits {
328 EnbFullDuplex=0x20, EnbRcvLargeFrame=0x40,
329 EnbFlowCtrl=0x100, EnbPassRxCRC=0x200,
330};
331enum mac_ctrl1_bits {
332 StatsEnable=0x0020, StatsDisable=0x0040, StatsEnabled=0x0080,
333 TxEnable=0x0100, TxDisable=0x0200, TxEnabled=0x0400,
334 RxEnable=0x0800, RxDisable=0x1000, RxEnabled=0x2000,
335};
336
f210e87b
DK
337/* Bits in WakeEvent register. */
338enum wake_event_bits {
339 WakePktEnable = 0x01,
340 MagicPktEnable = 0x02,
341 LinkEventEnable = 0x04,
342 WolEnable = 0x80,
343};
344
1da177e4
LT
345/* The Rx and Tx buffer descriptors. */
346/* Note that using only 32 bit fields simplifies conversion to big-endian
347 architectures. */
348struct netdev_desc {
14c9d9b0
AV
349 __le32 next_desc;
350 __le32 status;
351 struct desc_frag { __le32 addr, length; } frag[1];
1da177e4
LT
352};
353
354/* Bits in netdev_desc.status */
355enum desc_status_bits {
356 DescOwn=0x8000,
357 DescEndPacket=0x4000,
358 DescEndRing=0x2000,
359 LastFrag=0x80000000,
360 DescIntrOnTx=0x8000,
361 DescIntrOnDMADone=0x80000000,
362 DisableAlign = 0x00000001,
363};
364
365#define PRIV_ALIGN 15 /* Required alignment mask */
366/* Use __attribute__((aligned (L1_CACHE_BYTES))) to maintain alignment
367 within the structure. */
368#define MII_CNT 4
369struct netdev_private {
370 /* Descriptor rings first for alignment. */
371 struct netdev_desc *rx_ring;
372 struct netdev_desc *tx_ring;
373 struct sk_buff* rx_skbuff[RX_RING_SIZE];
374 struct sk_buff* tx_skbuff[TX_RING_SIZE];
375 dma_addr_t tx_ring_dma;
376 dma_addr_t rx_ring_dma;
1da177e4 377 struct timer_list timer; /* Media monitoring timer. */
725a4a46
DK
378 /* ethtool extra stats */
379 struct {
380 u64 tx_multiple_collisions;
381 u64 tx_single_collisions;
382 u64 tx_late_collisions;
383 u64 tx_deferred;
384 u64 tx_deferred_excessive;
385 u64 tx_aborted;
386 u64 tx_bcasts;
387 u64 rx_bcasts;
388 u64 tx_mcasts;
389 u64 rx_mcasts;
390 } xstats;
1da177e4
LT
391 /* Frequently used values: keep some adjacent for cache effect. */
392 spinlock_t lock;
1da177e4
LT
393 int msg_enable;
394 int chip_id;
395 unsigned int cur_rx, dirty_rx; /* Producer/consumer ring indices */
396 unsigned int rx_buf_sz; /* Based on MTU+slack. */
397 struct netdev_desc *last_tx; /* Last Tx descriptor used. */
398 unsigned int cur_tx, dirty_tx;
399 /* These values are keep track of the transceiver/media in use. */
400 unsigned int flowctrl:1;
401 unsigned int default_port:4; /* Last dev->if_port value. */
402 unsigned int an_enable:1;
403 unsigned int speed;
f210e87b 404 unsigned int wol_enabled:1; /* Wake on LAN enabled */
1da177e4
LT
405 struct tasklet_struct rx_tasklet;
406 struct tasklet_struct tx_tasklet;
407 int budget;
408 int cur_task;
409 /* Multicast and receive mode. */
410 spinlock_t mcastlock; /* SMP lock multicast updates. */
411 u16 mcast_filter[4];
412 /* MII transceiver section. */
413 struct mii_if_info mii_if;
414 int mii_preamble_required;
415 unsigned char phys[MII_CNT]; /* MII device addresses, only first one used. */
416 struct pci_dev *pci_dev;
417 void __iomem *base;
7b738b55 418 spinlock_t statlock;
1da177e4
LT
419};
420
421/* The station address location in the EEPROM. */
422#define EEPROM_SA_OFFSET 0x10
423#define DEFAULT_INTR (IntrRxDMADone | IntrPCIErr | \
424 IntrDrvRqst | IntrTxDone | StatsMax | \
425 LinkChange)
426
427static int change_mtu(struct net_device *dev, int new_mtu);
428static int eeprom_read(void __iomem *ioaddr, int location);
429static int mdio_read(struct net_device *dev, int phy_id, int location);
430static void mdio_write(struct net_device *dev, int phy_id, int location, int value);
50500155 431static int mdio_wait_link(struct net_device *dev, int wait);
1da177e4
LT
432static int netdev_open(struct net_device *dev);
433static void check_duplex(struct net_device *dev);
434static void netdev_timer(unsigned long data);
435static void tx_timeout(struct net_device *dev);
436static void init_ring(struct net_device *dev);
61357325 437static netdev_tx_t start_tx(struct sk_buff *skb, struct net_device *dev);
1da177e4 438static int reset_tx (struct net_device *dev);
7d12e780 439static irqreturn_t intr_handler(int irq, void *dev_instance);
1da177e4
LT
440static void rx_poll(unsigned long data);
441static void tx_poll(unsigned long data);
442static void refill_rx (struct net_device *dev);
443static void netdev_error(struct net_device *dev, int intr_status);
444static void netdev_error(struct net_device *dev, int intr_status);
445static void set_rx_mode(struct net_device *dev);
446static int __set_mac_addr(struct net_device *dev);
4b4f5467 447static int sundance_set_mac_addr(struct net_device *dev, void *data);
1da177e4
LT
448static struct net_device_stats *get_stats(struct net_device *dev);
449static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
450static int netdev_close(struct net_device *dev);
7282d491 451static const struct ethtool_ops ethtool_ops;
1da177e4 452
b71b95ef
PDM
453static void sundance_reset(struct net_device *dev, unsigned long reset_cmd)
454{
455 struct netdev_private *np = netdev_priv(dev);
456 void __iomem *ioaddr = np->base + ASICCtrl;
457 int countdown;
458
459 /* ST201 documentation states ASICCtrl is a 32bit register */
460 iowrite32 (reset_cmd | ioread32 (ioaddr), ioaddr);
461 /* ST201 documentation states reset can take up to 1 ms */
462 countdown = 10 + 1;
463 while (ioread32 (ioaddr) & (ResetBusy << 16)) {
464 if (--countdown == 0) {
465 printk(KERN_WARNING "%s : reset not completed !!\n", dev->name);
466 break;
467 }
468 udelay(100);
469 }
470}
471
cb74e273
DK
472#ifdef CONFIG_NET_POLL_CONTROLLER
473static void sundance_poll_controller(struct net_device *dev)
474{
475 struct netdev_private *np = netdev_priv(dev);
476
477 disable_irq(np->pci_dev->irq);
478 intr_handler(np->pci_dev->irq, dev);
479 enable_irq(np->pci_dev->irq);
480}
481#endif
482
633a277e
SH
483static const struct net_device_ops netdev_ops = {
484 .ndo_open = netdev_open,
485 .ndo_stop = netdev_close,
486 .ndo_start_xmit = start_tx,
487 .ndo_get_stats = get_stats,
afc4b13d 488 .ndo_set_rx_mode = set_rx_mode,
633a277e
SH
489 .ndo_do_ioctl = netdev_ioctl,
490 .ndo_tx_timeout = tx_timeout,
491 .ndo_change_mtu = change_mtu,
4b4f5467 492 .ndo_set_mac_address = sundance_set_mac_addr,
633a277e 493 .ndo_validate_addr = eth_validate_addr,
cb74e273
DK
494#ifdef CONFIG_NET_POLL_CONTROLLER
495 .ndo_poll_controller = sundance_poll_controller,
496#endif
633a277e
SH
497};
498
64bc40de
BP
499static int sundance_probe1(struct pci_dev *pdev,
500 const struct pci_device_id *ent)
1da177e4
LT
501{
502 struct net_device *dev;
503 struct netdev_private *np;
504 static int card_idx;
505 int chip_idx = ent->driver_data;
506 int irq;
507 int i;
508 void __iomem *ioaddr;
509 u16 mii_ctl;
510 void *ring_space;
511 dma_addr_t ring_dma;
512#ifdef USE_IO_OPS
513 int bar = 0;
514#else
515 int bar = 1;
516#endif
ac1d49f8 517 int phy, phy_end, phy_idx = 0;
1da177e4
LT
518
519/* when built into the kernel, we only print version if device is found */
520#ifndef MODULE
521 static int printed_version;
522 if (!printed_version++)
523 printk(version);
524#endif
525
526 if (pci_enable_device(pdev))
527 return -EIO;
528 pci_set_master(pdev);
529
530 irq = pdev->irq;
531
532 dev = alloc_etherdev(sizeof(*np));
533 if (!dev)
534 return -ENOMEM;
1da177e4
LT
535 SET_NETDEV_DEV(dev, &pdev->dev);
536
537 if (pci_request_regions(pdev, DRV_NAME))
538 goto err_out_netdev;
539
540 ioaddr = pci_iomap(pdev, bar, netdev_io_size);
541 if (!ioaddr)
542 goto err_out_res;
543
544 for (i = 0; i < 3; i++)
14c9d9b0
AV
545 ((__le16 *)dev->dev_addr)[i] =
546 cpu_to_le16(eeprom_read(ioaddr, i + EEPROM_SA_OFFSET));
1da177e4 547
1da177e4
LT
548 np = netdev_priv(dev);
549 np->base = ioaddr;
550 np->pci_dev = pdev;
551 np->chip_id = chip_idx;
552 np->msg_enable = (1 << debug) - 1;
553 spin_lock_init(&np->lock);
7b738b55 554 spin_lock_init(&np->statlock);
1da177e4
LT
555 tasklet_init(&np->rx_tasklet, rx_poll, (unsigned long)dev);
556 tasklet_init(&np->tx_tasklet, tx_poll, (unsigned long)dev);
557
0c8a745f
DK
558 ring_space = dma_alloc_coherent(&pdev->dev, TX_TOTAL_SIZE,
559 &ring_dma, GFP_KERNEL);
1da177e4
LT
560 if (!ring_space)
561 goto err_out_cleardev;
562 np->tx_ring = (struct netdev_desc *)ring_space;
563 np->tx_ring_dma = ring_dma;
564
0c8a745f
DK
565 ring_space = dma_alloc_coherent(&pdev->dev, RX_TOTAL_SIZE,
566 &ring_dma, GFP_KERNEL);
1da177e4
LT
567 if (!ring_space)
568 goto err_out_unmap_tx;
569 np->rx_ring = (struct netdev_desc *)ring_space;
570 np->rx_ring_dma = ring_dma;
571
572 np->mii_if.dev = dev;
573 np->mii_if.mdio_read = mdio_read;
574 np->mii_if.mdio_write = mdio_write;
575 np->mii_if.phy_id_mask = 0x1f;
576 np->mii_if.reg_num_mask = 0x1f;
577
578 /* The chip-specific entries in the device structure. */
633a277e 579 dev->netdev_ops = &netdev_ops;
7ad24ea4 580 dev->ethtool_ops = &ethtool_ops;
1da177e4 581 dev->watchdog_timeo = TX_TIMEOUT;
633a277e 582
f7ad72bf
JW
583 /* MTU range: 68 - 8191 */
584 dev->min_mtu = ETH_MIN_MTU;
585 dev->max_mtu = 8191;
586
1da177e4
LT
587 pci_set_drvdata(pdev, dev);
588
1da177e4
LT
589 i = register_netdev(dev);
590 if (i)
591 goto err_out_unmap_rx;
592
e174961c 593 printk(KERN_INFO "%s: %s at %p, %pM, IRQ %d.\n",
0795af57 594 dev->name, pci_id_tbl[chip_idx].name, ioaddr,
e174961c 595 dev->dev_addr, irq);
1da177e4 596
67ec2f80
JL
597 np->phys[0] = 1; /* Default setting */
598 np->mii_preamble_required++;
ac1d49f8 599
0d615ec2
ACM
600 /*
601 * It seems some phys doesn't deal well with address 0 being accessed
ac1d49f8 602 * first
0d615ec2 603 */
ac1d49f8
JG
604 if (sundance_pci_tbl[np->chip_id].device == 0x0200) {
605 phy = 0;
606 phy_end = 31;
607 } else {
608 phy = 1;
609 phy_end = 32; /* wraps to zero, due to 'phy & 0x1f' */
610 }
611 for (; phy <= phy_end && phy_idx < MII_CNT; phy++) {
b06c093e 612 int phyx = phy & 0x1f;
0d615ec2 613 int mii_status = mdio_read(dev, phyx, MII_BMSR);
67ec2f80 614 if (mii_status != 0xffff && mii_status != 0x0000) {
b06c093e
JL
615 np->phys[phy_idx++] = phyx;
616 np->mii_if.advertising = mdio_read(dev, phyx, MII_ADVERTISE);
67ec2f80
JL
617 if ((mii_status & 0x0040) == 0)
618 np->mii_preamble_required++;
619 printk(KERN_INFO "%s: MII PHY found at address %d, status "
620 "0x%4.4x advertising %4.4x.\n",
b06c093e 621 dev->name, phyx, mii_status, np->mii_if.advertising);
1da177e4 622 }
67ec2f80
JL
623 }
624 np->mii_preamble_required--;
1da177e4 625
67ec2f80
JL
626 if (phy_idx == 0) {
627 printk(KERN_INFO "%s: No MII transceiver found, aborting. ASIC status %x\n",
628 dev->name, ioread32(ioaddr + ASICCtrl));
629 goto err_out_unregister;
1da177e4
LT
630 }
631
67ec2f80
JL
632 np->mii_if.phy_id = np->phys[0];
633
1da177e4
LT
634 /* Parse override configuration */
635 np->an_enable = 1;
636 if (card_idx < MAX_UNITS) {
637 if (media[card_idx] != NULL) {
638 np->an_enable = 0;
639 if (strcmp (media[card_idx], "100mbps_fd") == 0 ||
640 strcmp (media[card_idx], "4") == 0) {
641 np->speed = 100;
642 np->mii_if.full_duplex = 1;
8e95a202
JP
643 } else if (strcmp (media[card_idx], "100mbps_hd") == 0 ||
644 strcmp (media[card_idx], "3") == 0) {
1da177e4
LT
645 np->speed = 100;
646 np->mii_if.full_duplex = 0;
647 } else if (strcmp (media[card_idx], "10mbps_fd") == 0 ||
648 strcmp (media[card_idx], "2") == 0) {
649 np->speed = 10;
650 np->mii_if.full_duplex = 1;
651 } else if (strcmp (media[card_idx], "10mbps_hd") == 0 ||
652 strcmp (media[card_idx], "1") == 0) {
653 np->speed = 10;
654 np->mii_if.full_duplex = 0;
655 } else {
656 np->an_enable = 1;
657 }
658 }
659 if (flowctrl == 1)
660 np->flowctrl = 1;
661 }
662
663 /* Fibre PHY? */
664 if (ioread32 (ioaddr + ASICCtrl) & 0x80) {
665 /* Default 100Mbps Full */
666 if (np->an_enable) {
667 np->speed = 100;
668 np->mii_if.full_duplex = 1;
669 np->an_enable = 0;
670 }
671 }
672 /* Reset PHY */
673 mdio_write (dev, np->phys[0], MII_BMCR, BMCR_RESET);
674 mdelay (300);
675 /* If flow control enabled, we need to advertise it.*/
676 if (np->flowctrl)
677 mdio_write (dev, np->phys[0], MII_ADVERTISE, np->mii_if.advertising | 0x0400);
678 mdio_write (dev, np->phys[0], MII_BMCR, BMCR_ANENABLE|BMCR_ANRESTART);
679 /* Force media type */
680 if (!np->an_enable) {
681 mii_ctl = 0;
682 mii_ctl |= (np->speed == 100) ? BMCR_SPEED100 : 0;
683 mii_ctl |= (np->mii_if.full_duplex) ? BMCR_FULLDPLX : 0;
684 mdio_write (dev, np->phys[0], MII_BMCR, mii_ctl);
685 printk (KERN_INFO "Override speed=%d, %s duplex\n",
686 np->speed, np->mii_if.full_duplex ? "Full" : "Half");
687
688 }
689
690 /* Perhaps move the reset here? */
691 /* Reset the chip to erase previous misconfiguration. */
692 if (netif_msg_hw(np))
693 printk("ASIC Control is %x.\n", ioread32(ioaddr + ASICCtrl));
e714d99c 694 sundance_reset(dev, 0x00ff << 16);
1da177e4
LT
695 if (netif_msg_hw(np))
696 printk("ASIC Control is now %x.\n", ioread32(ioaddr + ASICCtrl));
697
698 card_idx++;
699 return 0;
700
701err_out_unregister:
702 unregister_netdev(dev);
703err_out_unmap_rx:
0c8a745f
DK
704 dma_free_coherent(&pdev->dev, RX_TOTAL_SIZE,
705 np->rx_ring, np->rx_ring_dma);
1da177e4 706err_out_unmap_tx:
0c8a745f
DK
707 dma_free_coherent(&pdev->dev, TX_TOTAL_SIZE,
708 np->tx_ring, np->tx_ring_dma);
1da177e4 709err_out_cleardev:
1da177e4
LT
710 pci_iounmap(pdev, ioaddr);
711err_out_res:
712 pci_release_regions(pdev);
713err_out_netdev:
714 free_netdev (dev);
715 return -ENODEV;
716}
717
718static int change_mtu(struct net_device *dev, int new_mtu)
719{
1da177e4
LT
720 if (netif_running(dev))
721 return -EBUSY;
722 dev->mtu = new_mtu;
723 return 0;
724}
725
726#define eeprom_delay(ee_addr) ioread32(ee_addr)
727/* Read the EEPROM and MII Management Data I/O (MDIO) interfaces. */
64bc40de 728static int eeprom_read(void __iomem *ioaddr, int location)
1da177e4
LT
729{
730 int boguscnt = 10000; /* Typical 1900 ticks. */
731 iowrite16(0x0200 | (location & 0xff), ioaddr + EECtrl);
732 do {
733 eeprom_delay(ioaddr + EECtrl);
734 if (! (ioread16(ioaddr + EECtrl) & 0x8000)) {
735 return ioread16(ioaddr + EEData);
736 }
737 } while (--boguscnt > 0);
738 return 0;
739}
740
741/* MII transceiver control section.
742 Read and write the MII registers using software-generated serial
743 MDIO protocol. See the MII specifications or DP83840A data sheet
744 for details.
745
746 The maximum data clock rate is 2.5 Mhz. The minimum timing is usually
747 met by back-to-back 33Mhz PCI cycles. */
748#define mdio_delay() ioread8(mdio_addr)
749
750enum mii_reg_bits {
751 MDIO_ShiftClk=0x0001, MDIO_Data=0x0002, MDIO_EnbOutput=0x0004,
752};
753#define MDIO_EnbIn (0)
754#define MDIO_WRITE0 (MDIO_EnbOutput)
755#define MDIO_WRITE1 (MDIO_Data | MDIO_EnbOutput)
756
757/* Generate the preamble required for initial synchronization and
758 a few older transceivers. */
759static void mdio_sync(void __iomem *mdio_addr)
760{
761 int bits = 32;
762
763 /* Establish sync by sending at least 32 logic ones. */
764 while (--bits >= 0) {
765 iowrite8(MDIO_WRITE1, mdio_addr);
766 mdio_delay();
767 iowrite8(MDIO_WRITE1 | MDIO_ShiftClk, mdio_addr);
768 mdio_delay();
769 }
770}
771
772static int mdio_read(struct net_device *dev, int phy_id, int location)
773{
774 struct netdev_private *np = netdev_priv(dev);
775 void __iomem *mdio_addr = np->base + MIICtrl;
776 int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
777 int i, retval = 0;
778
779 if (np->mii_preamble_required)
780 mdio_sync(mdio_addr);
781
782 /* Shift the read command bits out. */
783 for (i = 15; i >= 0; i--) {
784 int dataval = (mii_cmd & (1 << i)) ? MDIO_WRITE1 : MDIO_WRITE0;
785
786 iowrite8(dataval, mdio_addr);
787 mdio_delay();
788 iowrite8(dataval | MDIO_ShiftClk, mdio_addr);
789 mdio_delay();
790 }
791 /* Read the two transition, 16 data, and wire-idle bits. */
792 for (i = 19; i > 0; i--) {
793 iowrite8(MDIO_EnbIn, mdio_addr);
794 mdio_delay();
795 retval = (retval << 1) | ((ioread8(mdio_addr) & MDIO_Data) ? 1 : 0);
796 iowrite8(MDIO_EnbIn | MDIO_ShiftClk, mdio_addr);
797 mdio_delay();
798 }
799 return (retval>>1) & 0xffff;
800}
801
802static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
803{
804 struct netdev_private *np = netdev_priv(dev);
805 void __iomem *mdio_addr = np->base + MIICtrl;
806 int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location<<18) | value;
807 int i;
808
809 if (np->mii_preamble_required)
810 mdio_sync(mdio_addr);
811
812 /* Shift the command bits out. */
813 for (i = 31; i >= 0; i--) {
814 int dataval = (mii_cmd & (1 << i)) ? MDIO_WRITE1 : MDIO_WRITE0;
815
816 iowrite8(dataval, mdio_addr);
817 mdio_delay();
818 iowrite8(dataval | MDIO_ShiftClk, mdio_addr);
819 mdio_delay();
820 }
821 /* Clear out extra bits. */
822 for (i = 2; i > 0; i--) {
823 iowrite8(MDIO_EnbIn, mdio_addr);
824 mdio_delay();
825 iowrite8(MDIO_EnbIn | MDIO_ShiftClk, mdio_addr);
826 mdio_delay();
827 }
1da177e4
LT
828}
829
50500155
DN
830static int mdio_wait_link(struct net_device *dev, int wait)
831{
832 int bmsr;
833 int phy_id;
834 struct netdev_private *np;
835
836 np = netdev_priv(dev);
837 phy_id = np->phys[0];
838
839 do {
840 bmsr = mdio_read(dev, phy_id, MII_BMSR);
841 if (bmsr & 0x0004)
842 return 0;
843 mdelay(1);
844 } while (--wait > 0);
845 return -1;
846}
847
1da177e4
LT
848static int netdev_open(struct net_device *dev)
849{
850 struct netdev_private *np = netdev_priv(dev);
851 void __iomem *ioaddr = np->base;
c514f285 852 const int irq = np->pci_dev->irq;
acd70c2b 853 unsigned long flags;
1da177e4
LT
854 int i;
855
f210e87b 856 sundance_reset(dev, 0x00ff << 16);
1da177e4 857
c514f285 858 i = request_irq(irq, intr_handler, IRQF_SHARED, dev->name, dev);
1da177e4
LT
859 if (i)
860 return i;
861
862 if (netif_msg_ifup(np))
c514f285
FR
863 printk(KERN_DEBUG "%s: netdev_open() irq %d\n", dev->name, irq);
864
1da177e4
LT
865 init_ring(dev);
866
867 iowrite32(np->rx_ring_dma, ioaddr + RxListPtr);
868 /* The Tx list pointer is written as packets are queued. */
869
870 /* Initialize other registers. */
871 __set_mac_addr(dev);
06757786 872#if IS_ENABLED(CONFIG_VLAN_8021Q)
1da177e4
LT
873 iowrite16(dev->mtu + 18, ioaddr + MaxFrameSize);
874#else
875 iowrite16(dev->mtu + 14, ioaddr + MaxFrameSize);
876#endif
877 if (dev->mtu > 2047)
878 iowrite32(ioread32(ioaddr + ASICCtrl) | 0x0C, ioaddr + ASICCtrl);
879
880 /* Configure the PCI bus bursts and FIFO thresholds. */
881
882 if (dev->if_port == 0)
883 dev->if_port = np->default_port;
884
885 spin_lock_init(&np->mcastlock);
886
887 set_rx_mode(dev);
888 iowrite16(0, ioaddr + IntrEnable);
889 iowrite16(0, ioaddr + DownCounter);
890 /* Set the chip to poll every N*320nsec. */
891 iowrite8(100, ioaddr + RxDMAPollPeriod);
892 iowrite8(127, ioaddr + TxDMAPollPeriod);
893 /* Fix DFE-580TX packet drop issue */
44c10138 894 if (np->pci_dev->revision >= 0x14)
1da177e4
LT
895 iowrite8(0x01, ioaddr + DebugCtrl1);
896 netif_start_queue(dev);
897
acd70c2b
JH
898 spin_lock_irqsave(&np->lock, flags);
899 reset_tx(dev);
900 spin_unlock_irqrestore(&np->lock, flags);
901
1da177e4
LT
902 iowrite16 (StatsEnable | RxEnable | TxEnable, ioaddr + MACCtrl1);
903
f210e87b
DK
904 /* Disable Wol */
905 iowrite8(ioread8(ioaddr + WakeEvent) | 0x00, ioaddr + WakeEvent);
906 np->wol_enabled = 0;
907
1da177e4
LT
908 if (netif_msg_ifup(np))
909 printk(KERN_DEBUG "%s: Done netdev_open(), status: Rx %x Tx %x "
910 "MAC Control %x, %4.4x %4.4x.\n",
911 dev->name, ioread32(ioaddr + RxStatus), ioread8(ioaddr + TxStatus),
912 ioread32(ioaddr + MACCtrl0),
913 ioread16(ioaddr + MACCtrl1), ioread16(ioaddr + MACCtrl0));
914
915 /* Set the timer to check for link beat. */
916 init_timer(&np->timer);
917 np->timer.expires = jiffies + 3*HZ;
918 np->timer.data = (unsigned long)dev;
c061b18d 919 np->timer.function = netdev_timer; /* timer handler */
1da177e4
LT
920 add_timer(&np->timer);
921
922 /* Enable interrupts by setting the interrupt mask. */
923 iowrite16(DEFAULT_INTR, ioaddr + IntrEnable);
924
925 return 0;
926}
927
928static void check_duplex(struct net_device *dev)
929{
930 struct netdev_private *np = netdev_priv(dev);
931 void __iomem *ioaddr = np->base;
932 int mii_lpa = mdio_read(dev, np->phys[0], MII_LPA);
933 int negotiated = mii_lpa & np->mii_if.advertising;
934 int duplex;
935
936 /* Force media */
937 if (!np->an_enable || mii_lpa == 0xffff) {
938 if (np->mii_if.full_duplex)
939 iowrite16 (ioread16 (ioaddr + MACCtrl0) | EnbFullDuplex,
940 ioaddr + MACCtrl0);
941 return;
942 }
943
944 /* Autonegotiation */
945 duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040;
946 if (np->mii_if.full_duplex != duplex) {
947 np->mii_if.full_duplex = duplex;
948 if (netif_msg_link(np))
949 printk(KERN_INFO "%s: Setting %s-duplex based on MII #%d "
950 "negotiated capability %4.4x.\n", dev->name,
951 duplex ? "full" : "half", np->phys[0], negotiated);
62660e28 952 iowrite16(ioread16(ioaddr + MACCtrl0) | (duplex ? 0x20 : 0), ioaddr + MACCtrl0);
1da177e4
LT
953 }
954}
955
956static void netdev_timer(unsigned long data)
957{
958 struct net_device *dev = (struct net_device *)data;
959 struct netdev_private *np = netdev_priv(dev);
960 void __iomem *ioaddr = np->base;
961 int next_tick = 10*HZ;
962
963 if (netif_msg_timer(np)) {
964 printk(KERN_DEBUG "%s: Media selection timer tick, intr status %4.4x, "
965 "Tx %x Rx %x.\n",
966 dev->name, ioread16(ioaddr + IntrEnable),
967 ioread8(ioaddr + TxStatus), ioread32(ioaddr + RxStatus));
968 }
969 check_duplex(dev);
970 np->timer.expires = jiffies + next_tick;
971 add_timer(&np->timer);
972}
973
974static void tx_timeout(struct net_device *dev)
975{
976 struct netdev_private *np = netdev_priv(dev);
977 void __iomem *ioaddr = np->base;
978 unsigned long flag;
6aa20a22 979
1da177e4
LT
980 netif_stop_queue(dev);
981 tasklet_disable(&np->tx_tasklet);
982 iowrite16(0, ioaddr + IntrEnable);
983 printk(KERN_WARNING "%s: Transmit timed out, TxStatus %2.2x "
984 "TxFrameId %2.2x,"
985 " resetting...\n", dev->name, ioread8(ioaddr + TxStatus),
986 ioread8(ioaddr + TxFrameId));
987
988 {
989 int i;
990 for (i=0; i<TX_RING_SIZE; i++) {
991 printk(KERN_DEBUG "%02x %08llx %08x %08x(%02x) %08x %08x\n", i,
992 (unsigned long long)(np->tx_ring_dma + i*sizeof(*np->tx_ring)),
993 le32_to_cpu(np->tx_ring[i].next_desc),
994 le32_to_cpu(np->tx_ring[i].status),
995 (le32_to_cpu(np->tx_ring[i].status) >> 2) & 0xff,
6aa20a22 996 le32_to_cpu(np->tx_ring[i].frag[0].addr),
1da177e4
LT
997 le32_to_cpu(np->tx_ring[i].frag[0].length));
998 }
6aa20a22
JG
999 printk(KERN_DEBUG "TxListPtr=%08x netif_queue_stopped=%d\n",
1000 ioread32(np->base + TxListPtr),
1da177e4 1001 netif_queue_stopped(dev));
6aa20a22 1002 printk(KERN_DEBUG "cur_tx=%d(%02x) dirty_tx=%d(%02x)\n",
1da177e4
LT
1003 np->cur_tx, np->cur_tx % TX_RING_SIZE,
1004 np->dirty_tx, np->dirty_tx % TX_RING_SIZE);
1005 printk(KERN_DEBUG "cur_rx=%d dirty_rx=%d\n", np->cur_rx, np->dirty_rx);
1006 printk(KERN_DEBUG "cur_task=%d\n", np->cur_task);
1007 }
1008 spin_lock_irqsave(&np->lock, flag);
1009
1010 /* Stop and restart the chip's Tx processes . */
1011 reset_tx(dev);
1012 spin_unlock_irqrestore(&np->lock, flag);
1013
1014 dev->if_port = 0;
1015
860e9538 1016 netif_trans_update(dev); /* prevent tx timeout */
553e2335 1017 dev->stats.tx_errors++;
1da177e4
LT
1018 if (np->cur_tx - np->dirty_tx < TX_QUEUE_LEN - 4) {
1019 netif_wake_queue(dev);
1020 }
1021 iowrite16(DEFAULT_INTR, ioaddr + IntrEnable);
1022 tasklet_enable(&np->tx_tasklet);
1023}
1024
1025
1026/* Initialize the Rx and Tx rings, along with various 'dev' bits. */
1027static void init_ring(struct net_device *dev)
1028{
1029 struct netdev_private *np = netdev_priv(dev);
1030 int i;
1031
1032 np->cur_rx = np->cur_tx = 0;
1033 np->dirty_rx = np->dirty_tx = 0;
1034 np->cur_task = 0;
1035
1036 np->rx_buf_sz = (dev->mtu <= 1520 ? PKT_BUF_SZ : dev->mtu + 16);
1037
1038 /* Initialize all Rx descriptors. */
1039 for (i = 0; i < RX_RING_SIZE; i++) {
1040 np->rx_ring[i].next_desc = cpu_to_le32(np->rx_ring_dma +
1041 ((i+1)%RX_RING_SIZE)*sizeof(*np->rx_ring));
1042 np->rx_ring[i].status = 0;
1043 np->rx_ring[i].frag[0].length = 0;
1044 np->rx_skbuff[i] = NULL;
1045 }
1046
1047 /* Fill in the Rx buffers. Handle allocation failure gracefully. */
1048 for (i = 0; i < RX_RING_SIZE; i++) {
21a4e469
PD
1049 struct sk_buff *skb =
1050 netdev_alloc_skb(dev, np->rx_buf_sz + 2);
1da177e4
LT
1051 np->rx_skbuff[i] = skb;
1052 if (skb == NULL)
1053 break;
1da177e4
LT
1054 skb_reserve(skb, 2); /* 16 byte align the IP header. */
1055 np->rx_ring[i].frag[0].addr = cpu_to_le32(
0c8a745f
DK
1056 dma_map_single(&np->pci_dev->dev, skb->data,
1057 np->rx_buf_sz, DMA_FROM_DEVICE));
d91dc279
DK
1058 if (dma_mapping_error(&np->pci_dev->dev,
1059 np->rx_ring[i].frag[0].addr)) {
1060 dev_kfree_skb(skb);
1061 np->rx_skbuff[i] = NULL;
1062 break;
1063 }
1da177e4
LT
1064 np->rx_ring[i].frag[0].length = cpu_to_le32(np->rx_buf_sz | LastFrag);
1065 }
1066 np->dirty_rx = (unsigned int)(i - RX_RING_SIZE);
1067
1068 for (i = 0; i < TX_RING_SIZE; i++) {
1069 np->tx_skbuff[i] = NULL;
1070 np->tx_ring[i].status = 0;
1071 }
1da177e4
LT
1072}
1073
1074static void tx_poll (unsigned long data)
1075{
1076 struct net_device *dev = (struct net_device *)data;
1077 struct netdev_private *np = netdev_priv(dev);
1078 unsigned head = np->cur_task % TX_RING_SIZE;
6aa20a22 1079 struct netdev_desc *txdesc =
1da177e4 1080 &np->tx_ring[(np->cur_tx - 1) % TX_RING_SIZE];
6aa20a22 1081
1da177e4
LT
1082 /* Chain the next pointer */
1083 for (; np->cur_tx - np->cur_task > 0; np->cur_task++) {
1084 int entry = np->cur_task % TX_RING_SIZE;
1085 txdesc = &np->tx_ring[entry];
1086 if (np->last_tx) {
1087 np->last_tx->next_desc = cpu_to_le32(np->tx_ring_dma +
1088 entry*sizeof(struct netdev_desc));
1089 }
1090 np->last_tx = txdesc;
1091 }
1092 /* Indicate the latest descriptor of tx ring */
1093 txdesc->status |= cpu_to_le32(DescIntrOnTx);
1094
1095 if (ioread32 (np->base + TxListPtr) == 0)
1096 iowrite32 (np->tx_ring_dma + head * sizeof(struct netdev_desc),
1097 np->base + TxListPtr);
1da177e4
LT
1098}
1099
61357325 1100static netdev_tx_t
1da177e4
LT
1101start_tx (struct sk_buff *skb, struct net_device *dev)
1102{
1103 struct netdev_private *np = netdev_priv(dev);
1104 struct netdev_desc *txdesc;
1105 unsigned entry;
1106
1107 /* Calculate the next Tx descriptor entry. */
1108 entry = np->cur_tx % TX_RING_SIZE;
1109 np->tx_skbuff[entry] = skb;
1110 txdesc = &np->tx_ring[entry];
1111
1112 txdesc->next_desc = 0;
1113 txdesc->status = cpu_to_le32 ((entry << 2) | DisableAlign);
0c8a745f
DK
1114 txdesc->frag[0].addr = cpu_to_le32(dma_map_single(&np->pci_dev->dev,
1115 skb->data, skb->len, DMA_TO_DEVICE));
d91dc279
DK
1116 if (dma_mapping_error(&np->pci_dev->dev,
1117 txdesc->frag[0].addr))
1118 goto drop_frame;
1da177e4
LT
1119 txdesc->frag[0].length = cpu_to_le32 (skb->len | LastFrag);
1120
1121 /* Increment cur_tx before tasklet_schedule() */
1122 np->cur_tx++;
1123 mb();
1124 /* Schedule a tx_poll() task */
1125 tasklet_schedule(&np->tx_tasklet);
1126
1127 /* On some architectures: explicitly flush cache lines here. */
8e95a202
JP
1128 if (np->cur_tx - np->dirty_tx < TX_QUEUE_LEN - 1 &&
1129 !netif_queue_stopped(dev)) {
1da177e4
LT
1130 /* do nothing */
1131 } else {
1132 netif_stop_queue (dev);
1133 }
1da177e4
LT
1134 if (netif_msg_tx_queued(np)) {
1135 printk (KERN_DEBUG
1136 "%s: Transmit frame #%d queued in slot %d.\n",
1137 dev->name, np->cur_tx, entry);
1138 }
6ed10654 1139 return NETDEV_TX_OK;
d91dc279
DK
1140
1141drop_frame:
36fc2109 1142 dev_kfree_skb_any(skb);
d91dc279
DK
1143 np->tx_skbuff[entry] = NULL;
1144 dev->stats.tx_dropped++;
1145 return NETDEV_TX_OK;
1da177e4
LT
1146}
1147
1148/* Reset hardware tx and free all of tx buffers */
1149static int
1150reset_tx (struct net_device *dev)
1151{
1152 struct netdev_private *np = netdev_priv(dev);
1153 void __iomem *ioaddr = np->base;
1154 struct sk_buff *skb;
1155 int i;
6aa20a22 1156
1da177e4
LT
1157 /* Reset tx logic, TxListPtr will be cleaned */
1158 iowrite16 (TxDisable, ioaddr + MACCtrl1);
e714d99c
PDM
1159 sundance_reset(dev, (NetworkReset|FIFOReset|DMAReset|TxReset) << 16);
1160
1da177e4
LT
1161 /* free all tx skbuff */
1162 for (i = 0; i < TX_RING_SIZE; i++) {
2109f89f
JH
1163 np->tx_ring[i].next_desc = 0;
1164
1da177e4
LT
1165 skb = np->tx_skbuff[i];
1166 if (skb) {
0c8a745f 1167 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1168 le32_to_cpu(np->tx_ring[i].frag[0].addr),
0c8a745f 1169 skb->len, DMA_TO_DEVICE);
a9478e38 1170 dev_kfree_skb_any(skb);
1da177e4 1171 np->tx_skbuff[i] = NULL;
553e2335 1172 dev->stats.tx_dropped++;
1da177e4
LT
1173 }
1174 }
1175 np->cur_tx = np->dirty_tx = 0;
1176 np->cur_task = 0;
2109f89f 1177
bca79eb7 1178 np->last_tx = NULL;
2109f89f
JH
1179 iowrite8(127, ioaddr + TxDMAPollPeriod);
1180
1da177e4
LT
1181 iowrite16 (StatsEnable | RxEnable | TxEnable, ioaddr + MACCtrl1);
1182 return 0;
1183}
1184
6aa20a22 1185/* The interrupt handler cleans up after the Tx thread,
1da177e4 1186 and schedule a Rx thread work */
7d12e780 1187static irqreturn_t intr_handler(int irq, void *dev_instance)
1da177e4
LT
1188{
1189 struct net_device *dev = (struct net_device *)dev_instance;
1190 struct netdev_private *np = netdev_priv(dev);
1191 void __iomem *ioaddr = np->base;
1192 int hw_frame_id;
1193 int tx_cnt;
1194 int tx_status;
1195 int handled = 0;
e242040d 1196 int i;
1da177e4
LT
1197
1198
1199 do {
1200 int intr_status = ioread16(ioaddr + IntrStatus);
1201 iowrite16(intr_status, ioaddr + IntrStatus);
1202
1203 if (netif_msg_intr(np))
1204 printk(KERN_DEBUG "%s: Interrupt, status %4.4x.\n",
1205 dev->name, intr_status);
1206
1207 if (!(intr_status & DEFAULT_INTR))
1208 break;
1209
1210 handled = 1;
1211
1212 if (intr_status & (IntrRxDMADone)) {
1213 iowrite16(DEFAULT_INTR & ~(IntrRxDone|IntrRxDMADone),
1214 ioaddr + IntrEnable);
1215 if (np->budget < 0)
1216 np->budget = RX_BUDGET;
1217 tasklet_schedule(&np->rx_tasklet);
1218 }
1219 if (intr_status & (IntrTxDone | IntrDrvRqst)) {
1220 tx_status = ioread16 (ioaddr + TxStatus);
1221 for (tx_cnt=32; tx_status & 0x80; --tx_cnt) {
1222 if (netif_msg_tx_done(np))
1223 printk
1224 ("%s: Transmit status is %2.2x.\n",
1225 dev->name, tx_status);
1226 if (tx_status & 0x1e) {
b71b95ef
PDM
1227 if (netif_msg_tx_err(np))
1228 printk("%s: Transmit error status %4.4x.\n",
1229 dev->name, tx_status);
553e2335 1230 dev->stats.tx_errors++;
1da177e4 1231 if (tx_status & 0x10)
553e2335 1232 dev->stats.tx_fifo_errors++;
1da177e4 1233 if (tx_status & 0x08)
553e2335 1234 dev->stats.collisions++;
b71b95ef 1235 if (tx_status & 0x04)
553e2335 1236 dev->stats.tx_fifo_errors++;
1da177e4 1237 if (tx_status & 0x02)
553e2335 1238 dev->stats.tx_window_errors++;
e242040d 1239
b71b95ef
PDM
1240 /*
1241 ** This reset has been verified on
1242 ** DFE-580TX boards ! phdm@macqel.be.
1243 */
1244 if (tx_status & 0x10) { /* TxUnderrun */
b71b95ef
PDM
1245 /* Restart Tx FIFO and transmitter */
1246 sundance_reset(dev, (NetworkReset|FIFOReset|TxReset) << 16);
b71b95ef 1247 /* No need to reset the Tx pointer here */
1da177e4 1248 }
2109f89f
JH
1249 /* Restart the Tx. Need to make sure tx enabled */
1250 i = 10;
1251 do {
1252 iowrite16(ioread16(ioaddr + MACCtrl1) | TxEnable, ioaddr + MACCtrl1);
1253 if (ioread16(ioaddr + MACCtrl1) & TxEnabled)
1254 break;
1255 mdelay(1);
1256 } while (--i);
1da177e4
LT
1257 }
1258 /* Yup, this is a documentation bug. It cost me *hours*. */
1259 iowrite16 (0, ioaddr + TxStatus);
1260 if (tx_cnt < 0) {
1261 iowrite32(5000, ioaddr + DownCounter);
1262 break;
1263 }
1264 tx_status = ioread16 (ioaddr + TxStatus);
1265 }
1266 hw_frame_id = (tx_status >> 8) & 0xff;
1267 } else {
1268 hw_frame_id = ioread8(ioaddr + TxFrameId);
1269 }
6aa20a22 1270
44c10138 1271 if (np->pci_dev->revision >= 0x14) {
1da177e4
LT
1272 spin_lock(&np->lock);
1273 for (; np->cur_tx - np->dirty_tx > 0; np->dirty_tx++) {
1274 int entry = np->dirty_tx % TX_RING_SIZE;
1275 struct sk_buff *skb;
1276 int sw_frame_id;
1277 sw_frame_id = (le32_to_cpu(
1278 np->tx_ring[entry].status) >> 2) & 0xff;
1279 if (sw_frame_id == hw_frame_id &&
1280 !(le32_to_cpu(np->tx_ring[entry].status)
1281 & 0x00010000))
1282 break;
6aa20a22 1283 if (sw_frame_id == (hw_frame_id + 1) %
1da177e4
LT
1284 TX_RING_SIZE)
1285 break;
1286 skb = np->tx_skbuff[entry];
1287 /* Free the original skb. */
0c8a745f 1288 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1289 le32_to_cpu(np->tx_ring[entry].frag[0].addr),
0c8a745f 1290 skb->len, DMA_TO_DEVICE);
1da177e4
LT
1291 dev_kfree_skb_irq (np->tx_skbuff[entry]);
1292 np->tx_skbuff[entry] = NULL;
1293 np->tx_ring[entry].frag[0].addr = 0;
1294 np->tx_ring[entry].frag[0].length = 0;
1295 }
1296 spin_unlock(&np->lock);
1297 } else {
1298 spin_lock(&np->lock);
1299 for (; np->cur_tx - np->dirty_tx > 0; np->dirty_tx++) {
1300 int entry = np->dirty_tx % TX_RING_SIZE;
1301 struct sk_buff *skb;
6aa20a22 1302 if (!(le32_to_cpu(np->tx_ring[entry].status)
1da177e4
LT
1303 & 0x00010000))
1304 break;
1305 skb = np->tx_skbuff[entry];
1306 /* Free the original skb. */
0c8a745f 1307 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1308 le32_to_cpu(np->tx_ring[entry].frag[0].addr),
0c8a745f 1309 skb->len, DMA_TO_DEVICE);
1da177e4
LT
1310 dev_kfree_skb_irq (np->tx_skbuff[entry]);
1311 np->tx_skbuff[entry] = NULL;
1312 np->tx_ring[entry].frag[0].addr = 0;
1313 np->tx_ring[entry].frag[0].length = 0;
1314 }
1315 spin_unlock(&np->lock);
1316 }
6aa20a22 1317
1da177e4
LT
1318 if (netif_queue_stopped(dev) &&
1319 np->cur_tx - np->dirty_tx < TX_QUEUE_LEN - 4) {
1320 /* The ring is no longer full, clear busy flag. */
1321 netif_wake_queue (dev);
1322 }
1323 /* Abnormal error summary/uncommon events handlers. */
1324 if (intr_status & (IntrPCIErr | LinkChange | StatsMax))
1325 netdev_error(dev, intr_status);
1326 } while (0);
1327 if (netif_msg_intr(np))
1328 printk(KERN_DEBUG "%s: exiting interrupt, status=%#4.4x.\n",
1329 dev->name, ioread16(ioaddr + IntrStatus));
1330 return IRQ_RETVAL(handled);
1331}
1332
1333static void rx_poll(unsigned long data)
1334{
1335 struct net_device *dev = (struct net_device *)data;
1336 struct netdev_private *np = netdev_priv(dev);
1337 int entry = np->cur_rx % RX_RING_SIZE;
1338 int boguscnt = np->budget;
1339 void __iomem *ioaddr = np->base;
1340 int received = 0;
1341
1342 /* If EOP is set on the next entry, it's a new packet. Send it up. */
1343 while (1) {
1344 struct netdev_desc *desc = &(np->rx_ring[entry]);
1345 u32 frame_status = le32_to_cpu(desc->status);
1346 int pkt_len;
1347
1348 if (--boguscnt < 0) {
1349 goto not_done;
1350 }
1351 if (!(frame_status & DescOwn))
1352 break;
1353 pkt_len = frame_status & 0x1fff; /* Chip omits the CRC. */
1354 if (netif_msg_rx_status(np))
1355 printk(KERN_DEBUG " netdev_rx() status was %8.8x.\n",
1356 frame_status);
1357 if (frame_status & 0x001f4000) {
1358 /* There was a error. */
1359 if (netif_msg_rx_err(np))
1360 printk(KERN_DEBUG " netdev_rx() Rx error was %8.8x.\n",
1361 frame_status);
553e2335
ED
1362 dev->stats.rx_errors++;
1363 if (frame_status & 0x00100000)
1364 dev->stats.rx_length_errors++;
1365 if (frame_status & 0x00010000)
1366 dev->stats.rx_fifo_errors++;
1367 if (frame_status & 0x00060000)
1368 dev->stats.rx_frame_errors++;
1369 if (frame_status & 0x00080000)
1370 dev->stats.rx_crc_errors++;
1da177e4
LT
1371 if (frame_status & 0x00100000) {
1372 printk(KERN_WARNING "%s: Oversized Ethernet frame,"
1373 " status %8.8x.\n",
1374 dev->name, frame_status);
1375 }
1376 } else {
1377 struct sk_buff *skb;
1378#ifndef final_version
1379 if (netif_msg_rx_status(np))
1380 printk(KERN_DEBUG " netdev_rx() normal Rx pkt length %d"
1381 ", bogus_cnt %d.\n",
1382 pkt_len, boguscnt);
1383#endif
1384 /* Check if the packet is long enough to accept without copying
1385 to a minimally-sized skbuff. */
8e95a202 1386 if (pkt_len < rx_copybreak &&
21a4e469 1387 (skb = netdev_alloc_skb(dev, pkt_len + 2)) != NULL) {
1da177e4 1388 skb_reserve(skb, 2); /* 16 byte align the IP header */
0c8a745f
DK
1389 dma_sync_single_for_cpu(&np->pci_dev->dev,
1390 le32_to_cpu(desc->frag[0].addr),
1391 np->rx_buf_sz, DMA_FROM_DEVICE);
8c7b7faa 1392 skb_copy_to_linear_data(skb, np->rx_skbuff[entry]->data, pkt_len);
0c8a745f
DK
1393 dma_sync_single_for_device(&np->pci_dev->dev,
1394 le32_to_cpu(desc->frag[0].addr),
1395 np->rx_buf_sz, DMA_FROM_DEVICE);
1da177e4
LT
1396 skb_put(skb, pkt_len);
1397 } else {
0c8a745f 1398 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1399 le32_to_cpu(desc->frag[0].addr),
0c8a745f 1400 np->rx_buf_sz, DMA_FROM_DEVICE);
1da177e4
LT
1401 skb_put(skb = np->rx_skbuff[entry], pkt_len);
1402 np->rx_skbuff[entry] = NULL;
1403 }
1404 skb->protocol = eth_type_trans(skb, dev);
1405 /* Note: checksum -> skb->ip_summed = CHECKSUM_UNNECESSARY; */
1406 netif_rx(skb);
1da177e4
LT
1407 }
1408 entry = (entry + 1) % RX_RING_SIZE;
1409 received++;
1410 }
1411 np->cur_rx = entry;
1412 refill_rx (dev);
1413 np->budget -= received;
1414 iowrite16(DEFAULT_INTR, ioaddr + IntrEnable);
1415 return;
1416
1417not_done:
1418 np->cur_rx = entry;
1419 refill_rx (dev);
1420 if (!received)
1421 received = 1;
1422 np->budget -= received;
1423 if (np->budget <= 0)
1424 np->budget = RX_BUDGET;
1425 tasklet_schedule(&np->rx_tasklet);
1da177e4
LT
1426}
1427
1428static void refill_rx (struct net_device *dev)
1429{
1430 struct netdev_private *np = netdev_priv(dev);
1431 int entry;
1432 int cnt = 0;
1433
1434 /* Refill the Rx ring buffers. */
1435 for (;(np->cur_rx - np->dirty_rx + RX_RING_SIZE) % RX_RING_SIZE > 0;
1436 np->dirty_rx = (np->dirty_rx + 1) % RX_RING_SIZE) {
1437 struct sk_buff *skb;
1438 entry = np->dirty_rx % RX_RING_SIZE;
1439 if (np->rx_skbuff[entry] == NULL) {
21a4e469 1440 skb = netdev_alloc_skb(dev, np->rx_buf_sz + 2);
1da177e4
LT
1441 np->rx_skbuff[entry] = skb;
1442 if (skb == NULL)
1443 break; /* Better luck next round. */
1da177e4
LT
1444 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
1445 np->rx_ring[entry].frag[0].addr = cpu_to_le32(
0c8a745f
DK
1446 dma_map_single(&np->pci_dev->dev, skb->data,
1447 np->rx_buf_sz, DMA_FROM_DEVICE));
d91dc279
DK
1448 if (dma_mapping_error(&np->pci_dev->dev,
1449 np->rx_ring[entry].frag[0].addr)) {
1450 dev_kfree_skb_irq(skb);
1451 np->rx_skbuff[entry] = NULL;
1452 break;
1453 }
1da177e4
LT
1454 }
1455 /* Perhaps we need not reset this field. */
1456 np->rx_ring[entry].frag[0].length =
1457 cpu_to_le32(np->rx_buf_sz | LastFrag);
1458 np->rx_ring[entry].status = 0;
1459 cnt++;
1460 }
1da177e4
LT
1461}
1462static void netdev_error(struct net_device *dev, int intr_status)
1463{
1464 struct netdev_private *np = netdev_priv(dev);
1465 void __iomem *ioaddr = np->base;
1466 u16 mii_ctl, mii_advertise, mii_lpa;
1467 int speed;
1468
1469 if (intr_status & LinkChange) {
50500155
DN
1470 if (mdio_wait_link(dev, 10) == 0) {
1471 printk(KERN_INFO "%s: Link up\n", dev->name);
1472 if (np->an_enable) {
1473 mii_advertise = mdio_read(dev, np->phys[0],
1474 MII_ADVERTISE);
1475 mii_lpa = mdio_read(dev, np->phys[0], MII_LPA);
1476 mii_advertise &= mii_lpa;
1477 printk(KERN_INFO "%s: Link changed: ",
1478 dev->name);
1479 if (mii_advertise & ADVERTISE_100FULL) {
1480 np->speed = 100;
1481 printk("100Mbps, full duplex\n");
1482 } else if (mii_advertise & ADVERTISE_100HALF) {
1483 np->speed = 100;
1484 printk("100Mbps, half duplex\n");
1485 } else if (mii_advertise & ADVERTISE_10FULL) {
1486 np->speed = 10;
1487 printk("10Mbps, full duplex\n");
1488 } else if (mii_advertise & ADVERTISE_10HALF) {
1489 np->speed = 10;
1490 printk("10Mbps, half duplex\n");
1491 } else
1492 printk("\n");
1da177e4 1493
50500155
DN
1494 } else {
1495 mii_ctl = mdio_read(dev, np->phys[0], MII_BMCR);
1496 speed = (mii_ctl & BMCR_SPEED100) ? 100 : 10;
1497 np->speed = speed;
1498 printk(KERN_INFO "%s: Link changed: %dMbps ,",
1499 dev->name, speed);
1500 printk("%s duplex.\n",
1501 (mii_ctl & BMCR_FULLDPLX) ?
1502 "full" : "half");
1503 }
1504 check_duplex(dev);
1505 if (np->flowctrl && np->mii_if.full_duplex) {
1506 iowrite16(ioread16(ioaddr + MulticastFilter1+2) | 0x0200,
1507 ioaddr + MulticastFilter1+2);
1508 iowrite16(ioread16(ioaddr + MACCtrl0) | EnbFlowCtrl,
1509 ioaddr + MACCtrl0);
1510 }
1511 netif_carrier_on(dev);
1da177e4 1512 } else {
50500155
DN
1513 printk(KERN_INFO "%s: Link down\n", dev->name);
1514 netif_carrier_off(dev);
1da177e4
LT
1515 }
1516 }
1517 if (intr_status & StatsMax) {
1518 get_stats(dev);
1519 }
1520 if (intr_status & IntrPCIErr) {
1521 printk(KERN_ERR "%s: Something Wicked happened! %4.4x.\n",
1522 dev->name, intr_status);
1523 /* We must do a global reset of DMA to continue. */
1524 }
1525}
1526
1527static struct net_device_stats *get_stats(struct net_device *dev)
1528{
1529 struct netdev_private *np = netdev_priv(dev);
1530 void __iomem *ioaddr = np->base;
7b738b55 1531 unsigned long flags;
725a4a46 1532 u8 late_coll, single_coll, mult_coll;
1da177e4 1533
7b738b55 1534 spin_lock_irqsave(&np->statlock, flags);
1da177e4 1535 /* The chip only need report frame silently dropped. */
553e2335
ED
1536 dev->stats.rx_missed_errors += ioread8(ioaddr + RxMissed);
1537 dev->stats.tx_packets += ioread16(ioaddr + TxFramesOK);
1538 dev->stats.rx_packets += ioread16(ioaddr + RxFramesOK);
553e2335 1539 dev->stats.tx_carrier_errors += ioread8(ioaddr + StatsCarrierError);
725a4a46
DK
1540
1541 mult_coll = ioread8(ioaddr + StatsMultiColl);
1542 np->xstats.tx_multiple_collisions += mult_coll;
1543 single_coll = ioread8(ioaddr + StatsOneColl);
1544 np->xstats.tx_single_collisions += single_coll;
1545 late_coll = ioread8(ioaddr + StatsLateColl);
1546 np->xstats.tx_late_collisions += late_coll;
1547 dev->stats.collisions += mult_coll
1548 + single_coll
1549 + late_coll;
1550
1551 np->xstats.tx_deferred += ioread8(ioaddr + StatsTxDefer);
1552 np->xstats.tx_deferred_excessive += ioread8(ioaddr + StatsTxXSDefer);
1553 np->xstats.tx_aborted += ioread8(ioaddr + StatsTxAbort);
1554 np->xstats.tx_bcasts += ioread8(ioaddr + StatsBcastTx);
1555 np->xstats.rx_bcasts += ioread8(ioaddr + StatsBcastRx);
1556 np->xstats.tx_mcasts += ioread8(ioaddr + StatsMcastTx);
1557 np->xstats.rx_mcasts += ioread8(ioaddr + StatsMcastRx);
1558
553e2335
ED
1559 dev->stats.tx_bytes += ioread16(ioaddr + TxOctetsLow);
1560 dev->stats.tx_bytes += ioread16(ioaddr + TxOctetsHigh) << 16;
1561 dev->stats.rx_bytes += ioread16(ioaddr + RxOctetsLow);
1562 dev->stats.rx_bytes += ioread16(ioaddr + RxOctetsHigh) << 16;
1da177e4 1563
7b738b55
ED
1564 spin_unlock_irqrestore(&np->statlock, flags);
1565
553e2335 1566 return &dev->stats;
1da177e4
LT
1567}
1568
1569static void set_rx_mode(struct net_device *dev)
1570{
1571 struct netdev_private *np = netdev_priv(dev);
1572 void __iomem *ioaddr = np->base;
1573 u16 mc_filter[4]; /* Multicast hash filter */
1574 u32 rx_mode;
1575 int i;
1576
1577 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
1da177e4
LT
1578 memset(mc_filter, 0xff, sizeof(mc_filter));
1579 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptAll | AcceptMyPhys;
4cd24eaf 1580 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
8e95a202 1581 (dev->flags & IFF_ALLMULTI)) {
1da177e4
LT
1582 /* Too many to match, or accept all multicasts. */
1583 memset(mc_filter, 0xff, sizeof(mc_filter));
1584 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
4cd24eaf 1585 } else if (!netdev_mc_empty(dev)) {
22bedad3 1586 struct netdev_hw_addr *ha;
1da177e4
LT
1587 int bit;
1588 int index;
1589 int crc;
1590 memset (mc_filter, 0, sizeof (mc_filter));
22bedad3
JP
1591 netdev_for_each_mc_addr(ha, dev) {
1592 crc = ether_crc_le(ETH_ALEN, ha->addr);
1da177e4
LT
1593 for (index=0, bit=0; bit < 6; bit++, crc <<= 1)
1594 if (crc & 0x80000000) index |= 1 << bit;
1595 mc_filter[index/16] |= (1 << (index % 16));
1596 }
1597 rx_mode = AcceptBroadcast | AcceptMultiHash | AcceptMyPhys;
1598 } else {
1599 iowrite8(AcceptBroadcast | AcceptMyPhys, ioaddr + RxMode);
1600 return;
1601 }
1602 if (np->mii_if.full_duplex && np->flowctrl)
1603 mc_filter[3] |= 0x0200;
1604
1605 for (i = 0; i < 4; i++)
1606 iowrite16(mc_filter[i], ioaddr + MulticastFilter0 + i*2);
1607 iowrite8(rx_mode, ioaddr + RxMode);
1608}
1609
1610static int __set_mac_addr(struct net_device *dev)
1611{
1612 struct netdev_private *np = netdev_priv(dev);
1613 u16 addr16;
1614
1615 addr16 = (dev->dev_addr[0] | (dev->dev_addr[1] << 8));
1616 iowrite16(addr16, np->base + StationAddr);
1617 addr16 = (dev->dev_addr[2] | (dev->dev_addr[3] << 8));
1618 iowrite16(addr16, np->base + StationAddr+2);
1619 addr16 = (dev->dev_addr[4] | (dev->dev_addr[5] << 8));
1620 iowrite16(addr16, np->base + StationAddr+4);
1621 return 0;
1622}
1623
4b4f5467
DK
1624/* Invoked with rtnl_lock held */
1625static int sundance_set_mac_addr(struct net_device *dev, void *data)
1626{
1627 const struct sockaddr *addr = data;
1628
1629 if (!is_valid_ether_addr(addr->sa_data))
504f9b5a 1630 return -EADDRNOTAVAIL;
4b4f5467
DK
1631 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
1632 __set_mac_addr(dev);
1633
1634 return 0;
1635}
1636
725a4a46
DK
1637static const struct {
1638 const char name[ETH_GSTRING_LEN];
1639} sundance_stats[] = {
1640 { "tx_multiple_collisions" },
1641 { "tx_single_collisions" },
1642 { "tx_late_collisions" },
1643 { "tx_deferred" },
1644 { "tx_deferred_excessive" },
1645 { "tx_aborted" },
1646 { "tx_bcasts" },
1647 { "rx_bcasts" },
1648 { "tx_mcasts" },
1649 { "rx_mcasts" },
1650};
1651
1da177e4
LT
1652static int check_if_running(struct net_device *dev)
1653{
1654 if (!netif_running(dev))
1655 return -EINVAL;
1656 return 0;
1657}
1658
1659static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1660{
1661 struct netdev_private *np = netdev_priv(dev);
68aad78c
RJ
1662 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1663 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1664 strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info));
1da177e4
LT
1665}
1666
1667static int get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1668{
1669 struct netdev_private *np = netdev_priv(dev);
1670 spin_lock_irq(&np->lock);
1671 mii_ethtool_gset(&np->mii_if, ecmd);
1672 spin_unlock_irq(&np->lock);
1673 return 0;
1674}
1675
1676static int set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1677{
1678 struct netdev_private *np = netdev_priv(dev);
1679 int res;
1680 spin_lock_irq(&np->lock);
1681 res = mii_ethtool_sset(&np->mii_if, ecmd);
1682 spin_unlock_irq(&np->lock);
1683 return res;
1684}
1685
1686static int nway_reset(struct net_device *dev)
1687{
1688 struct netdev_private *np = netdev_priv(dev);
1689 return mii_nway_restart(&np->mii_if);
1690}
1691
1692static u32 get_link(struct net_device *dev)
1693{
1694 struct netdev_private *np = netdev_priv(dev);
1695 return mii_link_ok(&np->mii_if);
1696}
1697
1698static u32 get_msglevel(struct net_device *dev)
1699{
1700 struct netdev_private *np = netdev_priv(dev);
1701 return np->msg_enable;
1702}
1703
1704static void set_msglevel(struct net_device *dev, u32 val)
1705{
1706 struct netdev_private *np = netdev_priv(dev);
1707 np->msg_enable = val;
1708}
1709
725a4a46
DK
1710static void get_strings(struct net_device *dev, u32 stringset,
1711 u8 *data)
1712{
1713 if (stringset == ETH_SS_STATS)
1714 memcpy(data, sundance_stats, sizeof(sundance_stats));
1715}
1716
1717static int get_sset_count(struct net_device *dev, int sset)
1718{
1719 switch (sset) {
1720 case ETH_SS_STATS:
1721 return ARRAY_SIZE(sundance_stats);
1722 default:
1723 return -EOPNOTSUPP;
1724 }
1725}
1726
1727static void get_ethtool_stats(struct net_device *dev,
1728 struct ethtool_stats *stats, u64 *data)
1729{
1730 struct netdev_private *np = netdev_priv(dev);
1731 int i = 0;
1732
1733 get_stats(dev);
1734 data[i++] = np->xstats.tx_multiple_collisions;
1735 data[i++] = np->xstats.tx_single_collisions;
1736 data[i++] = np->xstats.tx_late_collisions;
1737 data[i++] = np->xstats.tx_deferred;
1738 data[i++] = np->xstats.tx_deferred_excessive;
1739 data[i++] = np->xstats.tx_aborted;
1740 data[i++] = np->xstats.tx_bcasts;
1741 data[i++] = np->xstats.rx_bcasts;
1742 data[i++] = np->xstats.tx_mcasts;
1743 data[i++] = np->xstats.rx_mcasts;
1744}
1745
f210e87b
DK
1746#ifdef CONFIG_PM
1747
1748static void sundance_get_wol(struct net_device *dev,
1749 struct ethtool_wolinfo *wol)
1750{
1751 struct netdev_private *np = netdev_priv(dev);
1752 void __iomem *ioaddr = np->base;
1753 u8 wol_bits;
1754
1755 wol->wolopts = 0;
1756
1757 wol->supported = (WAKE_PHY | WAKE_MAGIC);
1758 if (!np->wol_enabled)
1759 return;
1760
1761 wol_bits = ioread8(ioaddr + WakeEvent);
1762 if (wol_bits & MagicPktEnable)
1763 wol->wolopts |= WAKE_MAGIC;
1764 if (wol_bits & LinkEventEnable)
1765 wol->wolopts |= WAKE_PHY;
1766}
1767
1768static int sundance_set_wol(struct net_device *dev,
1769 struct ethtool_wolinfo *wol)
1770{
1771 struct netdev_private *np = netdev_priv(dev);
1772 void __iomem *ioaddr = np->base;
1773 u8 wol_bits;
1774
1775 if (!device_can_wakeup(&np->pci_dev->dev))
1776 return -EOPNOTSUPP;
1777
1778 np->wol_enabled = !!(wol->wolopts);
1779 wol_bits = ioread8(ioaddr + WakeEvent);
1780 wol_bits &= ~(WakePktEnable | MagicPktEnable |
1781 LinkEventEnable | WolEnable);
1782
1783 if (np->wol_enabled) {
1784 if (wol->wolopts & WAKE_MAGIC)
1785 wol_bits |= (MagicPktEnable | WolEnable);
1786 if (wol->wolopts & WAKE_PHY)
1787 wol_bits |= (LinkEventEnable | WolEnable);
1788 }
1789 iowrite8(wol_bits, ioaddr + WakeEvent);
1790
1791 device_set_wakeup_enable(&np->pci_dev->dev, np->wol_enabled);
1792
1793 return 0;
1794}
1795#else
1796#define sundance_get_wol NULL
1797#define sundance_set_wol NULL
1798#endif /* CONFIG_PM */
1799
7282d491 1800static const struct ethtool_ops ethtool_ops = {
1da177e4
LT
1801 .begin = check_if_running,
1802 .get_drvinfo = get_drvinfo,
1803 .get_settings = get_settings,
1804 .set_settings = set_settings,
1805 .nway_reset = nway_reset,
1806 .get_link = get_link,
f210e87b
DK
1807 .get_wol = sundance_get_wol,
1808 .set_wol = sundance_set_wol,
1da177e4
LT
1809 .get_msglevel = get_msglevel,
1810 .set_msglevel = set_msglevel,
725a4a46
DK
1811 .get_strings = get_strings,
1812 .get_sset_count = get_sset_count,
1813 .get_ethtool_stats = get_ethtool_stats,
1da177e4
LT
1814};
1815
1816static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1817{
1818 struct netdev_private *np = netdev_priv(dev);
1da177e4 1819 int rc;
1da177e4
LT
1820
1821 if (!netif_running(dev))
1822 return -EINVAL;
1823
1824 spin_lock_irq(&np->lock);
1825 rc = generic_mii_ioctl(&np->mii_if, if_mii(rq), cmd, NULL);
1826 spin_unlock_irq(&np->lock);
1da177e4
LT
1827
1828 return rc;
1829}
1830
1831static int netdev_close(struct net_device *dev)
1832{
1833 struct netdev_private *np = netdev_priv(dev);
1834 void __iomem *ioaddr = np->base;
1835 struct sk_buff *skb;
1836 int i;
1837
31f817e9
JH
1838 /* Wait and kill tasklet */
1839 tasklet_kill(&np->rx_tasklet);
1840 tasklet_kill(&np->tx_tasklet);
1841 np->cur_tx = 0;
1842 np->dirty_tx = 0;
1843 np->cur_task = 0;
bca79eb7 1844 np->last_tx = NULL;
31f817e9 1845
1da177e4
LT
1846 netif_stop_queue(dev);
1847
1848 if (netif_msg_ifdown(np)) {
1849 printk(KERN_DEBUG "%s: Shutting down ethercard, status was Tx %2.2x "
1850 "Rx %4.4x Int %2.2x.\n",
1851 dev->name, ioread8(ioaddr + TxStatus),
1852 ioread32(ioaddr + RxStatus), ioread16(ioaddr + IntrStatus));
1853 printk(KERN_DEBUG "%s: Queue pointers were Tx %d / %d, Rx %d / %d.\n",
1854 dev->name, np->cur_tx, np->dirty_tx, np->cur_rx, np->dirty_rx);
1855 }
1856
1857 /* Disable interrupts by clearing the interrupt mask. */
1858 iowrite16(0x0000, ioaddr + IntrEnable);
1859
acd70c2b
JH
1860 /* Disable Rx and Tx DMA for safely release resource */
1861 iowrite32(0x500, ioaddr + DMACtrl);
1862
1da177e4
LT
1863 /* Stop the chip's Tx and Rx processes. */
1864 iowrite16(TxDisable | RxDisable | StatsDisable, ioaddr + MACCtrl1);
1865
31f817e9
JH
1866 for (i = 2000; i > 0; i--) {
1867 if ((ioread32(ioaddr + DMACtrl) & 0xc000) == 0)
1868 break;
1869 mdelay(1);
1870 }
1871
1872 iowrite16(GlobalReset | DMAReset | FIFOReset | NetworkReset,
24de5285 1873 ioaddr + ASIC_HI_WORD(ASICCtrl));
31f817e9
JH
1874
1875 for (i = 2000; i > 0; i--) {
24de5285 1876 if ((ioread16(ioaddr + ASIC_HI_WORD(ASICCtrl)) & ResetBusy) == 0)
31f817e9
JH
1877 break;
1878 mdelay(1);
1879 }
1da177e4
LT
1880
1881#ifdef __i386__
1882 if (netif_msg_hw(np)) {
ad361c98 1883 printk(KERN_DEBUG " Tx ring at %8.8x:\n",
1da177e4
LT
1884 (int)(np->tx_ring_dma));
1885 for (i = 0; i < TX_RING_SIZE; i++)
ad361c98 1886 printk(KERN_DEBUG " #%d desc. %4.4x %8.8x %8.8x.\n",
1da177e4
LT
1887 i, np->tx_ring[i].status, np->tx_ring[i].frag[0].addr,
1888 np->tx_ring[i].frag[0].length);
ad361c98 1889 printk(KERN_DEBUG " Rx ring %8.8x:\n",
1da177e4
LT
1890 (int)(np->rx_ring_dma));
1891 for (i = 0; i < /*RX_RING_SIZE*/4 ; i++) {
1892 printk(KERN_DEBUG " #%d desc. %4.4x %4.4x %8.8x\n",
1893 i, np->rx_ring[i].status, np->rx_ring[i].frag[0].addr,
1894 np->rx_ring[i].frag[0].length);
1895 }
1896 }
1897#endif /* __i386__ debugging only */
1898
c514f285 1899 free_irq(np->pci_dev->irq, dev);
1da177e4
LT
1900
1901 del_timer_sync(&np->timer);
1902
1903 /* Free all the skbuffs in the Rx queue. */
1904 for (i = 0; i < RX_RING_SIZE; i++) {
1905 np->rx_ring[i].status = 0;
1da177e4
LT
1906 skb = np->rx_skbuff[i];
1907 if (skb) {
0c8a745f 1908 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1909 le32_to_cpu(np->rx_ring[i].frag[0].addr),
0c8a745f 1910 np->rx_buf_sz, DMA_FROM_DEVICE);
1da177e4
LT
1911 dev_kfree_skb(skb);
1912 np->rx_skbuff[i] = NULL;
1913 }
14c9d9b0 1914 np->rx_ring[i].frag[0].addr = cpu_to_le32(0xBADF00D0); /* poison */
1da177e4
LT
1915 }
1916 for (i = 0; i < TX_RING_SIZE; i++) {
31f817e9 1917 np->tx_ring[i].next_desc = 0;
1da177e4
LT
1918 skb = np->tx_skbuff[i];
1919 if (skb) {
0c8a745f 1920 dma_unmap_single(&np->pci_dev->dev,
14c9d9b0 1921 le32_to_cpu(np->tx_ring[i].frag[0].addr),
0c8a745f 1922 skb->len, DMA_TO_DEVICE);
1da177e4
LT
1923 dev_kfree_skb(skb);
1924 np->tx_skbuff[i] = NULL;
1925 }
1926 }
1927
1928 return 0;
1929}
1930
64bc40de 1931static void sundance_remove1(struct pci_dev *pdev)
1da177e4
LT
1932{
1933 struct net_device *dev = pci_get_drvdata(pdev);
1934
1935 if (dev) {
0c8a745f
DK
1936 struct netdev_private *np = netdev_priv(dev);
1937 unregister_netdev(dev);
1938 dma_free_coherent(&pdev->dev, RX_TOTAL_SIZE,
1939 np->rx_ring, np->rx_ring_dma);
1940 dma_free_coherent(&pdev->dev, TX_TOTAL_SIZE,
1941 np->tx_ring, np->tx_ring_dma);
1942 pci_iounmap(pdev, np->base);
1943 pci_release_regions(pdev);
1944 free_netdev(dev);
1da177e4
LT
1945 }
1946}
1947
61a21455
DK
1948#ifdef CONFIG_PM
1949
1950static int sundance_suspend(struct pci_dev *pci_dev, pm_message_t state)
1951{
1952 struct net_device *dev = pci_get_drvdata(pci_dev);
f210e87b
DK
1953 struct netdev_private *np = netdev_priv(dev);
1954 void __iomem *ioaddr = np->base;
61a21455
DK
1955
1956 if (!netif_running(dev))
1957 return 0;
1958
1959 netdev_close(dev);
1960 netif_device_detach(dev);
1961
1962 pci_save_state(pci_dev);
f210e87b
DK
1963 if (np->wol_enabled) {
1964 iowrite8(AcceptBroadcast | AcceptMyPhys, ioaddr + RxMode);
1965 iowrite16(RxEnable, ioaddr + MACCtrl1);
1966 }
1967 pci_enable_wake(pci_dev, pci_choose_state(pci_dev, state),
1968 np->wol_enabled);
61a21455
DK
1969 pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state));
1970
1971 return 0;
1972}
1973
1974static int sundance_resume(struct pci_dev *pci_dev)
1975{
1976 struct net_device *dev = pci_get_drvdata(pci_dev);
1977 int err = 0;
1978
1979 if (!netif_running(dev))
1980 return 0;
1981
1982 pci_set_power_state(pci_dev, PCI_D0);
1983 pci_restore_state(pci_dev);
f210e87b 1984 pci_enable_wake(pci_dev, PCI_D0, 0);
61a21455
DK
1985
1986 err = netdev_open(dev);
1987 if (err) {
1988 printk(KERN_ERR "%s: Can't resume interface!\n",
1989 dev->name);
1990 goto out;
1991 }
1992
1993 netif_device_attach(dev);
1994
1995out:
1996 return err;
1997}
1998
1999#endif /* CONFIG_PM */
2000
1da177e4
LT
2001static struct pci_driver sundance_driver = {
2002 .name = DRV_NAME,
2003 .id_table = sundance_pci_tbl,
2004 .probe = sundance_probe1,
64bc40de 2005 .remove = sundance_remove1,
61a21455
DK
2006#ifdef CONFIG_PM
2007 .suspend = sundance_suspend,
2008 .resume = sundance_resume,
2009#endif /* CONFIG_PM */
1da177e4
LT
2010};
2011
2012static int __init sundance_init(void)
2013{
2014/* when a module, this is printed whether or not devices are found in probe */
2015#ifdef MODULE
2016 printk(version);
2017#endif
29917620 2018 return pci_register_driver(&sundance_driver);
1da177e4
LT
2019}
2020
2021static void __exit sundance_exit(void)
2022{
2023 pci_unregister_driver(&sundance_driver);
2024}
2025
2026module_init(sundance_init);
2027module_exit(sundance_exit);
2028
2029