summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/isa.c
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1997-07-24 05:27:40 +0000
committermsmith <msmith@FreeBSD.org>1997-07-24 05:27:40 +0000
commita27c19ecbf0d42e6bb692c5111ebc7888cb7b1aa (patch)
tree30e51c61aa6bd615dfd5273c54423cb2c15474d4 /sys/i386/isa/isa.c
parent526dc5f515bbfd6e866c3a175da520f73e30919b (diff)
downloadFreeBSD-src-a27c19ecbf0d42e6bb692c5111ebc7888cb7b1aa.zip
FreeBSD-src-a27c19ecbf0d42e6bb692c5111ebc7888cb7b1aa.tar.gz
Add isa_dmastatus() for reading the current ISA DMA counter for a
given channel. Submitted by: luigi@labinfo.iet.unipi.it (Luigi Rizzo)
Diffstat (limited to 'sys/i386/isa/isa.c')
-rw-r--r--sys/i386/isa/isa.c82
1 files changed, 81 insertions, 1 deletions
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index 0206662..c51b59b 100644
--- a/sys/i386/isa/isa.c
+++ b/sys/i386/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.94 1997/07/09 17:58:16 ache Exp $
+ * $Id: isa.c,v 1.95 1997/07/20 14:10:03 bde Exp $
*/
/*
@@ -870,6 +870,86 @@ isa_dmarangecheck(caddr_t va, u_int length, int chan) {
}
/*
+ * Query the progress of a transfer on a DMA channel.
+ *
+ * To avoid having to interrupt a transfer in progress, we sample
+ * each of the high and low databytes twice, and apply the following
+ * logic to determine the correct count.
+ *
+ * Reads are performed with interrupts disabled, thus it is to be
+ * expected that the time between reads is very small. At most
+ * one rollover in the low count byte can be expected within the
+ * four reads that are performed.
+ *
+ * There are three gaps in which a rollover can occur :
+ *
+ * - read low1
+ * gap1
+ * - read high1
+ * gap2
+ * - read low2
+ * gap3
+ * - read high2
+ *
+ * If a rollover occurs in gap1 or gap2, the low2 value will be
+ * greater than the low1 value. In this case, low2 and high2 are a
+ * corresponding pair.
+ *
+ * In any other case, low1 and high1 can be considered to be correct.
+ *
+ * The function returns the number of bytes remaining in the transfer,
+ * or -1 if the channel requested is not active.
+ *
+ */
+int
+isa_dmastatus(int chan)
+{
+ u_long cnt = 0;
+ int ffport, waport, s;
+ u_long low, high, low2, high2;
+
+ /* channel active? */
+ if (dma_inuse & (1 << chan) == 0) {
+ printf("isa_dmastatus: channel %d not active\n", chan);
+ return(-1);
+ }
+
+ /* still busy? */
+ if (dma_busy & (1 << chan) == 0) {
+ return(0);
+ }
+
+ if (chan < 4) { /* low DMA controller */
+ ffport = DMA1_FFC;
+ waport = DMA1_CHN(chan) + 1;
+ } else { /* high DMA controller */
+ ffport = DMA2_FFC;
+ waport = DMA2_CHN(chan - 4) + 2;
+ }
+
+ s = splhigh(); /* no interrupts Mr Jones! */
+ outb(ffport, 0); /* clear register LSB flipflop */
+ low = inb(waport);
+ high = inb(waport);
+ outb(ffport, 0); /* clear again (paranoia?) */
+ low2 = inb(waport);
+ high2 = inb(waport);
+ splx(s);
+
+ /* now decide if a wrap has tried to skew our results */
+ if (low >= low2) {
+ cnt = low + (high << 8) + 1;
+ } else {
+ cnt = low2 + (high2 << 8) + 1;
+ }
+ cnt = (cnt + 1) & 0xffff;
+
+ if (chan >= 4) /* high channels move words */
+ cnt *= 2;
+ return(cnt);
+}
+
+/*
* Find the highest priority enabled display device. Since we can't
* distinguish display devices from ttys, depend on display devices
* being sensitive and before sensitive non-display devices (if any)
OpenPOWER on IntegriCloud