Home | History | Annotate | Line # | Download | only in dev
mt.c revision 1.26
      1  1.26      yamt /*	$NetBSD: mt.c,v 1.26 2004/09/22 09:56:18 yamt Exp $	*/
      2   1.9   thorpej 
      3   1.9   thorpej /*-
      4   1.9   thorpej  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5   1.9   thorpej  * All rights reserved.
      6   1.9   thorpej  *
      7   1.9   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.9   thorpej  * by Jason R. Thorpe.
      9   1.9   thorpej  *
     10   1.9   thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.9   thorpej  * modification, are permitted provided that the following conditions
     12   1.9   thorpej  * are met:
     13   1.9   thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.9   thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.9   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.9   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.9   thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.9   thorpej  * 3. All advertising materials mentioning features or use of this software
     19   1.9   thorpej  *    must display the following acknowledgement:
     20   1.9   thorpej  *	This product includes software developed by the NetBSD
     21   1.9   thorpej  *	Foundation, Inc. and its contributors.
     22   1.9   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.9   thorpej  *    contributors may be used to endorse or promote products derived
     24   1.9   thorpej  *    from this software without specific prior written permission.
     25   1.9   thorpej  *
     26   1.9   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.9   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.9   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.9   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.9   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.9   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.9   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.9   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.9   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.9   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.9   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37   1.9   thorpej  */
     38   1.1   thorpej 
     39  1.24   tsutsui /*
     40   1.1   thorpej  * Copyright (c) 1992, The University of Utah and
     41   1.1   thorpej  * the Computer Systems Laboratory at the University of Utah (CSL).
     42   1.1   thorpej  * All rights reserved.
     43   1.1   thorpej  *
     44   1.1   thorpej  * Permission to use, copy, modify and distribute this software is hereby
     45   1.1   thorpej  * granted provided that (1) source code retains these copyright, permission,
     46   1.1   thorpej  * and disclaimer notices, and (2) redistributions including binaries
     47   1.1   thorpej  * reproduce the notices in supporting documentation, and (3) all advertising
     48   1.1   thorpej  * materials mentioning features or use of this software display the following
     49   1.1   thorpej  * acknowledgement: ``This product includes software developed by the
     50   1.1   thorpej  * Computer Systems Laboratory at the University of Utah.''
     51   1.1   thorpej  *
     52   1.1   thorpej  * THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
     53   1.1   thorpej  * IS" CONDITION.  THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF
     54   1.1   thorpej  * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     55   1.1   thorpej  *
     56   1.1   thorpej  * CSL requests users of this software to return to csl-dist (at) cs.utah.edu any
     57   1.1   thorpej  * improvements that they make and grant CSL redistribution rights.
     58   1.1   thorpej  *
     59   1.1   thorpej  *	Utah $Hdr: mt.c 1.8 95/09/12$
     60   1.1   thorpej  */
     61   1.1   thorpej /*	@(#)mt.c	3.9	90/07/10	mt Xinu
     62   1.1   thorpej  *
     63   1.1   thorpej  * Magnetic tape driver (7974a, 7978a/b, 7979a, 7980a, 7980xc)
     64   1.1   thorpej  * Original version contributed by Mt. Xinu.
     65   1.1   thorpej  * Modified for 4.4BSD by Mark Davies and Andrew Vignaux, Department of
     66   1.1   thorpej  * Computer Science, Victoria University of Wellington
     67   1.1   thorpej  */
     68  1.16  gmcgarry 
     69  1.16  gmcgarry #include <sys/cdefs.h>
     70  1.26      yamt __KERNEL_RCSID(0, "$NetBSD: mt.c,v 1.26 2004/09/22 09:56:18 yamt Exp $");
     71   1.1   thorpej 
     72   1.1   thorpej #include <sys/param.h>
     73   1.1   thorpej #include <sys/systm.h>
     74  1.13   thorpej #include <sys/callout.h>
     75   1.1   thorpej #include <sys/buf.h>
     76   1.1   thorpej #include <sys/ioctl.h>
     77   1.1   thorpej #include <sys/mtio.h>
     78   1.1   thorpej #include <sys/file.h>
     79   1.1   thorpej #include <sys/proc.h>
     80   1.1   thorpej #include <sys/errno.h>
     81   1.1   thorpej #include <sys/syslog.h>
     82   1.1   thorpej #include <sys/tty.h>
     83   1.1   thorpej #include <sys/kernel.h>
     84   1.1   thorpej #include <sys/tprintf.h>
     85   1.7   thorpej #include <sys/device.h>
     86   1.7   thorpej #include <sys/conf.h>
     87   1.1   thorpej 
     88   1.1   thorpej #include <hp300/dev/hpibvar.h>
     89   1.7   thorpej 
     90   1.1   thorpej #include <hp300/dev/mtreg.h>
     91   1.1   thorpej 
     92  1.25   thorpej static const struct mtinfo {
     93   1.1   thorpej 	u_short	hwid;
     94   1.1   thorpej 	char	*desc;
     95   1.1   thorpej } mtinfo[] = {
     96   1.8    scottr 	{ MT7978ID,	"7978"	},
     97   1.8    scottr 	{ MT7979AID,	"7979A"	},
     98   1.8    scottr 	{ MT7980ID,	"7980"	},
     99   1.8    scottr 	{ MT7974AID,	"7974A"	},
    100   1.1   thorpej };
    101  1.25   thorpej static const int nmtinfo = sizeof(mtinfo) / sizeof(mtinfo[0]);
    102   1.1   thorpej 
    103   1.1   thorpej struct	mt_softc {
    104   1.7   thorpej 	struct	device sc_dev;
    105  1.13   thorpej 	struct	callout sc_start_ch;
    106  1.13   thorpej 	struct	callout sc_intr_ch;
    107   1.7   thorpej 	int	sc_hpibno;	/* logical HPIB this slave it attached to */
    108   1.7   thorpej 	int	sc_slave;	/* HPIB slave address (0-6) */
    109   1.1   thorpej 	short	sc_flags;	/* see below */
    110   1.1   thorpej 	u_char	sc_lastdsj;	/* place for DSJ in mtreaddsj() */
    111   1.1   thorpej 	u_char	sc_lastecmd;	/* place for End Command in mtreaddsj() */
    112   1.1   thorpej 	short	sc_recvtimeo;	/* count of hpibsend timeouts to prevent hang */
    113   1.1   thorpej 	short	sc_statindex;	/* index for next sc_stat when MTF_STATTIMEO */
    114   1.1   thorpej 	struct	mt_stat sc_stat;/* status bytes last read from device */
    115   1.1   thorpej 	short	sc_density;	/* current density of tape (mtio.h format) */
    116   1.1   thorpej 	short	sc_type;	/* tape drive model (hardware IDs) */
    117   1.7   thorpej 	struct	hpibqueue sc_hq; /* HPIB device queue member */
    118   1.1   thorpej 	tpr_t	sc_ttyp;
    119  1.17   hannken 	struct bufq_state sc_tab;/* buf queue */
    120  1.11   thorpej 	int	sc_active;
    121   1.7   thorpej 	struct buf sc_bufstore;	/* XXX buffer storage */
    122   1.7   thorpej };
    123   1.1   thorpej 
    124   1.1   thorpej #ifdef DEBUG
    125   1.1   thorpej int	mtdebug = 0;
    126   1.1   thorpej #define	dlog	if (mtdebug) log
    127   1.1   thorpej #else
    128   1.1   thorpej #define	dlog	if (0) log
    129   1.1   thorpej #endif
    130   1.1   thorpej 
    131   1.1   thorpej #define	UNIT(x)		(minor(x) & 3)
    132   1.1   thorpej 
    133   1.1   thorpej #define B_CMD		B_XXX		/* command buf instead of data */
    134   1.1   thorpej #define	b_cmd		b_blkno		/* blkno holds cmd when B_CMD */
    135   1.1   thorpej 
    136  1.25   thorpej static int	mtmatch(struct device *, struct cfdata *, void *);
    137  1.25   thorpej static void	mtattach(struct device *, struct device *, void *);
    138   1.7   thorpej 
    139  1.20   thorpej CFATTACH_DECL(mt, sizeof(struct mt_softc),
    140  1.20   thorpej     mtmatch, mtattach, NULL, NULL);
    141   1.1   thorpej 
    142  1.10   thorpej extern struct cfdriver mt_cd;
    143   1.7   thorpej 
    144  1.25   thorpej static dev_type_open(mtopen);
    145  1.25   thorpej static dev_type_close(mtclose);
    146  1.25   thorpej static dev_type_read(mtread);
    147  1.25   thorpej static dev_type_write(mtwrite);
    148  1.25   thorpej static dev_type_ioctl(mtioctl);
    149  1.25   thorpej static dev_type_strategy(mtstrategy);
    150  1.18   gehenna 
    151  1.18   gehenna const struct bdevsw mt_bdevsw = {
    152  1.18   gehenna 	mtopen, mtclose, mtstrategy, mtioctl, nodump, nosize, D_TAPE
    153  1.18   gehenna };
    154  1.18   gehenna 
    155  1.18   gehenna const struct cdevsw mt_cdevsw = {
    156  1.18   gehenna 	mtopen, mtclose, mtread, mtwrite, mtioctl,
    157  1.21  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_TAPE
    158  1.18   gehenna };
    159  1.18   gehenna 
    160  1.25   thorpej static int	mtident(struct mt_softc *, struct hpibbus_attach_args *);
    161  1.25   thorpej static void	mtustart(struct mt_softc *);
    162  1.25   thorpej static int	mtreaddsj(struct mt_softc *, int);
    163  1.25   thorpej static int	mtcommand(dev_t, int, int);
    164  1.25   thorpej static void	spl_mtintr(void *);
    165  1.25   thorpej static void	spl_mtstart(void *);
    166  1.25   thorpej 
    167  1.25   thorpej static void	mtstart(void *);
    168  1.25   thorpej static void	mtgo(void *);
    169  1.25   thorpej static void	mtintr(void *);
    170  1.25   thorpej 
    171  1.25   thorpej static int
    172  1.25   thorpej mtmatch(struct device *parent, struct cfdata *match, void *aux)
    173   1.1   thorpej {
    174   1.7   thorpej 	struct hpibbus_attach_args *ha = aux;
    175   1.2   thorpej 
    176   1.7   thorpej 	return (mtident(NULL, ha));
    177   1.2   thorpej }
    178   1.2   thorpej 
    179  1.25   thorpej static void
    180  1.25   thorpej mtattach(struct device *parent, struct device *self, void *aux)
    181   1.7   thorpej {
    182   1.7   thorpej 	struct mt_softc *sc = (struct mt_softc *)self;
    183   1.7   thorpej 	struct hpibbus_attach_args *ha = aux;
    184   1.7   thorpej 	int unit, hpibno, slave;
    185   1.7   thorpej 
    186   1.7   thorpej 	if (mtident(sc, ha) == 0) {
    187   1.7   thorpej 		printf("\n%s: impossible!\n", sc->sc_dev.dv_xname);
    188   1.7   thorpej 		return;
    189   1.7   thorpej 	}
    190   1.2   thorpej 
    191   1.7   thorpej 	unit = self->dv_unit;
    192   1.7   thorpej 	hpibno = parent->dv_unit;
    193   1.7   thorpej 	slave = ha->ha_slave;
    194   1.1   thorpej 
    195  1.17   hannken 	bufq_alloc(&sc->sc_tab, BUFQ_FCFS);
    196  1.13   thorpej 	callout_init(&sc->sc_start_ch);
    197  1.13   thorpej 	callout_init(&sc->sc_intr_ch);
    198   1.1   thorpej 
    199   1.1   thorpej 	sc->sc_hpibno = hpibno;
    200   1.1   thorpej 	sc->sc_slave = slave;
    201   1.1   thorpej 	sc->sc_flags = MTF_EXISTS;
    202   1.6   thorpej 
    203   1.7   thorpej 	/* Initialize hpib job queue entry. */
    204   1.7   thorpej 	sc->sc_hq.hq_softc = sc;
    205   1.7   thorpej 	sc->sc_hq.hq_slave = sc->sc_slave;
    206   1.7   thorpej 	sc->sc_hq.hq_start = mtstart;
    207   1.7   thorpej 	sc->sc_hq.hq_go = mtgo;
    208   1.7   thorpej 	sc->sc_hq.hq_intr = mtintr;
    209   1.7   thorpej }
    210   1.7   thorpej 
    211  1.25   thorpej static int
    212  1.25   thorpej mtident(struct mt_softc *sc, struct hpibbus_attach_args *ha)
    213   1.7   thorpej {
    214   1.7   thorpej 	int i;
    215   1.7   thorpej 
    216   1.7   thorpej 	for (i = 0; i < nmtinfo; i++) {
    217   1.7   thorpej 		if (ha->ha_id == mtinfo[i].hwid) {
    218   1.7   thorpej 			if (sc != NULL) {
    219   1.7   thorpej 				sc->sc_type = mtinfo[i].hwid;
    220   1.7   thorpej 				printf(": %s tape\n", mtinfo[i].desc);
    221   1.7   thorpej 			}
    222   1.7   thorpej 			return (1);
    223   1.7   thorpej 		}
    224   1.7   thorpej 	}
    225   1.7   thorpej 	return (0);
    226   1.1   thorpej }
    227   1.1   thorpej 
    228   1.1   thorpej /*
    229   1.1   thorpej  * Perform a read of "Device Status Jump" register and update the
    230   1.1   thorpej  * status if necessary.  If status is read, the given "ecmd" is also
    231   1.1   thorpej  * performed, unless "ecmd" is zero.  Returns DSJ value, -1 on failure
    232   1.1   thorpej  * and -2 on "temporary" failure.
    233   1.1   thorpej  */
    234  1.25   thorpej static int
    235  1.25   thorpej mtreaddsj(struct mt_softc *sc, int ecmd)
    236   1.1   thorpej {
    237   1.1   thorpej 	int retval;
    238   1.1   thorpej 
    239   1.1   thorpej 	if (sc->sc_flags & MTF_STATTIMEO)
    240   1.1   thorpej 		goto getstats;
    241   1.1   thorpej 	retval = hpibrecv(sc->sc_hpibno,
    242   1.7   thorpej 	    (sc->sc_flags & MTF_DSJTIMEO) ? -1 : sc->sc_slave,
    243   1.7   thorpej 	    MTT_DSJ, &(sc->sc_lastdsj), 1);
    244   1.1   thorpej 	sc->sc_flags &= ~MTF_DSJTIMEO;
    245   1.1   thorpej 	if (retval != 1) {
    246   1.7   thorpej 		dlog(LOG_DEBUG, "%s can't hpibrecv DSJ",
    247   1.7   thorpej 		    sc->sc_dev.dv_xname);
    248   1.1   thorpej 		if (sc->sc_recvtimeo == 0)
    249   1.1   thorpej 			sc->sc_recvtimeo = hz;
    250   1.1   thorpej 		if (--sc->sc_recvtimeo == 0)
    251   1.1   thorpej 			return (-1);
    252   1.1   thorpej 		if (retval == 0)
    253   1.1   thorpej 			sc->sc_flags |= MTF_DSJTIMEO;
    254   1.1   thorpej 		return (-2);
    255   1.1   thorpej 	}
    256   1.1   thorpej 	sc->sc_recvtimeo = 0;
    257   1.1   thorpej 	sc->sc_statindex = 0;
    258   1.7   thorpej 	dlog(LOG_DEBUG, "%s readdsj: 0x%x", sc->sc_dev.dv_xname,
    259   1.7   thorpej 	    sc->sc_lastdsj);
    260   1.1   thorpej 	sc->sc_lastecmd = ecmd;
    261   1.1   thorpej 	switch (sc->sc_lastdsj) {
    262   1.1   thorpej 	    case 0:
    263   1.1   thorpej 		if (ecmd & MTE_DSJ_FORCE)
    264   1.1   thorpej 			break;
    265   1.1   thorpej 		return (0);
    266   1.1   thorpej 
    267   1.1   thorpej 	    case 2:
    268   1.1   thorpej 		sc->sc_lastecmd = MTE_COMPLETE;
    269   1.1   thorpej 	    case 1:
    270   1.1   thorpej 		break;
    271   1.1   thorpej 
    272   1.1   thorpej 	    default:
    273   1.7   thorpej 		log(LOG_ERR, "%s readdsj: DSJ 0x%x\n", sc->sc_dev.dv_xname,
    274   1.7   thorpej 		    sc->sc_lastdsj);
    275   1.1   thorpej 		return (-1);
    276   1.1   thorpej 	}
    277   1.1   thorpej     getstats:
    278   1.1   thorpej 	retval = hpibrecv(sc->sc_hpibno,
    279   1.7   thorpej 	    (sc->sc_flags & MTF_STATCONT) ? -1 : sc->sc_slave,
    280   1.7   thorpej 	    MTT_STAT, ((char *)&(sc->sc_stat)) + sc->sc_statindex,
    281   1.7   thorpej 	    sizeof(sc->sc_stat) - sc->sc_statindex);
    282   1.1   thorpej 	sc->sc_flags &= ~(MTF_STATTIMEO | MTF_STATCONT);
    283   1.1   thorpej 	if (retval != sizeof(sc->sc_stat) - sc->sc_statindex) {
    284   1.1   thorpej 		if (sc->sc_recvtimeo == 0)
    285   1.1   thorpej 			sc->sc_recvtimeo = hz;
    286   1.1   thorpej 		if (--sc->sc_recvtimeo != 0) {
    287   1.1   thorpej 			if (retval >= 0) {
    288   1.1   thorpej 				sc->sc_statindex += retval;
    289   1.1   thorpej 				sc->sc_flags |= MTF_STATCONT;
    290   1.1   thorpej 			}
    291   1.1   thorpej 			sc->sc_flags |= MTF_STATTIMEO;
    292   1.1   thorpej 			return (-2);
    293   1.1   thorpej 		}
    294   1.7   thorpej 		log(LOG_ERR, "%s readdsj: can't read status",
    295   1.7   thorpej 		    sc->sc_dev.dv_xname);
    296   1.1   thorpej 		return (-1);
    297   1.1   thorpej 	}
    298   1.1   thorpej 	sc->sc_recvtimeo = 0;
    299   1.1   thorpej 	sc->sc_statindex = 0;
    300   1.7   thorpej 	dlog(LOG_DEBUG, "%s readdsj: status is %x %x %x %x %x %x",
    301   1.7   thorpej 	    sc->sc_dev.dv_xname,
    302   1.7   thorpej 	    sc->sc_stat1, sc->sc_stat2, sc->sc_stat3,
    303   1.7   thorpej 	    sc->sc_stat4, sc->sc_stat5, sc->sc_stat6);
    304   1.1   thorpej 	if (sc->sc_lastecmd)
    305   1.1   thorpej 		(void) hpibsend(sc->sc_hpibno, sc->sc_slave,
    306   1.7   thorpej 		    MTL_ECMD, &(sc->sc_lastecmd), 1);
    307   1.1   thorpej 	return ((int) sc->sc_lastdsj);
    308   1.1   thorpej }
    309   1.1   thorpej 
    310  1.25   thorpej static int
    311  1.25   thorpej mtopen(dev_t dev, int flag, int mode, struct proc *p)
    312   1.1   thorpej {
    313   1.8    scottr 	int unit = UNIT(dev);
    314   1.7   thorpej 	struct mt_softc *sc;
    315   1.8    scottr 	int req_den;
    316   1.1   thorpej 	int error;
    317   1.1   thorpej 
    318   1.7   thorpej 	if (unit >= mt_cd.cd_ndevs ||
    319   1.7   thorpej 	    (sc = mt_cd.cd_devs[unit]) == NULL ||
    320   1.7   thorpej 	    (sc->sc_flags & MTF_EXISTS) == 0)
    321   1.1   thorpej 		return (ENXIO);
    322   1.7   thorpej 
    323   1.7   thorpej 	dlog(LOG_DEBUG, "%s open: flags 0x%x", sc->sc_dev.dv_xname,
    324   1.7   thorpej 	    sc->sc_flags);
    325   1.1   thorpej 	if (sc->sc_flags & MTF_OPEN)
    326   1.1   thorpej 		return (EBUSY);
    327   1.1   thorpej 	sc->sc_flags |= MTF_OPEN;
    328  1.23      fvdl 	sc->sc_ttyp = tprintf_open(p);
    329   1.1   thorpej 	if ((sc->sc_flags & MTF_ALIVE) == 0) {
    330   1.1   thorpej 		error = mtcommand(dev, MTRESET, 0);
    331   1.1   thorpej 		if (error != 0 || (sc->sc_flags & MTF_ALIVE) == 0)
    332   1.1   thorpej 			goto errout;
    333   1.1   thorpej 		if ((sc->sc_stat1 & (SR1_BOT | SR1_ONLINE)) == SR1_ONLINE)
    334   1.1   thorpej 			(void) mtcommand(dev, MTREW, 0);
    335   1.1   thorpej 	}
    336   1.1   thorpej 	for (;;) {
    337   1.1   thorpej 		if ((error = mtcommand(dev, MTNOP, 0)) != 0)
    338   1.1   thorpej 			goto errout;
    339   1.1   thorpej 		if (!(sc->sc_flags & MTF_REW))
    340   1.1   thorpej 			break;
    341   1.7   thorpej 		if (tsleep((caddr_t) &lbolt, PCATCH | (PZERO + 1),
    342   1.7   thorpej 		    "mt", 0) != 0) {
    343   1.1   thorpej 			error = EINTR;
    344   1.1   thorpej 			goto errout;
    345   1.1   thorpej 		}
    346   1.1   thorpej 	}
    347   1.1   thorpej 	if ((flag & FWRITE) && (sc->sc_stat1 & SR1_RO)) {
    348   1.1   thorpej 		error = EROFS;
    349   1.1   thorpej 		goto errout;
    350   1.1   thorpej 	}
    351   1.1   thorpej 	if (!(sc->sc_stat1 & SR1_ONLINE)) {
    352   1.7   thorpej 		uprintf("%s: not online\n", sc->sc_dev.dv_xname);
    353   1.1   thorpej 		error = EIO;
    354   1.1   thorpej 		goto errout;
    355   1.1   thorpej 	}
    356   1.1   thorpej 	/*
    357   1.1   thorpej 	 * Select density:
    358   1.1   thorpej 	 *  - find out what density the drive is set to
    359   1.1   thorpej 	 *	(i.e. the density of the current tape)
    360   1.1   thorpej 	 *  - if we are going to write
    361   1.1   thorpej 	 *    - if we're not at the beginning of the tape
    362   1.1   thorpej 	 *      - complain if we want to change densities
    363   1.1   thorpej 	 *    - otherwise, select the mtcommand to set the density
    364   1.1   thorpej 	 *
    365   1.1   thorpej 	 * If the drive doesn't support it then don't change the recorded
    366   1.1   thorpej 	 * density.
    367   1.1   thorpej 	 *
    368   1.1   thorpej 	 * The original MOREbsd code had these additional conditions
    369   1.1   thorpej 	 * for the mid-tape change
    370   1.1   thorpej 	 *
    371   1.1   thorpej 	 *	req_den != T_BADBPI &&
    372   1.1   thorpej 	 *	sc->sc_density != T_6250BPI
    373   1.1   thorpej 	 *
    374   1.1   thorpej 	 * which suggests that it would be possible to write multiple
    375   1.1   thorpej 	 * densities if req_den == T_BAD_BPI or the current tape
    376   1.1   thorpej 	 * density was 6250.  Testing of our 7980 suggests that the
    377   1.1   thorpej 	 * device cannot change densities mid-tape.
    378   1.1   thorpej 	 *
    379   1.1   thorpej 	 * ajv (at) comp.vuw.ac.nz
    380   1.1   thorpej 	 */
    381   1.1   thorpej 	sc->sc_density = (sc->sc_stat2 & SR2_6250) ? T_6250BPI : (
    382   1.1   thorpej 			 (sc->sc_stat3 & SR3_1600) ? T_1600BPI : (
    383   1.1   thorpej 			 (sc->sc_stat3 & SR3_800) ? T_800BPI : -1));
    384   1.1   thorpej 	req_den = (dev & T_DENSEL);
    385   1.1   thorpej 
    386   1.1   thorpej 	if (flag & FWRITE) {
    387   1.1   thorpej 		if (!(sc->sc_stat1 & SR1_BOT)) {
    388   1.1   thorpej 			if (sc->sc_density != req_den) {
    389   1.2   thorpej 				uprintf("%s: can't change density mid-tape\n",
    390   1.7   thorpej 				    sc->sc_dev.dv_xname);
    391   1.1   thorpej 				error = EIO;
    392   1.1   thorpej 				goto errout;
    393   1.1   thorpej 			}
    394   1.1   thorpej 		}
    395   1.1   thorpej 		else {
    396   1.1   thorpej 			int mtset_density =
    397   1.1   thorpej 			    (req_den == T_800BPI  ? MTSET800BPI : (
    398   1.1   thorpej 			     req_den == T_1600BPI ? MTSET1600BPI : (
    399   1.1   thorpej 			     req_den == T_6250BPI ? MTSET6250BPI : (
    400   1.1   thorpej 			     sc->sc_type == MT7980ID
    401   1.1   thorpej 						  ? MTSET6250DC
    402   1.1   thorpej 						  : MTSET6250BPI))));
    403   1.1   thorpej 			if (mtcommand(dev, mtset_density, 0) == 0)
    404   1.1   thorpej 				sc->sc_density = req_den;
    405   1.1   thorpej 		}
    406   1.1   thorpej 	}
    407   1.1   thorpej 	return (0);
    408   1.1   thorpej errout:
    409   1.1   thorpej 	sc->sc_flags &= ~MTF_OPEN;
    410   1.1   thorpej 	return (error);
    411   1.1   thorpej }
    412   1.1   thorpej 
    413  1.25   thorpej static int
    414  1.25   thorpej mtclose(dev_t dev, int flag, int fmt, struct proc *p)
    415   1.1   thorpej {
    416   1.7   thorpej 	struct mt_softc *sc = mt_cd.cd_devs[UNIT(dev)];
    417   1.1   thorpej 
    418   1.1   thorpej 	if (sc->sc_flags & MTF_WRT) {
    419   1.1   thorpej 		(void) mtcommand(dev, MTWEOF, 2);
    420   1.1   thorpej 		(void) mtcommand(dev, MTBSF, 0);
    421   1.1   thorpej 	}
    422   1.1   thorpej 	if ((minor(dev) & T_NOREWIND) == 0)
    423   1.1   thorpej 		(void) mtcommand(dev, MTREW, 0);
    424   1.1   thorpej 	sc->sc_flags &= ~MTF_OPEN;
    425   1.1   thorpej 	tprintf_close(sc->sc_ttyp);
    426   1.1   thorpej 	return (0);
    427   1.1   thorpej }
    428   1.1   thorpej 
    429  1.25   thorpej static int
    430  1.25   thorpej mtcommand(dev_t dev, int cmd, int cnt)
    431   1.1   thorpej {
    432   1.7   thorpej 	struct mt_softc *sc = mt_cd.cd_devs[UNIT(dev)];
    433   1.7   thorpej 	struct buf *bp = &sc->sc_bufstore;
    434   1.1   thorpej 	int error = 0;
    435   1.1   thorpej 
    436   1.1   thorpej #if 1
    437   1.1   thorpej 	if (bp->b_flags & B_BUSY)
    438   1.1   thorpej 		return (EBUSY);
    439   1.1   thorpej #endif
    440   1.1   thorpej 	bp->b_cmd = cmd;
    441   1.1   thorpej 	bp->b_dev = dev;
    442   1.1   thorpej 	do {
    443   1.1   thorpej 		bp->b_flags = B_BUSY | B_CMD;
    444   1.1   thorpej 		mtstrategy(bp);
    445  1.11   thorpej 		biowait(bp);
    446   1.1   thorpej 		if (bp->b_flags & B_ERROR) {
    447   1.1   thorpej 			error = (int) (unsigned) bp->b_error;
    448   1.1   thorpej 			break;
    449   1.1   thorpej 		}
    450   1.1   thorpej 	} while (--cnt > 0);
    451   1.1   thorpej #if 0
    452   1.1   thorpej 	bp->b_flags = 0 /*&= ~B_BUSY*/;
    453   1.1   thorpej #else
    454   1.1   thorpej 	bp->b_flags &= ~B_BUSY;
    455   1.1   thorpej #endif
    456   1.1   thorpej 	return (error);
    457   1.1   thorpej }
    458   1.1   thorpej 
    459   1.1   thorpej /*
    460   1.1   thorpej  * Only thing to check here is for legal record lengths (writes only).
    461   1.1   thorpej  */
    462  1.25   thorpej static void
    463  1.25   thorpej mtstrategy(struct buf *bp)
    464   1.1   thorpej {
    465   1.8    scottr 	struct mt_softc *sc;
    466   1.8    scottr 	int unit;
    467   1.8    scottr 	int s;
    468   1.1   thorpej 
    469   1.1   thorpej 	unit = UNIT(bp->b_dev);
    470   1.7   thorpej 	sc = mt_cd.cd_devs[unit];
    471   1.7   thorpej 	dlog(LOG_DEBUG, "%s strategy", sc->sc_dev.dv_xname);
    472   1.1   thorpej 	if ((bp->b_flags & (B_CMD | B_READ)) == 0) {
    473   1.1   thorpej #define WRITE_BITS_IGNORED	8
    474   1.1   thorpej #if 0
    475   1.1   thorpej 		if (bp->b_bcount & ((1 << WRITE_BITS_IGNORED) - 1)) {
    476   1.1   thorpej 			tprintf(sc->sc_ttyp,
    477   1.2   thorpej 				"%s: write record must be multiple of %d\n",
    478   1.7   thorpej 				sc->sc_dev.dv_xname, 1 << WRITE_BITS_IGNORED);
    479   1.1   thorpej 			goto error;
    480   1.1   thorpej 		}
    481   1.1   thorpej #endif
    482   1.1   thorpej 		s = 16 * 1024;
    483   1.1   thorpej 		if (sc->sc_stat2 & SR2_LONGREC) {
    484   1.1   thorpej 			switch (sc->sc_density) {
    485   1.1   thorpej 			    case T_1600BPI:
    486   1.1   thorpej 				s = 32 * 1024;
    487   1.1   thorpej 				break;
    488   1.1   thorpej 
    489   1.1   thorpej 			    case T_6250BPI:
    490   1.1   thorpej 			    case T_BADBPI:
    491   1.1   thorpej 				s = 60 * 1024;
    492   1.1   thorpej 				break;
    493   1.1   thorpej 			}
    494   1.1   thorpej 		}
    495   1.1   thorpej 		if (bp->b_bcount > s) {
    496   1.1   thorpej 			tprintf(sc->sc_ttyp,
    497  1.26      yamt 				"%s: write record (%d) too big: limit (%d)\n",
    498   1.7   thorpej 				sc->sc_dev.dv_xname, bp->b_bcount, s);
    499   1.8    scottr #if 0 /* XXX see above */
    500   1.1   thorpej 	    error:
    501   1.8    scottr #endif
    502   1.1   thorpej 			bp->b_flags |= B_ERROR;
    503   1.1   thorpej 			bp->b_error = EIO;
    504  1.11   thorpej 			biodone(bp);
    505   1.1   thorpej 			return;
    506   1.1   thorpej 		}
    507   1.1   thorpej 	}
    508   1.1   thorpej 	s = splbio();
    509  1.17   hannken 	BUFQ_PUT(&sc->sc_tab, bp);
    510  1.11   thorpej 	if (sc->sc_active == 0) {
    511  1.11   thorpej 		sc->sc_active = 1;
    512   1.7   thorpej 		mtustart(sc);
    513   1.1   thorpej 	}
    514   1.1   thorpej 	splx(s);
    515   1.1   thorpej }
    516   1.1   thorpej 
    517  1.25   thorpej static void
    518  1.25   thorpej mtustart(struct mt_softc *sc)
    519   1.1   thorpej {
    520   1.1   thorpej 
    521   1.7   thorpej 	dlog(LOG_DEBUG, "%s ustart", sc->sc_dev.dv_xname);
    522   1.7   thorpej 	if (hpibreq(sc->sc_dev.dv_parent, &sc->sc_hq))
    523   1.7   thorpej 		mtstart(sc);
    524   1.1   thorpej }
    525   1.1   thorpej 
    526  1.25   thorpej static void
    527  1.25   thorpej spl_mtintr(void *arg)
    528   1.1   thorpej {
    529   1.3   thorpej 	struct mt_softc *sc = arg;
    530   1.1   thorpej 	int s = splbio();
    531   1.1   thorpej 
    532   1.3   thorpej 	hpibppclear(sc->sc_hpibno);
    533   1.3   thorpej 	mtintr(sc);
    534  1.15  gmcgarry 	splx(s);
    535   1.1   thorpej }
    536   1.1   thorpej 
    537  1.25   thorpej static void
    538  1.25   thorpej spl_mtstart(void *arg)
    539   1.1   thorpej {
    540   1.1   thorpej 	int s = splbio();
    541   1.1   thorpej 
    542   1.7   thorpej 	mtstart(arg);
    543  1.15  gmcgarry 	splx(s);
    544   1.1   thorpej }
    545   1.1   thorpej 
    546  1.25   thorpej static void
    547  1.25   thorpej mtstart(void *arg)
    548   1.1   thorpej {
    549   1.7   thorpej 	struct mt_softc *sc = arg;
    550  1.12   frueauf 	struct buf *bp;
    551   1.1   thorpej 	short	cmdcount = 1;
    552   1.1   thorpej 	u_char	cmdbuf[2];
    553   1.1   thorpej 
    554   1.7   thorpej 	dlog(LOG_DEBUG, "%s start", sc->sc_dev.dv_xname);
    555   1.1   thorpej 	sc->sc_flags &= ~MTF_WRT;
    556  1.17   hannken 	bp = BUFQ_PEEK(&sc->sc_tab);
    557   1.1   thorpej 	if ((sc->sc_flags & MTF_ALIVE) == 0 &&
    558   1.1   thorpej 	    ((bp->b_flags & B_CMD) == 0 || bp->b_cmd != MTRESET))
    559   1.1   thorpej 		goto fatalerror;
    560   1.1   thorpej 
    561   1.1   thorpej 	if (sc->sc_flags & MTF_REW) {
    562   1.1   thorpej 		if (!hpibpptest(sc->sc_hpibno, sc->sc_slave))
    563   1.1   thorpej 			goto stillrew;
    564   1.7   thorpej 		switch (mtreaddsj(sc, MTE_DSJ_FORCE|MTE_COMPLETE|MTE_IDLE)) {
    565   1.1   thorpej 		    case 0:
    566   1.1   thorpej 		    case 1:
    567   1.1   thorpej 		stillrew:
    568   1.1   thorpej 			if ((sc->sc_stat1 & SR1_BOT) ||
    569   1.1   thorpej 			    !(sc->sc_stat1 & SR1_ONLINE)) {
    570   1.1   thorpej 				sc->sc_flags &= ~MTF_REW;
    571   1.1   thorpej 				break;
    572   1.1   thorpej 			}
    573   1.1   thorpej 		    case -2:
    574   1.1   thorpej 			/*
    575   1.1   thorpej 			 * -2 means "timeout" reading DSJ, which is probably
    576   1.1   thorpej 			 * temporary.  This is considered OK when doing a NOP,
    577   1.1   thorpej 			 * but not otherwise.
    578   1.1   thorpej 			 */
    579   1.1   thorpej 			if (sc->sc_flags & (MTF_DSJTIMEO | MTF_STATTIMEO)) {
    580  1.13   thorpej 				callout_reset(&sc->sc_start_ch, hz >> 5,
    581  1.13   thorpej 				    spl_mtstart, sc);
    582   1.1   thorpej 				return;
    583   1.1   thorpej 			}
    584   1.1   thorpej 		    case 2:
    585   1.1   thorpej 			if (bp->b_cmd != MTNOP || !(bp->b_flags & B_CMD)) {
    586   1.1   thorpej 				bp->b_error = EBUSY;
    587   1.1   thorpej 				goto errdone;
    588   1.1   thorpej 			}
    589   1.1   thorpej 			goto done;
    590   1.1   thorpej 
    591   1.1   thorpej 		    default:
    592   1.1   thorpej 			goto fatalerror;
    593   1.1   thorpej 		}
    594   1.1   thorpej 	}
    595   1.1   thorpej 	if (bp->b_flags & B_CMD) {
    596   1.1   thorpej 		if (sc->sc_flags & MTF_PASTEOT) {
    597   1.1   thorpej 			switch(bp->b_cmd) {
    598   1.1   thorpej 			    case MTFSF:
    599   1.1   thorpej 			    case MTWEOF:
    600   1.1   thorpej 			    case MTFSR:
    601   1.1   thorpej 				bp->b_error = ENOSPC;
    602   1.1   thorpej 				goto errdone;
    603   1.1   thorpej 
    604   1.1   thorpej 			    case MTBSF:
    605   1.1   thorpej 			    case MTOFFL:
    606   1.1   thorpej 			    case MTBSR:
    607   1.1   thorpej 			    case MTREW:
    608   1.1   thorpej 				sc->sc_flags &= ~(MTF_PASTEOT | MTF_ATEOT);
    609   1.1   thorpej 				break;
    610   1.1   thorpej 			}
    611   1.1   thorpej 		}
    612   1.1   thorpej 		switch(bp->b_cmd) {
    613   1.1   thorpej 		    case MTFSF:
    614   1.1   thorpej 			if (sc->sc_flags & MTF_HITEOF)
    615   1.1   thorpej 				goto done;
    616   1.1   thorpej 			cmdbuf[0] = MTTC_FSF;
    617   1.1   thorpej 			break;
    618   1.1   thorpej 
    619   1.1   thorpej 		    case MTBSF:
    620   1.1   thorpej 			if (sc->sc_flags & MTF_HITBOF)
    621   1.1   thorpej 				goto done;
    622   1.1   thorpej 			cmdbuf[0] = MTTC_BSF;
    623   1.1   thorpej 			break;
    624   1.1   thorpej 
    625   1.1   thorpej 		    case MTOFFL:
    626   1.1   thorpej 			sc->sc_flags |= MTF_REW;
    627   1.1   thorpej 			cmdbuf[0] = MTTC_REWOFF;
    628   1.1   thorpej 			break;
    629   1.1   thorpej 
    630   1.1   thorpej 		    case MTWEOF:
    631   1.1   thorpej 			cmdbuf[0] = MTTC_WFM;
    632   1.1   thorpej 			break;
    633   1.1   thorpej 
    634   1.1   thorpej 		    case MTBSR:
    635   1.1   thorpej 			cmdbuf[0] = MTTC_BSR;
    636   1.1   thorpej 			break;
    637   1.1   thorpej 
    638   1.1   thorpej 		    case MTFSR:
    639   1.1   thorpej 			cmdbuf[0] = MTTC_FSR;
    640   1.1   thorpej 			break;
    641   1.1   thorpej 
    642   1.1   thorpej 		    case MTREW:
    643   1.1   thorpej 			sc->sc_flags |= MTF_REW;
    644   1.1   thorpej 			cmdbuf[0] = MTTC_REW;
    645   1.1   thorpej 			break;
    646   1.1   thorpej 
    647   1.1   thorpej 		    case MTNOP:
    648   1.1   thorpej 			/*
    649   1.1   thorpej 			 * NOP is supposed to set status bits.
    650   1.1   thorpej 			 * Force readdsj to do it.
    651   1.1   thorpej 			 */
    652   1.7   thorpej 			switch (mtreaddsj(sc,
    653   1.7   thorpej 			  MTE_DSJ_FORCE | MTE_COMPLETE | MTE_IDLE)) {
    654   1.1   thorpej 			    default:
    655   1.1   thorpej 				goto done;
    656   1.1   thorpej 
    657   1.1   thorpej 			    case -1:
    658   1.1   thorpej 				/*
    659   1.1   thorpej 				 * If this fails, perform a device clear
    660   1.1   thorpej 				 * to fix any protocol problems and (most
    661   1.1   thorpej 				 * likely) get the status.
    662   1.1   thorpej 				 */
    663   1.1   thorpej 				bp->b_cmd = MTRESET;
    664   1.1   thorpej 				break;
    665   1.1   thorpej 
    666   1.1   thorpej 			    case -2:
    667  1.13   thorpej 				callout_reset(&sc->sc_start_ch, hz >> 5,
    668  1.13   thorpej 				    spl_mtstart, sc);
    669   1.1   thorpej 				return;
    670   1.1   thorpej 			}
    671   1.1   thorpej 
    672   1.1   thorpej 		    case MTRESET:
    673   1.1   thorpej 			/*
    674   1.1   thorpej 			 * 1) selected device clear (send with "-2" secondary)
    675   1.1   thorpej 			 * 2) set timeout, then wait for "service request"
    676   1.1   thorpej 			 * 3) interrupt will read DSJ (and END COMPLETE-IDLE)
    677   1.1   thorpej 			 */
    678   1.1   thorpej 			if (hpibsend(sc->sc_hpibno, sc->sc_slave, -2, NULL, 0)){
    679   1.7   thorpej 				log(LOG_ERR, "%s can't reset",
    680   1.7   thorpej 				    sc->sc_dev.dv_xname);
    681   1.1   thorpej 				goto fatalerror;
    682   1.1   thorpej 			}
    683  1.13   thorpej 			callout_reset(&sc->sc_intr_ch, 4 * hz, spl_mtintr, sc);
    684   1.8    scottr 			hpibawait(sc->sc_hpibno);
    685   1.1   thorpej 			return;
    686   1.1   thorpej 
    687   1.1   thorpej 		    case MTSET800BPI:
    688   1.1   thorpej 			cmdbuf[0] = MTTC_800;
    689   1.1   thorpej 			break;
    690   1.1   thorpej 
    691   1.1   thorpej 		    case MTSET1600BPI:
    692   1.1   thorpej 			cmdbuf[0] = MTTC_1600;
    693   1.1   thorpej 			break;
    694   1.1   thorpej 
    695   1.1   thorpej 		    case MTSET6250BPI:
    696   1.1   thorpej 			cmdbuf[0] = MTTC_6250;
    697   1.1   thorpej 			break;
    698   1.1   thorpej 
    699   1.1   thorpej 		    case MTSET6250DC:
    700   1.1   thorpej 			cmdbuf[0] = MTTC_DC6250;
    701   1.1   thorpej 			break;
    702   1.1   thorpej 		}
    703   1.1   thorpej 	} else {
    704   1.1   thorpej 		if (sc->sc_flags & MTF_PASTEOT) {
    705   1.1   thorpej 			bp->b_error = ENOSPC;
    706   1.1   thorpej 			goto errdone;
    707   1.1   thorpej 		}
    708   1.1   thorpej 		if (bp->b_flags & B_READ) {
    709   1.1   thorpej 			sc->sc_flags |= MTF_IO;
    710   1.1   thorpej 			cmdbuf[0] = MTTC_READ;
    711   1.1   thorpej 		} else {
    712   1.1   thorpej 			sc->sc_flags |= MTF_WRT | MTF_IO;
    713   1.1   thorpej 			cmdbuf[0] = MTTC_WRITE;
    714   1.1   thorpej 			cmdbuf[1] = (bp->b_bcount + ((1 << WRITE_BITS_IGNORED) - 1)) >> WRITE_BITS_IGNORED;
    715   1.1   thorpej 			cmdcount = 2;
    716   1.1   thorpej 		}
    717   1.1   thorpej 	}
    718   1.1   thorpej 	if (hpibsend(sc->sc_hpibno, sc->sc_slave, MTL_TCMD, cmdbuf, cmdcount)
    719   1.1   thorpej 	    == cmdcount) {
    720   1.1   thorpej 		if (sc->sc_flags & MTF_REW)
    721   1.1   thorpej 			goto done;
    722   1.1   thorpej 		hpibawait(sc->sc_hpibno);
    723   1.1   thorpej 		return;
    724   1.1   thorpej 	}
    725   1.1   thorpej fatalerror:
    726   1.1   thorpej 	/*
    727   1.1   thorpej 	 * If anything fails, the drive is probably hosed, so mark it not
    728   1.1   thorpej 	 * "ALIVE" (but it EXISTS and is OPEN or we wouldn't be here, and
    729   1.1   thorpej 	 * if, last we heard, it was REWinding, remember that).
    730   1.1   thorpej 	 */
    731   1.1   thorpej 	sc->sc_flags &= MTF_EXISTS | MTF_OPEN | MTF_REW;
    732   1.1   thorpej 	bp->b_error = EIO;
    733   1.1   thorpej errdone:
    734   1.1   thorpej 	bp->b_flags |= B_ERROR;
    735   1.1   thorpej done:
    736   1.1   thorpej 	sc->sc_flags &= ~(MTF_HITEOF | MTF_HITBOF);
    737  1.17   hannken 	(void)BUFQ_GET(&sc->sc_tab);
    738  1.11   thorpej 	biodone(bp);
    739   1.7   thorpej 	hpibfree(sc->sc_dev.dv_parent, &sc->sc_hq);
    740  1.17   hannken 	if ((bp = BUFQ_PEEK(&sc->sc_tab)) == NULL)
    741  1.11   thorpej 		sc->sc_active = 0;
    742   1.1   thorpej 	else
    743   1.7   thorpej 		mtustart(sc);
    744   1.1   thorpej }
    745   1.1   thorpej 
    746   1.1   thorpej /*
    747   1.1   thorpej  * The Utah code had a bug which meant that the driver was unable to read.
    748   1.1   thorpej  * "rw" was initialized to bp->b_flags & B_READ before "bp" was initialized.
    749   1.1   thorpej  *   -- ajv (at) comp.vuw.ac.nz
    750   1.1   thorpej  */
    751  1.25   thorpej static void
    752  1.25   thorpej mtgo(void *arg)
    753   1.1   thorpej {
    754   1.7   thorpej 	struct mt_softc *sc = arg;
    755   1.7   thorpej 	struct buf *bp;
    756   1.1   thorpej 	int rw;
    757   1.1   thorpej 
    758   1.7   thorpej 	dlog(LOG_DEBUG, "%s go", sc->sc_dev.dv_xname);
    759  1.17   hannken 	bp = BUFQ_PEEK(&sc->sc_tab);
    760   1.1   thorpej 	rw = bp->b_flags & B_READ;
    761   1.1   thorpej 	hpibgo(sc->sc_hpibno, sc->sc_slave, rw ? MTT_READ : MTL_WRITE,
    762  1.14   thorpej 	    bp->b_data, bp->b_bcount, rw, rw != 0);
    763   1.1   thorpej }
    764   1.1   thorpej 
    765  1.25   thorpej static void
    766  1.25   thorpej mtintr(void *arg)
    767   1.1   thorpej {
    768   1.7   thorpej 	struct mt_softc *sc = arg;
    769  1.12   frueauf 	struct buf *bp;
    770   1.7   thorpej 	int i;
    771   1.7   thorpej 	u_char cmdbuf[4];
    772   1.1   thorpej 
    773  1.17   hannken 	bp = BUFQ_PEEK(&sc->sc_tab);
    774   1.1   thorpej 	if (bp == NULL) {
    775   1.7   thorpej 		log(LOG_ERR, "%s intr: bp == NULL", sc->sc_dev.dv_xname);
    776   1.1   thorpej 		return;
    777   1.1   thorpej 	}
    778   1.7   thorpej 
    779   1.7   thorpej 	dlog(LOG_DEBUG, "%s intr", sc->sc_dev.dv_xname);
    780   1.7   thorpej 
    781   1.1   thorpej 	/*
    782   1.1   thorpej 	 * Some operation completed.  Read status bytes and report errors.
    783   1.1   thorpej 	 * Clear EOF flags here `cause they're set once on specific conditions
    784   1.1   thorpej 	 * below when a command succeeds.
    785   1.1   thorpej 	 * A DSJ of 2 always means keep waiting.  If the command was READ
    786   1.1   thorpej 	 * (and we're in data DMA phase) stop data transfer first.
    787   1.1   thorpej 	 */
    788   1.1   thorpej 	sc->sc_flags &= ~(MTF_HITEOF | MTF_HITBOF);
    789   1.1   thorpej 	if ((bp->b_flags & (B_CMD|B_READ)) == B_READ &&
    790   1.1   thorpej 	    !(sc->sc_flags & (MTF_IO | MTF_STATTIMEO | MTF_DSJTIMEO))){
    791   1.1   thorpej 		cmdbuf[0] = MTE_STOP;
    792   1.1   thorpej 		(void) hpibsend(sc->sc_hpibno, sc->sc_slave, MTL_ECMD,cmdbuf,1);
    793   1.1   thorpej 	}
    794   1.7   thorpej 	switch (mtreaddsj(sc, 0)) {
    795   1.1   thorpej 	    case 0:
    796   1.1   thorpej 		break;
    797   1.1   thorpej 
    798   1.1   thorpej 	    case 1:
    799   1.1   thorpej 		/*
    800   1.1   thorpej 		 * If we're in the middle of a READ/WRITE and have yet to
    801   1.1   thorpej 		 * start the data transfer, a DSJ of one should terminate it.
    802   1.1   thorpej 		 */
    803   1.1   thorpej 		sc->sc_flags &= ~MTF_IO;
    804   1.1   thorpej 		break;
    805   1.1   thorpej 
    806   1.1   thorpej 	    case 2:
    807   1.1   thorpej 		(void) hpibawait(sc->sc_hpibno);
    808   1.1   thorpej 		return;
    809   1.1   thorpej 
    810   1.1   thorpej 	    case -2:
    811   1.1   thorpej 		/*
    812   1.1   thorpej 		 * -2 means that the drive failed to respond quickly enough
    813   1.1   thorpej 		 * to the request for DSJ.  It's probably just "busy" figuring
    814   1.1   thorpej 		 * it out and will know in a little bit...
    815   1.1   thorpej 		 */
    816  1.13   thorpej 		callout_reset(&sc->sc_intr_ch, hz >> 5, spl_mtintr, sc);
    817   1.1   thorpej 		return;
    818   1.1   thorpej 
    819   1.1   thorpej 	    default:
    820   1.7   thorpej 		log(LOG_ERR, "%s intr: can't get drive stat",
    821   1.7   thorpej 		    sc->sc_dev.dv_xname);
    822   1.1   thorpej 		goto error;
    823   1.1   thorpej 	}
    824   1.1   thorpej 	if (sc->sc_stat1 & (SR1_ERR | SR1_REJECT)) {
    825   1.1   thorpej 		i = sc->sc_stat4 & SR4_ERCLMASK;
    826   1.7   thorpej 		log(LOG_ERR, "%s: %s error, retry %d, SR2/3 %x/%x, code %d",
    827   1.7   thorpej 			sc->sc_dev.dv_xname, i == SR4_DEVICE ? "device" :
    828   1.1   thorpej 			(i == SR4_PROTOCOL ? "protocol" :
    829   1.1   thorpej 			(i == SR4_SELFTEST ? "selftest" : "unknown")),
    830   1.1   thorpej 			sc->sc_stat4 & SR4_RETRYMASK, sc->sc_stat2,
    831   1.1   thorpej 			sc->sc_stat3, sc->sc_stat5);
    832   1.1   thorpej 
    833   1.1   thorpej 		if ((bp->b_flags & B_CMD) && bp->b_cmd == MTRESET)
    834  1.13   thorpej 			callout_stop(&sc->sc_intr_ch);
    835   1.1   thorpej 		if (sc->sc_stat3 & SR3_POWERUP)
    836   1.1   thorpej 			sc->sc_flags &= MTF_OPEN | MTF_EXISTS;
    837   1.1   thorpej 		goto error;
    838   1.1   thorpej 	}
    839   1.1   thorpej 	/*
    840   1.1   thorpej 	 * Report and clear any soft errors.
    841   1.1   thorpej 	 */
    842   1.1   thorpej 	if (sc->sc_stat1 & SR1_SOFTERR) {
    843   1.2   thorpej 		log(LOG_WARNING, "%s: soft error, retry %d\n",
    844   1.7   thorpej 			sc->sc_dev.dv_xname, sc->sc_stat4 & SR4_RETRYMASK);
    845   1.1   thorpej 		sc->sc_stat1 &= ~SR1_SOFTERR;
    846   1.1   thorpej 	}
    847   1.1   thorpej 	/*
    848   1.1   thorpej 	 * We've initiated a read or write, but haven't actually started to
    849   1.1   thorpej 	 * DMA the data yet.  At this point, the drive's ready.
    850   1.1   thorpej 	 */
    851   1.1   thorpej 	if (sc->sc_flags & MTF_IO) {
    852   1.1   thorpej 		sc->sc_flags &= ~MTF_IO;
    853   1.1   thorpej 		if (hpibustart(sc->sc_hpibno))
    854   1.7   thorpej 			mtgo(sc);
    855   1.1   thorpej 		return;
    856   1.1   thorpej 	}
    857   1.1   thorpej 	/*
    858   1.1   thorpej 	 * Check for End Of Tape - we're allowed to hit EOT and then write (or
    859   1.1   thorpej 	 * read) one more record.  If we get here and have not already hit EOT,
    860   1.1   thorpej 	 * return ENOSPC to inform the process that it's hit it.  If we get
    861   1.1   thorpej 	 * here and HAVE already hit EOT, don't allow any more operations that
    862   1.1   thorpej 	 * move the tape forward.
    863   1.1   thorpej 	 */
    864   1.1   thorpej 	if (sc->sc_stat1 & SR1_EOT) {
    865   1.1   thorpej 		if (sc->sc_flags & MTF_ATEOT)
    866   1.1   thorpej 			sc->sc_flags |= MTF_PASTEOT;
    867   1.1   thorpej 		else {
    868   1.1   thorpej 			bp->b_flags |= B_ERROR;
    869   1.1   thorpej 			bp->b_error = ENOSPC;
    870   1.1   thorpej 			sc->sc_flags |= MTF_ATEOT;
    871   1.1   thorpej 		}
    872   1.1   thorpej 	}
    873   1.1   thorpej 	/*
    874   1.1   thorpej 	 * If a motion command was being executed, check for Tape Marks.
    875   1.1   thorpej 	 * If we were doing data, make sure we got the right amount, and
    876   1.1   thorpej 	 * check for hitting tape marks on reads.
    877   1.1   thorpej 	 */
    878   1.1   thorpej 	if (bp->b_flags & B_CMD) {
    879   1.1   thorpej 		if (sc->sc_stat1 & SR1_EOF) {
    880   1.1   thorpej 			if (bp->b_cmd == MTFSR)
    881   1.1   thorpej 				sc->sc_flags |= MTF_HITEOF;
    882   1.1   thorpej 			if (bp->b_cmd == MTBSR)
    883   1.1   thorpej 				sc->sc_flags |= MTF_HITBOF;
    884   1.1   thorpej 		}
    885   1.1   thorpej 		if (bp->b_cmd == MTRESET) {
    886  1.13   thorpej 			callout_stop(&sc->sc_intr_ch);
    887   1.1   thorpej 			sc->sc_flags |= MTF_ALIVE;
    888   1.1   thorpej 		}
    889   1.1   thorpej 	} else {
    890   1.1   thorpej 		i = hpibrecv(sc->sc_hpibno, sc->sc_slave, MTT_BCNT, cmdbuf, 2);
    891   1.1   thorpej 		if (i != 2) {
    892   1.8    scottr 			log(LOG_ERR, "%s intr: can't get xfer length\n",
    893   1.8    scottr 			    sc->sc_dev.dv_xname);
    894   1.1   thorpej 			goto error;
    895   1.1   thorpej 		}
    896   1.1   thorpej 		i = (int) *((u_short *) cmdbuf);
    897   1.1   thorpej 		if (i <= bp->b_bcount) {
    898   1.1   thorpej 			if (i == 0)
    899   1.1   thorpej 				sc->sc_flags |= MTF_HITEOF;
    900   1.1   thorpej 			bp->b_resid = bp->b_bcount - i;
    901  1.26      yamt 			dlog(LOG_DEBUG, "%s intr: bcount %d, resid %d",
    902   1.7   thorpej 			    sc->sc_dev.dv_xname, bp->b_bcount, bp->b_resid);
    903   1.1   thorpej 		} else {
    904   1.1   thorpej 			tprintf(sc->sc_ttyp,
    905  1.26      yamt 				"%s: record (%d) larger than wanted (%d)\n",
    906   1.7   thorpej 				sc->sc_dev.dv_xname, i, bp->b_bcount);
    907   1.1   thorpej     error:
    908   1.1   thorpej 			sc->sc_flags &= ~MTF_IO;
    909   1.1   thorpej 			bp->b_error = EIO;
    910   1.1   thorpej 			bp->b_flags |= B_ERROR;
    911   1.1   thorpej 		}
    912   1.1   thorpej 	}
    913   1.1   thorpej 	/*
    914   1.1   thorpej 	 * The operation is completely done.
    915   1.1   thorpej 	 * Let the drive know with an END command.
    916   1.1   thorpej 	 */
    917   1.1   thorpej 	cmdbuf[0] = MTE_COMPLETE | MTE_IDLE;
    918   1.1   thorpej 	(void) hpibsend(sc->sc_hpibno, sc->sc_slave, MTL_ECMD, cmdbuf, 1);
    919   1.1   thorpej 	bp->b_flags &= ~B_CMD;
    920  1.17   hannken 	(void)BUFQ_GET(&sc->sc_tab);
    921  1.11   thorpej 	biodone(bp);
    922   1.7   thorpej 	hpibfree(sc->sc_dev.dv_parent, &sc->sc_hq);
    923  1.17   hannken 	if (BUFQ_PEEK(&sc->sc_tab) == NULL)
    924  1.11   thorpej 		sc->sc_active = 0;
    925   1.1   thorpej 	else
    926   1.7   thorpej 		mtustart(sc);
    927   1.1   thorpej }
    928   1.1   thorpej 
    929  1.25   thorpej static int
    930  1.25   thorpej mtread(dev_t dev, struct uio *uio, int flags)
    931   1.1   thorpej {
    932   1.7   thorpej 	struct mt_softc *sc = mt_cd.cd_devs[UNIT(dev)];
    933   1.7   thorpej 
    934   1.7   thorpej 	return(physio(mtstrategy, &sc->sc_bufstore,
    935   1.7   thorpej 	    dev, B_READ, minphys, uio));
    936   1.1   thorpej }
    937   1.1   thorpej 
    938  1.25   thorpej static int
    939  1.25   thorpej mtwrite(dev_t dev, struct uio *uio, int flags)
    940   1.1   thorpej {
    941   1.7   thorpej 	struct mt_softc *sc = mt_cd.cd_devs[UNIT(dev)];
    942   1.7   thorpej 
    943   1.7   thorpej 	return(physio(mtstrategy, &sc->sc_bufstore,
    944   1.7   thorpej 	    dev, B_WRITE, minphys, uio));
    945   1.1   thorpej }
    946   1.1   thorpej 
    947  1.25   thorpej static int
    948  1.25   thorpej mtioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
    949   1.1   thorpej {
    950   1.8    scottr 	struct mtop *op;
    951   1.1   thorpej 	int cnt;
    952   1.1   thorpej 
    953   1.1   thorpej 	switch (cmd) {
    954   1.1   thorpej 	    case MTIOCTOP:
    955   1.1   thorpej 		op = (struct mtop *)data;
    956   1.1   thorpej 		switch(op->mt_op) {
    957   1.1   thorpej 		    case MTWEOF:
    958   1.1   thorpej 		    case MTFSF:
    959   1.1   thorpej 		    case MTBSR:
    960   1.1   thorpej 		    case MTBSF:
    961   1.1   thorpej 		    case MTFSR:
    962   1.1   thorpej 			cnt = op->mt_count;
    963   1.1   thorpej 			break;
    964   1.1   thorpej 
    965   1.1   thorpej 		    case MTOFFL:
    966   1.1   thorpej 		    case MTREW:
    967   1.1   thorpej 		    case MTNOP:
    968   1.1   thorpej 			cnt = 0;
    969   1.1   thorpej 			break;
    970   1.1   thorpej 
    971   1.1   thorpej 		    default:
    972   1.1   thorpej 			return (EINVAL);
    973   1.1   thorpej 		}
    974   1.1   thorpej 		return (mtcommand(dev, op->mt_op, cnt));
    975   1.1   thorpej 
    976   1.1   thorpej 	    case MTIOCGET:
    977   1.1   thorpej 		break;
    978   1.1   thorpej 
    979   1.1   thorpej 	    default:
    980   1.1   thorpej 		return (EINVAL);
    981   1.1   thorpej 	}
    982   1.1   thorpej 	return (0);
    983   1.1   thorpej }
    984