fix to reeves fix of dgo handling (reset b_active to 1)
[unix-history] / usr / src / sys / vax / uba / tm.c
index 5a46232..ec16ede 100644 (file)
@@ -1,12 +1,20 @@
-/*     tm.c    4.5     %G%     */
+/*     tm.c    4.48    82/05/27        */
 
 
-#include "tm.h"
-#if NTM > 0
+#include "te.h"
+#include "ts.h"
+#if NTE > 0
 /*
 /*
- * TM tape driver
+ * TM11/TE10 tape driver
+ *
+ * TODO:
+ *     test driver with more than one slave
+ *     test driver with more than one controller
+ *     test reset code
+ *     what happens if you offline tape during rewind?
+ *     test using file system on tape
  */
  */
-
 #include "../h/param.h"
 #include "../h/param.h"
+#include "../h/systm.h"
 #include "../h/buf.h"
 #include "../h/dir.h"
 #include "../h/conf.h"
 #include "../h/buf.h"
 #include "../h/dir.h"
 #include "../h/conf.h"
 #include "../h/file.h"
 #include "../h/map.h"
 #include "../h/pte.h"
 #include "../h/file.h"
 #include "../h/map.h"
 #include "../h/pte.h"
-#include "../h/uba.h"
+#include "../h/vm.h"
+#include "../h/ubareg.h"
+#include "../h/ubavar.h"
 #include "../h/mtio.h"
 #include "../h/ioctl.h"
 #include "../h/mtio.h"
 #include "../h/ioctl.h"
-#include "../h/vm.h"
+#include "../h/cmap.h"
+#include "../h/cpu.h"
 
 
-struct device {
-       u_short tmer;
-       u_short tmcs;
-       short   tmbc;
-       u_short tmba;
-       short   tmdb;
-       short   tmrd;
-};
+#include "../h/tmreg.h"
 
 
-#define        b_repcnt  b_bcount
-#define        b_command b_resid
+/*
+ * There is a ctmbuf per tape controller.
+ * It is used as the token to pass to the internal routines
+ * to execute tape ioctls, and also acts as a lock on the slaves
+ * on the controller, since there is only one per controller.
+ * In particular, when the tape is rewinding on close we release
+ * the user process but any further attempts to use the tape drive
+ * before the rewind completes will hang waiting for ctmbuf.
+ */
+struct buf     ctmbuf[NTM];
 
 
-struct buf     tmtab;
-struct buf     ctmbuf;
-struct buf     rtmbuf;
+/*
+ * Raw tape operations use rtmbuf.  The driver
+ * notices when rtmbuf is being used and allows the user
+ * program to continue after errors and read records
+ * not of the standard length (BSIZE).
+ */
+struct buf     rtmbuf[NTM];
 
 
-int    tm_ubinfo;
+/*
+ * Driver unibus interface routines and variables.
+ */
+int    tmprobe(), tmslave(), tmattach(), tmdgo(), tmintr();
+struct uba_ctlr *tmminfo[NTM];
+struct uba_device *tedinfo[NTE];
+struct buf teutab[NTE];
+short  tetotm[NTE];
+u_short        tmstd[] = { 0772520, 0 };
+struct uba_driver tmdriver =
+ { tmprobe, tmslave, tmattach, tmdgo, tmstd, "te", tedinfo, "tm", tmminfo, 0 };
 
 /* bits in minor device */
 
 /* bits in minor device */
+#define        TEUNIT(dev)     (minor(dev)&03)
+#define        TMUNIT(dev)     (tetotm[TEUNIT(dev)])
 #define        T_NOREWIND      04
 #define        T_1600BPI       08
 
 #define        INF     (daddr_t)1000000L
 
 /*
 #define        T_NOREWIND      04
 #define        T_1600BPI       08
 
 #define        INF     (daddr_t)1000000L
 
 /*
- * Really only handle one tape drive... if you have more than one,
- * you can make all these arrays and change the obvious things, but
- * it is not clear what happens when some drives are transferring while
- * others rewind, so we don't pretend that this driver handles multiple
- * tape drives.
+ * Software state per tape transport.
+ *
+ * 1. A tape drive is a unique-open device; we refuse opens when it is already.
+ * 2. We keep track of the current position on a block tape and seek
+ *    before operations by forward/back spacing if necessary.
+ * 3. We remember if the last operation was a write on a tape, so if a tape
+ *    is open read write and the last thing done is a write we can
+ *    write a standard end of tape mark (two eofs).
+ * 4. We remember the status registers after the last command, using
+ *    then internally and returning them to the SENSE ioctl.
+ * 5. We remember the last density the tape was used at.  If it is
+ *    not a BOT when we start using it and we are writing, we don't
+ *    let the density be changed.
  */
  */
-char   t_openf;
-daddr_t        t_blkno;
-char   t_flags;
-daddr_t        t_nxrec;
-u_short        t_erreg;
-u_short        t_dsreg;
-short  t_resid;
-
-/* bits in tmcs */
-#define        GO      01
-#define        OFFL    0
-#define        RCOM    02
-#define        WCOM    04
-#define        WEOF    06
-#define        SFORW   010
-#define        SREV    012
-#define        WIRG    014
-#define        REW     016
-#define        IENABLE 0100
-#define        CUR     0200
-#define        NOP     IENABLE
-#define        DCLR    010000
-#define        D800    060000
-#define        ERROR   0100000
-
-/* bits in tmer */
-#define        TUR     1
-#define        RWS     02
-#define        WRL     04
-#define        SDWN    010
-#define        BOT     040
-#define        SELR    0100
-#define        NXM     0200
-#define        TMBTE   0400
-#define        RLE     01000
-#define        EOT     02000
-#define        BGL     04000
-#define        PAE     010000
-#define        CRE     020000
-#define        EOF     040000
-#define        ILC     0100000
-
-#define        HARD    (ILC|EOT)
-#define        SOFT    (CRE|PAE|BGL|RLE|TMBTE|NXM)
+struct te_softc {
+       char    sc_openf;       /* lock against multiple opens */
+       char    sc_lastiow;     /* last op was a write */
+       daddr_t sc_blkno;       /* block number, for block device tape */
+       daddr_t sc_nxrec;       /* position of end of tape, if known */
+       u_short sc_erreg;       /* copy of last erreg */
+       u_short sc_dsreg;       /* copy of last dsreg */
+       short   sc_resid;       /* copy of last bc */
+#ifdef unneeded
+       short   sc_lastcmd;     /* last command to handle direction changes */
+#endif
+       u_short sc_dens;        /* prototype command with density info */
+       daddr_t sc_timo;        /* time until timeout expires */
+       short   sc_tact;        /* timeout is active */
+} te_softc[NTE];
+#ifdef unneeded
+int    tmgapsdcnt;             /* DEBUG */
+#endif
 
 
+/*
+ * States for um->um_tab.b_active, the per controller state flag.
+ * This is used to sequence control in the driver.
+ */
 #define        SSEEK   1               /* seeking */
 #define        SIO     2               /* doing seq i/o */
 #define        SCOM    3               /* sending control command */
 #define        SSEEK   1               /* seeking */
 #define        SIO     2               /* doing seq i/o */
 #define        SCOM    3               /* sending control command */
+#define        SREW    4               /* sending a drive rewind */
+
+/*
+ * Determine if there is a controller for
+ * a tm at address reg.  Our goal is to make the
+ * device interrupt.
+ */
+tmprobe(reg)
+       caddr_t reg;
+{
+       register int br, cvec;          /* must be r11,r10; value-result */
+
+#ifdef lint
+       br = 0; cvec = br; br = cvec;
+       tmintr(0);
+#endif
+       ((struct tmdevice *)reg)->tmcs = TM_IE;
+       /*
+        * If this is a tm11, it ought to have interrupted
+        * by now, if it isn't (ie: it is a ts04) then we just
+        * hope that it didn't interrupt, so autoconf will ignore it.
+        * Just in case, we will reference one
+        * of the more distant registers, and hope for a machine
+        * check, or similar disaster if this is a ts.
+        *
+        * Note: on an 11/780, badaddr will just generate
+        * a uba error for a ts; but our caller will notice that
+        * so we won't check for it.
+        */
+       if (badaddr((caddr_t)&((struct tmdevice *)reg)->tmrd, 2))
+               return (0);
+       return (1);
+}
+
+/*
+ * Due to a design flaw, we cannot ascertain if the tape
+ * exists or not unless it is on line - ie: unless a tape is
+ * mounted. This is too servere a restriction to bear,
+ * so all units are assumed to exist.
+ */
+/*ARGSUSED*/
+tmslave(ui, reg)
+       struct uba_device *ui;
+       caddr_t reg;
+{
+
+       return (1);
+}
 
 
-#define        LASTIOW 1               /* last op was a write */
-#define        WAITREW 2               /* someone is waiting for a rewind */
+/*
+ * Record attachment of the unit to the controller.
+ */
+/*ARGSUSED*/
+tmattach(ui)
+       struct uba_device *ui;
+{
+       /*
+        * Tetotm is used in TMUNIT to index the ctmbuf and rtmbuf
+        * arrays given a te unit number.
+        */
+       tetotm[ui->ui_unit] = ui->ui_mi->um_ctlr;
+}
 
 
+int    tmtimer();
+/*
+ * Open the device.  Tapes are unique open
+ * devices, so we refuse if it is already open.
+ * We also check that a tape is available, and
+ * don't block waiting here; if you want to wait
+ * for a tape you should timeout in user code.
+ */
 tmopen(dev, flag)
        dev_t dev;
        int flag;
 {
 tmopen(dev, flag)
        dev_t dev;
        int flag;
 {
-       register ds, unit;
+       register int teunit;
+       register struct uba_device *ui;
+       register struct te_softc *sc;
+       int olddens, dens;
+       int s;
 
 
-       tmtab.b_flags |= B_TAPE;
-       unit = minor(dev)&03;
-       if (unit >= NTM || t_openf) {
-               u.u_error = ENXIO;              /* out of range or open */
+       teunit = TEUNIT(dev);
+       if (teunit>=NTE || (sc = &te_softc[teunit])->sc_openf ||
+           (ui = tedinfo[teunit]) == 0 || ui->ui_alive == 0) {
+               u.u_error = ENXIO;
                return;
        }
                return;
        }
-       tcommand(dev, NOP, 1);
-       if ((t_erreg&SELR) == 0) {
-               u.u_error = EIO;                /* offline */
+       olddens = sc->sc_dens;
+       dens = TM_IE | TM_GO | (ui->ui_slave << 8);
+       if ((minor(dev) & T_1600BPI) == 0)
+               dens |= TM_D800;
+       sc->sc_dens = dens;
+get:
+       tmcommand(dev, TM_SENSE, 1);
+       if (sc->sc_erreg&TMER_SDWN) {
+               sleep((caddr_t)&lbolt, PZERO+1);
+               goto get;
+       }
+       sc->sc_dens = olddens;
+       if ((sc->sc_erreg&(TMER_SELR|TMER_TUR)) != (TMER_SELR|TMER_TUR)) {
+               uprintf("te%d: not online\n", teunit);
+               u.u_error = EIO;
                return;
        }
                return;
        }
-       t_openf = 1;
-       if (t_erreg&RWS)
-               tmwaitrws(dev);                 /* wait for rewind complete */
-       while (t_erreg&SDWN)
-               tcommand(dev, NOP, 1);          /* await settle down */
-       if ((t_erreg&TUR)==0 ||
-           ((flag&(FREAD|FWRITE)) == FWRITE && (t_erreg&WRL))) {
-               TMADDR->tmcs = DCLR|GO;
-               u.u_error = EIO;                /* offline or write protect */
+       if ((flag&FWRITE) && (sc->sc_erreg&TMER_WRL)) {
+               uprintf("te%d: no write ring\n", teunit);
+               u.u_error = EIO;
+               return;
        }
        }
-       if (u.u_error != 0) {
-               t_openf = 0;
+       if ((sc->sc_erreg&TMER_BOT) == 0 && (flag&FWRITE) &&
+           dens != sc->sc_dens) {
+               uprintf("te%d: can't change density in mid-tape\n", teunit);
+               u.u_error = EIO;
                return;
        }
                return;
        }
-       t_blkno = (daddr_t)0;
-       t_nxrec = INF;
-       t_flags = 0;
-       t_openf = 1;
-}
-
-tmwaitrws(dev)
-       register dev;
-{
-
-       spl5();
-       for (;;) {
-               if ((TMADDR->tmer&RWS) == 0) {
-                       spl0();         /* rewind complete */
-                       return;
-               }
-               t_flags |= WAITREW;
-               sleep((caddr_t)&t_flags, PRIBIO);
+       sc->sc_openf = 1;
+       sc->sc_blkno = (daddr_t)0;
+       sc->sc_nxrec = INF;
+       sc->sc_lastiow = 0;
+       sc->sc_dens = dens;
+       s = spl6();
+       if (sc->sc_tact == 0) {
+               sc->sc_timo = INF;
+               sc->sc_tact = 1;
+               timeout(tmtimer, (caddr_t)dev, 5*hz);
        }
        }
+       splx(s);
 }
 
 }
 
+/*
+ * Close tape device.
+ *
+ * If tape was open for writing or last operation was
+ * a write, then write two EOF's and backspace over the last one.
+ * Unless this is a non-rewinding special file, rewind the tape.
+ * Make the tape available to others.
+ */
 tmclose(dev, flag)
        register dev_t dev;
        register flag;
 {
 tmclose(dev, flag)
        register dev_t dev;
        register flag;
 {
+       register struct te_softc *sc = &te_softc[TEUNIT(dev)];
 
 
-       if (flag == FWRITE || ((flag&FWRITE) && (t_flags&LASTIOW))) {
-               tcommand(dev, WEOF, 1);
-               tcommand(dev, WEOF, 1);
-               tcommand(dev, SREV, 1);
+       if (flag == FWRITE || (flag&FWRITE) && sc->sc_lastiow) {
+               tmcommand(dev, TM_WEOF, 1);
+               tmcommand(dev, TM_WEOF, 1);
+               tmcommand(dev, TM_SREV, 1);
        }
        if ((minor(dev)&T_NOREWIND) == 0)
        }
        if ((minor(dev)&T_NOREWIND) == 0)
-               tcommand(dev, REW, 1);
-       t_openf = 0;
+               /*
+                * 0 count means don't hang waiting for rewind complete
+                * rather ctmbuf stays busy until the operation completes
+                * preventing further opens from completing by
+                * preventing a TM_SENSE from completing.
+                */
+               tmcommand(dev, TM_REW, 0);
+       sc->sc_openf = 0;
 }
 
 }
 
-tcommand(dev, com, count)
+/*
+ * Execute a command on the tape drive
+ * a specified number of times.
+ */
+tmcommand(dev, com, count)
        dev_t dev;
        int com, count;
 {
        register struct buf *bp;
        dev_t dev;
        int com, count;
 {
        register struct buf *bp;
+       register int s;
 
 
-       bp = &ctmbuf;
-       (void) spl5();
+       bp = &ctmbuf[TMUNIT(dev)];
+       s = spl5();
        while (bp->b_flags&B_BUSY) {
        while (bp->b_flags&B_BUSY) {
+               /*
+                * This special check is because B_BUSY never
+                * gets cleared in the non-waiting rewind case.
+                */
+               if (bp->b_repcnt == 0 && (bp->b_flags&B_DONE))
+                       break;
                bp->b_flags |= B_WANTED;
                sleep((caddr_t)bp, PRIBIO);
        }
        bp->b_flags = B_BUSY|B_READ;
                bp->b_flags |= B_WANTED;
                sleep((caddr_t)bp, PRIBIO);
        }
        bp->b_flags = B_BUSY|B_READ;
-       (void) spl0();
+       splx(s);
        bp->b_dev = dev;
        bp->b_repcnt = -count;
        bp->b_command = com;
        bp->b_blkno = 0;
        tmstrategy(bp);
        bp->b_dev = dev;
        bp->b_repcnt = -count;
        bp->b_command = com;
        bp->b_blkno = 0;
        tmstrategy(bp);
+       /*
+        * In case of rewind from close, don't wait.
+        * This is the only case where count can be 0.
+        */
+       if (count == 0)
+               return;
        iowait(bp);
        if (bp->b_flags&B_WANTED)
                wakeup((caddr_t)bp);
        bp->b_flags &= B_ERROR;
 }
 
        iowait(bp);
        if (bp->b_flags&B_WANTED)
                wakeup((caddr_t)bp);
        bp->b_flags &= B_ERROR;
 }
 
+/*
+ * Queue a tape operation.
+ */
 tmstrategy(bp)
        register struct buf *bp;
 {
 tmstrategy(bp)
        register struct buf *bp;
 {
-       register daddr_t *p;
-
-       tmwaitrws(bp->b_dev);
-       if (bp != &ctmbuf) {
-               p = &t_nxrec;
-               if (dbtofsb(bp->b_blkno) > *p) {
-                       bp->b_flags |= B_ERROR;
-                       bp->b_error = ENXIO;            /* past EOF */
-                       iodone(bp);
-                       return;
-               } else if (dbtofsb(bp->b_blkno) == *p && bp->b_flags&B_READ) {
-                       bp->b_resid = bp->b_bcount;
-                       clrbuf(bp);                     /* at EOF */
-                       iodone(bp);
-                       return;
-               } else if ((bp->b_flags&B_READ) == 0)
-                       *p = dbtofsb(bp->b_blkno) + 1;  /* write sets EOF */
-       }
+       int teunit = TEUNIT(bp->b_dev);
+       register struct uba_ctlr *um;
+       register struct buf *dp;
+       int s;
+
+       /*
+        * Put transfer at end of unit queue
+        */
+       dp = &teutab[teunit];
        bp->av_forw = NULL;
        bp->av_forw = NULL;
-       (void) spl5();
-       if (tmtab.b_actf == NULL)
-               tmtab.b_actf = bp;
-       else
-               tmtab.b_actl->av_forw = bp;
-       tmtab.b_actl = bp;
-       if (tmtab.b_active == 0)
-               tmstart();
-       (void) spl0();
+       s = spl5();
+       um = tedinfo[teunit]->ui_mi;
+       if (dp->b_actf == NULL) {
+               dp->b_actf = bp;
+               /*
+                * Transport not already active...
+                * put at end of controller queue.
+                */
+               dp->b_forw = NULL;
+               if (um->um_tab.b_actf == NULL)
+                       um->um_tab.b_actf = dp;
+               else
+                       um->um_tab.b_actl->b_forw = dp;
+               um->um_tab.b_actl = dp;
+       } else
+               dp->b_actl->av_forw = bp;
+       dp->b_actl = bp;
+       /*
+        * If the controller is not busy, get
+        * it going.
+        */
+       if (um->um_tab.b_active == 0)
+               tmstart(um);
+       splx(s);
 }
 
 }
 
-tmstart()
+/*
+ * Start activity on a tm controller.
+ */
+tmstart(um)
+       register struct uba_ctlr *um;
 {
 {
-       register struct buf *bp;
-       register cmd;
-       register daddr_t blkno;
-       int s;
-
+       register struct buf *bp, *dp;
+       register struct tmdevice *addr = (struct tmdevice *)um->um_addr;
+       register struct te_softc *sc;
+       register struct uba_device *ui;
+       int teunit, cmd;
+       daddr_t blkno;
+
+       /*
+        * Look for an idle transport on the controller.
+        */
 loop:
 loop:
-       if ((bp = tmtab.b_actf) == 0)
+       if ((dp = um->um_tab.b_actf) == NULL)
                return;
                return;
-       t_dsreg = TMADDR->tmcs;
-       t_erreg = TMADDR->tmer;
-       t_resid = TMADDR->tmbc;
-       t_flags &= ~LASTIOW;
-       if (t_openf < 0 || (TMADDR->tmcs&CUR) == 0) {
-               /* t_openf = -1; ??? */
-               bp->b_flags |= B_ERROR;         /* hard error'ed or !SELR */
+       if ((bp = dp->b_actf) == NULL) {
+               um->um_tab.b_actf = dp->b_forw;
+               goto loop;
+       }
+       teunit = TEUNIT(bp->b_dev);
+       ui = tedinfo[teunit];
+       /*
+        * Record pre-transfer status (e.g. for TM_SENSE)
+        */
+       sc = &te_softc[teunit];
+       addr = (struct tmdevice *)um->um_addr;
+       addr->tmcs = (ui->ui_slave << 8);
+       sc->sc_dsreg = addr->tmcs;
+       sc->sc_erreg = addr->tmer;
+       sc->sc_resid = addr->tmbc;
+       /*
+        * Default is that last command was NOT a write command;
+        * if we do a write command we will notice this in tmintr().
+        */
+       sc->sc_lastiow = 0;
+       if (sc->sc_openf < 0 || (addr->tmcs&TM_CUR) == 0) {
+               /*
+                * Have had a hard error on a non-raw tape
+                * or the tape unit is now unavailable
+                * (e.g. taken off line).
+                */
+               bp->b_flags |= B_ERROR;
                goto next;
        }
                goto next;
        }
-       cmd = IENABLE | GO;
-       if ((minor(bp->b_dev) & T_1600BPI) == 0)
-               cmd |= D800;
-       if (bp == &ctmbuf) {
-               if (bp->b_command == NOP)
-                       goto next;              /* just get status */
-               else {
-                       cmd |= bp->b_command;
-                       tmtab.b_active = SCOM;
-                       if (bp->b_command == SFORW || bp->b_command == SREV)
-                               TMADDR->tmbc = bp->b_repcnt;
-                       TMADDR->tmcs = cmd;
-                       return;
+       if (bp == &ctmbuf[TMUNIT(bp->b_dev)]) {
+               /*
+                * Execute control operation with the specified count.
+                */
+               if (bp->b_command == TM_SENSE)
+                       goto next;
+               /*
+                * Set next state; give 5 minutes to complete
+                * rewind, or 10 seconds per iteration (minimum 60
+                * seconds and max 5 minutes) to complete other ops.
+                */
+               if (bp->b_command == TM_REW) {
+                       um->um_tab.b_active = SREW;
+                       sc->sc_timo = 5 * 60;
+               } else {
+                       um->um_tab.b_active = SCOM;
+                       sc->sc_timo =
+                           imin(imax(10*(int)-bp->b_repcnt,60),5*60);
                }
                }
+               if (bp->b_command == TM_SFORW || bp->b_command == TM_SREV)
+                       addr->tmbc = bp->b_repcnt;
+               goto dobpcmd;
+       }
+       /*
+        * The following checks handle boundary cases for operation
+        * on non-raw tapes.  On raw tapes the initialization of
+        * sc->sc_nxrec by tmphys causes them to be skipped normally
+        * (except in the case of retries).
+        */
+       if (dbtofsb(bp->b_blkno) > sc->sc_nxrec) {
+               /*
+                * Can't read past known end-of-file.
+                */
+               bp->b_flags |= B_ERROR;
+               bp->b_error = ENXIO;
+               goto next;
+       }
+       if (dbtofsb(bp->b_blkno) == sc->sc_nxrec &&
+           bp->b_flags&B_READ) {
+               /*
+                * Reading at end of file returns 0 bytes.
+                */
+               bp->b_resid = bp->b_bcount;
+               clrbuf(bp);
+               goto next;
        }
        }
-       if ((blkno = t_blkno) == dbtofsb(bp->b_blkno)) {
-               TMADDR->tmbc = -bp->b_bcount;
-               s = spl6();
-               if (tm_ubinfo == 0)
-                       tm_ubinfo = ubasetup(bp,1);
-               splx(s);
+       if ((bp->b_flags&B_READ) == 0)
+               /*
+                * Writing sets EOF
+                */
+               sc->sc_nxrec = dbtofsb(bp->b_blkno) + 1;
+       /*
+        * If the data transfer command is in the correct place,
+        * set up all the registers except the csr, and give
+        * control over to the UNIBUS adapter routines, to
+        * wait for resources to start the i/o.
+        */
+       if ((blkno = sc->sc_blkno) == dbtofsb(bp->b_blkno)) {
+               addr->tmbc = -bp->b_bcount;
                if ((bp->b_flags&B_READ) == 0) {
                if ((bp->b_flags&B_READ) == 0) {
-                       if (tmtab.b_errcnt)
-                               cmd |= WIRG;
+                       if (um->um_tab.b_errcnt)
+                               cmd = TM_WIRG;
                        else
                        else
-                               cmd |= WCOM;
+                               cmd = TM_WCOM;
                } else
                } else
-                       cmd |= RCOM;
-               cmd |= (tm_ubinfo >> 12) & 0x30;
-               tmtab.b_active = SIO;
-               TMADDR->tmba = tm_ubinfo;
-               TMADDR->tmcs = cmd; 
+                       cmd = TM_RCOM;
+               um->um_tab.b_active = SIO;
+               um->um_cmd = sc->sc_dens|cmd;
+#ifdef notdef
+               if (tmreverseop(sc->sc_lastcmd))
+                       while (addr->tmer & TMER_SDWN)
+                               tmgapsdcnt++;
+               sc->sc_lastcmd = TM_RCOM;               /* will serve */
+#endif
+               sc->sc_timo = 60;       /* premature, but should serve */
+               (void) ubago(ui);
                return;
        }
                return;
        }
-       tmtab.b_active = SSEEK;
+       /*
+        * Tape positioned incorrectly;
+        * set to seek forwards or backwards to the correct spot.
+        * This happens for raw tapes only on error retries.
+        */
+       um->um_tab.b_active = SSEEK;
        if (blkno < dbtofsb(bp->b_blkno)) {
        if (blkno < dbtofsb(bp->b_blkno)) {
-               cmd |= SFORW;
-               TMADDR->tmbc = blkno - dbtofsb(bp->b_blkno);
+               bp->b_command = TM_SFORW;
+               addr->tmbc = blkno - dbtofsb(bp->b_blkno);
        } else {
        } else {
-               cmd |= SREV;
-               TMADDR->tmbc = dbtofsb(bp->b_blkno) - blkno;
+               bp->b_command = TM_SREV;
+               addr->tmbc = dbtofsb(bp->b_blkno) - blkno;
        }
        }
-       TMADDR->tmcs = cmd;
+       sc->sc_timo = imin(imax(10 * -addr->tmbc, 60), 5 * 60);
+dobpcmd:
+#ifdef notdef
+       /*
+        * It is strictly necessary to wait for the tape
+        * to stop before changing directions, but the TC11
+        * handles this for us.
+        */
+       if (tmreverseop(sc->sc_lastcmd) != tmreverseop(bp->b_command))
+               while (addr->tmer & TM_SDWN)
+                       tmgapsdcnt++;
+       sc->sc_lastcmd = bp->b_command;
+#endif
+       /*
+        * Do the command in bp.
+        */
+       addr->tmcs = (sc->sc_dens | bp->b_command);
        return;
 
 next:
        return;
 
 next:
-       ubarelse(&tm_ubinfo);
-       tmtab.b_actf = bp->av_forw;
+       /*
+        * Done with this operation due to error or
+        * the fact that it doesn't do anything.
+        * Release UBA resources (if any), dequeue
+        * the transfer and continue processing this slave.
+        */
+       if (um->um_ubinfo)
+               ubadone(um);
+       um->um_tab.b_errcnt = 0;
+       dp->b_actf = bp->av_forw;
        iodone(bp);
        goto loop;
 }
 
        iodone(bp);
        goto loop;
 }
 
-tmintr()
+/*
+ * The UNIBUS resources we needed have been
+ * allocated to us; start the device.
+ */
+tmdgo(um)
+       register struct uba_ctlr *um;
+{
+       register struct tmdevice *addr = (struct tmdevice *)um->um_addr;
+
+       addr->tmba = um->um_ubinfo;
+       addr->tmcs = um->um_cmd | ((um->um_ubinfo >> 12) & 0x30);
+}
+
+/*
+ * Tm interrupt routine.
+ */
+/*ARGSUSED*/
+tmintr(tm11)
+       int tm11;
 {
 {
+       struct buf *dp;
        register struct buf *bp;
        register struct buf *bp;
+       register struct uba_ctlr *um = tmminfo[tm11];
+       register struct tmdevice *addr;
+       register struct te_softc *sc;
+       int teunit;
        register state;
 
        register state;
 
-       if (t_flags&WAITREW && (TMADDR->tmer&RWS) == 0) {
-               t_flags &= ~WAITREW;
-               wakeup((caddr_t)&t_flags);
-       }
-       if ((bp = tmtab.b_actf) == NULL)
+       if ((dp = um->um_tab.b_actf) == NULL)
                return;
                return;
-       t_dsreg = TMADDR->tmcs;
-       t_erreg = TMADDR->tmer;
-       t_resid = TMADDR->tmbc;
+       bp = dp->b_actf;
+       teunit = TEUNIT(bp->b_dev);
+       addr = (struct tmdevice *)tedinfo[teunit]->ui_addr;
+       sc = &te_softc[teunit];
+       /*
+        * If last command was a rewind, and tape is still
+        * rewinding, wait for the rewind complete interrupt.
+        */
+       if (um->um_tab.b_active == SREW) {
+               um->um_tab.b_active = SCOM;
+               if (addr->tmer&TMER_RWS) {
+                       sc->sc_timo = 5*60;             /* 5 minutes */
+                       return;
+               }
+       }
+       /*
+        * An operation completed... record status
+        */
+       sc->sc_timo = INF;
+       sc->sc_dsreg = addr->tmcs;
+       sc->sc_erreg = addr->tmer;
+       sc->sc_resid = addr->tmbc;
        if ((bp->b_flags & B_READ) == 0)
        if ((bp->b_flags & B_READ) == 0)
-               t_flags |= LASTIOW;
-       state = tmtab.b_active;
-       tmtab.b_active = 0;
-       if (TMADDR->tmcs&ERROR) {
-               while(TMADDR->tmer & SDWN)
+               sc->sc_lastiow = 1;
+       state = um->um_tab.b_active;
+       um->um_tab.b_active = 0;
+       /*
+        * Check for errors.
+        */
+       if (addr->tmcs&TM_ERR) {
+               while (addr->tmer & TMER_SDWN)
                        ;                       /* await settle down */
                        ;                       /* await settle down */
-               if (TMADDR->tmer&EOF) {
-                       tmseteof(bp);   /* set blkno and nxrec */
-                       state = SCOM;
-                       TMADDR->tmbc = -bp->b_bcount;
-                       goto errout;
+               /*
+                * If we hit the end of the tape file, update our position.
+                */
+               if (addr->tmer&TMER_EOF) {
+                       tmseteof(bp);           /* set blkno and nxrec */
+                       state = SCOM;           /* force completion */
+                       /*
+                        * Stuff bc so it will be unstuffed correctly
+                        * later to get resid.
+                        */
+                       addr->tmbc = -bp->b_bcount;
+                       goto opdone;
                }
                }
-               if ((bp->b_flags&B_READ) && (TMADDR->tmer&(HARD|SOFT)) == RLE)
-                       goto out;
-               if ((TMADDR->tmer&HARD)==0 && state==SIO) {
-                       if (++tmtab.b_errcnt < 7) {
-                               if((TMADDR->tmer&SOFT) == NXM)
-                                       printf("TM UBA late error\n");
-                               else
-                                       t_blkno += 2;           /* ???????? */
-                               ubarelse(&tm_ubinfo);
-                               tmstart();
-                               return;
+               /*
+                * If we were reading raw tape and the only error was that the
+                * record was too long, then we don't consider this an error.
+                */
+               if (bp == &rtmbuf[TMUNIT(bp->b_dev)] && (bp->b_flags&B_READ) &&
+                   (addr->tmer&(TMER_HARD|TMER_SOFT)) == TMER_RLE)
+                       goto ignoreerr;
+               /*
+                * If error is not hard, and this was an i/o operation
+                * retry up to 8 times.
+                */
+               if ((addr->tmer&TMER_HARD)==0 && state==SIO) {
+                       if (++um->um_tab.b_errcnt < 7) {
+                               sc->sc_blkno++;
+                               ubadone(um);
+                               goto opcont;
                        }
                        }
-               } else if (t_openf>0 && bp != &rtmbuf)
-                       t_openf = -1;
-               deverror(bp, t_erreg, t_dsreg);
+               } else
+                       /*
+                        * Hard or non-i/o errors on non-raw tape
+                        * cause it to close.
+                        */
+                       if (sc->sc_openf>0 && bp != &rtmbuf[TMUNIT(bp->b_dev)])
+                               sc->sc_openf = -1;
+               /*
+                * Couldn't recover error
+                */
+               printf("te%d: hard error bn%d er=%b\n", minor(bp->b_dev)&03,
+                   bp->b_blkno, sc->sc_erreg, TMER_BITS);
                bp->b_flags |= B_ERROR;
                bp->b_flags |= B_ERROR;
-               state = SIO;
+               goto opdone;
        }
        }
-out:
+       /*
+        * Advance tape control FSM.
+        */
+ignoreerr:
        switch (state) {
 
        case SIO:
        switch (state) {
 
        case SIO:
-               t_blkno++;
-               /* fall into ... */
+               /*
+                * Read/write increments tape block number
+                */
+               sc->sc_blkno++;
+               goto opdone;
 
        case SCOM:
 
        case SCOM:
-               if (bp == &ctmbuf) {
-                       switch (bp->b_command) {
-                       case SFORW:
-                               t_blkno -= bp->b_repcnt;
-                               break;
-
-                       case SREV:
-                               t_blkno += bp->b_repcnt;
-                               break;
+               /*
+                * For forward/backward space record update current position.
+                */
+               if (bp == &ctmbuf[TMUNIT(bp->b_dev)])
+               switch (bp->b_command) {
+
+               case TM_SFORW:
+                       sc->sc_blkno -= bp->b_repcnt;
+                       break;
 
 
-                       default:
-                               if (++bp->b_repcnt < 0) {
-                                       tmstart();      /* continue */
-                                       return;
-                               }
-                       }
+               case TM_SREV:
+                       sc->sc_blkno += bp->b_repcnt;
+                       break;
                }
                }
-errout:
-               tmtab.b_errcnt = 0;
-               tmtab.b_actf = bp->av_forw;
-               bp->b_resid = -TMADDR->tmbc;
-               ubarelse(&tm_ubinfo);
-               iodone(bp);
-               break;
+               goto opdone;
 
        case SSEEK:
 
        case SSEEK:
-               t_blkno = dbtofsb(bp->b_blkno);
-               break;
+               sc->sc_blkno = dbtofsb(bp->b_blkno);
+               goto opcont;
 
        default:
 
        default:
+               panic("tmintr");
+       }
+opdone:
+       /*
+        * Reset error count and remove
+        * from device queue.
+        */
+       um->um_tab.b_errcnt = 0;
+       dp->b_actf = bp->av_forw;
+       bp->b_resid = -addr->tmbc;
+       ubadone(um);
+       iodone(bp);
+       /*
+        * Circulate slave to end of controller
+        * queue to give other slaves a chance.
+        */
+       um->um_tab.b_actf = dp->b_forw;
+       if (dp->b_actf) {
+               dp->b_forw = NULL;
+               if (um->um_tab.b_actf == NULL)
+                       um->um_tab.b_actf = dp;
+               else
+                       um->um_tab.b_actl->b_forw = dp;
+               um->um_tab.b_actl = dp;
+       }
+       if (um->um_tab.b_actf == 0)
                return;
                return;
+opcont:
+       tmstart(um);
+}
+
+tmtimer(dev)
+       int dev;
+{
+       register struct te_softc *sc = &te_softc[TEUNIT(dev)];
+       register short x;
+
+       if (sc->sc_timo != INF && (sc->sc_timo -= 5) < 0) {
+               printf("te%d: lost interrupt\n", TEUNIT(dev));
+               sc->sc_timo = INF;
+               x = spl5();
+               tmintr(TMUNIT(dev));
+               (void) splx(x);
        }
        }
-       tmstart();
+       timeout(tmtimer, (caddr_t)dev, 5*hz);
 }
 
 tmseteof(bp)
        register struct buf *bp;
 {
 }
 
 tmseteof(bp)
        register struct buf *bp;
 {
+       register int teunit = TEUNIT(bp->b_dev);
+       register struct tmdevice *addr = 
+           (struct tmdevice *)tedinfo[teunit]->ui_addr;
+       register struct te_softc *sc = &te_softc[teunit];
 
 
-       if (bp == &ctmbuf) {
-               if (t_blkno > dbtofsb(bp->b_blkno)) {
+       if (bp == &ctmbuf[TMUNIT(bp->b_dev)]) {
+               if (sc->sc_blkno > dbtofsb(bp->b_blkno)) {
                        /* reversing */
                        /* reversing */
-                       t_nxrec = dbtofsb(bp->b_blkno) - TMADDR->tmbc;
-                       t_blkno = t_nxrec;
+                       sc->sc_nxrec = dbtofsb(bp->b_blkno) - addr->tmbc;
+                       sc->sc_blkno = sc->sc_nxrec;
                } else {
                        /* spacing forward */
                } else {
                        /* spacing forward */
-                       t_blkno = dbtofsb(bp->b_blkno) + TMADDR->tmbc;
-                       t_nxrec = t_blkno - 1;
+                       sc->sc_blkno = dbtofsb(bp->b_blkno) + addr->tmbc;
+                       sc->sc_nxrec = sc->sc_blkno - 1;
                }
                return;
        } 
        /* eof on read */
                }
                return;
        } 
        /* eof on read */
-       t_nxrec = dbtofsb(bp->b_blkno);
+       sc->sc_nxrec = dbtofsb(bp->b_blkno);
 }
 
 tmread(dev)
 }
 
 tmread(dev)
+       dev_t dev;
 {
 
        tmphys(dev);
 {
 
        tmphys(dev);
-       physio(tmstrategy, &rtmbuf, dev, B_READ, minphys);
+       if (u.u_error)
+               return;
+       physio(tmstrategy, &rtmbuf[TMUNIT(dev)], dev, B_READ, minphys);
 }
 
 tmwrite(dev)
 }
 
 tmwrite(dev)
+       dev_t dev;
 {
 
        tmphys(dev);
 {
 
        tmphys(dev);
-       physio(tmstrategy, &rtmbuf, dev, B_WRITE, minphys);
+       if (u.u_error)
+               return;
+       physio(tmstrategy, &rtmbuf[TMUNIT(dev)], dev, B_WRITE, minphys);
 }
 
 }
 
+/*
+ * Check that a raw device exists.
+ * If it does, set up sc_blkno and sc_nxrec
+ * so that the tape will appear positioned correctly.
+ */
 tmphys(dev)
 tmphys(dev)
+       dev_t dev;
 {
 {
+       register int teunit = TEUNIT(dev);
        register daddr_t a;
        register daddr_t a;
+       register struct te_softc *sc;
+       register struct uba_device *ui;
 
 
+       if (teunit >= NTE || (ui=tedinfo[teunit]) == 0 || ui->ui_alive == 0) {
+               u.u_error = ENXIO;
+               return;
+       }
+       sc = &te_softc[teunit];
        a = dbtofsb(u.u_offset >> 9);
        a = dbtofsb(u.u_offset >> 9);
-       t_blkno = a;
-       t_nxrec = a + 1;
+       sc->sc_blkno = a;
+       sc->sc_nxrec = a + 1;
+}
+
+tmreset(uban)
+       int uban;
+{
+       register struct uba_ctlr *um;
+       register tm11, teunit;
+       register struct uba_device *ui;
+       register struct buf *dp;
+
+       for (tm11 = 0; tm11 < NTM; tm11++) {
+               if ((um = tmminfo[tm11]) == 0 || um->um_alive == 0 ||
+                  um->um_ubanum != uban)
+                       continue;
+               printf(" tm%d", tm11);
+               um->um_tab.b_active = 0;
+               um->um_tab.b_actf = um->um_tab.b_actl = 0;
+               if (um->um_ubinfo) {
+                       printf("<%d>", (um->um_ubinfo>>28)&0xf);
+                       ubadone(um);
+               }
+               ((struct tmdevice *)(um->um_addr))->tmcs = TM_DCLR;
+               for (teunit = 0; teunit < NTE; teunit++) {
+                       if ((ui = tedinfo[teunit]) == 0 || ui->ui_mi != um ||
+                           ui->ui_alive == 0)
+                               continue;
+                       dp = &teutab[teunit];
+                       dp->b_active = 0;
+                       dp->b_forw = 0;
+                       if (um->um_tab.b_actf == NULL)
+                               um->um_tab.b_actf = dp;
+                       else
+                               um->um_tab.b_actl->b_forw = dp;
+                       um->um_tab.b_actl = dp;
+                       if (te_softc[teunit].sc_openf > 0)
+                               te_softc[teunit].sc_openf = -1;
+               }
+               tmstart(um);
+       }
 }
 
 /*ARGSUSED*/
 }
 
 /*ARGSUSED*/
@@ -434,21 +828,29 @@ tmioctl(dev, cmd, addr, flag)
        caddr_t addr;
        dev_t dev;
 {
        caddr_t addr;
        dev_t dev;
 {
+       int teunit = TEUNIT(dev);
+       register struct te_softc *sc = &te_softc[teunit];
+       register struct buf *bp = &ctmbuf[TMUNIT(dev)];
        register callcount;
        int fcount;
        struct mtop mtop;
        struct mtget mtget;
        /* we depend of the values and order of the MT codes here */
        register callcount;
        int fcount;
        struct mtop mtop;
        struct mtget mtget;
        /* we depend of the values and order of the MT codes here */
-       static tmops[] = {WEOF, SFORW, SREV, SFORW, SREV, REW, OFFL};
+       static tmops[] =
+          {TM_WEOF,TM_SFORW,TM_SREV,TM_SFORW,TM_SREV,TM_REW,TM_OFFL,TM_SENSE};
 
 
-       switch(cmd) {
+       switch (cmd) {
                case MTIOCTOP:  /* tape operation */
                if (copyin((caddr_t)addr, (caddr_t)&mtop, sizeof(mtop))) {
                        u.u_error = EFAULT;
                        return;
                }
                switch(mtop.mt_op) {
                case MTIOCTOP:  /* tape operation */
                if (copyin((caddr_t)addr, (caddr_t)&mtop, sizeof(mtop))) {
                        u.u_error = EFAULT;
                        return;
                }
                switch(mtop.mt_op) {
-               case MTWEOF: case MTFSF: case MTBSF:
+               case MTWEOF:
+                       callcount = mtop.mt_count;
+                       fcount = 1;
+                       break;
+               case MTFSF: case MTBSF:
                        callcount = mtop.mt_count;
                        fcount = INF;
                        break;
                        callcount = mtop.mt_count;
                        fcount = INF;
                        break;
@@ -456,7 +858,7 @@ tmioctl(dev, cmd, addr, flag)
                        callcount = 1;
                        fcount = mtop.mt_count;
                        break;
                        callcount = 1;
                        fcount = mtop.mt_count;
                        break;
-               case MTREW: case MTOFFL:
+               case MTREW: case MTOFFL: case MTNOP:
                        callcount = 1;
                        fcount = 1;
                        break;
                        callcount = 1;
                        fcount = 1;
                        break;
@@ -464,24 +866,27 @@ tmioctl(dev, cmd, addr, flag)
                        u.u_error = ENXIO;
                        return;
                }
                        u.u_error = ENXIO;
                        return;
                }
-               if (callcount <= 0 || fcount <= 0)
+               if (callcount <= 0 || fcount <= 0) {
                        u.u_error = ENXIO;
                        u.u_error = ENXIO;
-               else while (--callcount >= 0) {
-                       tcommand(dev, tmops[mtop.mt_op], fcount);
+                       return;
+               }
+               while (--callcount >= 0) {
+                       tmcommand(dev, tmops[mtop.mt_op], fcount);
                        if ((mtop.mt_op == MTFSR || mtop.mt_op == MTBSR) &&
                        if ((mtop.mt_op == MTFSR || mtop.mt_op == MTBSR) &&
-                           ctmbuf.b_resid) {
+                           bp->b_resid) {
                                u.u_error = EIO;
                                break;
                        }
                                u.u_error = EIO;
                                break;
                        }
-                       if ((ctmbuf.b_flags&B_ERROR) || t_erreg&BOT)
+                       if ((bp->b_flags&B_ERROR) || sc->sc_erreg&TMER_BOT)
                                break;
                }
                                break;
                }
-               geterror(&ctmbuf);
+               geterror(bp);
                return;
        case MTIOCGET:
                return;
        case MTIOCGET:
-               mtget.mt_dsreg = t_dsreg;
-               mtget.mt_erreg = t_erreg;
-               mtget.mt_resid = t_resid;
+               mtget.mt_dsreg = sc->sc_dsreg;
+               mtget.mt_erreg = sc->sc_erreg;
+               mtget.mt_resid = sc->sc_resid;
+               mtget.mt_type = MT_ISTM;
                if (copyout((caddr_t)&mtget, addr, sizeof(mtget)))
                        u.u_error = EFAULT;
                return;
                if (copyout((caddr_t)&mtget, addr, sizeof(mtget)))
                        u.u_error = EFAULT;
                return;
@@ -492,67 +897,76 @@ tmioctl(dev, cmd, addr, flag)
 
 #define        DBSIZE  20
 
 
 #define        DBSIZE  20
 
-twall(start, num)
-       int start, num;
+tmdump()
 {
 {
-#if VAX==780
-       register struct uba_regs *up = (struct uba_regs *)PHYSUBA0;
-#endif
-       int blk;
-
-       TMPHYS->tmcs = DCLR | GO;
-#if VAX==780
-       up->uba_cr = ADINIT;
-       up->uba_cr = IFS|BRIE|USEFIE|SUEFIE;
-       while ((up->uba_cnfgr & UBIC) == 0)
-               ;
-#endif
+       register struct uba_device *ui;
+       register struct uba_regs *up;
+       register struct tmdevice *addr;
+       int blk, num;
+       int start;
+
+       start = 0;
+       num = maxfree;
+#define        phys(a,b)       ((b)((int)(a)&0x7fffffff))
+       if (tedinfo[0] == 0)
+               return (ENXIO);
+       ui = phys(tedinfo[0], struct uba_device *);
+       up = phys(ui->ui_hd, struct uba_hd *)->uh_physuba;
+       ubainit(up);
+       DELAY(1000000);
+       addr = (struct tmdevice *)ui->ui_physaddr;
+       tmwait(addr);
+       addr->tmcs = TM_DCLR | TM_GO;
        while (num > 0) {
                blk = num > DBSIZE ? DBSIZE : num;
        while (num > 0) {
                blk = num > DBSIZE ? DBSIZE : num;
-               tmdwrite(start, blk);
+               tmdwrite(start, blk, addr, up);
                start += blk;
                num -= blk;
        }
                start += blk;
                num -= blk;
        }
-       ((struct uba_regs *)PHYSUBA0)->uba_dpr[1] |= BNE;
+       tmeof(addr);
+       tmeof(addr);
+       tmwait(addr);
+       if (addr->tmcs&TM_ERR)
+               return (EIO);
+       addr->tmcs = TM_REW | TM_GO;
+       tmwait(addr);
+       return (0);
 }
 
 }
 
-tmdwrite(buf, num)
-register buf, num;
+tmdwrite(dbuf, num, addr, up)
+       register dbuf, num;
+       register struct tmdevice *addr;
+       struct uba_regs *up;
 {
 {
-       register int *io, npf;
+       register struct pte *io;
+       register int npf;
 
 
-       twait();
-       ((struct uba_regs *)PHYSUBA0)->uba_dpr[1] |= BNE;
-       io = (int *)((struct uba_regs *)PHYSUBA0)->uba_map;
+       tmwait(addr);
+       io = up->uba_map;
        npf = num+1;
        while (--npf != 0)
        npf = num+1;
        while (--npf != 0)
-                *io++ = (int)(buf++ | (1<<21) | MRV);
-       *io = 0;
-       TMPHYS->tmbc = -(num*NBPG);
-       TMPHYS->tmba = 0;
-       TMPHYS->tmcs = WCOM | GO | D800;
+                *(int *)io++ = (dbuf++ | (1<<UBAMR_DPSHIFT) | UBAMR_MRV);
+       *(int *)io = 0;
+       addr->tmbc = -(num*NBPG);
+       addr->tmba = 0;
+       addr->tmcs = TM_WCOM | TM_GO;
 }
 
 }
 
-twait()
+tmwait(addr)
+       register struct tmdevice *addr;
 {
        register s;
 
        do
 {
        register s;
 
        do
-               s = TMPHYS->tmcs;
-       while ((s & CUR) == 0);
-}
-
-rewind()
-{
-
-       twait();
-       TMPHYS->tmcs = REW | GO;
+               s = addr->tmcs;
+       while ((s & TM_CUR) == 0);
 }
 
 }
 
-teof()
+tmeof(addr)
+       struct tmdevice *addr;
 {
 
 {
 
-       twait();
-       TMPHYS->tmcs = WEOF | GO | D800;
+       tmwait(addr);
+       addr->tmcs = TM_WEOF | TM_GO;
 }
 #endif
 }
 #endif