fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / drivers / net / tulip / timer.c
index 69f06dc..df326fe 100644 (file)
@@ -1,7 +1,7 @@
 /*
        drivers/net/tulip/timer.c
 
-       Maintained by Jeff Garzik <jgarzik@pobox.com>
+       Maintained by Valerie Henson <val_henson@linux.intel.com>
        Copyright 2000,2001  The Linux Kernel Team
        Written/copyright 1994-2001 by Donald Becker.
 
 
 */
 
+#include <linux/pci.h>
 #include "tulip.h"
 
 
-void tulip_timer(unsigned long data)
+void tulip_media_task(struct work_struct *work)
 {
-       struct net_device *dev = (struct net_device *)data;
-       struct tulip_private *tp = netdev_priv(dev);
-       long ioaddr = dev->base_addr;
-       u32 csr12 = inl(ioaddr + CSR12);
+       struct tulip_private *tp =
+               container_of(work, struct tulip_private, media_work);
+       struct net_device *dev = tp->dev;
+       void __iomem *ioaddr = tp->base_addr;
+       u32 csr12 = ioread32(ioaddr + CSR12);
        int next_tick = 2*HZ;
+       unsigned long flags;
 
        if (tulip_debug > 2) {
                printk(KERN_DEBUG "%s: Media selection tick, %s, status %8.8x mode"
                           " %8.8x SIA %8.8x %8.8x %8.8x %8.8x.\n",
-                          dev->name, medianame[dev->if_port], inl(ioaddr + CSR5),
-                          inl(ioaddr + CSR6), csr12, inl(ioaddr + CSR13),
-                          inl(ioaddr + CSR14), inl(ioaddr + CSR15));
+                          dev->name, medianame[dev->if_port], ioread32(ioaddr + CSR5),
+                          ioread32(ioaddr + CSR6), csr12, ioread32(ioaddr + CSR13),
+                          ioread32(ioaddr + CSR14), ioread32(ioaddr + CSR15));
        }
        switch (tp->chip_id) {
        case DC21140:
@@ -48,7 +51,7 @@ void tulip_timer(unsigned long data)
                        if (tulip_debug > 2)
                                printk(KERN_DEBUG "%s: network media monitor CSR6 %8.8x "
                                           "CSR12 0x%2.2x.\n",
-                                          dev->name, inl(ioaddr + CSR6), csr12 & 0xff);
+                                          dev->name, ioread32(ioaddr + CSR6), csr12 & 0xff);
                        break;
                }
                mleaf = &tp->mtable->mleaf[tp->cur_index];
@@ -125,6 +128,15 @@ void tulip_timer(unsigned long data)
        }
        break;
        }
+
+
+       spin_lock_irqsave(&tp->lock, flags);
+       if (tp->timeout_recovery) {
+               tulip_tx_timeout_complete(tp, ioaddr);
+               tp->timeout_recovery = 0;
+       }
+       spin_unlock_irqrestore(&tp->lock, flags);
+
        /* mod_timer synchronizes us with potential add_timer calls
         * from interrupts.
         */
@@ -136,12 +148,12 @@ void mxic_timer(unsigned long data)
 {
        struct net_device *dev = (struct net_device *)data;
        struct tulip_private *tp = netdev_priv(dev);
-       long ioaddr = dev->base_addr;
+       void __iomem *ioaddr = tp->base_addr;
        int next_tick = 60*HZ;
 
        if (tulip_debug > 3) {
                printk(KERN_INFO"%s: MXIC negotiation status %8.8x.\n", dev->name,
-                          inl(ioaddr + CSR12));
+                          ioread32(ioaddr + CSR12));
        }
        if (next_tick) {
                mod_timer(&tp->timer, RUN_AT(next_tick));