fedora core 2.6.10-1.12-FC2
[linux-2.6.git] / drivers / net / tulip / tulip.h
index 625ebba..063a1f0 100644 (file)
@@ -88,6 +88,7 @@ enum chips {
        I21145,
        DM910X,
        CONEXANT,
+       ULI526X
 };
 
 
@@ -382,7 +383,7 @@ struct tulip_private {
        int ttimer;
        int susp_rx;
        unsigned long nir;
-       unsigned long base_addr;
+       void __iomem *base_addr;
        int csr12_shadow;
        int pad0;               /* Used for 8-byte alignment */
 };
@@ -449,57 +450,43 @@ extern struct tulip_chip_table tulip_tbl[];
 void oom_timer(unsigned long data);
 extern u8 t21040_csr13[];
 
-#ifndef USE_IO_OPS
-#undef inb
-#undef inw
-#undef inl
-#undef outb
-#undef outw
-#undef outl
-#define inb(addr) readb((void*)(addr))
-#define inw(addr) readw((void*)(addr))
-#define inl(addr) readl((void*)(addr))
-#define outb(val,addr) writeb((val), (void*)(addr))
-#define outw(val,addr) writew((val), (void*)(addr))
-#define outl(val,addr) writel((val), (void*)(addr))
-#endif /* !USE_IO_OPS */
-
-
-
 static inline void tulip_start_rxtx(struct tulip_private *tp)
 {
-       long ioaddr = tp->base_addr;
-       outl(tp->csr6 | RxTx, ioaddr + CSR6);
+       void __iomem *ioaddr = tp->base_addr;
+       iowrite32(tp->csr6 | RxTx, ioaddr + CSR6);
        barrier();
-       (void) inl(ioaddr + CSR6); /* mmio sync */
+       (void) ioread32(ioaddr + CSR6); /* mmio sync */
 }
 
 static inline void tulip_stop_rxtx(struct tulip_private *tp)
 {
-       long ioaddr = tp->base_addr;
-       u32 csr6 = inl(ioaddr + CSR6);
+       void __iomem *ioaddr = tp->base_addr;
+       u32 csr6 = ioread32(ioaddr + CSR6);
 
        if (csr6 & RxTx) {
                unsigned i=1300/10;
-               outl(csr6 & ~RxTx, ioaddr + CSR6);
+               iowrite32(csr6 & ~RxTx, ioaddr + CSR6);
                barrier();
                /* wait until in-flight frame completes.
                 * Max time @ 10BT: 1500*8b/10Mbps == 1200us (+ 100us margin)
-                * Typically expect this loop to end in < 50us on 100BT.
+                * Typically expect this loop to end in < 50 us on 100BT.
                 */
-               while (--i && (inl(ioaddr + CSR5) & (CSR5_TS|CSR5_RS))) 
+               while (--i && (ioread32(ioaddr + CSR5) & (CSR5_TS|CSR5_RS)))
                        udelay(10);
 
                if (!i)
-                       printk (KERN_DEBUG "%s: tulip_stop_rxtx() failed\n",
+                       printk(KERN_DEBUG "%s: tulip_stop_rxtx() failed\n",
                                        tp->pdev->slot_name);
        }
 }
 
 static inline void tulip_restart_rxtx(struct tulip_private *tp)
 {
-       tulip_stop_rxtx(tp);
-       udelay(5);
+       if(!(tp->chip_id == ULI526X && 
+               (tp->revision == 0x40 || tp->revision == 0x50))) {
+               tulip_stop_rxtx(tp);
+               udelay(5);
+       }
        tulip_start_rxtx(tp);
 }