summaryrefslogtreecommitdiffstats
path: root/sys/isa
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>2002-05-12 15:24:21 +0000
committerjoerg <joerg@FreeBSD.org>2002-05-12 15:24:21 +0000
commit21ef250e0a5b998272a1153a2edf319c6d5de28e (patch)
treea731607ad7c93c236cdf962289c73ea77a1a4802 /sys/isa
parentc57dc2b4a808f4a7ef86e2ef7519d4783f2f0fac (diff)
downloadFreeBSD-src-21ef250e0a5b998272a1153a2edf319c6d5de28e.zip
FreeBSD-src-21ef250e0a5b998272a1153a2edf319c6d5de28e.tar.gz
Increase the PIO timeout to approximately the value it used to have
before rev 1.229 (~ 100 ms). According to bde, some (old) broken hardware could require it. In order to make timing more accurate than what could be achieved with a loop around DELAY(1), increase loop timing after the initial ~ 1 ms. Also, move the declaration of FDSTS_TIMEOUT out from fdreg.h into fd.c where it actually belongs to. MFC after: 2 days
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/fd.c41
-rw-r--r--sys/isa/fdreg.h12
2 files changed, 38 insertions, 15 deletions
diff --git a/sys/isa/fd.c b/sys/isa/fd.c
index 70fab4b..7f1cb27 100644
--- a/sys/isa/fd.c
+++ b/sys/isa/fd.c
@@ -213,6 +213,17 @@ FDC_ACCESSOR(fdunit, FDUNIT, int)
#define FDC_DMAOV_MAX 25
/*
+ * Timeout value for the PIO loops to wait until the FDC main status
+ * register matches our expectations (request for master, direction
+ * bit). This is supposed to be a number of microseconds, although
+ * timing might actually not be very accurate.
+ *
+ * Timeouts of 100 msec are believed to be required for some broken
+ * (old) hardware.
+ */
+#define FDSTS_TIMEOUT 100000
+
+/*
* Number of subdevices that can be used for different density types.
* By now, the lower 6 bit of the minor number are reserved for this,
* allowing for up to 64 subdevices, but we only use 16 out of this.
@@ -1480,7 +1491,15 @@ fd_in(struct fdc_data *fdc, int *ptr)
!= (NE7_DIO|NE7_RQM) && j-- > 0) {
if (i == NE7_RQM)
return fdc_err(fdc, "ready for output in input\n");
- DELAY(1);
+ /*
+ * After (maybe) 1 msec of waiting, back off to larger
+ * stepping to get the timing more accurate.
+ */
+ if (FDSTS_TIMEOUT - j > 1000) {
+ DELAY(1000);
+ j -= 999;
+ } else
+ DELAY(1);
}
if (j <= 0)
return fdc_err(fdc, bootverbose? "input ready timeout\n": 0);
@@ -1505,13 +1524,29 @@ out_fdc(struct fdc_data *fdc, int x)
/* Check that the direction bit is set */
i = FDSTS_TIMEOUT;
while ((fdsts_rd(fdc) & NE7_DIO) && i-- > 0)
- DELAY(1);
+ /*
+ * After (maybe) 1 msec of waiting, back off to larger
+ * stepping to get the timing more accurate.
+ */
+ if (FDSTS_TIMEOUT - i > 1000) {
+ DELAY(1000);
+ i -= 999;
+ } else
+ DELAY(1);
if (i <= 0) return fdc_err(fdc, "direction bit not set\n");
/* Check that the floppy controller is ready for a command */
i = FDSTS_TIMEOUT;
while ((fdsts_rd(fdc) & NE7_RQM) == 0 && i-- > 0)
- DELAY(1);
+ /*
+ * After (maybe) 1 msec of waiting, back off to larger
+ * stepping to get the timing more accurate.
+ */
+ if (FDSTS_TIMEOUT - i > 1000) {
+ DELAY(1000);
+ i -= 999;
+ } else
+ DELAY(1);
if (i <= 0)
return fdc_err(fdc, bootverbose? "output ready timeout\n": 0);
diff --git a/sys/isa/fdreg.h b/sys/isa/fdreg.h
index 893aefd..c082668 100644
--- a/sys/isa/fdreg.h
+++ b/sys/isa/fdreg.h
@@ -69,15 +69,3 @@
#define FDI_DCHG 0x80 /* diskette has been changed */
/* requires drive and motor being selected */
/* is cleared by any step pulse to drive */
-
-/*
- * Timeout value for the PIO loops to wait until the FDC main status
- * register matches our expextations (request for master, direction
- * bit). This is the number of cycles to loop while waiting, with a
- * 1-microsecond (in theory) DELAY() in each cycle. In particular on
- * slower hardware, it could take a fair amount more to execute. Of
- * course, as soon as the FDC main status register indicates the correct
- * bits are set, the loop will terminate, so this is merely a safety
- * measure to avoid looping forever in case of broken hardware.
- */
-#define FDSTS_TIMEOUT 200
OpenPOWER on IntegriCloud