lkml.org 
[lkml]   [2003]   [Feb]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[1/2][via-rhine][PATCH] reset logic
Since Linus and Jeff raised the issue of PCI posted writes, I cleaned up
wait_for_reset() some more. Experiments show that with MMIO, a reset may
indeed take seemingly longer -- that is fixed by flushing that buffer.

Also, the driver now polls the appropriate register while waiting for the
reset to finish.

--- 06_2.5.62/drivers/net/via-rhine.c Thu Feb 20 18:20:56 2003
+++ 07_reset/drivers/net/via-rhine.c Sat Feb 22 01:18:26 2003
@@ -368,6 +368,8 @@ enum chip_capability_flags {
#else
#define RHINE_IOTYPE (PCI_USES_IO | PCI_USES_MASTER | PCI_ADDR0)
#endif
+/* Beware of PCI posted writes */
+#define IOSYNC do { readb(dev->base_addr + StationAddr); } while (0)

/* directly indexed by enum via_rhine_chips, above */
static struct via_rhine_chip_info via_rhine_chip_info[] __devinitdata =
@@ -530,11 +532,12 @@ static int via_rhine_close(struct net_d
static void wait_for_reset(struct net_device *dev, int chip_id, char *name)
{
long ioaddr = dev->base_addr;
+ int boguscnt = 20;

- udelay(5);
+ IOSYNC;

if (readw(ioaddr + ChipCmd) & CmdReset) {
- printk(KERN_INFO "%s: Reset did not complete in 5 us. "
+ printk(KERN_INFO "%s: Reset not complete yet. "
"Trying harder.\n", name);

/* Rhine-II needs to be forced sometimes */
@@ -543,12 +546,14 @@ static void wait_for_reset(struct net_de

/* VT86C100A may need long delay after reset (dlink) */
/* Seen on Rhine-II as well (rl) */
- udelay(100);
+ while ((readw(ioaddr + ChipCmd) & CmdReset) && --boguscnt);
+ udelay(5);
+
}

if (debug > 1)
printk(KERN_INFO "%s: Reset %s.\n", name,
- (readw(ioaddr + ChipCmd) & CmdReset) ? "failed" : "succeeded");
+ boguscnt ? "succeeded" : "failed");
}

#ifdef USE_MEM
\
 
 \ /
  Last update: 2005-03-22 13:33    [W:0.047 / U:1.044 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site