[PATCH] pcnet32: Suspend the chip rather than restart when changing multicast/promisc
[pandora-kernel.git] / drivers / net / pcnet32.c
1 /* pcnet32.c: An AMD PCnet32 ethernet driver for linux. */
2 /*
3  *      Copyright 1996-1999 Thomas Bogendoerfer
4  *
5  *      Derived from the lance driver written 1993,1994,1995 by Donald Becker.
6  *
7  *      Copyright 1993 United States Government as represented by the
8  *      Director, National Security Agency.
9  *
10  *      This software may be used and distributed according to the terms
11  *      of the GNU General Public License, incorporated herein by reference.
12  *
13  *      This driver is for PCnet32 and PCnetPCI based ethercards
14  */
15 /**************************************************************************
16  *  23 Oct, 2000.
17  *  Fixed a few bugs, related to running the controller in 32bit mode.
18  *
19  *  Carsten Langgaard, carstenl@mips.com
20  *  Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
21  *
22  *************************************************************************/
23
24 #define DRV_NAME        "pcnet32"
25 #define DRV_VERSION     "1.32"
26 #define DRV_RELDATE     "18.Mar.2006"
27 #define PFX             DRV_NAME ": "
28
29 static const char *const version =
30     DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " tsbogend@alpha.franken.de\n";
31
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/string.h>
35 #include <linux/errno.h>
36 #include <linux/ioport.h>
37 #include <linux/slab.h>
38 #include <linux/interrupt.h>
39 #include <linux/pci.h>
40 #include <linux/delay.h>
41 #include <linux/init.h>
42 #include <linux/ethtool.h>
43 #include <linux/mii.h>
44 #include <linux/crc32.h>
45 #include <linux/netdevice.h>
46 #include <linux/etherdevice.h>
47 #include <linux/skbuff.h>
48 #include <linux/spinlock.h>
49 #include <linux/moduleparam.h>
50 #include <linux/bitops.h>
51
52 #include <asm/dma.h>
53 #include <asm/io.h>
54 #include <asm/uaccess.h>
55 #include <asm/irq.h>
56
57 /*
58  * PCI device identifiers for "new style" Linux PCI Device Drivers
59  */
60 static struct pci_device_id pcnet32_pci_tbl[] = {
61         { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE_HOME), },
62         { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE), },
63
64         /*
65          * Adapters that were sold with IBM's RS/6000 or pSeries hardware have
66          * the incorrect vendor id.
67          */
68         { PCI_DEVICE(PCI_VENDOR_ID_TRIDENT, PCI_DEVICE_ID_AMD_LANCE),
69           .class = (PCI_CLASS_NETWORK_ETHERNET << 8), .class_mask = 0xffff00, },
70
71         { }     /* terminate list */
72 };
73
74 MODULE_DEVICE_TABLE(pci, pcnet32_pci_tbl);
75
76 static int cards_found;
77
78 /*
79  * VLB I/O addresses
80  */
81 static unsigned int pcnet32_portlist[] __initdata =
82     { 0x300, 0x320, 0x340, 0x360, 0 };
83
84 static int pcnet32_debug = 0;
85 static int tx_start = 1;        /* Mapping -- 0:20, 1:64, 2:128, 3:~220 (depends on chip vers) */
86 static int pcnet32vlb;          /* check for VLB cards ? */
87
88 static struct net_device *pcnet32_dev;
89
90 static int max_interrupt_work = 2;
91 static int rx_copybreak = 200;
92
93 #define PCNET32_PORT_AUI      0x00
94 #define PCNET32_PORT_10BT     0x01
95 #define PCNET32_PORT_GPSI     0x02
96 #define PCNET32_PORT_MII      0x03
97
98 #define PCNET32_PORT_PORTSEL  0x03
99 #define PCNET32_PORT_ASEL     0x04
100 #define PCNET32_PORT_100      0x40
101 #define PCNET32_PORT_FD       0x80
102
103 #define PCNET32_DMA_MASK 0xffffffff
104
105 #define PCNET32_WATCHDOG_TIMEOUT (jiffies + (2 * HZ))
106 #define PCNET32_BLINK_TIMEOUT   (jiffies + (HZ/4))
107
108 /*
109  * table to translate option values from tulip
110  * to internal options
111  */
112 static const unsigned char options_mapping[] = {
113         PCNET32_PORT_ASEL,                      /*  0 Auto-select      */
114         PCNET32_PORT_AUI,                       /*  1 BNC/AUI          */
115         PCNET32_PORT_AUI,                       /*  2 AUI/BNC          */
116         PCNET32_PORT_ASEL,                      /*  3 not supported    */
117         PCNET32_PORT_10BT | PCNET32_PORT_FD,    /*  4 10baseT-FD       */
118         PCNET32_PORT_ASEL,                      /*  5 not supported    */
119         PCNET32_PORT_ASEL,                      /*  6 not supported    */
120         PCNET32_PORT_ASEL,                      /*  7 not supported    */
121         PCNET32_PORT_ASEL,                      /*  8 not supported    */
122         PCNET32_PORT_MII,                       /*  9 MII 10baseT      */
123         PCNET32_PORT_MII | PCNET32_PORT_FD,     /* 10 MII 10baseT-FD   */
124         PCNET32_PORT_MII,                       /* 11 MII (autosel)    */
125         PCNET32_PORT_10BT,                      /* 12 10BaseT          */
126         PCNET32_PORT_MII | PCNET32_PORT_100,    /* 13 MII 100BaseTx    */
127                                                 /* 14 MII 100BaseTx-FD */
128         PCNET32_PORT_MII | PCNET32_PORT_100 | PCNET32_PORT_FD,
129         PCNET32_PORT_ASEL                       /* 15 not supported    */
130 };
131
132 static const char pcnet32_gstrings_test[][ETH_GSTRING_LEN] = {
133         "Loopback test  (offline)"
134 };
135
136 #define PCNET32_TEST_LEN (sizeof(pcnet32_gstrings_test) / ETH_GSTRING_LEN)
137
138 #define PCNET32_NUM_REGS 136
139
140 #define MAX_UNITS 8             /* More are supported, limit only on options */
141 static int options[MAX_UNITS];
142 static int full_duplex[MAX_UNITS];
143 static int homepna[MAX_UNITS];
144
145 /*
146  *                              Theory of Operation
147  *
148  * This driver uses the same software structure as the normal lance
149  * driver. So look for a verbose description in lance.c. The differences
150  * to the normal lance driver is the use of the 32bit mode of PCnet32
151  * and PCnetPCI chips. Because these chips are 32bit chips, there is no
152  * 16MB limitation and we don't need bounce buffers.
153  */
154
155 /*
156  * Set the number of Tx and Rx buffers, using Log_2(# buffers).
157  * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
158  * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
159  */
160 #ifndef PCNET32_LOG_TX_BUFFERS
161 #define PCNET32_LOG_TX_BUFFERS          4
162 #define PCNET32_LOG_RX_BUFFERS          5
163 #define PCNET32_LOG_MAX_TX_BUFFERS      9       /* 2^9 == 512 */
164 #define PCNET32_LOG_MAX_RX_BUFFERS      9
165 #endif
166
167 #define TX_RING_SIZE            (1 << (PCNET32_LOG_TX_BUFFERS))
168 #define TX_MAX_RING_SIZE        (1 << (PCNET32_LOG_MAX_TX_BUFFERS))
169
170 #define RX_RING_SIZE            (1 << (PCNET32_LOG_RX_BUFFERS))
171 #define RX_MAX_RING_SIZE        (1 << (PCNET32_LOG_MAX_RX_BUFFERS))
172
173 #define PKT_BUF_SZ              1544
174
175 /* Offsets from base I/O address. */
176 #define PCNET32_WIO_RDP         0x10
177 #define PCNET32_WIO_RAP         0x12
178 #define PCNET32_WIO_RESET       0x14
179 #define PCNET32_WIO_BDP         0x16
180
181 #define PCNET32_DWIO_RDP        0x10
182 #define PCNET32_DWIO_RAP        0x14
183 #define PCNET32_DWIO_RESET      0x18
184 #define PCNET32_DWIO_BDP        0x1C
185
186 #define PCNET32_TOTAL_SIZE      0x20
187
188 #define CSR0            0
189 #define CSR0_INIT       0x1
190 #define CSR0_START      0x2
191 #define CSR0_STOP       0x4
192 #define CSR0_TXPOLL     0x8
193 #define CSR0_INTEN      0x40
194 #define CSR0_IDON       0x0100
195 #define CSR0_NORMAL     (CSR0_START | CSR0_INTEN)
196 #define PCNET32_INIT_LOW        1
197 #define PCNET32_INIT_HIGH       2
198 #define CSR3            3
199 #define CSR4            4
200 #define CSR5            5
201 #define CSR5_SUSPEND    0x0001
202 #define CSR15           15
203 #define PCNET32_MC_FILTER       8
204
205 /* The PCNET32 Rx and Tx ring descriptors. */
206 struct pcnet32_rx_head {
207         u32     base;
208         s16     buf_length;
209         s16     status;
210         u32     msg_length;
211         u32     reserved;
212 };
213
214 struct pcnet32_tx_head {
215         u32     base;
216         s16     length;
217         s16     status;
218         u32     misc;
219         u32     reserved;
220 };
221
222 /* The PCNET32 32-Bit initialization block, described in databook. */
223 struct pcnet32_init_block {
224         u16     mode;
225         u16     tlen_rlen;
226         u8      phys_addr[6];
227         u16     reserved;
228         u32     filter[2];
229         /* Receive and transmit ring base, along with extra bits. */
230         u32     rx_ring;
231         u32     tx_ring;
232 };
233
234 /* PCnet32 access functions */
235 struct pcnet32_access {
236         u16     (*read_csr) (unsigned long, int);
237         void    (*write_csr) (unsigned long, int, u16);
238         u16     (*read_bcr) (unsigned long, int);
239         void    (*write_bcr) (unsigned long, int, u16);
240         u16     (*read_rap) (unsigned long);
241         void    (*write_rap) (unsigned long, u16);
242         void    (*reset) (unsigned long);
243 };
244
245 /*
246  * The first field of pcnet32_private is read by the ethernet device
247  * so the structure should be allocated using pci_alloc_consistent().
248  */
249 struct pcnet32_private {
250         struct pcnet32_init_block init_block;
251         /* The Tx and Rx ring entries must be aligned on 16-byte boundaries in 32bit mode. */
252         struct pcnet32_rx_head  *rx_ring;
253         struct pcnet32_tx_head  *tx_ring;
254         dma_addr_t              dma_addr;/* DMA address of beginning of this
255                                    object, returned by pci_alloc_consistent */
256         struct pci_dev          *pci_dev;
257         const char              *name;
258         /* The saved address of a sent-in-place packet/buffer, for skfree(). */
259         struct sk_buff          **tx_skbuff;
260         struct sk_buff          **rx_skbuff;
261         dma_addr_t              *tx_dma_addr;
262         dma_addr_t              *rx_dma_addr;
263         struct pcnet32_access   a;
264         spinlock_t              lock;           /* Guard lock */
265         unsigned int            cur_rx, cur_tx; /* The next free ring entry */
266         unsigned int            rx_ring_size;   /* current rx ring size */
267         unsigned int            tx_ring_size;   /* current tx ring size */
268         unsigned int            rx_mod_mask;    /* rx ring modular mask */
269         unsigned int            tx_mod_mask;    /* tx ring modular mask */
270         unsigned short          rx_len_bits;
271         unsigned short          tx_len_bits;
272         dma_addr_t              rx_ring_dma_addr;
273         dma_addr_t              tx_ring_dma_addr;
274         unsigned int            dirty_rx,       /* ring entries to be freed. */
275                                 dirty_tx;
276
277         struct net_device_stats stats;
278         char                    tx_full;
279         char                    phycount;       /* number of phys found */
280         int                     options;
281         unsigned int            shared_irq:1,   /* shared irq possible */
282                                 dxsuflo:1,   /* disable transmit stop on uflo */
283                                 mii:1;          /* mii port available */
284         struct net_device       *next;
285         struct mii_if_info      mii_if;
286         struct timer_list       watchdog_timer;
287         struct timer_list       blink_timer;
288         u32                     msg_enable;     /* debug message level */
289
290         /* each bit indicates an available PHY */
291         u32                     phymask;
292 };
293
294 static int pcnet32_probe_pci(struct pci_dev *, const struct pci_device_id *);
295 static int pcnet32_probe1(unsigned long, int, struct pci_dev *);
296 static int pcnet32_open(struct net_device *);
297 static int pcnet32_init_ring(struct net_device *);
298 static int pcnet32_start_xmit(struct sk_buff *, struct net_device *);
299 static int pcnet32_rx(struct net_device *);
300 static void pcnet32_tx_timeout(struct net_device *dev);
301 static irqreturn_t pcnet32_interrupt(int, void *, struct pt_regs *);
302 static int pcnet32_close(struct net_device *);
303 static struct net_device_stats *pcnet32_get_stats(struct net_device *);
304 static void pcnet32_load_multicast(struct net_device *dev);
305 static void pcnet32_set_multicast_list(struct net_device *);
306 static int pcnet32_ioctl(struct net_device *, struct ifreq *, int);
307 static void pcnet32_watchdog(struct net_device *);
308 static int mdio_read(struct net_device *dev, int phy_id, int reg_num);
309 static void mdio_write(struct net_device *dev, int phy_id, int reg_num,
310                        int val);
311 static void pcnet32_restart(struct net_device *dev, unsigned int csr0_bits);
312 static void pcnet32_ethtool_test(struct net_device *dev,
313                                  struct ethtool_test *eth_test, u64 * data);
314 static int pcnet32_loopback_test(struct net_device *dev, uint64_t * data1);
315 static int pcnet32_phys_id(struct net_device *dev, u32 data);
316 static void pcnet32_led_blink_callback(struct net_device *dev);
317 static int pcnet32_get_regs_len(struct net_device *dev);
318 static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
319                              void *ptr);
320 static void pcnet32_purge_tx_ring(struct net_device *dev);
321 static int pcnet32_alloc_ring(struct net_device *dev, char *name);
322 static void pcnet32_free_ring(struct net_device *dev);
323 static void pcnet32_check_media(struct net_device *dev, int verbose);
324
325 static u16 pcnet32_wio_read_csr(unsigned long addr, int index)
326 {
327         outw(index, addr + PCNET32_WIO_RAP);
328         return inw(addr + PCNET32_WIO_RDP);
329 }
330
331 static void pcnet32_wio_write_csr(unsigned long addr, int index, u16 val)
332 {
333         outw(index, addr + PCNET32_WIO_RAP);
334         outw(val, addr + PCNET32_WIO_RDP);
335 }
336
337 static u16 pcnet32_wio_read_bcr(unsigned long addr, int index)
338 {
339         outw(index, addr + PCNET32_WIO_RAP);
340         return inw(addr + PCNET32_WIO_BDP);
341 }
342
343 static void pcnet32_wio_write_bcr(unsigned long addr, int index, u16 val)
344 {
345         outw(index, addr + PCNET32_WIO_RAP);
346         outw(val, addr + PCNET32_WIO_BDP);
347 }
348
349 static u16 pcnet32_wio_read_rap(unsigned long addr)
350 {
351         return inw(addr + PCNET32_WIO_RAP);
352 }
353
354 static void pcnet32_wio_write_rap(unsigned long addr, u16 val)
355 {
356         outw(val, addr + PCNET32_WIO_RAP);
357 }
358
359 static void pcnet32_wio_reset(unsigned long addr)
360 {
361         inw(addr + PCNET32_WIO_RESET);
362 }
363
364 static int pcnet32_wio_check(unsigned long addr)
365 {
366         outw(88, addr + PCNET32_WIO_RAP);
367         return (inw(addr + PCNET32_WIO_RAP) == 88);
368 }
369
370 static struct pcnet32_access pcnet32_wio = {
371         .read_csr = pcnet32_wio_read_csr,
372         .write_csr = pcnet32_wio_write_csr,
373         .read_bcr = pcnet32_wio_read_bcr,
374         .write_bcr = pcnet32_wio_write_bcr,
375         .read_rap = pcnet32_wio_read_rap,
376         .write_rap = pcnet32_wio_write_rap,
377         .reset = pcnet32_wio_reset
378 };
379
380 static u16 pcnet32_dwio_read_csr(unsigned long addr, int index)
381 {
382         outl(index, addr + PCNET32_DWIO_RAP);
383         return (inl(addr + PCNET32_DWIO_RDP) & 0xffff);
384 }
385
386 static void pcnet32_dwio_write_csr(unsigned long addr, int index, u16 val)
387 {
388         outl(index, addr + PCNET32_DWIO_RAP);
389         outl(val, addr + PCNET32_DWIO_RDP);
390 }
391
392 static u16 pcnet32_dwio_read_bcr(unsigned long addr, int index)
393 {
394         outl(index, addr + PCNET32_DWIO_RAP);
395         return (inl(addr + PCNET32_DWIO_BDP) & 0xffff);
396 }
397
398 static void pcnet32_dwio_write_bcr(unsigned long addr, int index, u16 val)
399 {
400         outl(index, addr + PCNET32_DWIO_RAP);
401         outl(val, addr + PCNET32_DWIO_BDP);
402 }
403
404 static u16 pcnet32_dwio_read_rap(unsigned long addr)
405 {
406         return (inl(addr + PCNET32_DWIO_RAP) & 0xffff);
407 }
408
409 static void pcnet32_dwio_write_rap(unsigned long addr, u16 val)
410 {
411         outl(val, addr + PCNET32_DWIO_RAP);
412 }
413
414 static void pcnet32_dwio_reset(unsigned long addr)
415 {
416         inl(addr + PCNET32_DWIO_RESET);
417 }
418
419 static int pcnet32_dwio_check(unsigned long addr)
420 {
421         outl(88, addr + PCNET32_DWIO_RAP);
422         return ((inl(addr + PCNET32_DWIO_RAP) & 0xffff) == 88);
423 }
424
425 static struct pcnet32_access pcnet32_dwio = {
426         .read_csr = pcnet32_dwio_read_csr,
427         .write_csr = pcnet32_dwio_write_csr,
428         .read_bcr = pcnet32_dwio_read_bcr,
429         .write_bcr = pcnet32_dwio_write_bcr,
430         .read_rap = pcnet32_dwio_read_rap,
431         .write_rap = pcnet32_dwio_write_rap,
432         .reset = pcnet32_dwio_reset
433 };
434
435 static void pcnet32_netif_stop(struct net_device *dev)
436 {
437         dev->trans_start = jiffies;
438         netif_poll_disable(dev);
439         netif_tx_disable(dev);
440 }
441
442 static void pcnet32_netif_start(struct net_device *dev)
443 {
444         netif_wake_queue(dev);
445         netif_poll_enable(dev);
446 }
447
448 /*
449  * Allocate space for the new sized tx ring.
450  * Free old resources
451  * Save new resources.
452  * Any failure keeps old resources.
453  * Must be called with lp->lock held.
454  */
455 static void pcnet32_realloc_tx_ring(struct net_device *dev,
456                                     struct pcnet32_private *lp,
457                                     unsigned int size)
458 {
459         dma_addr_t new_ring_dma_addr;
460         dma_addr_t *new_dma_addr_list;
461         struct pcnet32_tx_head *new_tx_ring;
462         struct sk_buff **new_skb_list;
463
464         pcnet32_purge_tx_ring(dev);
465
466         new_tx_ring = pci_alloc_consistent(lp->pci_dev,
467                                            sizeof(struct pcnet32_tx_head) *
468                                            (1 << size),
469                                            &new_ring_dma_addr);
470         if (new_tx_ring == NULL) {
471                 if (netif_msg_drv(lp))
472                         printk("\n" KERN_ERR
473                                "%s: Consistent memory allocation failed.\n",
474                                dev->name);
475                 return;
476         }
477         memset(new_tx_ring, 0, sizeof(struct pcnet32_tx_head) * (1 << size));
478
479         new_dma_addr_list = kcalloc((1 << size), sizeof(dma_addr_t),
480                                 GFP_ATOMIC);
481         if (!new_dma_addr_list) {
482                 if (netif_msg_drv(lp))
483                         printk("\n" KERN_ERR
484                                "%s: Memory allocation failed.\n", dev->name);
485                 goto free_new_tx_ring;
486         }
487
488         new_skb_list = kcalloc((1 << size), sizeof(struct sk_buff *),
489                                 GFP_ATOMIC);
490         if (!new_skb_list) {
491                 if (netif_msg_drv(lp))
492                         printk("\n" KERN_ERR
493                                "%s: Memory allocation failed.\n", dev->name);
494                 goto free_new_lists;
495         }
496
497         kfree(lp->tx_skbuff);
498         kfree(lp->tx_dma_addr);
499         pci_free_consistent(lp->pci_dev,
500                             sizeof(struct pcnet32_tx_head) *
501                             lp->tx_ring_size, lp->tx_ring,
502                             lp->tx_ring_dma_addr);
503
504         lp->tx_ring_size = (1 << size);
505         lp->tx_mod_mask = lp->tx_ring_size - 1;
506         lp->tx_len_bits = (size << 12);
507         lp->tx_ring = new_tx_ring;
508         lp->tx_ring_dma_addr = new_ring_dma_addr;
509         lp->tx_dma_addr = new_dma_addr_list;
510         lp->tx_skbuff = new_skb_list;
511         return;
512
513     free_new_lists:
514         kfree(new_dma_addr_list);
515     free_new_tx_ring:
516         pci_free_consistent(lp->pci_dev,
517                             sizeof(struct pcnet32_tx_head) *
518                             (1 << size),
519                             new_tx_ring,
520                             new_ring_dma_addr);
521         return;
522 }
523
524 /*
525  * Allocate space for the new sized rx ring.
526  * Re-use old receive buffers.
527  *   alloc extra buffers
528  *   free unneeded buffers
529  *   free unneeded buffers
530  * Save new resources.
531  * Any failure keeps old resources.
532  * Must be called with lp->lock held.
533  */
534 static void pcnet32_realloc_rx_ring(struct net_device *dev,
535                                     struct pcnet32_private *lp,
536                                     unsigned int size)
537 {
538         dma_addr_t new_ring_dma_addr;
539         dma_addr_t *new_dma_addr_list;
540         struct pcnet32_rx_head *new_rx_ring;
541         struct sk_buff **new_skb_list;
542         int new, overlap;
543
544         new_rx_ring = pci_alloc_consistent(lp->pci_dev,
545                                            sizeof(struct pcnet32_rx_head) *
546                                            (1 << size),
547                                            &new_ring_dma_addr);
548         if (new_rx_ring == NULL) {
549                 if (netif_msg_drv(lp))
550                         printk("\n" KERN_ERR
551                                "%s: Consistent memory allocation failed.\n",
552                                dev->name);
553                 return;
554         }
555         memset(new_rx_ring, 0, sizeof(struct pcnet32_rx_head) * (1 << size));
556
557         new_dma_addr_list = kcalloc((1 << size), sizeof(dma_addr_t),
558                                 GFP_ATOMIC);
559         if (!new_dma_addr_list) {
560                 if (netif_msg_drv(lp))
561                         printk("\n" KERN_ERR
562                                "%s: Memory allocation failed.\n", dev->name);
563                 goto free_new_rx_ring;
564         }
565
566         new_skb_list = kcalloc((1 << size), sizeof(struct sk_buff *),
567                                 GFP_ATOMIC);
568         if (!new_skb_list) {
569                 if (netif_msg_drv(lp))
570                         printk("\n" KERN_ERR
571                                "%s: Memory allocation failed.\n", dev->name);
572                 goto free_new_lists;
573         }
574
575         /* first copy the current receive buffers */
576         overlap = min(size, lp->rx_ring_size);
577         for (new = 0; new < overlap; new++) {
578                 new_rx_ring[new] = lp->rx_ring[new];
579                 new_dma_addr_list[new] = lp->rx_dma_addr[new];
580                 new_skb_list[new] = lp->rx_skbuff[new];
581         }
582         /* now allocate any new buffers needed */
583         for (; new < size; new++ ) {
584                 struct sk_buff *rx_skbuff;
585                 new_skb_list[new] = dev_alloc_skb(PKT_BUF_SZ);
586                 if (!(rx_skbuff = new_skb_list[new])) {
587                         /* keep the original lists and buffers */
588                         if (netif_msg_drv(lp))
589                                 printk(KERN_ERR
590                                        "%s: pcnet32_realloc_rx_ring dev_alloc_skb failed.\n",
591                                        dev->name);
592                         goto free_all_new;
593                 }
594                 skb_reserve(rx_skbuff, 2);
595
596                 new_dma_addr_list[new] =
597                             pci_map_single(lp->pci_dev, rx_skbuff->data,
598                                            PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
599                 new_rx_ring[new].base = (u32) le32_to_cpu(new_dma_addr_list[new]);
600                 new_rx_ring[new].buf_length = le16_to_cpu(2 - PKT_BUF_SZ);
601                 new_rx_ring[new].status = le16_to_cpu(0x8000);
602         }
603         /* and free any unneeded buffers */
604         for (; new < lp->rx_ring_size; new++) {
605                 if (lp->rx_skbuff[new]) {
606                         pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[new],
607                                          PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
608                         dev_kfree_skb(lp->rx_skbuff[new]);
609                 }
610         }
611
612         kfree(lp->rx_skbuff);
613         kfree(lp->rx_dma_addr);
614         pci_free_consistent(lp->pci_dev,
615                             sizeof(struct pcnet32_rx_head) *
616                             lp->rx_ring_size, lp->rx_ring,
617                             lp->rx_ring_dma_addr);
618
619         lp->rx_ring_size = (1 << size);
620         lp->rx_mod_mask = lp->rx_ring_size - 1;
621         lp->rx_len_bits = (size << 4);
622         lp->rx_ring = new_rx_ring;
623         lp->rx_ring_dma_addr = new_ring_dma_addr;
624         lp->rx_dma_addr = new_dma_addr_list;
625         lp->rx_skbuff = new_skb_list;
626         return;
627
628     free_all_new:
629         for (; --new >= lp->rx_ring_size; ) {
630                 if (new_skb_list[new]) {
631                         pci_unmap_single(lp->pci_dev, new_dma_addr_list[new],
632                                          PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
633                         dev_kfree_skb(new_skb_list[new]);
634                 }
635         }
636         kfree(new_skb_list);
637     free_new_lists:
638         kfree(new_dma_addr_list);
639     free_new_rx_ring:
640         pci_free_consistent(lp->pci_dev,
641                             sizeof(struct pcnet32_rx_head) *
642                             (1 << size),
643                             new_rx_ring,
644                             new_ring_dma_addr);
645         return;
646 }
647
648 #ifdef CONFIG_NET_POLL_CONTROLLER
649 static void pcnet32_poll_controller(struct net_device *dev)
650 {
651         disable_irq(dev->irq);
652         pcnet32_interrupt(0, dev, NULL);
653         enable_irq(dev->irq);
654 }
655 #endif
656
657 static int pcnet32_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
658 {
659         struct pcnet32_private *lp = dev->priv;
660         unsigned long flags;
661         int r = -EOPNOTSUPP;
662
663         if (lp->mii) {
664                 spin_lock_irqsave(&lp->lock, flags);
665                 mii_ethtool_gset(&lp->mii_if, cmd);
666                 spin_unlock_irqrestore(&lp->lock, flags);
667                 r = 0;
668         }
669         return r;
670 }
671
672 static int pcnet32_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
673 {
674         struct pcnet32_private *lp = dev->priv;
675         unsigned long flags;
676         int r = -EOPNOTSUPP;
677
678         if (lp->mii) {
679                 spin_lock_irqsave(&lp->lock, flags);
680                 r = mii_ethtool_sset(&lp->mii_if, cmd);
681                 spin_unlock_irqrestore(&lp->lock, flags);
682         }
683         return r;
684 }
685
686 static void pcnet32_get_drvinfo(struct net_device *dev,
687                                 struct ethtool_drvinfo *info)
688 {
689         struct pcnet32_private *lp = dev->priv;
690
691         strcpy(info->driver, DRV_NAME);
692         strcpy(info->version, DRV_VERSION);
693         if (lp->pci_dev)
694                 strcpy(info->bus_info, pci_name(lp->pci_dev));
695         else
696                 sprintf(info->bus_info, "VLB 0x%lx", dev->base_addr);
697 }
698
699 static u32 pcnet32_get_link(struct net_device *dev)
700 {
701         struct pcnet32_private *lp = dev->priv;
702         unsigned long flags;
703         int r;
704
705         spin_lock_irqsave(&lp->lock, flags);
706         if (lp->mii) {
707                 r = mii_link_ok(&lp->mii_if);
708         } else {
709                 ulong ioaddr = dev->base_addr;  /* card base I/O address */
710                 r = (lp->a.read_bcr(ioaddr, 4) != 0xc0);
711         }
712         spin_unlock_irqrestore(&lp->lock, flags);
713
714         return r;
715 }
716
717 static u32 pcnet32_get_msglevel(struct net_device *dev)
718 {
719         struct pcnet32_private *lp = dev->priv;
720         return lp->msg_enable;
721 }
722
723 static void pcnet32_set_msglevel(struct net_device *dev, u32 value)
724 {
725         struct pcnet32_private *lp = dev->priv;
726         lp->msg_enable = value;
727 }
728
729 static int pcnet32_nway_reset(struct net_device *dev)
730 {
731         struct pcnet32_private *lp = dev->priv;
732         unsigned long flags;
733         int r = -EOPNOTSUPP;
734
735         if (lp->mii) {
736                 spin_lock_irqsave(&lp->lock, flags);
737                 r = mii_nway_restart(&lp->mii_if);
738                 spin_unlock_irqrestore(&lp->lock, flags);
739         }
740         return r;
741 }
742
743 static void pcnet32_get_ringparam(struct net_device *dev,
744                                   struct ethtool_ringparam *ering)
745 {
746         struct pcnet32_private *lp = dev->priv;
747
748         ering->tx_max_pending = TX_MAX_RING_SIZE;
749         ering->tx_pending = lp->tx_ring_size;
750         ering->rx_max_pending = RX_MAX_RING_SIZE;
751         ering->rx_pending = lp->rx_ring_size;
752 }
753
754 static int pcnet32_set_ringparam(struct net_device *dev,
755                                  struct ethtool_ringparam *ering)
756 {
757         struct pcnet32_private *lp = dev->priv;
758         unsigned long flags;
759         unsigned int size;
760         ulong ioaddr = dev->base_addr;
761         int i;
762
763         if (ering->rx_mini_pending || ering->rx_jumbo_pending)
764                 return -EINVAL;
765
766         if (netif_running(dev))
767                 pcnet32_netif_stop(dev);
768
769         spin_lock_irqsave(&lp->lock, flags);
770         lp->a.write_csr(ioaddr, CSR0, CSR0_STOP);       /* stop the chip */
771
772         size = min(ering->tx_pending, (unsigned int)TX_MAX_RING_SIZE);
773
774         /* set the minimum ring size to 4, to allow the loopback test to work
775          * unchanged.
776          */
777         for (i = 2; i <= PCNET32_LOG_MAX_TX_BUFFERS; i++) {
778                 if (size <= (1 << i))
779                         break;
780         }
781         if ((1 << i) != lp->tx_ring_size)
782                 pcnet32_realloc_tx_ring(dev, lp, i);
783         
784         size = min(ering->rx_pending, (unsigned int)RX_MAX_RING_SIZE);
785         for (i = 2; i <= PCNET32_LOG_MAX_RX_BUFFERS; i++) {
786                 if (size <= (1 << i))
787                         break;
788         }
789         if ((1 << i) != lp->rx_ring_size)
790                 pcnet32_realloc_rx_ring(dev, lp, i);
791         
792         dev->weight = lp->rx_ring_size / 2;
793
794         if (netif_running(dev)) {
795                 pcnet32_netif_start(dev);
796                 pcnet32_restart(dev, CSR0_NORMAL);
797         }
798
799         spin_unlock_irqrestore(&lp->lock, flags);
800
801         if (netif_msg_drv(lp))
802                 printk(KERN_INFO
803                        "%s: Ring Param Settings: RX: %d, TX: %d\n", dev->name,
804                        lp->rx_ring_size, lp->tx_ring_size);
805
806         return 0;
807 }
808
809 static void pcnet32_get_strings(struct net_device *dev, u32 stringset,
810                                 u8 * data)
811 {
812         memcpy(data, pcnet32_gstrings_test, sizeof(pcnet32_gstrings_test));
813 }
814
815 static int pcnet32_self_test_count(struct net_device *dev)
816 {
817         return PCNET32_TEST_LEN;
818 }
819
820 static void pcnet32_ethtool_test(struct net_device *dev,
821                                  struct ethtool_test *test, u64 * data)
822 {
823         struct pcnet32_private *lp = dev->priv;
824         int rc;
825
826         if (test->flags == ETH_TEST_FL_OFFLINE) {
827                 rc = pcnet32_loopback_test(dev, data);
828                 if (rc) {
829                         if (netif_msg_hw(lp))
830                                 printk(KERN_DEBUG "%s: Loopback test failed.\n",
831                                        dev->name);
832                         test->flags |= ETH_TEST_FL_FAILED;
833                 } else if (netif_msg_hw(lp))
834                         printk(KERN_DEBUG "%s: Loopback test passed.\n",
835                                dev->name);
836         } else if (netif_msg_hw(lp))
837                 printk(KERN_DEBUG
838                        "%s: No tests to run (specify 'Offline' on ethtool).",
839                        dev->name);
840 }                               /* end pcnet32_ethtool_test */
841
842 static int pcnet32_loopback_test(struct net_device *dev, uint64_t * data1)
843 {
844         struct pcnet32_private *lp = dev->priv;
845         struct pcnet32_access *a = &lp->a;      /* access to registers */
846         ulong ioaddr = dev->base_addr;  /* card base I/O address */
847         struct sk_buff *skb;    /* sk buff */
848         int x, i;               /* counters */
849         int numbuffs = 4;       /* number of TX/RX buffers and descs */
850         u16 status = 0x8300;    /* TX ring status */
851         u16 teststatus;         /* test of ring status */
852         int rc;                 /* return code */
853         int size;               /* size of packets */
854         unsigned char *packet;  /* source packet data */
855         static const int data_len = 60; /* length of source packets */
856         unsigned long flags;
857         unsigned long ticks;
858
859         *data1 = 1;             /* status of test, default to fail */
860         rc = 1;                 /* default to fail */
861
862         if (netif_running(dev))
863                 pcnet32_close(dev);
864
865         spin_lock_irqsave(&lp->lock, flags);
866
867         /* Reset the PCNET32 */
868         lp->a.reset(ioaddr);
869
870         /* switch pcnet32 to 32bit mode */
871         lp->a.write_bcr(ioaddr, 20, 2);
872
873         lp->init_block.mode =
874             le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
875         lp->init_block.filter[0] = 0;
876         lp->init_block.filter[1] = 0;
877
878         /* purge & init rings but don't actually restart */
879         pcnet32_restart(dev, 0x0000);
880
881         lp->a.write_csr(ioaddr, 0, 0x0004);     /* Set STOP bit */
882
883         /* Initialize Transmit buffers. */
884         size = data_len + 15;
885         for (x = 0; x < numbuffs; x++) {
886                 if (!(skb = dev_alloc_skb(size))) {
887                         if (netif_msg_hw(lp))
888                                 printk(KERN_DEBUG
889                                        "%s: Cannot allocate skb at line: %d!\n",
890                                        dev->name, __LINE__);
891                         goto clean_up;
892                 } else {
893                         packet = skb->data;
894                         skb_put(skb, size);     /* create space for data */
895                         lp->tx_skbuff[x] = skb;
896                         lp->tx_ring[x].length = le16_to_cpu(-skb->len);
897                         lp->tx_ring[x].misc = 0;
898
899                         /* put DA and SA into the skb */
900                         for (i = 0; i < 6; i++)
901                                 *packet++ = dev->dev_addr[i];
902                         for (i = 0; i < 6; i++)
903                                 *packet++ = dev->dev_addr[i];
904                         /* type */
905                         *packet++ = 0x08;
906                         *packet++ = 0x06;
907                         /* packet number */
908                         *packet++ = x;
909                         /* fill packet with data */
910                         for (i = 0; i < data_len; i++)
911                                 *packet++ = i;
912
913                         lp->tx_dma_addr[x] =
914                             pci_map_single(lp->pci_dev, skb->data, skb->len,
915                                            PCI_DMA_TODEVICE);
916                         lp->tx_ring[x].base =
917                             (u32) le32_to_cpu(lp->tx_dma_addr[x]);
918                         wmb();  /* Make sure owner changes after all others are visible */
919                         lp->tx_ring[x].status = le16_to_cpu(status);
920                 }
921         }
922
923         x = a->read_bcr(ioaddr, 32);    /* set internal loopback in BSR32 */
924         x = x | 0x0002;
925         a->write_bcr(ioaddr, 32, x);
926
927         lp->a.write_csr(ioaddr, 15, 0x0044);    /* set int loopback in CSR15 */
928
929         teststatus = le16_to_cpu(0x8000);
930         lp->a.write_csr(ioaddr, 0, 0x0002);     /* Set STRT bit */
931
932         /* Check status of descriptors */
933         for (x = 0; x < numbuffs; x++) {
934                 ticks = 0;
935                 rmb();
936                 while ((lp->rx_ring[x].status & teststatus) && (ticks < 200)) {
937                         spin_unlock_irqrestore(&lp->lock, flags);
938                         mdelay(1);
939                         spin_lock_irqsave(&lp->lock, flags);
940                         rmb();
941                         ticks++;
942                 }
943                 if (ticks == 200) {
944                         if (netif_msg_hw(lp))
945                                 printk("%s: Desc %d failed to reset!\n",
946                                        dev->name, x);
947                         break;
948                 }
949         }
950
951         lp->a.write_csr(ioaddr, 0, 0x0004);     /* Set STOP bit */
952         wmb();
953         if (netif_msg_hw(lp) && netif_msg_pktdata(lp)) {
954                 printk(KERN_DEBUG "%s: RX loopback packets:\n", dev->name);
955
956                 for (x = 0; x < numbuffs; x++) {
957                         printk(KERN_DEBUG "%s: Packet %d:\n", dev->name, x);
958                         skb = lp->rx_skbuff[x];
959                         for (i = 0; i < size; i++) {
960                                 printk("%02x ", *(skb->data + i));
961                         }
962                         printk("\n");
963                 }
964         }
965
966         x = 0;
967         rc = 0;
968         while (x < numbuffs && !rc) {
969                 skb = lp->rx_skbuff[x];
970                 packet = lp->tx_skbuff[x]->data;
971                 for (i = 0; i < size; i++) {
972                         if (*(skb->data + i) != packet[i]) {
973                                 if (netif_msg_hw(lp))
974                                         printk(KERN_DEBUG
975                                                "%s: Error in compare! %2x - %02x %02x\n",
976                                                dev->name, i, *(skb->data + i),
977                                                packet[i]);
978                                 rc = 1;
979                                 break;
980                         }
981                 }
982                 x++;
983         }
984         if (!rc) {
985                 *data1 = 0;
986         }
987
988       clean_up:
989         pcnet32_purge_tx_ring(dev);
990         x = a->read_csr(ioaddr, 15) & 0xFFFF;
991         a->write_csr(ioaddr, 15, (x & ~0x0044));        /* reset bits 6 and 2 */
992
993         x = a->read_bcr(ioaddr, 32);    /* reset internal loopback */
994         x = x & ~0x0002;
995         a->write_bcr(ioaddr, 32, x);
996
997         spin_unlock_irqrestore(&lp->lock, flags);
998
999         if (netif_running(dev)) {
1000                 pcnet32_open(dev);
1001         } else {
1002                 lp->a.write_bcr(ioaddr, 20, 4); /* return to 16bit mode */
1003         }
1004
1005         return (rc);
1006 }                               /* end pcnet32_loopback_test  */
1007
1008 static void pcnet32_led_blink_callback(struct net_device *dev)
1009 {
1010         struct pcnet32_private *lp = dev->priv;
1011         struct pcnet32_access *a = &lp->a;
1012         ulong ioaddr = dev->base_addr;
1013         unsigned long flags;
1014         int i;
1015
1016         spin_lock_irqsave(&lp->lock, flags);
1017         for (i = 4; i < 8; i++) {
1018                 a->write_bcr(ioaddr, i, a->read_bcr(ioaddr, i) ^ 0x4000);
1019         }
1020         spin_unlock_irqrestore(&lp->lock, flags);
1021
1022         mod_timer(&lp->blink_timer, PCNET32_BLINK_TIMEOUT);
1023 }
1024
1025 static int pcnet32_phys_id(struct net_device *dev, u32 data)
1026 {
1027         struct pcnet32_private *lp = dev->priv;
1028         struct pcnet32_access *a = &lp->a;
1029         ulong ioaddr = dev->base_addr;
1030         unsigned long flags;
1031         int i, regs[4];
1032
1033         if (!lp->blink_timer.function) {
1034                 init_timer(&lp->blink_timer);
1035                 lp->blink_timer.function = (void *)pcnet32_led_blink_callback;
1036                 lp->blink_timer.data = (unsigned long)dev;
1037         }
1038
1039         /* Save the current value of the bcrs */
1040         spin_lock_irqsave(&lp->lock, flags);
1041         for (i = 4; i < 8; i++) {
1042                 regs[i - 4] = a->read_bcr(ioaddr, i);
1043         }
1044         spin_unlock_irqrestore(&lp->lock, flags);
1045
1046         mod_timer(&lp->blink_timer, jiffies);
1047         set_current_state(TASK_INTERRUPTIBLE);
1048
1049         if ((!data) || (data > (u32) (MAX_SCHEDULE_TIMEOUT / HZ)))
1050                 data = (u32) (MAX_SCHEDULE_TIMEOUT / HZ);
1051
1052         msleep_interruptible(data * 1000);
1053         del_timer_sync(&lp->blink_timer);
1054
1055         /* Restore the original value of the bcrs */
1056         spin_lock_irqsave(&lp->lock, flags);
1057         for (i = 4; i < 8; i++) {
1058                 a->write_bcr(ioaddr, i, regs[i - 4]);
1059         }
1060         spin_unlock_irqrestore(&lp->lock, flags);
1061
1062         return 0;
1063 }
1064
1065 /*
1066  * lp->lock must be held.
1067  */
1068 static int pcnet32_suspend(struct net_device *dev, unsigned long *flags,
1069                 int can_sleep)
1070 {
1071         int csr5;
1072         struct pcnet32_private *lp = dev->priv;
1073         struct pcnet32_access *a = &lp->a;
1074         ulong ioaddr = dev->base_addr;
1075         int ticks;
1076
1077         /* set SUSPEND (SPND) - CSR5 bit 0 */
1078         csr5 = a->read_csr(ioaddr, CSR5);
1079         a->write_csr(ioaddr, CSR5, csr5 | CSR5_SUSPEND);
1080
1081         /* poll waiting for bit to be set */
1082         ticks = 0;
1083         while (!(a->read_csr(ioaddr, CSR5) & CSR5_SUSPEND)) {
1084                 spin_unlock_irqrestore(&lp->lock, *flags);
1085                 if (can_sleep)
1086                         msleep(1);
1087                 else
1088                         mdelay(1);
1089                 spin_lock_irqsave(&lp->lock, *flags);
1090                 ticks++;
1091                 if (ticks > 200) {
1092                         if (netif_msg_hw(lp))
1093                                 printk(KERN_DEBUG
1094                                        "%s: Error getting into suspend!\n",
1095                                        dev->name);
1096                         return 0;
1097                 }
1098         }
1099         return 1;
1100 }
1101
1102 #define PCNET32_REGS_PER_PHY    32
1103 #define PCNET32_MAX_PHYS        32
1104 static int pcnet32_get_regs_len(struct net_device *dev)
1105 {
1106         struct pcnet32_private *lp = dev->priv;
1107         int j = lp->phycount * PCNET32_REGS_PER_PHY;
1108
1109         return ((PCNET32_NUM_REGS + j) * sizeof(u16));
1110 }
1111
1112 static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1113                              void *ptr)
1114 {
1115         int i, csr0;
1116         u16 *buff = ptr;
1117         struct pcnet32_private *lp = dev->priv;
1118         struct pcnet32_access *a = &lp->a;
1119         ulong ioaddr = dev->base_addr;
1120         unsigned long flags;
1121
1122         spin_lock_irqsave(&lp->lock, flags);
1123
1124         csr0 = a->read_csr(ioaddr, CSR0);
1125         if (!(csr0 & CSR0_STOP))        /* If not stopped */
1126                 pcnet32_suspend(dev, &flags, 1);
1127
1128         /* read address PROM */
1129         for (i = 0; i < 16; i += 2)
1130                 *buff++ = inw(ioaddr + i);
1131
1132         /* read control and status registers */
1133         for (i = 0; i < 90; i++) {
1134                 *buff++ = a->read_csr(ioaddr, i);
1135         }
1136
1137         *buff++ = a->read_csr(ioaddr, 112);
1138         *buff++ = a->read_csr(ioaddr, 114);
1139
1140         /* read bus configuration registers */
1141         for (i = 0; i < 30; i++) {
1142                 *buff++ = a->read_bcr(ioaddr, i);
1143         }
1144         *buff++ = 0;            /* skip bcr30 so as not to hang 79C976 */
1145         for (i = 31; i < 36; i++) {
1146                 *buff++ = a->read_bcr(ioaddr, i);
1147         }
1148
1149         /* read mii phy registers */
1150         if (lp->mii) {
1151                 int j;
1152                 for (j = 0; j < PCNET32_MAX_PHYS; j++) {
1153                         if (lp->phymask & (1 << j)) {
1154                                 for (i = 0; i < PCNET32_REGS_PER_PHY; i++) {
1155                                         lp->a.write_bcr(ioaddr, 33,
1156                                                         (j << 5) | i);
1157                                         *buff++ = lp->a.read_bcr(ioaddr, 34);
1158                                 }
1159                         }
1160                 }
1161         }
1162
1163         if (!(csr0 & CSR0_STOP)) {      /* If not stopped */
1164                 int csr5;
1165
1166                 /* clear SUSPEND (SPND) - CSR5 bit 0 */
1167                 csr5 = a->read_csr(ioaddr, CSR5);
1168                 a->write_csr(ioaddr, CSR5, csr5 & (~CSR5_SUSPEND));
1169         }
1170
1171         spin_unlock_irqrestore(&lp->lock, flags);
1172 }
1173
1174 static struct ethtool_ops pcnet32_ethtool_ops = {
1175         .get_settings           = pcnet32_get_settings,
1176         .set_settings           = pcnet32_set_settings,
1177         .get_drvinfo            = pcnet32_get_drvinfo,
1178         .get_msglevel           = pcnet32_get_msglevel,
1179         .set_msglevel           = pcnet32_set_msglevel,
1180         .nway_reset             = pcnet32_nway_reset,
1181         .get_link               = pcnet32_get_link,
1182         .get_ringparam          = pcnet32_get_ringparam,
1183         .set_ringparam          = pcnet32_set_ringparam,
1184         .get_tx_csum            = ethtool_op_get_tx_csum,
1185         .get_sg                 = ethtool_op_get_sg,
1186         .get_tso                = ethtool_op_get_tso,
1187         .get_strings            = pcnet32_get_strings,
1188         .self_test_count        = pcnet32_self_test_count,
1189         .self_test              = pcnet32_ethtool_test,
1190         .phys_id                = pcnet32_phys_id,
1191         .get_regs_len           = pcnet32_get_regs_len,
1192         .get_regs               = pcnet32_get_regs,
1193         .get_perm_addr          = ethtool_op_get_perm_addr,
1194 };
1195
1196 /* only probes for non-PCI devices, the rest are handled by
1197  * pci_register_driver via pcnet32_probe_pci */
1198
1199 static void __devinit pcnet32_probe_vlbus(unsigned int *pcnet32_portlist)
1200 {
1201         unsigned int *port, ioaddr;
1202
1203         /* search for PCnet32 VLB cards at known addresses */
1204         for (port = pcnet32_portlist; (ioaddr = *port); port++) {
1205                 if (request_region
1206                     (ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_vlbus")) {
1207                         /* check if there is really a pcnet chip on that ioaddr */
1208                         if ((inb(ioaddr + 14) == 0x57)
1209                             && (inb(ioaddr + 15) == 0x57)) {
1210                                 pcnet32_probe1(ioaddr, 0, NULL);
1211                         } else {
1212                                 release_region(ioaddr, PCNET32_TOTAL_SIZE);
1213                         }
1214                 }
1215         }
1216 }
1217
1218 static int __devinit
1219 pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
1220 {
1221         unsigned long ioaddr;
1222         int err;
1223
1224         err = pci_enable_device(pdev);
1225         if (err < 0) {
1226                 if (pcnet32_debug & NETIF_MSG_PROBE)
1227                         printk(KERN_ERR PFX
1228                                "failed to enable device -- err=%d\n", err);
1229                 return err;
1230         }
1231         pci_set_master(pdev);
1232
1233         ioaddr = pci_resource_start(pdev, 0);
1234         if (!ioaddr) {
1235                 if (pcnet32_debug & NETIF_MSG_PROBE)
1236                         printk(KERN_ERR PFX
1237                                "card has no PCI IO resources, aborting\n");
1238                 return -ENODEV;
1239         }
1240
1241         if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
1242                 if (pcnet32_debug & NETIF_MSG_PROBE)
1243                         printk(KERN_ERR PFX
1244                                "architecture does not support 32bit PCI busmaster DMA\n");
1245                 return -ENODEV;
1246         }
1247         if (request_region(ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_pci") ==
1248             NULL) {
1249                 if (pcnet32_debug & NETIF_MSG_PROBE)
1250                         printk(KERN_ERR PFX
1251                                "io address range already allocated\n");
1252                 return -EBUSY;
1253         }
1254
1255         err = pcnet32_probe1(ioaddr, 1, pdev);
1256         if (err < 0) {
1257                 pci_disable_device(pdev);
1258         }
1259         return err;
1260 }
1261
1262 /* pcnet32_probe1
1263  *  Called from both pcnet32_probe_vlbus and pcnet_probe_pci.
1264  *  pdev will be NULL when called from pcnet32_probe_vlbus.
1265  */
1266 static int __devinit
1267 pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev)
1268 {
1269         struct pcnet32_private *lp;
1270         dma_addr_t lp_dma_addr;
1271         int i, media;
1272         int fdx, mii, fset, dxsuflo;
1273         int chip_version;
1274         char *chipname;
1275         struct net_device *dev;
1276         struct pcnet32_access *a = NULL;
1277         u8 promaddr[6];
1278         int ret = -ENODEV;
1279
1280         /* reset the chip */
1281         pcnet32_wio_reset(ioaddr);
1282
1283         /* NOTE: 16-bit check is first, otherwise some older PCnet chips fail */
1284         if (pcnet32_wio_read_csr(ioaddr, 0) == 4 && pcnet32_wio_check(ioaddr)) {
1285                 a = &pcnet32_wio;
1286         } else {
1287                 pcnet32_dwio_reset(ioaddr);
1288                 if (pcnet32_dwio_read_csr(ioaddr, 0) == 4
1289                     && pcnet32_dwio_check(ioaddr)) {
1290                         a = &pcnet32_dwio;
1291                 } else
1292                         goto err_release_region;
1293         }
1294
1295         chip_version =
1296             a->read_csr(ioaddr, 88) | (a->read_csr(ioaddr, 89) << 16);
1297         if ((pcnet32_debug & NETIF_MSG_PROBE) && (pcnet32_debug & NETIF_MSG_HW))
1298                 printk(KERN_INFO "  PCnet chip version is %#x.\n",
1299                        chip_version);
1300         if ((chip_version & 0xfff) != 0x003) {
1301                 if (pcnet32_debug & NETIF_MSG_PROBE)
1302                         printk(KERN_INFO PFX "Unsupported chip version.\n");
1303                 goto err_release_region;
1304         }
1305
1306         /* initialize variables */
1307         fdx = mii = fset = dxsuflo = 0;
1308         chip_version = (chip_version >> 12) & 0xffff;
1309
1310         switch (chip_version) {
1311         case 0x2420:
1312                 chipname = "PCnet/PCI 79C970";  /* PCI */
1313                 break;
1314         case 0x2430:
1315                 if (shared)
1316                         chipname = "PCnet/PCI 79C970";  /* 970 gives the wrong chip id back */
1317                 else
1318                         chipname = "PCnet/32 79C965";   /* 486/VL bus */
1319                 break;
1320         case 0x2621:
1321                 chipname = "PCnet/PCI II 79C970A";      /* PCI */
1322                 fdx = 1;
1323                 break;
1324         case 0x2623:
1325                 chipname = "PCnet/FAST 79C971"; /* PCI */
1326                 fdx = 1;
1327                 mii = 1;
1328                 fset = 1;
1329                 break;
1330         case 0x2624:
1331                 chipname = "PCnet/FAST+ 79C972";        /* PCI */
1332                 fdx = 1;
1333                 mii = 1;
1334                 fset = 1;
1335                 break;
1336         case 0x2625:
1337                 chipname = "PCnet/FAST III 79C973";     /* PCI */
1338                 fdx = 1;
1339                 mii = 1;
1340                 break;
1341         case 0x2626:
1342                 chipname = "PCnet/Home 79C978"; /* PCI */
1343                 fdx = 1;
1344                 /*
1345                  * This is based on specs published at www.amd.com.  This section
1346                  * assumes that a card with a 79C978 wants to go into standard
1347                  * ethernet mode.  The 79C978 can also go into 1Mb HomePNA mode,
1348                  * and the module option homepna=1 can select this instead.
1349                  */
1350                 media = a->read_bcr(ioaddr, 49);
1351                 media &= ~3;    /* default to 10Mb ethernet */
1352                 if (cards_found < MAX_UNITS && homepna[cards_found])
1353                         media |= 1;     /* switch to home wiring mode */
1354                 if (pcnet32_debug & NETIF_MSG_PROBE)
1355                         printk(KERN_DEBUG PFX "media set to %sMbit mode.\n",
1356                                (media & 1) ? "1" : "10");
1357                 a->write_bcr(ioaddr, 49, media);
1358                 break;
1359         case 0x2627:
1360                 chipname = "PCnet/FAST III 79C975";     /* PCI */
1361                 fdx = 1;
1362                 mii = 1;
1363                 break;
1364         case 0x2628:
1365                 chipname = "PCnet/PRO 79C976";
1366                 fdx = 1;
1367                 mii = 1;
1368                 break;
1369         default:
1370                 if (pcnet32_debug & NETIF_MSG_PROBE)
1371                         printk(KERN_INFO PFX
1372                                "PCnet version %#x, no PCnet32 chip.\n",
1373                                chip_version);
1374                 goto err_release_region;
1375         }
1376
1377         /*
1378          *  On selected chips turn on the BCR18:NOUFLO bit. This stops transmit
1379          *  starting until the packet is loaded. Strike one for reliability, lose
1380          *  one for latency - although on PCI this isnt a big loss. Older chips
1381          *  have FIFO's smaller than a packet, so you can't do this.
1382          *  Turn on BCR18:BurstRdEn and BCR18:BurstWrEn.
1383          */
1384
1385         if (fset) {
1386                 a->write_bcr(ioaddr, 18, (a->read_bcr(ioaddr, 18) | 0x0860));
1387                 a->write_csr(ioaddr, 80,
1388                              (a->read_csr(ioaddr, 80) & 0x0C00) | 0x0c00);
1389                 dxsuflo = 1;
1390         }
1391
1392         dev = alloc_etherdev(0);
1393         if (!dev) {
1394                 if (pcnet32_debug & NETIF_MSG_PROBE)
1395                         printk(KERN_ERR PFX "Memory allocation failed.\n");
1396                 ret = -ENOMEM;
1397                 goto err_release_region;
1398         }
1399         SET_NETDEV_DEV(dev, &pdev->dev);
1400
1401         if (pcnet32_debug & NETIF_MSG_PROBE)
1402                 printk(KERN_INFO PFX "%s at %#3lx,", chipname, ioaddr);
1403
1404         /* In most chips, after a chip reset, the ethernet address is read from the
1405          * station address PROM at the base address and programmed into the
1406          * "Physical Address Registers" CSR12-14.
1407          * As a precautionary measure, we read the PROM values and complain if
1408          * they disagree with the CSRs.  If they miscompare, and the PROM addr
1409          * is valid, then the PROM addr is used.
1410          */
1411         for (i = 0; i < 3; i++) {
1412                 unsigned int val;
1413                 val = a->read_csr(ioaddr, i + 12) & 0x0ffff;
1414                 /* There may be endianness issues here. */
1415                 dev->dev_addr[2 * i] = val & 0x0ff;
1416                 dev->dev_addr[2 * i + 1] = (val >> 8) & 0x0ff;
1417         }
1418
1419         /* read PROM address and compare with CSR address */
1420         for (i = 0; i < 6; i++)
1421                 promaddr[i] = inb(ioaddr + i);
1422
1423         if (memcmp(promaddr, dev->dev_addr, 6)
1424             || !is_valid_ether_addr(dev->dev_addr)) {
1425                 if (is_valid_ether_addr(promaddr)) {
1426                         if (pcnet32_debug & NETIF_MSG_PROBE) {
1427                                 printk(" warning: CSR address invalid,\n");
1428                                 printk(KERN_INFO
1429                                        "    using instead PROM address of");
1430                         }
1431                         memcpy(dev->dev_addr, promaddr, 6);
1432                 }
1433         }
1434         memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
1435
1436         /* if the ethernet address is not valid, force to 00:00:00:00:00:00 */
1437         if (!is_valid_ether_addr(dev->perm_addr))
1438                 memset(dev->dev_addr, 0, sizeof(dev->dev_addr));
1439
1440         if (pcnet32_debug & NETIF_MSG_PROBE) {
1441                 for (i = 0; i < 6; i++)
1442                         printk(" %2.2x", dev->dev_addr[i]);
1443
1444                 /* Version 0x2623 and 0x2624 */
1445                 if (((chip_version + 1) & 0xfffe) == 0x2624) {
1446                         i = a->read_csr(ioaddr, 80) & 0x0C00;   /* Check tx_start_pt */
1447                         printk("\n" KERN_INFO "    tx_start_pt(0x%04x):", i);
1448                         switch (i >> 10) {
1449                         case 0:
1450                                 printk("  20 bytes,");
1451                                 break;
1452                         case 1:
1453                                 printk("  64 bytes,");
1454                                 break;
1455                         case 2:
1456                                 printk(" 128 bytes,");
1457                                 break;
1458                         case 3:
1459                                 printk("~220 bytes,");
1460                                 break;
1461                         }
1462                         i = a->read_bcr(ioaddr, 18);    /* Check Burst/Bus control */
1463                         printk(" BCR18(%x):", i & 0xffff);
1464                         if (i & (1 << 5))
1465                                 printk("BurstWrEn ");
1466                         if (i & (1 << 6))
1467                                 printk("BurstRdEn ");
1468                         if (i & (1 << 7))
1469                                 printk("DWordIO ");
1470                         if (i & (1 << 11))
1471                                 printk("NoUFlow ");
1472                         i = a->read_bcr(ioaddr, 25);
1473                         printk("\n" KERN_INFO "    SRAMSIZE=0x%04x,", i << 8);
1474                         i = a->read_bcr(ioaddr, 26);
1475                         printk(" SRAM_BND=0x%04x,", i << 8);
1476                         i = a->read_bcr(ioaddr, 27);
1477                         if (i & (1 << 14))
1478                                 printk("LowLatRx");
1479                 }
1480         }
1481
1482         dev->base_addr = ioaddr;
1483         /* pci_alloc_consistent returns page-aligned memory, so we do not have to check the alignment */
1484         if ((lp =
1485              pci_alloc_consistent(pdev, sizeof(*lp), &lp_dma_addr)) == NULL) {
1486                 if (pcnet32_debug & NETIF_MSG_PROBE)
1487                         printk(KERN_ERR PFX
1488                                "Consistent memory allocation failed.\n");
1489                 ret = -ENOMEM;
1490                 goto err_free_netdev;
1491         }
1492
1493         memset(lp, 0, sizeof(*lp));
1494         lp->dma_addr = lp_dma_addr;
1495         lp->pci_dev = pdev;
1496
1497         spin_lock_init(&lp->lock);
1498
1499         SET_MODULE_OWNER(dev);
1500         SET_NETDEV_DEV(dev, &pdev->dev);
1501         dev->priv = lp;
1502         lp->name = chipname;
1503         lp->shared_irq = shared;
1504         lp->tx_ring_size = TX_RING_SIZE;        /* default tx ring size */
1505         lp->rx_ring_size = RX_RING_SIZE;        /* default rx ring size */
1506         lp->tx_mod_mask = lp->tx_ring_size - 1;
1507         lp->rx_mod_mask = lp->rx_ring_size - 1;
1508         lp->tx_len_bits = (PCNET32_LOG_TX_BUFFERS << 12);
1509         lp->rx_len_bits = (PCNET32_LOG_RX_BUFFERS << 4);
1510         lp->mii_if.full_duplex = fdx;
1511         lp->mii_if.phy_id_mask = 0x1f;
1512         lp->mii_if.reg_num_mask = 0x1f;
1513         lp->dxsuflo = dxsuflo;
1514         lp->mii = mii;
1515         lp->msg_enable = pcnet32_debug;
1516         if ((cards_found >= MAX_UNITS)
1517             || (options[cards_found] > sizeof(options_mapping)))
1518                 lp->options = PCNET32_PORT_ASEL;
1519         else
1520                 lp->options = options_mapping[options[cards_found]];
1521         lp->mii_if.dev = dev;
1522         lp->mii_if.mdio_read = mdio_read;
1523         lp->mii_if.mdio_write = mdio_write;
1524
1525         if (fdx && !(lp->options & PCNET32_PORT_ASEL) &&
1526             ((cards_found >= MAX_UNITS) || full_duplex[cards_found]))
1527                 lp->options |= PCNET32_PORT_FD;
1528
1529         if (!a) {
1530                 if (pcnet32_debug & NETIF_MSG_PROBE)
1531                         printk(KERN_ERR PFX "No access methods\n");
1532                 ret = -ENODEV;
1533                 goto err_free_consistent;
1534         }
1535         lp->a = *a;
1536
1537         /* prior to register_netdev, dev->name is not yet correct */
1538         if (pcnet32_alloc_ring(dev, pci_name(lp->pci_dev))) {
1539                 ret = -ENOMEM;
1540                 goto err_free_ring;
1541         }
1542         /* detect special T1/E1 WAN card by checking for MAC address */
1543         if (dev->dev_addr[0] == 0x00 && dev->dev_addr[1] == 0xe0
1544             && dev->dev_addr[2] == 0x75)
1545                 lp->options = PCNET32_PORT_FD | PCNET32_PORT_GPSI;
1546
1547         lp->init_block.mode = le16_to_cpu(0x0003);      /* Disable Rx and Tx. */
1548         lp->init_block.tlen_rlen =
1549             le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
1550         for (i = 0; i < 6; i++)
1551                 lp->init_block.phys_addr[i] = dev->dev_addr[i];
1552         lp->init_block.filter[0] = 0x00000000;
1553         lp->init_block.filter[1] = 0x00000000;
1554         lp->init_block.rx_ring = (u32) le32_to_cpu(lp->rx_ring_dma_addr);
1555         lp->init_block.tx_ring = (u32) le32_to_cpu(lp->tx_ring_dma_addr);
1556
1557         /* switch pcnet32 to 32bit mode */
1558         a->write_bcr(ioaddr, 20, 2);
1559
1560         a->write_csr(ioaddr, 1, (lp->dma_addr + offsetof(struct pcnet32_private,
1561                                                          init_block)) & 0xffff);
1562         a->write_csr(ioaddr, 2, (lp->dma_addr + offsetof(struct pcnet32_private,
1563                                                          init_block)) >> 16);
1564
1565         if (pdev) {             /* use the IRQ provided by PCI */
1566                 dev->irq = pdev->irq;
1567                 if (pcnet32_debug & NETIF_MSG_PROBE)
1568                         printk(" assigned IRQ %d.\n", dev->irq);
1569         } else {
1570                 unsigned long irq_mask = probe_irq_on();
1571
1572                 /*
1573                  * To auto-IRQ we enable the initialization-done and DMA error
1574                  * interrupts. For ISA boards we get a DMA error, but VLB and PCI
1575                  * boards will work.
1576                  */
1577                 /* Trigger an initialization just for the interrupt. */
1578                 a->write_csr(ioaddr, 0, 0x41);
1579                 mdelay(1);
1580
1581                 dev->irq = probe_irq_off(irq_mask);
1582                 if (!dev->irq) {
1583                         if (pcnet32_debug & NETIF_MSG_PROBE)
1584                                 printk(", failed to detect IRQ line.\n");
1585                         ret = -ENODEV;
1586                         goto err_free_ring;
1587                 }
1588                 if (pcnet32_debug & NETIF_MSG_PROBE)
1589                         printk(", probed IRQ %d.\n", dev->irq);
1590         }
1591
1592         /* Set the mii phy_id so that we can query the link state */
1593         if (lp->mii) {
1594                 /* lp->phycount and lp->phymask are set to 0 by memset above */
1595
1596                 lp->mii_if.phy_id = ((lp->a.read_bcr(ioaddr, 33)) >> 5) & 0x1f;
1597                 /* scan for PHYs */
1598                 for (i = 0; i < PCNET32_MAX_PHYS; i++) {
1599                         unsigned short id1, id2;
1600
1601                         id1 = mdio_read(dev, i, MII_PHYSID1);
1602                         if (id1 == 0xffff)
1603                                 continue;
1604                         id2 = mdio_read(dev, i, MII_PHYSID2);
1605                         if (id2 == 0xffff)
1606                                 continue;
1607                         if (i == 31 && ((chip_version + 1) & 0xfffe) == 0x2624)
1608                                 continue;       /* 79C971 & 79C972 have phantom phy at id 31 */
1609                         lp->phycount++;
1610                         lp->phymask |= (1 << i);
1611                         lp->mii_if.phy_id = i;
1612                         if (pcnet32_debug & NETIF_MSG_PROBE)
1613                                 printk(KERN_INFO PFX
1614                                        "Found PHY %04x:%04x at address %d.\n",
1615                                        id1, id2, i);
1616                 }
1617                 lp->a.write_bcr(ioaddr, 33, (lp->mii_if.phy_id) << 5);
1618                 if (lp->phycount > 1) {
1619                         lp->options |= PCNET32_PORT_MII;
1620                 }
1621         }
1622
1623         init_timer(&lp->watchdog_timer);
1624         lp->watchdog_timer.data = (unsigned long)dev;
1625         lp->watchdog_timer.function = (void *)&pcnet32_watchdog;
1626
1627         /* The PCNET32-specific entries in the device structure. */
1628         dev->open = &pcnet32_open;
1629         dev->hard_start_xmit = &pcnet32_start_xmit;
1630         dev->stop = &pcnet32_close;
1631         dev->get_stats = &pcnet32_get_stats;
1632         dev->set_multicast_list = &pcnet32_set_multicast_list;
1633         dev->do_ioctl = &pcnet32_ioctl;
1634         dev->ethtool_ops = &pcnet32_ethtool_ops;
1635         dev->tx_timeout = pcnet32_tx_timeout;
1636         dev->watchdog_timeo = (5 * HZ);
1637
1638 #ifdef CONFIG_NET_POLL_CONTROLLER
1639         dev->poll_controller = pcnet32_poll_controller;
1640 #endif
1641
1642         /* Fill in the generic fields of the device structure. */
1643         if (register_netdev(dev))
1644                 goto err_free_ring;
1645
1646         if (pdev) {
1647                 pci_set_drvdata(pdev, dev);
1648         } else {
1649                 lp->next = pcnet32_dev;
1650                 pcnet32_dev = dev;
1651         }
1652
1653         if (pcnet32_debug & NETIF_MSG_PROBE)
1654                 printk(KERN_INFO "%s: registered as %s\n", dev->name, lp->name);
1655         cards_found++;
1656
1657         /* enable LED writes */
1658         a->write_bcr(ioaddr, 2, a->read_bcr(ioaddr, 2) | 0x1000);
1659
1660         return 0;
1661
1662       err_free_ring:
1663         pcnet32_free_ring(dev);
1664       err_free_consistent:
1665         pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
1666       err_free_netdev:
1667         free_netdev(dev);
1668       err_release_region:
1669         release_region(ioaddr, PCNET32_TOTAL_SIZE);
1670         return ret;
1671 }
1672
1673 /* if any allocation fails, caller must also call pcnet32_free_ring */
1674 static int pcnet32_alloc_ring(struct net_device *dev, char *name)
1675 {
1676         struct pcnet32_private *lp = dev->priv;
1677
1678         lp->tx_ring = pci_alloc_consistent(lp->pci_dev,
1679                                            sizeof(struct pcnet32_tx_head) *
1680                                            lp->tx_ring_size,
1681                                            &lp->tx_ring_dma_addr);
1682         if (lp->tx_ring == NULL) {
1683                 if (netif_msg_drv(lp))
1684                         printk("\n" KERN_ERR PFX
1685                                "%s: Consistent memory allocation failed.\n",
1686                                name);
1687                 return -ENOMEM;
1688         }
1689
1690         lp->rx_ring = pci_alloc_consistent(lp->pci_dev,
1691                                            sizeof(struct pcnet32_rx_head) *
1692                                            lp->rx_ring_size,
1693                                            &lp->rx_ring_dma_addr);
1694         if (lp->rx_ring == NULL) {
1695                 if (netif_msg_drv(lp))
1696                         printk("\n" KERN_ERR PFX
1697                                "%s: Consistent memory allocation failed.\n",
1698                                name);
1699                 return -ENOMEM;
1700         }
1701
1702         lp->tx_dma_addr = kcalloc(lp->tx_ring_size, sizeof(dma_addr_t),
1703                                   GFP_ATOMIC);
1704         if (!lp->tx_dma_addr) {
1705                 if (netif_msg_drv(lp))
1706                         printk("\n" KERN_ERR PFX
1707                                "%s: Memory allocation failed.\n", name);
1708                 return -ENOMEM;
1709         }
1710
1711         lp->rx_dma_addr = kcalloc(lp->rx_ring_size, sizeof(dma_addr_t),
1712                                   GFP_ATOMIC);
1713         if (!lp->rx_dma_addr) {
1714                 if (netif_msg_drv(lp))
1715                         printk("\n" KERN_ERR PFX
1716                                "%s: Memory allocation failed.\n", name);
1717                 return -ENOMEM;
1718         }
1719
1720         lp->tx_skbuff = kcalloc(lp->tx_ring_size, sizeof(struct sk_buff *),
1721                                 GFP_ATOMIC);
1722         if (!lp->tx_skbuff) {
1723                 if (netif_msg_drv(lp))
1724                         printk("\n" KERN_ERR PFX
1725                                "%s: Memory allocation failed.\n", name);
1726                 return -ENOMEM;
1727         }
1728
1729         lp->rx_skbuff = kcalloc(lp->rx_ring_size, sizeof(struct sk_buff *),
1730                                 GFP_ATOMIC);
1731         if (!lp->rx_skbuff) {
1732                 if (netif_msg_drv(lp))
1733                         printk("\n" KERN_ERR PFX
1734                                "%s: Memory allocation failed.\n", name);
1735                 return -ENOMEM;
1736         }
1737
1738         return 0;
1739 }
1740
1741 static void pcnet32_free_ring(struct net_device *dev)
1742 {
1743         struct pcnet32_private *lp = dev->priv;
1744
1745         kfree(lp->tx_skbuff);
1746         lp->tx_skbuff = NULL;
1747
1748         kfree(lp->rx_skbuff);
1749         lp->rx_skbuff = NULL;
1750
1751         kfree(lp->tx_dma_addr);
1752         lp->tx_dma_addr = NULL;
1753
1754         kfree(lp->rx_dma_addr);
1755         lp->rx_dma_addr = NULL;
1756
1757         if (lp->tx_ring) {
1758                 pci_free_consistent(lp->pci_dev,
1759                                     sizeof(struct pcnet32_tx_head) *
1760                                     lp->tx_ring_size, lp->tx_ring,
1761                                     lp->tx_ring_dma_addr);
1762                 lp->tx_ring = NULL;
1763         }
1764
1765         if (lp->rx_ring) {
1766                 pci_free_consistent(lp->pci_dev,
1767                                     sizeof(struct pcnet32_rx_head) *
1768                                     lp->rx_ring_size, lp->rx_ring,
1769                                     lp->rx_ring_dma_addr);
1770                 lp->rx_ring = NULL;
1771         }
1772 }
1773
1774 static int pcnet32_open(struct net_device *dev)
1775 {
1776         struct pcnet32_private *lp = dev->priv;
1777         unsigned long ioaddr = dev->base_addr;
1778         u16 val;
1779         int i;
1780         int rc;
1781         unsigned long flags;
1782
1783         if (request_irq(dev->irq, &pcnet32_interrupt,
1784                         lp->shared_irq ? IRQF_SHARED : 0, dev->name,
1785                         (void *)dev)) {
1786                 return -EAGAIN;
1787         }
1788
1789         spin_lock_irqsave(&lp->lock, flags);
1790         /* Check for a valid station address */
1791         if (!is_valid_ether_addr(dev->dev_addr)) {
1792                 rc = -EINVAL;
1793                 goto err_free_irq;
1794         }
1795
1796         /* Reset the PCNET32 */
1797         lp->a.reset(ioaddr);
1798
1799         /* switch pcnet32 to 32bit mode */
1800         lp->a.write_bcr(ioaddr, 20, 2);
1801
1802         if (netif_msg_ifup(lp))
1803                 printk(KERN_DEBUG
1804                        "%s: pcnet32_open() irq %d tx/rx rings %#x/%#x init %#x.\n",
1805                        dev->name, dev->irq, (u32) (lp->tx_ring_dma_addr),
1806                        (u32) (lp->rx_ring_dma_addr),
1807                        (u32) (lp->dma_addr +
1808                               offsetof(struct pcnet32_private, init_block)));
1809
1810         /* set/reset autoselect bit */
1811         val = lp->a.read_bcr(ioaddr, 2) & ~2;
1812         if (lp->options & PCNET32_PORT_ASEL)
1813                 val |= 2;
1814         lp->a.write_bcr(ioaddr, 2, val);
1815
1816         /* handle full duplex setting */
1817         if (lp->mii_if.full_duplex) {
1818                 val = lp->a.read_bcr(ioaddr, 9) & ~3;
1819                 if (lp->options & PCNET32_PORT_FD) {
1820                         val |= 1;
1821                         if (lp->options == (PCNET32_PORT_FD | PCNET32_PORT_AUI))
1822                                 val |= 2;
1823                 } else if (lp->options & PCNET32_PORT_ASEL) {
1824                         /* workaround of xSeries250, turn on for 79C975 only */
1825                         i = ((lp->a.read_csr(ioaddr, 88) |
1826                               (lp->a.
1827                                read_csr(ioaddr, 89) << 16)) >> 12) & 0xffff;
1828                         if (i == 0x2627)
1829                                 val |= 3;
1830                 }
1831                 lp->a.write_bcr(ioaddr, 9, val);
1832         }
1833
1834         /* set/reset GPSI bit in test register */
1835         val = lp->a.read_csr(ioaddr, 124) & ~0x10;
1836         if ((lp->options & PCNET32_PORT_PORTSEL) == PCNET32_PORT_GPSI)
1837                 val |= 0x10;
1838         lp->a.write_csr(ioaddr, 124, val);
1839
1840         /* Allied Telesyn AT 2700/2701 FX are 100Mbit only and do not negotiate */
1841         if (lp->pci_dev->subsystem_vendor == PCI_VENDOR_ID_AT &&
1842             (lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2700FX ||
1843              lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2701FX)) {
1844                 if (lp->options & PCNET32_PORT_ASEL) {
1845                         lp->options = PCNET32_PORT_FD | PCNET32_PORT_100;
1846                         if (netif_msg_link(lp))
1847                                 printk(KERN_DEBUG
1848                                        "%s: Setting 100Mb-Full Duplex.\n",
1849                                        dev->name);
1850                 }
1851         }
1852         if (lp->phycount < 2) {
1853                 /*
1854                  * 24 Jun 2004 according AMD, in order to change the PHY,
1855                  * DANAS (or DISPM for 79C976) must be set; then select the speed,
1856                  * duplex, and/or enable auto negotiation, and clear DANAS
1857                  */
1858                 if (lp->mii && !(lp->options & PCNET32_PORT_ASEL)) {
1859                         lp->a.write_bcr(ioaddr, 32,
1860                                         lp->a.read_bcr(ioaddr, 32) | 0x0080);
1861                         /* disable Auto Negotiation, set 10Mpbs, HD */
1862                         val = lp->a.read_bcr(ioaddr, 32) & ~0xb8;
1863                         if (lp->options & PCNET32_PORT_FD)
1864                                 val |= 0x10;
1865                         if (lp->options & PCNET32_PORT_100)
1866                                 val |= 0x08;
1867                         lp->a.write_bcr(ioaddr, 32, val);
1868                 } else {
1869                         if (lp->options & PCNET32_PORT_ASEL) {
1870                                 lp->a.write_bcr(ioaddr, 32,
1871                                                 lp->a.read_bcr(ioaddr,
1872                                                                32) | 0x0080);
1873                                 /* enable auto negotiate, setup, disable fd */
1874                                 val = lp->a.read_bcr(ioaddr, 32) & ~0x98;
1875                                 val |= 0x20;
1876                                 lp->a.write_bcr(ioaddr, 32, val);
1877                         }
1878                 }
1879         } else {
1880                 int first_phy = -1;
1881                 u16 bmcr;
1882                 u32 bcr9;
1883                 struct ethtool_cmd ecmd;
1884
1885                 /*
1886                  * There is really no good other way to handle multiple PHYs
1887                  * other than turning off all automatics
1888                  */
1889                 val = lp->a.read_bcr(ioaddr, 2);
1890                 lp->a.write_bcr(ioaddr, 2, val & ~2);
1891                 val = lp->a.read_bcr(ioaddr, 32);
1892                 lp->a.write_bcr(ioaddr, 32, val & ~(1 << 7));   /* stop MII manager */
1893
1894                 if (!(lp->options & PCNET32_PORT_ASEL)) {
1895                         /* setup ecmd */
1896                         ecmd.port = PORT_MII;
1897                         ecmd.transceiver = XCVR_INTERNAL;
1898                         ecmd.autoneg = AUTONEG_DISABLE;
1899                         ecmd.speed =
1900                             lp->
1901                             options & PCNET32_PORT_100 ? SPEED_100 : SPEED_10;
1902                         bcr9 = lp->a.read_bcr(ioaddr, 9);
1903
1904                         if (lp->options & PCNET32_PORT_FD) {
1905                                 ecmd.duplex = DUPLEX_FULL;
1906                                 bcr9 |= (1 << 0);
1907                         } else {
1908                                 ecmd.duplex = DUPLEX_HALF;
1909                                 bcr9 |= ~(1 << 0);
1910                         }
1911                         lp->a.write_bcr(ioaddr, 9, bcr9);
1912                 }
1913
1914                 for (i = 0; i < PCNET32_MAX_PHYS; i++) {
1915                         if (lp->phymask & (1 << i)) {
1916                                 /* isolate all but the first PHY */
1917                                 bmcr = mdio_read(dev, i, MII_BMCR);
1918                                 if (first_phy == -1) {
1919                                         first_phy = i;
1920                                         mdio_write(dev, i, MII_BMCR,
1921                                                    bmcr & ~BMCR_ISOLATE);
1922                                 } else {
1923                                         mdio_write(dev, i, MII_BMCR,
1924                                                    bmcr | BMCR_ISOLATE);
1925                                 }
1926                                 /* use mii_ethtool_sset to setup PHY */
1927                                 lp->mii_if.phy_id = i;
1928                                 ecmd.phy_address = i;
1929                                 if (lp->options & PCNET32_PORT_ASEL) {
1930                                         mii_ethtool_gset(&lp->mii_if, &ecmd);
1931                                         ecmd.autoneg = AUTONEG_ENABLE;
1932                                 }
1933                                 mii_ethtool_sset(&lp->mii_if, &ecmd);
1934                         }
1935                 }
1936                 lp->mii_if.phy_id = first_phy;
1937                 if (netif_msg_link(lp))
1938                         printk(KERN_INFO "%s: Using PHY number %d.\n",
1939                                dev->name, first_phy);
1940         }
1941
1942 #ifdef DO_DXSUFLO
1943         if (lp->dxsuflo) {      /* Disable transmit stop on underflow */
1944                 val = lp->a.read_csr(ioaddr, 3);
1945                 val |= 0x40;
1946                 lp->a.write_csr(ioaddr, 3, val);
1947         }
1948 #endif
1949
1950         lp->init_block.mode =
1951             le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
1952         pcnet32_load_multicast(dev);
1953
1954         if (pcnet32_init_ring(dev)) {
1955                 rc = -ENOMEM;
1956                 goto err_free_ring;
1957         }
1958
1959         /* Re-initialize the PCNET32, and start it when done. */
1960         lp->a.write_csr(ioaddr, 1, (lp->dma_addr +
1961                                     offsetof(struct pcnet32_private,
1962                                              init_block)) & 0xffff);
1963         lp->a.write_csr(ioaddr, 2,
1964                         (lp->dma_addr +
1965                          offsetof(struct pcnet32_private, init_block)) >> 16);
1966
1967         lp->a.write_csr(ioaddr, 4, 0x0915);
1968         lp->a.write_csr(ioaddr, 0, 0x0001);
1969
1970         netif_start_queue(dev);
1971
1972         /* Print the link status and start the watchdog */
1973         pcnet32_check_media(dev, 1);
1974         mod_timer(&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
1975
1976         i = 0;
1977         while (i++ < 100)
1978                 if (lp->a.read_csr(ioaddr, 0) & 0x0100)
1979                         break;
1980         /*
1981          * We used to clear the InitDone bit, 0x0100, here but Mark Stockton
1982          * reports that doing so triggers a bug in the '974.
1983          */
1984         lp->a.write_csr(ioaddr, 0, 0x0042);
1985
1986         if (netif_msg_ifup(lp))
1987                 printk(KERN_DEBUG
1988                        "%s: pcnet32 open after %d ticks, init block %#x csr0 %4.4x.\n",
1989                        dev->name, i,
1990                        (u32) (lp->dma_addr +
1991                               offsetof(struct pcnet32_private, init_block)),
1992                        lp->a.read_csr(ioaddr, 0));
1993
1994         spin_unlock_irqrestore(&lp->lock, flags);
1995
1996         return 0;               /* Always succeed */
1997
1998       err_free_ring:
1999         /* free any allocated skbuffs */
2000         for (i = 0; i < lp->rx_ring_size; i++) {
2001                 lp->rx_ring[i].status = 0;
2002                 if (lp->rx_skbuff[i]) {
2003                         pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i],
2004                                          PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
2005                         dev_kfree_skb(lp->rx_skbuff[i]);
2006                 }
2007                 lp->rx_skbuff[i] = NULL;
2008                 lp->rx_dma_addr[i] = 0;
2009         }
2010
2011         /*
2012          * Switch back to 16bit mode to avoid problems with dumb
2013          * DOS packet driver after a warm reboot
2014          */
2015         lp->a.write_bcr(ioaddr, 20, 4);
2016
2017       err_free_irq:
2018         spin_unlock_irqrestore(&lp->lock, flags);
2019         free_irq(dev->irq, dev);
2020         return rc;
2021 }
2022
2023 /*
2024  * The LANCE has been halted for one reason or another (busmaster memory
2025  * arbitration error, Tx FIFO underflow, driver stopped it to reconfigure,
2026  * etc.).  Modern LANCE variants always reload their ring-buffer
2027  * configuration when restarted, so we must reinitialize our ring
2028  * context before restarting.  As part of this reinitialization,
2029  * find all packets still on the Tx ring and pretend that they had been
2030  * sent (in effect, drop the packets on the floor) - the higher-level
2031  * protocols will time out and retransmit.  It'd be better to shuffle
2032  * these skbs to a temp list and then actually re-Tx them after
2033  * restarting the chip, but I'm too lazy to do so right now.  dplatt@3do.com
2034  */
2035
2036 static void pcnet32_purge_tx_ring(struct net_device *dev)
2037 {
2038         struct pcnet32_private *lp = dev->priv;
2039         int i;
2040
2041         for (i = 0; i < lp->tx_ring_size; i++) {
2042                 lp->tx_ring[i].status = 0;      /* CPU owns buffer */
2043                 wmb();          /* Make sure adapter sees owner change */
2044                 if (lp->tx_skbuff[i]) {
2045                         pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
2046                                          lp->tx_skbuff[i]->len,
2047                                          PCI_DMA_TODEVICE);
2048                         dev_kfree_skb_any(lp->tx_skbuff[i]);
2049                 }
2050                 lp->tx_skbuff[i] = NULL;
2051                 lp->tx_dma_addr[i] = 0;
2052         }
2053 }
2054
2055 /* Initialize the PCNET32 Rx and Tx rings. */
2056 static int pcnet32_init_ring(struct net_device *dev)
2057 {
2058         struct pcnet32_private *lp = dev->priv;
2059         int i;
2060
2061         lp->tx_full = 0;
2062         lp->cur_rx = lp->cur_tx = 0;
2063         lp->dirty_rx = lp->dirty_tx = 0;
2064
2065         for (i = 0; i < lp->rx_ring_size; i++) {
2066                 struct sk_buff *rx_skbuff = lp->rx_skbuff[i];
2067                 if (rx_skbuff == NULL) {
2068                         if (!
2069                             (rx_skbuff = lp->rx_skbuff[i] =
2070                              dev_alloc_skb(PKT_BUF_SZ))) {
2071                                 /* there is not much, we can do at this point */
2072                                 if (pcnet32_debug & NETIF_MSG_DRV)
2073                                         printk(KERN_ERR
2074                                                "%s: pcnet32_init_ring dev_alloc_skb failed.\n",
2075                                                dev->name);
2076                                 return -1;
2077                         }
2078                         skb_reserve(rx_skbuff, 2);
2079                 }
2080
2081                 rmb();
2082                 if (lp->rx_dma_addr[i] == 0)
2083                         lp->rx_dma_addr[i] =
2084                             pci_map_single(lp->pci_dev, rx_skbuff->data,
2085                                            PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
2086                 lp->rx_ring[i].base = (u32) le32_to_cpu(lp->rx_dma_addr[i]);
2087                 lp->rx_ring[i].buf_length = le16_to_cpu(2 - PKT_BUF_SZ);
2088                 wmb();          /* Make sure owner changes after all others are visible */
2089                 lp->rx_ring[i].status = le16_to_cpu(0x8000);
2090         }
2091         /* The Tx buffer address is filled in as needed, but we do need to clear
2092          * the upper ownership bit. */
2093         for (i = 0; i < lp->tx_ring_size; i++) {
2094                 lp->tx_ring[i].status = 0;      /* CPU owns buffer */
2095                 wmb();          /* Make sure adapter sees owner change */
2096                 lp->tx_ring[i].base = 0;
2097                 lp->tx_dma_addr[i] = 0;
2098         }
2099
2100         lp->init_block.tlen_rlen =
2101             le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
2102         for (i = 0; i < 6; i++)
2103                 lp->init_block.phys_addr[i] = dev->dev_addr[i];
2104         lp->init_block.rx_ring = (u32) le32_to_cpu(lp->rx_ring_dma_addr);
2105         lp->init_block.tx_ring = (u32) le32_to_cpu(lp->tx_ring_dma_addr);
2106         wmb();                  /* Make sure all changes are visible */
2107         return 0;
2108 }
2109
2110 /* the pcnet32 has been issued a stop or reset.  Wait for the stop bit
2111  * then flush the pending transmit operations, re-initialize the ring,
2112  * and tell the chip to initialize.
2113  */
2114 static void pcnet32_restart(struct net_device *dev, unsigned int csr0_bits)
2115 {
2116         struct pcnet32_private *lp = dev->priv;
2117         unsigned long ioaddr = dev->base_addr;
2118         int i;
2119
2120         /* wait for stop */
2121         for (i = 0; i < 100; i++)
2122                 if (lp->a.read_csr(ioaddr, 0) & 0x0004)
2123                         break;
2124
2125         if (i >= 100 && netif_msg_drv(lp))
2126                 printk(KERN_ERR
2127                        "%s: pcnet32_restart timed out waiting for stop.\n",
2128                        dev->name);
2129
2130         pcnet32_purge_tx_ring(dev);
2131         if (pcnet32_init_ring(dev))
2132                 return;
2133
2134         /* ReInit Ring */
2135         lp->a.write_csr(ioaddr, 0, 1);
2136         i = 0;
2137         while (i++ < 1000)
2138                 if (lp->a.read_csr(ioaddr, 0) & 0x0100)
2139                         break;
2140
2141         lp->a.write_csr(ioaddr, 0, csr0_bits);
2142 }
2143
2144 static void pcnet32_tx_timeout(struct net_device *dev)
2145 {
2146         struct pcnet32_private *lp = dev->priv;
2147         unsigned long ioaddr = dev->base_addr, flags;
2148
2149         spin_lock_irqsave(&lp->lock, flags);
2150         /* Transmitter timeout, serious problems. */
2151         if (pcnet32_debug & NETIF_MSG_DRV)
2152                 printk(KERN_ERR
2153                        "%s: transmit timed out, status %4.4x, resetting.\n",
2154                        dev->name, lp->a.read_csr(ioaddr, 0));
2155         lp->a.write_csr(ioaddr, 0, 0x0004);
2156         lp->stats.tx_errors++;
2157         if (netif_msg_tx_err(lp)) {
2158                 int i;
2159                 printk(KERN_DEBUG
2160                        " Ring data dump: dirty_tx %d cur_tx %d%s cur_rx %d.",
2161                        lp->dirty_tx, lp->cur_tx, lp->tx_full ? " (full)" : "",
2162                        lp->cur_rx);
2163                 for (i = 0; i < lp->rx_ring_size; i++)
2164                         printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
2165                                le32_to_cpu(lp->rx_ring[i].base),
2166                                (-le16_to_cpu(lp->rx_ring[i].buf_length)) &
2167                                0xffff, le32_to_cpu(lp->rx_ring[i].msg_length),
2168                                le16_to_cpu(lp->rx_ring[i].status));
2169                 for (i = 0; i < lp->tx_ring_size; i++)
2170                         printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
2171                                le32_to_cpu(lp->tx_ring[i].base),
2172                                (-le16_to_cpu(lp->tx_ring[i].length)) & 0xffff,
2173                                le32_to_cpu(lp->tx_ring[i].misc),
2174                                le16_to_cpu(lp->tx_ring[i].status));
2175                 printk("\n");
2176         }
2177         pcnet32_restart(dev, 0x0042);
2178
2179         dev->trans_start = jiffies;
2180         netif_wake_queue(dev);
2181
2182         spin_unlock_irqrestore(&lp->lock, flags);
2183 }
2184
2185 static int pcnet32_start_xmit(struct sk_buff *skb, struct net_device *dev)
2186 {
2187         struct pcnet32_private *lp = dev->priv;
2188         unsigned long ioaddr = dev->base_addr;
2189         u16 status;
2190         int entry;
2191         unsigned long flags;
2192
2193         spin_lock_irqsave(&lp->lock, flags);
2194
2195         if (netif_msg_tx_queued(lp)) {
2196                 printk(KERN_DEBUG
2197                        "%s: pcnet32_start_xmit() called, csr0 %4.4x.\n",
2198                        dev->name, lp->a.read_csr(ioaddr, 0));
2199         }
2200
2201         /* Default status -- will not enable Successful-TxDone
2202          * interrupt when that option is available to us.
2203          */
2204         status = 0x8300;
2205
2206         /* Fill in a Tx ring entry */
2207
2208         /* Mask to ring buffer boundary. */
2209         entry = lp->cur_tx & lp->tx_mod_mask;
2210
2211         /* Caution: the write order is important here, set the status
2212          * with the "ownership" bits last. */
2213
2214         lp->tx_ring[entry].length = le16_to_cpu(-skb->len);
2215
2216         lp->tx_ring[entry].misc = 0x00000000;
2217
2218         lp->tx_skbuff[entry] = skb;
2219         lp->tx_dma_addr[entry] =
2220             pci_map_single(lp->pci_dev, skb->data, skb->len, PCI_DMA_TODEVICE);
2221         lp->tx_ring[entry].base = (u32) le32_to_cpu(lp->tx_dma_addr[entry]);
2222         wmb();                  /* Make sure owner changes after all others are visible */
2223         lp->tx_ring[entry].status = le16_to_cpu(status);
2224
2225         lp->cur_tx++;
2226         lp->stats.tx_bytes += skb->len;
2227
2228         /* Trigger an immediate send poll. */
2229         lp->a.write_csr(ioaddr, 0, 0x0048);
2230
2231         dev->trans_start = jiffies;
2232
2233         if (lp->tx_ring[(entry + 1) & lp->tx_mod_mask].base != 0) {
2234                 lp->tx_full = 1;
2235                 netif_stop_queue(dev);
2236         }
2237         spin_unlock_irqrestore(&lp->lock, flags);
2238         return 0;
2239 }
2240
2241 /* The PCNET32 interrupt handler. */
2242 static irqreturn_t
2243 pcnet32_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2244 {
2245         struct net_device *dev = dev_id;
2246         struct pcnet32_private *lp;
2247         unsigned long ioaddr;
2248         u16 csr0, rap;
2249         int boguscnt = max_interrupt_work;
2250         int must_restart;
2251
2252         if (!dev) {
2253                 if (pcnet32_debug & NETIF_MSG_INTR)
2254                         printk(KERN_DEBUG "%s(): irq %d for unknown device\n",
2255                                __FUNCTION__, irq);
2256                 return IRQ_NONE;
2257         }
2258
2259         ioaddr = dev->base_addr;
2260         lp = dev->priv;
2261
2262         spin_lock(&lp->lock);
2263
2264         rap = lp->a.read_rap(ioaddr);
2265         while ((csr0 = lp->a.read_csr(ioaddr, 0)) & 0x8f00 && --boguscnt >= 0) {
2266                 if (csr0 == 0xffff) {
2267                         break;  /* PCMCIA remove happened */
2268                 }
2269                 /* Acknowledge all of the current interrupt sources ASAP. */
2270                 lp->a.write_csr(ioaddr, 0, csr0 & ~0x004f);
2271
2272                 must_restart = 0;
2273
2274                 if (netif_msg_intr(lp))
2275                         printk(KERN_DEBUG
2276                                "%s: interrupt  csr0=%#2.2x new csr=%#2.2x.\n",
2277                                dev->name, csr0, lp->a.read_csr(ioaddr, 0));
2278
2279                 if (csr0 & 0x0400)      /* Rx interrupt */
2280                         pcnet32_rx(dev);
2281
2282                 if (csr0 & 0x0200) {    /* Tx-done interrupt */
2283                         unsigned int dirty_tx = lp->dirty_tx;
2284                         int delta;
2285
2286                         while (dirty_tx != lp->cur_tx) {
2287                                 int entry = dirty_tx & lp->tx_mod_mask;
2288                                 int status =
2289                                     (short)le16_to_cpu(lp->tx_ring[entry].
2290                                                        status);
2291
2292                                 if (status < 0)
2293                                         break;  /* It still hasn't been Txed */
2294
2295                                 lp->tx_ring[entry].base = 0;
2296
2297                                 if (status & 0x4000) {
2298                                         /* There was an major error, log it. */
2299                                         int err_status =
2300                                             le32_to_cpu(lp->tx_ring[entry].
2301                                                         misc);
2302                                         lp->stats.tx_errors++;
2303                                         if (netif_msg_tx_err(lp))
2304                                                 printk(KERN_ERR
2305                                                        "%s: Tx error status=%04x err_status=%08x\n",
2306                                                        dev->name, status,
2307                                                        err_status);
2308                                         if (err_status & 0x04000000)
2309                                                 lp->stats.tx_aborted_errors++;
2310                                         if (err_status & 0x08000000)
2311                                                 lp->stats.tx_carrier_errors++;
2312                                         if (err_status & 0x10000000)
2313                                                 lp->stats.tx_window_errors++;
2314 #ifndef DO_DXSUFLO
2315                                         if (err_status & 0x40000000) {
2316                                                 lp->stats.tx_fifo_errors++;
2317                                                 /* Ackk!  On FIFO errors the Tx unit is turned off! */
2318                                                 /* Remove this verbosity later! */
2319                                                 if (netif_msg_tx_err(lp))
2320                                                         printk(KERN_ERR
2321                                                                "%s: Tx FIFO error! CSR0=%4.4x\n",
2322                                                                dev->name, csr0);
2323                                                 must_restart = 1;
2324                                         }
2325 #else
2326                                         if (err_status & 0x40000000) {
2327                                                 lp->stats.tx_fifo_errors++;
2328                                                 if (!lp->dxsuflo) {     /* If controller doesn't recover ... */
2329                                                         /* Ackk!  On FIFO errors the Tx unit is turned off! */
2330                                                         /* Remove this verbosity later! */
2331                                                         if (netif_msg_tx_err
2332                                                             (lp))
2333                                                                 printk(KERN_ERR
2334                                                                        "%s: Tx FIFO error! CSR0=%4.4x\n",
2335                                                                        dev->
2336                                                                        name,
2337                                                                        csr0);
2338                                                         must_restart = 1;
2339                                                 }
2340                                         }
2341 #endif
2342                                 } else {
2343                                         if (status & 0x1800)
2344                                                 lp->stats.collisions++;
2345                                         lp->stats.tx_packets++;
2346                                 }
2347
2348                                 /* We must free the original skb */
2349                                 if (lp->tx_skbuff[entry]) {
2350                                         pci_unmap_single(lp->pci_dev,
2351                                                          lp->tx_dma_addr[entry],
2352                                                          lp->tx_skbuff[entry]->
2353                                                          len, PCI_DMA_TODEVICE);
2354                                         dev_kfree_skb_irq(lp->tx_skbuff[entry]);
2355                                         lp->tx_skbuff[entry] = NULL;
2356                                         lp->tx_dma_addr[entry] = 0;
2357                                 }
2358                                 dirty_tx++;
2359                         }
2360
2361                         delta =
2362                             (lp->cur_tx - dirty_tx) & (lp->tx_mod_mask +
2363                                                        lp->tx_ring_size);
2364                         if (delta > lp->tx_ring_size) {
2365                                 if (netif_msg_drv(lp))
2366                                         printk(KERN_ERR
2367                                                "%s: out-of-sync dirty pointer, %d vs. %d, full=%d.\n",
2368                                                dev->name, dirty_tx, lp->cur_tx,
2369                                                lp->tx_full);
2370                                 dirty_tx += lp->tx_ring_size;
2371                                 delta -= lp->tx_ring_size;
2372                         }
2373
2374                         if (lp->tx_full &&
2375                             netif_queue_stopped(dev) &&
2376                             delta < lp->tx_ring_size - 2) {
2377                                 /* The ring is no longer full, clear tbusy. */
2378                                 lp->tx_full = 0;
2379                                 netif_wake_queue(dev);
2380                         }
2381                         lp->dirty_tx = dirty_tx;
2382                 }
2383
2384                 /* Log misc errors. */
2385                 if (csr0 & 0x4000)
2386                         lp->stats.tx_errors++;  /* Tx babble. */
2387                 if (csr0 & 0x1000) {
2388                         /*
2389                          * this happens when our receive ring is full. This shouldn't
2390                          * be a problem as we will see normal rx interrupts for the frames
2391                          * in the receive ring. But there are some PCI chipsets (I can
2392                          * reproduce this on SP3G with Intel saturn chipset) which have
2393                          * sometimes problems and will fill up the receive ring with
2394                          * error descriptors. In this situation we don't get a rx
2395                          * interrupt, but a missed frame interrupt sooner or later.
2396                          * So we try to clean up our receive ring here.
2397                          */
2398                         pcnet32_rx(dev);
2399                         lp->stats.rx_errors++;  /* Missed a Rx frame. */
2400                 }
2401                 if (csr0 & 0x0800) {
2402                         if (netif_msg_drv(lp))
2403                                 printk(KERN_ERR
2404                                        "%s: Bus master arbitration failure, status %4.4x.\n",
2405                                        dev->name, csr0);
2406                         /* unlike for the lance, there is no restart needed */
2407                 }
2408
2409                 if (must_restart) {
2410                         /* reset the chip to clear the error condition, then restart */
2411                         lp->a.reset(ioaddr);
2412                         lp->a.write_csr(ioaddr, 4, 0x0915);
2413                         pcnet32_restart(dev, 0x0002);
2414                         netif_wake_queue(dev);
2415                 }
2416         }
2417
2418         /* Set interrupt enable. */
2419         lp->a.write_csr(ioaddr, 0, 0x0040);
2420         lp->a.write_rap(ioaddr, rap);
2421
2422         if (netif_msg_intr(lp))
2423                 printk(KERN_DEBUG "%s: exiting interrupt, csr0=%#4.4x.\n",
2424                        dev->name, lp->a.read_csr(ioaddr, 0));
2425
2426         spin_unlock(&lp->lock);
2427
2428         return IRQ_HANDLED;
2429 }
2430
2431 static int pcnet32_rx(struct net_device *dev)
2432 {
2433         struct pcnet32_private *lp = dev->priv;
2434         int entry = lp->cur_rx & lp->rx_mod_mask;
2435         int boguscnt = lp->rx_ring_size / 2;
2436
2437         /* If we own the next entry, it's a new packet. Send it up. */
2438         while ((short)le16_to_cpu(lp->rx_ring[entry].status) >= 0) {
2439                 int status = (short)le16_to_cpu(lp->rx_ring[entry].status) >> 8;
2440
2441                 if (status != 0x03) {   /* There was an error. */
2442                         /*
2443                          * There is a tricky error noted by John Murphy,
2444                          * <murf@perftech.com> to Russ Nelson: Even with full-sized
2445                          * buffers it's possible for a jabber packet to use two
2446                          * buffers, with only the last correctly noting the error.
2447                          */
2448                         if (status & 0x01)      /* Only count a general error at the */
2449                                 lp->stats.rx_errors++;  /* end of a packet. */
2450                         if (status & 0x20)
2451                                 lp->stats.rx_frame_errors++;
2452                         if (status & 0x10)
2453                                 lp->stats.rx_over_errors++;
2454                         if (status & 0x08)
2455                                 lp->stats.rx_crc_errors++;
2456                         if (status & 0x04)
2457                                 lp->stats.rx_fifo_errors++;
2458                         lp->rx_ring[entry].status &= le16_to_cpu(0x03ff);
2459                 } else {
2460                         /* Malloc up new buffer, compatible with net-2e. */
2461                         short pkt_len =
2462                             (le32_to_cpu(lp->rx_ring[entry].msg_length) & 0xfff)
2463                             - 4;
2464                         struct sk_buff *skb;
2465
2466                         /* Discard oversize frames. */
2467                         if (unlikely(pkt_len > PKT_BUF_SZ - 2)) {
2468                                 if (netif_msg_drv(lp))
2469                                         printk(KERN_ERR
2470                                                "%s: Impossible packet size %d!\n",
2471                                                dev->name, pkt_len);
2472                                 lp->stats.rx_errors++;
2473                         } else if (pkt_len < 60) {
2474                                 if (netif_msg_rx_err(lp))
2475                                         printk(KERN_ERR "%s: Runt packet!\n",
2476                                                dev->name);
2477                                 lp->stats.rx_errors++;
2478                         } else {
2479                                 int rx_in_place = 0;
2480
2481                                 if (pkt_len > rx_copybreak) {
2482                                         struct sk_buff *newskb;
2483
2484                                         if ((newskb =
2485                                              dev_alloc_skb(PKT_BUF_SZ))) {
2486                                                 skb_reserve(newskb, 2);
2487                                                 skb = lp->rx_skbuff[entry];
2488                                                 pci_unmap_single(lp->pci_dev,
2489                                                                  lp->
2490                                                                  rx_dma_addr
2491                                                                  [entry],
2492                                                                  PKT_BUF_SZ - 2,
2493                                                                  PCI_DMA_FROMDEVICE);
2494                                                 skb_put(skb, pkt_len);
2495                                                 lp->rx_skbuff[entry] = newskb;
2496                                                 newskb->dev = dev;
2497                                                 lp->rx_dma_addr[entry] =
2498                                                     pci_map_single(lp->pci_dev,
2499                                                                    newskb->data,
2500                                                                    PKT_BUF_SZ -
2501                                                                    2,
2502                                                                    PCI_DMA_FROMDEVICE);
2503                                                 lp->rx_ring[entry].base =
2504                                                     le32_to_cpu(lp->
2505                                                                 rx_dma_addr
2506                                                                 [entry]);
2507                                                 rx_in_place = 1;
2508                                         } else
2509                                                 skb = NULL;
2510                                 } else {
2511                                         skb = dev_alloc_skb(pkt_len + 2);
2512                                 }
2513
2514                                 if (skb == NULL) {
2515                                         int i;
2516                                         if (netif_msg_drv(lp))
2517                                                 printk(KERN_ERR
2518                                                        "%s: Memory squeeze, deferring packet.\n",
2519                                                        dev->name);
2520                                         for (i = 0; i < lp->rx_ring_size; i++)
2521                                                 if ((short)
2522                                                     le16_to_cpu(lp->
2523                                                                 rx_ring[(entry +
2524                                                                          i)
2525                                                                         & lp->
2526                                                                         rx_mod_mask].
2527                                                                 status) < 0)
2528                                                         break;
2529
2530                                         if (i > lp->rx_ring_size - 2) {
2531                                                 lp->stats.rx_dropped++;
2532                                                 lp->rx_ring[entry].status |=
2533                                                     le16_to_cpu(0x8000);
2534                                                 wmb();  /* Make sure adapter sees owner change */
2535                                                 lp->cur_rx++;
2536                                         }
2537                                         break;
2538                                 }
2539                                 skb->dev = dev;
2540                                 if (!rx_in_place) {
2541                                         skb_reserve(skb, 2);    /* 16 byte align */
2542                                         skb_put(skb, pkt_len);  /* Make room */
2543                                         pci_dma_sync_single_for_cpu(lp->pci_dev,
2544                                                                     lp->
2545                                                                     rx_dma_addr
2546                                                                     [entry],
2547                                                                     PKT_BUF_SZ -
2548                                                                     2,
2549                                                                     PCI_DMA_FROMDEVICE);
2550                                         eth_copy_and_sum(skb,
2551                                                          (unsigned char *)(lp->
2552                                                                            rx_skbuff
2553                                                                            [entry]->
2554                                                                            data),
2555                                                          pkt_len, 0);
2556                                         pci_dma_sync_single_for_device(lp->
2557                                                                        pci_dev,
2558                                                                        lp->
2559                                                                        rx_dma_addr
2560                                                                        [entry],
2561                                                                        PKT_BUF_SZ
2562                                                                        - 2,
2563                                                                        PCI_DMA_FROMDEVICE);
2564                                 }
2565                                 lp->stats.rx_bytes += skb->len;
2566                                 skb->protocol = eth_type_trans(skb, dev);
2567                                 netif_rx(skb);
2568                                 dev->last_rx = jiffies;
2569                                 lp->stats.rx_packets++;
2570                         }
2571                 }
2572                 /*
2573                  * The docs say that the buffer length isn't touched, but Andrew Boyd
2574                  * of QNX reports that some revs of the 79C965 clear it.
2575                  */
2576                 lp->rx_ring[entry].buf_length = le16_to_cpu(2 - PKT_BUF_SZ);
2577                 wmb();          /* Make sure owner changes after all others are visible */
2578                 lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
2579                 entry = (++lp->cur_rx) & lp->rx_mod_mask;
2580                 if (--boguscnt <= 0)
2581                         break;  /* don't stay in loop forever */
2582         }
2583
2584         return 0;
2585 }
2586
2587 static int pcnet32_close(struct net_device *dev)
2588 {
2589         unsigned long ioaddr = dev->base_addr;
2590         struct pcnet32_private *lp = dev->priv;
2591         int i;
2592         unsigned long flags;
2593
2594         del_timer_sync(&lp->watchdog_timer);
2595
2596         netif_stop_queue(dev);
2597
2598         spin_lock_irqsave(&lp->lock, flags);
2599
2600         lp->stats.rx_missed_errors = lp->a.read_csr(ioaddr, 112);
2601
2602         if (netif_msg_ifdown(lp))
2603                 printk(KERN_DEBUG
2604                        "%s: Shutting down ethercard, status was %2.2x.\n",
2605                        dev->name, lp->a.read_csr(ioaddr, 0));
2606
2607         /* We stop the PCNET32 here -- it occasionally polls memory if we don't. */
2608         lp->a.write_csr(ioaddr, 0, 0x0004);
2609
2610         /*
2611          * Switch back to 16bit mode to avoid problems with dumb
2612          * DOS packet driver after a warm reboot
2613          */
2614         lp->a.write_bcr(ioaddr, 20, 4);
2615
2616         spin_unlock_irqrestore(&lp->lock, flags);
2617
2618         free_irq(dev->irq, dev);
2619
2620         spin_lock_irqsave(&lp->lock, flags);
2621
2622         /* free all allocated skbuffs */
2623         for (i = 0; i < lp->rx_ring_size; i++) {
2624                 lp->rx_ring[i].status = 0;
2625                 wmb();          /* Make sure adapter sees owner change */
2626                 if (lp->rx_skbuff[i]) {
2627                         pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i],
2628                                          PKT_BUF_SZ - 2, PCI_DMA_FROMDEVICE);
2629                         dev_kfree_skb(lp->rx_skbuff[i]);
2630                 }
2631                 lp->rx_skbuff[i] = NULL;
2632                 lp->rx_dma_addr[i] = 0;
2633         }
2634
2635         for (i = 0; i < lp->tx_ring_size; i++) {
2636                 lp->tx_ring[i].status = 0;      /* CPU owns buffer */
2637                 wmb();          /* Make sure adapter sees owner change */
2638                 if (lp->tx_skbuff[i]) {
2639                         pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
2640                                          lp->tx_skbuff[i]->len,
2641                                          PCI_DMA_TODEVICE);
2642                         dev_kfree_skb(lp->tx_skbuff[i]);
2643                 }
2644                 lp->tx_skbuff[i] = NULL;
2645                 lp->tx_dma_addr[i] = 0;
2646         }
2647
2648         spin_unlock_irqrestore(&lp->lock, flags);
2649
2650         return 0;
2651 }
2652
2653 static struct net_device_stats *pcnet32_get_stats(struct net_device *dev)
2654 {
2655         struct pcnet32_private *lp = dev->priv;
2656         unsigned long ioaddr = dev->base_addr;
2657         u16 saved_addr;
2658         unsigned long flags;
2659
2660         spin_lock_irqsave(&lp->lock, flags);
2661         saved_addr = lp->a.read_rap(ioaddr);
2662         lp->stats.rx_missed_errors = lp->a.read_csr(ioaddr, 112);
2663         lp->a.write_rap(ioaddr, saved_addr);
2664         spin_unlock_irqrestore(&lp->lock, flags);
2665
2666         return &lp->stats;
2667 }
2668
2669 /* taken from the sunlance driver, which it took from the depca driver */
2670 static void pcnet32_load_multicast(struct net_device *dev)
2671 {
2672         struct pcnet32_private *lp = dev->priv;
2673         volatile struct pcnet32_init_block *ib = &lp->init_block;
2674         volatile u16 *mcast_table = (u16 *) & ib->filter;
2675         struct dev_mc_list *dmi = dev->mc_list;
2676         unsigned long ioaddr = dev->base_addr;
2677         char *addrs;
2678         int i;
2679         u32 crc;
2680
2681         /* set all multicast bits */
2682         if (dev->flags & IFF_ALLMULTI) {
2683                 ib->filter[0] = 0xffffffff;
2684                 ib->filter[1] = 0xffffffff;
2685                 lp->a.write_csr(ioaddr, PCNET32_MC_FILTER, 0xffff);
2686                 lp->a.write_csr(ioaddr, PCNET32_MC_FILTER+1, 0xffff);
2687                 lp->a.write_csr(ioaddr, PCNET32_MC_FILTER+2, 0xffff);
2688                 lp->a.write_csr(ioaddr, PCNET32_MC_FILTER+3, 0xffff);
2689                 return;
2690         }
2691         /* clear the multicast filter */
2692         ib->filter[0] = 0;
2693         ib->filter[1] = 0;
2694
2695         /* Add addresses */
2696         for (i = 0; i < dev->mc_count; i++) {
2697                 addrs = dmi->dmi_addr;
2698                 dmi = dmi->next;
2699
2700                 /* multicast address? */
2701                 if (!(*addrs & 1))
2702                         continue;
2703
2704                 crc = ether_crc_le(6, addrs);
2705                 crc = crc >> 26;
2706                 mcast_table[crc >> 4] =
2707                     le16_to_cpu(le16_to_cpu(mcast_table[crc >> 4]) |
2708                                 (1 << (crc & 0xf)));
2709         }
2710         for (i = 0; i < 4; i++)
2711                 lp->a.write_csr(ioaddr, PCNET32_MC_FILTER + i,
2712                                 le16_to_cpu(mcast_table[i]));
2713         return;
2714 }
2715
2716 /*
2717  * Set or clear the multicast filter for this adaptor.
2718  */
2719 static void pcnet32_set_multicast_list(struct net_device *dev)
2720 {
2721         unsigned long ioaddr = dev->base_addr, flags;
2722         struct pcnet32_private *lp = dev->priv;
2723         int csr15, suspended;
2724
2725         spin_lock_irqsave(&lp->lock, flags);
2726         suspended = pcnet32_suspend(dev, &flags, 0);
2727         csr15 = lp->a.read_csr(ioaddr, CSR15);
2728         if (dev->flags & IFF_PROMISC) {
2729                 /* Log any net taps. */
2730                 if (netif_msg_hw(lp))
2731                         printk(KERN_INFO "%s: Promiscuous mode enabled.\n",
2732                                dev->name);
2733                 lp->init_block.mode =
2734                     le16_to_cpu(0x8000 | (lp->options & PCNET32_PORT_PORTSEL) <<
2735                                 7);
2736                 lp->a.write_csr(ioaddr, CSR15, csr15 | 0x8000);
2737         } else {
2738                 lp->init_block.mode =
2739                     le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
2740                 lp->a.write_csr(ioaddr, CSR15, csr15 & 0x7fff);
2741                 pcnet32_load_multicast(dev);
2742         }
2743
2744         if (suspended) {
2745                 int csr5;
2746                 /* clear SUSPEND (SPND) - CSR5 bit 0 */
2747                 csr5 = lp->a.read_csr(ioaddr, CSR5);
2748                 lp->a.write_csr(ioaddr, CSR5, csr5 & (~CSR5_SUSPEND));
2749         } else { 
2750                 lp->a.write_csr(ioaddr, CSR0, CSR0_STOP);
2751                 pcnet32_restart(dev, CSR0_NORMAL);
2752                 netif_wake_queue(dev);
2753         }
2754
2755         spin_unlock_irqrestore(&lp->lock, flags);
2756 }
2757
2758 /* This routine assumes that the lp->lock is held */
2759 static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
2760 {
2761         struct pcnet32_private *lp = dev->priv;
2762         unsigned long ioaddr = dev->base_addr;
2763         u16 val_out;
2764
2765         if (!lp->mii)
2766                 return 0;
2767
2768         lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2769         val_out = lp->a.read_bcr(ioaddr, 34);
2770
2771         return val_out;
2772 }
2773
2774 /* This routine assumes that the lp->lock is held */
2775 static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
2776 {
2777         struct pcnet32_private *lp = dev->priv;
2778         unsigned long ioaddr = dev->base_addr;
2779
2780         if (!lp->mii)
2781                 return;
2782
2783         lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2784         lp->a.write_bcr(ioaddr, 34, val);
2785 }
2786
2787 static int pcnet32_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2788 {
2789         struct pcnet32_private *lp = dev->priv;
2790         int rc;
2791         unsigned long flags;
2792
2793         /* SIOC[GS]MIIxxx ioctls */
2794         if (lp->mii) {
2795                 spin_lock_irqsave(&lp->lock, flags);
2796                 rc = generic_mii_ioctl(&lp->mii_if, if_mii(rq), cmd, NULL);
2797                 spin_unlock_irqrestore(&lp->lock, flags);
2798         } else {
2799                 rc = -EOPNOTSUPP;
2800         }
2801
2802         return rc;
2803 }
2804
2805 static int pcnet32_check_otherphy(struct net_device *dev)
2806 {
2807         struct pcnet32_private *lp = dev->priv;
2808         struct mii_if_info mii = lp->mii_if;
2809         u16 bmcr;
2810         int i;
2811
2812         for (i = 0; i < PCNET32_MAX_PHYS; i++) {
2813                 if (i == lp->mii_if.phy_id)
2814                         continue;       /* skip active phy */
2815                 if (lp->phymask & (1 << i)) {
2816                         mii.phy_id = i;
2817                         if (mii_link_ok(&mii)) {
2818                                 /* found PHY with active link */
2819                                 if (netif_msg_link(lp))
2820                                         printk(KERN_INFO
2821                                                "%s: Using PHY number %d.\n",
2822                                                dev->name, i);
2823
2824                                 /* isolate inactive phy */
2825                                 bmcr =
2826                                     mdio_read(dev, lp->mii_if.phy_id, MII_BMCR);
2827                                 mdio_write(dev, lp->mii_if.phy_id, MII_BMCR,
2828                                            bmcr | BMCR_ISOLATE);
2829
2830                                 /* de-isolate new phy */
2831                                 bmcr = mdio_read(dev, i, MII_BMCR);
2832                                 mdio_write(dev, i, MII_BMCR,
2833                                            bmcr & ~BMCR_ISOLATE);
2834
2835                                 /* set new phy address */
2836                                 lp->mii_if.phy_id = i;
2837                                 return 1;
2838                         }
2839                 }
2840         }
2841         return 0;
2842 }
2843
2844 /*
2845  * Show the status of the media.  Similar to mii_check_media however it
2846  * correctly shows the link speed for all (tested) pcnet32 variants.
2847  * Devices with no mii just report link state without speed.
2848  *
2849  * Caller is assumed to hold and release the lp->lock.
2850  */
2851
2852 static void pcnet32_check_media(struct net_device *dev, int verbose)
2853 {
2854         struct pcnet32_private *lp = dev->priv;
2855         int curr_link;
2856         int prev_link = netif_carrier_ok(dev) ? 1 : 0;
2857         u32 bcr9;
2858
2859         if (lp->mii) {
2860                 curr_link = mii_link_ok(&lp->mii_if);
2861         } else {
2862                 ulong ioaddr = dev->base_addr;  /* card base I/O address */
2863                 curr_link = (lp->a.read_bcr(ioaddr, 4) != 0xc0);
2864         }
2865         if (!curr_link) {
2866                 if (prev_link || verbose) {
2867                         netif_carrier_off(dev);
2868                         if (netif_msg_link(lp))
2869                                 printk(KERN_INFO "%s: link down\n", dev->name);
2870                 }
2871                 if (lp->phycount > 1) {
2872                         curr_link = pcnet32_check_otherphy(dev);
2873                         prev_link = 0;
2874                 }
2875         } else if (verbose || !prev_link) {
2876                 netif_carrier_on(dev);
2877                 if (lp->mii) {
2878                         if (netif_msg_link(lp)) {
2879                                 struct ethtool_cmd ecmd;
2880                                 mii_ethtool_gset(&lp->mii_if, &ecmd);
2881                                 printk(KERN_INFO
2882                                        "%s: link up, %sMbps, %s-duplex\n",
2883                                        dev->name,
2884                                        (ecmd.speed == SPEED_100) ? "100" : "10",
2885                                        (ecmd.duplex ==
2886                                         DUPLEX_FULL) ? "full" : "half");
2887                         }
2888                         bcr9 = lp->a.read_bcr(dev->base_addr, 9);
2889                         if ((bcr9 & (1 << 0)) != lp->mii_if.full_duplex) {
2890                                 if (lp->mii_if.full_duplex)
2891                                         bcr9 |= (1 << 0);
2892                                 else
2893                                         bcr9 &= ~(1 << 0);
2894                                 lp->a.write_bcr(dev->base_addr, 9, bcr9);
2895                         }
2896                 } else {
2897                         if (netif_msg_link(lp))
2898                                 printk(KERN_INFO "%s: link up\n", dev->name);
2899                 }
2900         }
2901 }
2902
2903 /*
2904  * Check for loss of link and link establishment.
2905  * Can not use mii_check_media because it does nothing if mode is forced.
2906  */
2907
2908 static void pcnet32_watchdog(struct net_device *dev)
2909 {
2910         struct pcnet32_private *lp = dev->priv;
2911         unsigned long flags;
2912
2913         /* Print the link status if it has changed */
2914         spin_lock_irqsave(&lp->lock, flags);
2915         pcnet32_check_media(dev, 0);
2916         spin_unlock_irqrestore(&lp->lock, flags);
2917
2918         mod_timer(&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
2919 }
2920
2921 static void __devexit pcnet32_remove_one(struct pci_dev *pdev)
2922 {
2923         struct net_device *dev = pci_get_drvdata(pdev);
2924
2925         if (dev) {
2926                 struct pcnet32_private *lp = dev->priv;
2927
2928                 unregister_netdev(dev);
2929                 pcnet32_free_ring(dev);
2930                 release_region(dev->base_addr, PCNET32_TOTAL_SIZE);
2931                 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
2932                 free_netdev(dev);
2933                 pci_disable_device(pdev);
2934                 pci_set_drvdata(pdev, NULL);
2935         }
2936 }
2937
2938 static struct pci_driver pcnet32_driver = {
2939         .name = DRV_NAME,
2940         .probe = pcnet32_probe_pci,
2941         .remove = __devexit_p(pcnet32_remove_one),
2942         .id_table = pcnet32_pci_tbl,
2943 };
2944
2945 /* An additional parameter that may be passed in... */
2946 static int debug = -1;
2947 static int tx_start_pt = -1;
2948 static int pcnet32_have_pci;
2949
2950 module_param(debug, int, 0);
2951 MODULE_PARM_DESC(debug, DRV_NAME " debug level");
2952 module_param(max_interrupt_work, int, 0);
2953 MODULE_PARM_DESC(max_interrupt_work,
2954                  DRV_NAME " maximum events handled per interrupt");
2955 module_param(rx_copybreak, int, 0);
2956 MODULE_PARM_DESC(rx_copybreak,
2957                  DRV_NAME " copy breakpoint for copy-only-tiny-frames");
2958 module_param(tx_start_pt, int, 0);
2959 MODULE_PARM_DESC(tx_start_pt, DRV_NAME " transmit start point (0-3)");
2960 module_param(pcnet32vlb, int, 0);
2961 MODULE_PARM_DESC(pcnet32vlb, DRV_NAME " Vesa local bus (VLB) support (0/1)");
2962 module_param_array(options, int, NULL, 0);
2963 MODULE_PARM_DESC(options, DRV_NAME " initial option setting(s) (0-15)");
2964 module_param_array(full_duplex, int, NULL, 0);
2965 MODULE_PARM_DESC(full_duplex, DRV_NAME " full duplex setting(s) (1)");
2966 /* Module Parameter for HomePNA cards added by Patrick Simmons, 2004 */
2967 module_param_array(homepna, int, NULL, 0);
2968 MODULE_PARM_DESC(homepna,
2969                  DRV_NAME
2970                  " mode for 79C978 cards (1 for HomePNA, 0 for Ethernet, default Ethernet");
2971
2972 MODULE_AUTHOR("Thomas Bogendoerfer");
2973 MODULE_DESCRIPTION("Driver for PCnet32 and PCnetPCI based ethercards");
2974 MODULE_LICENSE("GPL");
2975
2976 #define PCNET32_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
2977
2978 static int __init pcnet32_init_module(void)
2979 {
2980         printk(KERN_INFO "%s", version);
2981
2982         pcnet32_debug = netif_msg_init(debug, PCNET32_MSG_DEFAULT);
2983
2984         if ((tx_start_pt >= 0) && (tx_start_pt <= 3))
2985                 tx_start = tx_start_pt;
2986
2987         /* find the PCI devices */
2988         if (!pci_module_init(&pcnet32_driver))
2989                 pcnet32_have_pci = 1;
2990
2991         /* should we find any remaining VLbus devices ? */
2992         if (pcnet32vlb)
2993                 pcnet32_probe_vlbus(pcnet32_portlist);
2994
2995         if (cards_found && (pcnet32_debug & NETIF_MSG_PROBE))
2996                 printk(KERN_INFO PFX "%d cards_found.\n", cards_found);
2997
2998         return (pcnet32_have_pci + cards_found) ? 0 : -ENODEV;
2999 }
3000
3001 static void __exit pcnet32_cleanup_module(void)
3002 {
3003         struct net_device *next_dev;
3004
3005         while (pcnet32_dev) {
3006                 struct pcnet32_private *lp = pcnet32_dev->priv;
3007                 next_dev = lp->next;
3008                 unregister_netdev(pcnet32_dev);
3009                 pcnet32_free_ring(pcnet32_dev);
3010                 release_region(pcnet32_dev->base_addr, PCNET32_TOTAL_SIZE);
3011                 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
3012                 free_netdev(pcnet32_dev);
3013                 pcnet32_dev = next_dev;
3014         }
3015
3016         if (pcnet32_have_pci)
3017                 pci_unregister_driver(&pcnet32_driver);
3018 }
3019
3020 module_init(pcnet32_init_module);
3021 module_exit(pcnet32_cleanup_module);
3022
3023 /*
3024  * Local variables:
3025  *  c-indent-level: 4
3026  *  tab-width: 8
3027  * End:
3028  */