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