Home | History | Annotate | Line # | Download | only in qbus
ts.c revision 1.28
      1  1.28      matt /*	$NetBSD: ts.c,v 1.28 2010/12/15 00:08:43 matt Exp $ */
      2   1.1     ragge 
      3   1.1     ragge /*-
      4   1.1     ragge  * Copyright (c) 1991 The Regents of the University of California.
      5   1.1     ragge  * All rights reserved.
      6   1.1     ragge  *
      7   1.1     ragge  * Redistribution and use in source and binary forms, with or without
      8   1.1     ragge  * modification, are permitted provided that the following conditions
      9   1.1     ragge  * are met:
     10   1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     11   1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     12   1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     14   1.1     ragge  *    documentation and/or other materials provided with the distribution.
     15  1.11       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1     ragge  *    may be used to endorse or promote products derived from this software
     17   1.1     ragge  *    without specific prior written permission.
     18   1.1     ragge  *
     19   1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1     ragge  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1     ragge  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1     ragge  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1     ragge  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1     ragge  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1     ragge  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1     ragge  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1     ragge  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1     ragge  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1     ragge  * SUCH DAMAGE.
     30   1.1     ragge  *
     31   1.1     ragge  *	@(#)tmscp.c	7.16 (Berkeley) 5/9/91
     32   1.1     ragge  */
     33   1.1     ragge 
     34   1.1     ragge /*
     35   1.1     ragge  * sccsid = "@(#)tmscp.c	1.24	(ULTRIX)	1/21/86";
     36   1.1     ragge  */
     37   1.1     ragge 
     38   1.1     ragge /************************************************************************
     39   1.1     ragge  *									*
     40   1.1     ragge  *	  Licensed from Digital Equipment Corporation			*
     41   1.1     ragge  *			 Copyright (c)					*
     42   1.1     ragge  *		 Digital Equipment Corporation				*
     43   1.1     ragge  *		     Maynard, Massachusetts				*
     44   1.1     ragge  *			   1985, 1986					*
     45   1.1     ragge  *		      All rights reserved.				*
     46   1.1     ragge  *									*
     47   1.1     ragge  *	  The Information in this software is subject to change		*
     48   1.1     ragge  *   without notice and should not be construed as a commitment		*
     49   1.1     ragge  *   by	 Digital  Equipment  Corporation.   Digital   makes  no		*
     50   1.1     ragge  *   representations about the suitability of this software for		*
     51   1.1     ragge  *   any purpose.  It is supplied "As Is" without expressed  or		*
     52   1.1     ragge  *   implied  warranty.							*
     53   1.1     ragge  *									*
     54   1.1     ragge  *	  If the Regents of the University of California or its		*
     55   1.1     ragge  *   licensees modify the software in a manner creating			*
     56   1.1     ragge  *   derivative copyright rights, appropriate copyright			*
     57   1.1     ragge  *   legends may be placed on  the derivative work in addition		*
     58   1.1     ragge  *   to that set forth above.						*
     59   1.1     ragge  *									*
     60   1.1     ragge  ************************************************************************/
     61   1.1     ragge 
     62   1.1     ragge /*
     63   1.1     ragge  * TSV05/TS05 device driver, written by Bertram Barth.
     64   1.1     ragge  *
     65   1.1     ragge  * should be TS11 compatible (untested)
     66   1.1     ragge  */
     67   1.3     lukem 
     68   1.3     lukem #include <sys/cdefs.h>
     69  1.28      matt __KERNEL_RCSID(0, "$NetBSD: ts.c,v 1.28 2010/12/15 00:08:43 matt Exp $");
     70   1.1     ragge 
     71   1.2     ragge #undef	TSDEBUG
     72   1.1     ragge 
     73   1.1     ragge /*
     74   1.2     ragge  * TODO:
     75   1.1     ragge  *
     76   1.2     ragge  * Keep track of tape position so that lseek et al works.
     77   1.2     ragge  * Use tprintf to inform the user, not the system console.
     78   1.1     ragge  */
     79   1.1     ragge 
     80   1.1     ragge 
     81   1.1     ragge #include <sys/param.h>
     82   1.1     ragge #include <sys/systm.h>
     83   1.1     ragge #include <sys/kernel.h>
     84   1.1     ragge #include <sys/buf.h>
     85  1.12      yamt #include <sys/bufq.h>
     86   1.1     ragge #include <sys/conf.h>
     87  1.28      matt #include <sys/device.h>
     88   1.1     ragge #include <sys/errno.h>
     89   1.1     ragge #include <sys/file.h>
     90   1.1     ragge #include <sys/syslog.h>
     91   1.1     ragge #include <sys/ioctl.h>
     92   1.1     ragge #include <sys/mtio.h>
     93   1.1     ragge #include <sys/uio.h>
     94   1.1     ragge #include <sys/proc.h>
     95   1.1     ragge 
     96  1.21        ad #include <sys/bus.h>
     97   1.1     ragge 
     98   1.1     ragge #include <dev/qbus/ubareg.h>
     99   1.1     ragge #include <dev/qbus/ubavar.h>
    100   1.1     ragge 
    101   1.2     ragge #include <dev/qbus/tsreg.h>
    102   1.1     ragge 
    103   1.2     ragge #include "ioconf.h"
    104   1.1     ragge 
    105  1.24      matt struct ts {
    106  1.24      matt 	struct cmd cmd;	/* command packet */
    107  1.24      matt 	struct chr chr;	/* characteristics packet */
    108  1.24      matt 	struct status status;	/* status packet */
    109   1.2     ragge };
    110   1.1     ragge 
    111   1.1     ragge /*
    112   1.1     ragge  * Software status, per controller.
    113   1.1     ragge  * also status per tape-unit, since only one unit per controller
    114   1.1     ragge  * (thus we have no struct ts_info)
    115   1.1     ragge  */
    116  1.24      matt struct ts_softc {
    117  1.24      matt 	device_t sc_dev;		/* Autoconf ... */
    118  1.24      matt 	struct uba_softc *sc_uh;	/* the parent UBA */
    119  1.24      matt 	struct uba_unit sc_unit;	/* Struct common for UBA to talk */
    120  1.24      matt 	struct evcnt sc_intrcnt;	/* Interrupt counting */
    121  1.24      matt 	struct ubinfo sc_ui;		/* mapping info for struct ts */
    122  1.24      matt 	struct uba_unit sc_uu;		/* Struct for UBA to communicate */
    123   1.2     ragge 	bus_space_tag_t sc_iot;
    124   1.2     ragge 	bus_addr_t sc_ioh;
    125   1.2     ragge 	bus_dma_tag_t sc_dmat;
    126   1.2     ragge 	bus_dmamap_t sc_dmam;
    127   1.2     ragge 	volatile struct ts *sc_vts;	/* Memory address of ts struct */
    128  1.24      matt 	struct ts *sc_bts;		/* Unibus address of ts struct */
    129   1.2     ragge 	int	sc_type;		/* TS11 or TS05? */
    130   1.2     ragge 	short	sc_waddr;		/* Value to write to TSDB */
    131  1.24      matt 	struct bufq_state *sc_bufq;	/* pending I/O requests */
    132   1.2     ragge 
    133   1.1     ragge 	short	sc_mapped;		/* Unibus map allocated ? */
    134   1.1     ragge 	short	sc_state;		/* see below: ST_xxx */
    135   1.1     ragge 	short	sc_rtc;			/* retry count for lcmd */
    136   1.1     ragge 	short	sc_openf;		/* lock against multiple opens */
    137   1.1     ragge 	short	sc_liowf;		/* last operation was write */
    138  1.24      matt 	struct buf ts_cbuf;		/* internal cmd buffer (for ioctls) */
    139   1.1     ragge };
    140   1.1     ragge 
    141   1.2     ragge #define	TS_WCSR(csr, val) \
    142   1.2     ragge 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, csr, val)
    143   1.2     ragge #define TS_RCSR(csr) \
    144   1.2     ragge 	bus_space_read_2(sc->sc_iot, sc->sc_ioh, csr)
    145   1.2     ragge 
    146   1.2     ragge #define LOWORD(x)	((int)(x) & 0xffff)
    147   1.2     ragge #define HIWORD(x)	(((int)(x) >> 16) & 0x3f)
    148   1.2     ragge 
    149   1.2     ragge #define	TYPE_TS11	0
    150   1.2     ragge #define	TYPE_TS05	1
    151   1.2     ragge #define	TYPE_TU80	2
    152   1.2     ragge 
    153   1.2     ragge #define	TS_INVALID	0
    154   1.2     ragge #define	TS_INIT		1
    155   1.2     ragge #define	TS_RUNNING	2
    156   1.2     ragge #define	TS_FASTREPOS	3
    157   1.2     ragge 
    158   1.2     ragge static	void tsintr(void *);
    159   1.2     ragge static	void tsinit(struct ts_softc *);
    160   1.2     ragge static	void tscommand(struct ts_softc *, dev_t, int, int);
    161   1.2     ragge static	int tsstart(struct ts_softc *, int);
    162   1.2     ragge static	void tswchar(struct ts_softc *);
    163  1.24      matt static	bool tsreset(struct ts_softc *);
    164  1.24      matt static	int tsmatch(device_t, cfdata_t, void *);
    165  1.24      matt static	void tsattach(device_t, device_t, void *);
    166   1.2     ragge static	int tsready(struct uba_unit *);
    167   1.2     ragge 
    168  1.24      matt CFATTACH_DECL_NEW(ts, sizeof(struct ts_softc),
    169   1.9   thorpej     tsmatch, tsattach, NULL, NULL);
    170   1.5   gehenna 
    171   1.5   gehenna dev_type_open(tsopen);
    172   1.5   gehenna dev_type_close(tsclose);
    173   1.5   gehenna dev_type_read(tsread);
    174   1.5   gehenna dev_type_write(tswrite);
    175   1.5   gehenna dev_type_ioctl(tsioctl);
    176   1.5   gehenna dev_type_strategy(tsstrategy);
    177   1.5   gehenna dev_type_dump(tsdump);
    178   1.5   gehenna 
    179   1.5   gehenna const struct bdevsw ts_bdevsw = {
    180   1.5   gehenna 	tsopen, tsclose, tsstrategy, tsioctl, tsdump, nosize, D_TAPE
    181   1.5   gehenna };
    182   1.5   gehenna 
    183   1.5   gehenna const struct cdevsw ts_cdevsw = {
    184   1.5   gehenna 	tsopen, tsclose, tsread, tswrite, tsioctl,
    185  1.10  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_TAPE
    186   1.1     ragge };
    187   1.1     ragge 
    188  1.13    simonb /* Bits in minor device */
    189   1.1     ragge #define TS_UNIT(dev)	(minor(dev)&03)
    190   1.1     ragge #define TS_HIDENSITY	010
    191   1.1     ragge 
    192   1.1     ragge #define TS_PRI	LOG_INFO
    193   1.1     ragge 
    194   1.1     ragge 
    195   1.1     ragge /*
    196   1.2     ragge  * Probe for device. If found, try to raise an interrupt.
    197   1.1     ragge  */
    198   1.2     ragge int
    199  1.24      matt tsmatch(device_t parent, cfdata_t match, void *aux)
    200   1.2     ragge {
    201  1.24      matt 	struct device tsdev;
    202   1.2     ragge 	struct ts_softc ssc;
    203   1.2     ragge 	struct ts_softc *sc = &ssc;
    204   1.2     ragge 	struct uba_attach_args *ua = aux;
    205   1.2     ragge 	int i;
    206   1.1     ragge 
    207   1.2     ragge 	sc->sc_iot = ua->ua_iot;
    208   1.2     ragge 	sc->sc_ioh = ua->ua_ioh;
    209   1.2     ragge 	sc->sc_mapped = 0;
    210  1.24      matt 	sc->sc_dev = &tsdev;
    211  1.24      matt 	sc->sc_uh = device_private(parent);
    212  1.25    cegger 	strcpy(sc->sc_dev->dv_xname, "ts");
    213   1.1     ragge 
    214   1.2     ragge 	/* Try to reset the device */
    215  1.24      matt 	for (i = 0; i < 3; i++) {
    216  1.24      matt 		if (tsreset(sc))
    217   1.2     ragge 			break;
    218  1.24      matt 	}
    219   1.2     ragge 
    220   1.2     ragge 	if (i == 3)
    221   1.2     ragge 		return 0;
    222   1.1     ragge 
    223   1.2     ragge 	tsinit(sc);
    224   1.2     ragge 	tswchar(sc);		/* write charact. to enable interrupts */
    225   1.2     ragge 				/* completion of this will raise the intr. */
    226   1.1     ragge 
    227   1.2     ragge 	DELAY(1000000);		/* Wait for interrupt */
    228  1.24      matt 	ubmemfree(sc->sc_uh, &sc->sc_ui);
    229   1.2     ragge 	return 1;
    230   1.1     ragge }
    231   1.1     ragge 
    232   1.1     ragge /*
    233   1.1     ragge  */
    234   1.2     ragge void
    235  1.24      matt tsattach(device_t parent, device_t self, void *aux)
    236   1.1     ragge {
    237  1.17   thorpej 	struct ts_softc *sc = device_private(self);
    238   1.2     ragge 	struct uba_attach_args *ua = aux;
    239   1.2     ragge 	int error;
    240  1.24      matt 	const char *t;
    241   1.2     ragge 
    242  1.24      matt 	sc->sc_dev = self;
    243  1.24      matt 	sc->sc_uh = device_private(parent);
    244   1.2     ragge 	sc->sc_iot = ua->ua_iot;
    245   1.2     ragge 	sc->sc_ioh = ua->ua_ioh;
    246   1.2     ragge 	sc->sc_dmat = ua->ua_dmat;
    247  1.13    simonb 
    248  1.24      matt 	sc->sc_uu.uu_dev = self;
    249   1.2     ragge 	sc->sc_uu.uu_ready = tsready;
    250   1.1     ragge 
    251   1.2     ragge 	tsinit(sc);	/* reset and map */
    252   1.1     ragge 
    253  1.24      matt 	error = bus_dmamap_create(sc->sc_dmat, (64*1024), 16, (64*1024),
    254  1.24      matt 	    0, BUS_DMA_NOWAIT, &sc->sc_dmam);
    255  1.24      matt 	if (error) {
    256  1.24      matt 		aprint_error(": failed create DMA map %d\n", error);
    257  1.24      matt 		return;
    258  1.24      matt 	}
    259   1.1     ragge 
    260  1.14      yamt 	bufq_alloc(&sc->sc_bufq, "fcfs", 0);
    261   1.1     ragge 
    262   1.1     ragge 	/*
    263   1.2     ragge 	 * write the characteristics (again)
    264   1.1     ragge 	 */
    265   1.2     ragge 	sc->sc_state = TS_INIT;		/* tsintr() checks this ... */
    266   1.2     ragge 	tswchar(sc);
    267  1.24      matt 	if (tsleep(sc, PRIBIO, "tsattach", 100)) {
    268  1.24      matt 		aprint_error(": failed SET CHARACTERISTICS\n");
    269  1.24      matt 		return;
    270  1.24      matt 	}
    271   1.2     ragge 
    272   1.2     ragge 	sc->sc_state = TS_RUNNING;
    273  1.24      matt 	if (sc->sc_uh->uh_type == UBA_UBA) {
    274   1.2     ragge 		if (sc->sc_vts->status.xst2 & TS_SF_TU80) {
    275   1.2     ragge 			sc->sc_type = TYPE_TU80;
    276   1.2     ragge 			t = "TU80";
    277   1.2     ragge 		} else {
    278   1.2     ragge 			sc->sc_type = TYPE_TS11;
    279   1.2     ragge 			t = "TS11";
    280   1.1     ragge 		}
    281   1.2     ragge 	} else {
    282   1.2     ragge 		sc->sc_type = TYPE_TS05;
    283   1.2     ragge 		t = "TS05";
    284   1.1     ragge 	}
    285   1.1     ragge 
    286  1.24      matt 	aprint_normal(": %s\n", t);
    287  1.24      matt 	aprint_normal_dev(sc->sc_dev,
    288  1.24      matt 	    "rev %d, extended features %s, transport %s\n",
    289  1.24      matt 	    (sc->sc_vts->status.xst2 & TS_SF_MCRL) >> 2,
    290  1.24      matt 	    (sc->sc_vts->status.xst2 & TS_SF_EFES ? "enabled" : "disabled"),
    291  1.24      matt 	    (TS_RCSR(TSSR) & TS_OFL ? "offline" : "online"));
    292   1.2     ragge 
    293   1.2     ragge 	uba_intr_establish(ua->ua_icookie, ua->ua_cvec, tsintr,
    294   1.2     ragge 	    sc, &sc->sc_intrcnt);
    295   1.2     ragge 	evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, ua->ua_evcnt,
    296  1.24      matt 	    device_xname(sc->sc_dev), "intr");
    297   1.2     ragge }
    298   1.2     ragge 
    299   1.2     ragge /*
    300   1.2     ragge  * Initialize a TS device. Set up UBA mapping registers,
    301   1.2     ragge  * initialize data structures, what else ???
    302   1.2     ragge  */
    303  1.13    simonb void
    304   1.2     ragge tsinit(struct ts_softc *sc)
    305   1.2     ragge {
    306   1.2     ragge 	if (sc->sc_mapped == 0) {
    307   1.2     ragge 
    308   1.2     ragge 		/*
    309   1.2     ragge 		 * Map the communications area and command and message
    310   1.2     ragge 		 * buffer into Unibus address space.
    311   1.2     ragge 		 */
    312   1.2     ragge 		sc->sc_ui.ui_size = sizeof(struct ts);
    313  1.24      matt 		if (ubmemalloc(sc->sc_uh, &sc->sc_ui, UBA_CANTWAIT))
    314   1.2     ragge 			return;
    315   1.2     ragge 		sc->sc_vts = (void *)sc->sc_ui.ui_vaddr;
    316   1.2     ragge 		sc->sc_bts = (void *)sc->sc_ui.ui_baddr;
    317   1.2     ragge 		sc->sc_waddr = sc->sc_ui.ui_baddr |
    318   1.2     ragge 		    ((sc->sc_ui.ui_baddr >> 16) & 3);
    319   1.2     ragge 		sc->sc_mapped = 1;
    320   1.2     ragge 	}
    321   1.2     ragge 	tsreset(sc);
    322   1.1     ragge }
    323   1.1     ragge 
    324  1.13    simonb /*
    325   1.1     ragge  * Execute a (ioctl) command on the tape drive a specified number of times.
    326   1.1     ragge  * This routine sets up a buffer and calls the strategy routine which
    327   1.1     ragge  * issues the command to the controller.
    328   1.1     ragge  */
    329   1.1     ragge void
    330   1.2     ragge tscommand(struct ts_softc *sc, dev_t dev, int cmd, int count)
    331   1.1     ragge {
    332   1.2     ragge 	struct buf *bp;
    333   1.1     ragge 
    334   1.2     ragge #ifdef TSDEBUG
    335   1.2     ragge 	printf("tscommand (%x, %d)\n", cmd, count);
    336   1.2     ragge #endif
    337   1.2     ragge 
    338   1.2     ragge 	bp = &sc->ts_cbuf;
    339   1.1     ragge 
    340  1.22        ad 	mutex_enter(&bufcache_lock);
    341  1.22        ad 	while (bp->b_cflags & BC_BUSY) {
    342   1.1     ragge 		/*
    343  1.22        ad 		 * This special check is because BC_BUSY never
    344   1.1     ragge 		 * gets cleared in the non-waiting rewind case. ???
    345   1.1     ragge 		 */
    346  1.22        ad 		if (bp->b_bcount == 0 && (bp->b_oflags & BO_DONE))
    347   1.1     ragge 			break;
    348  1.23        ad 		if (bbusy(bp, false, 0, NULL) == 0)
    349  1.23        ad 			break;
    350   1.1     ragge 		/* check MOT-flag !!! */
    351   1.1     ragge 	}
    352  1.22        ad 	bp->b_flags = B_READ;
    353  1.22        ad 	mutex_exit(&bufcache_lock);
    354   1.1     ragge 
    355   1.1     ragge 	/*
    356   1.1     ragge 	 * Load the buffer.  The b_count field gets used to hold the command
    357   1.1     ragge 	 * count.  the b_resid field gets used to hold the command mneumonic.
    358   1.1     ragge 	 * These 2 fields are "known" to be "safe" to use for this purpose.
    359   1.1     ragge 	 * (Most other drivers also use these fields in this way.)
    360   1.1     ragge 	 */
    361   1.1     ragge 	bp->b_dev = dev;
    362   1.1     ragge 	bp->b_bcount = count;
    363   1.1     ragge 	bp->b_resid = cmd;
    364   1.1     ragge 	bp->b_blkno = 0;
    365  1.22        ad 	bp->b_oflags = 0;
    366  1.22        ad 	bp->b_objlock = &buffer_lock;
    367   1.2     ragge 	tsstrategy(bp);
    368   1.1     ragge 	/*
    369   1.1     ragge 	 * In case of rewind from close, don't wait.
    370   1.1     ragge 	 * This is the only case where count can be 0.
    371   1.1     ragge 	 */
    372   1.2     ragge 	if (count == 0)
    373   1.1     ragge 		return;
    374   1.2     ragge 	biowait(bp);
    375  1.22        ad 	mutex_enter(&bufcache_lock);
    376  1.22        ad 	cv_broadcast(&bp->b_busy);
    377  1.22        ad 	bp->b_cflags = 0;
    378  1.22        ad 	mutex_exit(&bufcache_lock);
    379   1.1     ragge }
    380   1.1     ragge 
    381   1.1     ragge /*
    382   1.1     ragge  * Start an I/O operation on TS05 controller
    383   1.1     ragge  */
    384   1.1     ragge int
    385   1.2     ragge tsstart(struct ts_softc *sc, int isloaded)
    386   1.1     ragge {
    387   1.2     ragge 	struct buf *bp;
    388   1.1     ragge 	int cmd;
    389   1.1     ragge 
    390  1.27      yamt 	bp = bufq_peek(sc->sc_bufq);
    391  1.14      yamt 	if (bp == NULL) {
    392   1.2     ragge 		return 0;
    393  1.14      yamt 	}
    394   1.2     ragge #ifdef TSDEBUG
    395   1.2     ragge 	printf("buf: %p bcount %ld blkno %d\n", bp, bp->b_bcount, bp->b_blkno);
    396   1.2     ragge #endif
    397   1.1     ragge 	/*
    398   1.1     ragge 	 * Check if command is an ioctl or not (ie. read or write).
    399   1.1     ragge 	 * If it's an ioctl then just set the flags for later use;
    400   1.1     ragge 	 * For other commands attempt to setup a buffer pointer.
    401   1.1     ragge 	 */
    402   1.2     ragge 	if (bp == &sc->ts_cbuf) {
    403   1.1     ragge 		switch ((int)bp->b_resid) {
    404   1.1     ragge 		case MTWEOF:
    405   1.1     ragge 			cmd = TS_CMD_WTM;
    406   1.1     ragge 			break;
    407   1.1     ragge 		case MTFSF:
    408   1.1     ragge 			cmd = TS_CMD_STMF;
    409   1.2     ragge 			sc->sc_vts->cmd.cw1 = bp->b_bcount;
    410   1.1     ragge 			break;
    411   1.1     ragge 		case MTBSF:
    412  1.13    simonb 			cmd = TS_CMD_STMR;
    413   1.2     ragge 			sc->sc_vts->cmd.cw1 = bp->b_bcount;
    414   1.1     ragge 			break;
    415   1.1     ragge 		case MTFSR:
    416   1.1     ragge 			cmd = TS_CMD_SRF;
    417   1.2     ragge 			sc->sc_vts->cmd.cw1 = bp->b_bcount;
    418   1.1     ragge 			break;
    419   1.1     ragge 		case MTBSR:
    420   1.1     ragge 			cmd = TS_CMD_SRR;
    421   1.2     ragge 			sc->sc_vts->cmd.cw1 = bp->b_bcount;
    422   1.1     ragge 			break;
    423   1.1     ragge 		case MTREW:
    424   1.1     ragge 			cmd = TS_CMD_RWND;
    425   1.1     ragge 			break;
    426   1.1     ragge 		case MTOFFL:
    427   1.1     ragge 			cmd = TS_CMD_RWUL;
    428   1.1     ragge 			break;
    429   1.1     ragge 		case MTNOP:
    430   1.1     ragge 			cmd = TS_CMD_STAT;
    431   1.1     ragge 			break;
    432   1.1     ragge 		default:
    433  1.24      matt 			aprint_error_dev(sc->sc_dev, "bad ioctl %d\n",
    434   1.1     ragge 				(int)bp->b_resid);
    435   1.1     ragge 			/* Need a no-op. get status */
    436   1.1     ragge 			cmd = TS_CMD_STAT;
    437   1.1     ragge 		} /* end switch (bp->b_resid) */
    438   1.2     ragge 	} else {
    439   1.2     ragge 		if (isloaded == 0) {
    440   1.2     ragge 			/*
    441   1.2     ragge 			 * now we try to map the buffer into uba map space (???)
    442   1.2     ragge 			 */
    443   1.2     ragge 			if (bus_dmamap_load(sc->sc_dmat, sc->sc_dmam,
    444   1.2     ragge 			    bp->b_data,
    445   1.2     ragge 			    bp->b_bcount, bp->b_proc, BUS_DMA_NOWAIT)) {
    446   1.2     ragge 				uba_enqueue(&sc->sc_uu);
    447   1.2     ragge 				return 0;
    448   1.2     ragge 			}
    449   1.2     ragge 			sc->sc_rtc = 0;
    450   1.2     ragge 		}
    451   1.2     ragge 		sc->sc_vts->cmd.cw1 = LOWORD(sc->sc_dmam->dm_segs[0].ds_addr);
    452   1.2     ragge 		sc->sc_vts->cmd.cw2 = HIWORD(sc->sc_dmam->dm_segs[0].ds_addr);
    453   1.2     ragge 		sc->sc_vts->cmd.cw3 = bp->b_bcount;
    454   1.2     ragge 		bp->b_error = 0; /* Used for error count */
    455   1.2     ragge #ifdef TSDEBUG
    456   1.2     ragge 		printf("tsstart-1: err %d\n", bp->b_error);
    457   1.2     ragge #endif
    458   1.2     ragge 		if (bp->b_flags & B_READ)
    459   1.1     ragge 			cmd = TS_CMD_RNF;
    460   1.2     ragge 		else
    461   1.1     ragge 			cmd = TS_CMD_WD;
    462   1.1     ragge 	}
    463   1.1     ragge 
    464   1.1     ragge 	/*
    465   1.1     ragge 	 * Now that the command-buffer is setup, give it to the controller
    466   1.1     ragge 	 */
    467   1.2     ragge 	sc->sc_vts->cmd.cmdr = TS_CF_ACK | TS_CF_IE | cmd;
    468   1.2     ragge #ifdef TSDEBUG
    469   1.2     ragge 	printf("tsstart: sending cmdr %x\n", sc->sc_vts->cmd.cmdr);
    470   1.2     ragge #endif
    471   1.2     ragge 	TS_WCSR(TSDB, sc->sc_waddr);
    472  1.24      matt 	return 1;
    473   1.1     ragge }
    474   1.1     ragge 
    475   1.1     ragge /*
    476   1.2     ragge  * Called when there are free uba resources.
    477   1.1     ragge  */
    478   1.2     ragge int
    479   1.2     ragge tsready(struct uba_unit *uu)
    480   1.1     ragge {
    481  1.24      matt 	struct ts_softc *sc = device_private(uu->uu_dev);
    482  1.27      yamt 	struct buf *bp = bufq_peek(sc->sc_bufq);
    483   1.1     ragge 
    484   1.2     ragge 	if (bus_dmamap_load(sc->sc_dmat, sc->sc_dmam, bp->b_data,
    485   1.2     ragge 	    bp->b_bcount, bp->b_proc, BUS_DMA_NOWAIT))
    486   1.2     ragge 		return 0;
    487   1.1     ragge 
    488   1.2     ragge 	tsstart(sc, 1);
    489   1.2     ragge 	return 1;
    490   1.1     ragge }
    491   1.1     ragge 
    492   1.1     ragge /*
    493   1.2     ragge  * initialize the controller by sending WRITE CHARACTERISTICS command.
    494   1.2     ragge  * contents of command- and message-buffer are assembled during this
    495  1.13    simonb  * function.
    496   1.1     ragge  */
    497  1.13    simonb void
    498   1.2     ragge tswchar(struct ts_softc *sc)
    499   1.1     ragge {
    500   1.1     ragge 	/*
    501   1.2     ragge 	 * assemble and send "WRITE CHARACTERISTICS" command
    502   1.1     ragge 	 */
    503   1.1     ragge 
    504   1.2     ragge 	sc->sc_vts->cmd.cmdr = TS_CF_ACK | TS_CF_IE | TS_CMD_WCHAR;
    505   1.2     ragge 	sc->sc_vts->cmd.cw1  = LOWORD(&sc->sc_bts->chr);
    506   1.2     ragge 	sc->sc_vts->cmd.cw2  = HIWORD(&sc->sc_bts->chr);
    507   1.2     ragge 	sc->sc_vts->cmd.cw3  = 010;		   /* size of charact.-data */
    508   1.2     ragge 
    509   1.2     ragge 	sc->sc_vts->chr.sadrl = LOWORD(&sc->sc_bts->status);
    510   1.2     ragge 	sc->sc_vts->chr.sadrh = HIWORD(&sc->sc_bts->status);
    511   1.2     ragge 	sc->sc_vts->chr.onesix = (sc->sc_type == TYPE_TS05 ? 020 : 016);
    512   1.2     ragge 	sc->sc_vts->chr.chrw = TS_WC_ESS;
    513   1.2     ragge 	sc->sc_vts->chr.xchrw = TS_WCX_HSP|TS_WCX_RBUF|TS_WCX_WBUF;
    514   1.2     ragge 
    515   1.2     ragge 	TS_WCSR(TSDB, sc->sc_waddr);
    516   1.1     ragge }
    517   1.1     ragge 
    518   1.1     ragge /*
    519   1.2     ragge  * Reset the TS11. Return 1 if failed, 0 if succeeded.
    520   1.1     ragge  */
    521  1.24      matt bool
    522   1.2     ragge tsreset(struct ts_softc *sc)
    523   1.1     ragge {
    524   1.2     ragge 	int timeout;
    525   1.1     ragge 
    526   1.1     ragge 	/*
    527   1.2     ragge 	 * reset ctlr by writing into TSSR, then write characteristics
    528   1.1     ragge 	 */
    529  1.13    simonb 	timeout = 0;		/* timeout in 10 seconds */
    530   1.2     ragge 	TS_WCSR(TSSR, 0);	/* start initialization */
    531   1.2     ragge 	while ((TS_RCSR(TSSR) & TS_SSR) == 0) {
    532   1.1     ragge 		DELAY(10000);
    533   1.2     ragge 		if (timeout++ > 1000)
    534  1.24      matt 			return false;
    535   1.2     ragge 	}
    536  1.24      matt 	return true;
    537   1.1     ragge }
    538   1.1     ragge 
    539   1.2     ragge static void
    540   1.2     ragge prtstat(struct ts_softc *sc, int sr)
    541   1.1     ragge {
    542   1.2     ragge 	char buf[100];
    543   1.1     ragge 
    544  1.26  christos 	snprintb(buf, sizeof(buf), TS_TSSR_BITS, sr);
    545  1.24      matt 	aprint_normal_dev(sc->sc_dev, "TSSR=%s\n", buf);
    546  1.26  christos 	snprintb(buf, sizeof(buf), TS_XST0_BITS, sc->sc_vts->status.xst0);
    547  1.24      matt 	aprint_normal_dev(sc->sc_dev, "XST0=%s\n", buf);
    548   1.1     ragge }
    549   1.1     ragge 
    550   1.1     ragge /*
    551   1.1     ragge  * TSV05/TS05 interrupt routine
    552   1.1     ragge  */
    553   1.2     ragge static void
    554   1.2     ragge tsintr(void *arg)
    555   1.1     ragge {
    556   1.2     ragge 	struct ts_softc *sc = arg;
    557   1.2     ragge 	struct buf *bp;
    558   1.1     ragge 
    559   1.2     ragge 	unsigned short sr = TS_RCSR(TSSR);	/* save TSSR */
    560   1.2     ragge 	unsigned short mh = sc->sc_vts->status.hdr;	/* and msg-header */
    561   1.1     ragge 		/* clear the message header ??? */
    562   1.1     ragge 
    563   1.2     ragge 	short ccode = sc->sc_vts->cmd.cmdr & TS_CF_CCODE;
    564   1.1     ragge 
    565  1.27      yamt 	bp = bufq_peek(sc->sc_bufq);
    566   1.2     ragge #ifdef TSDEBUG
    567   1.1     ragge 	{
    568   1.2     ragge 		char buf[100];
    569  1.26  christos 		snprintb(buf, sizeof(buf), TS_TSSR_BITS, sr);
    570   1.2     ragge 		printf("tsintr: sr %x mh %x\n", sr, mh);
    571   1.2     ragge 		printf("srbits: %s\n", buf);
    572   1.1     ragge 	}
    573   1.1     ragge #endif
    574   1.1     ragge 	/*
    575   1.1     ragge 	 * There are two different things which can (and should) be checked:
    576   1.1     ragge 	 * the actual (internal) state and the device's result (tssr/msg.hdr)
    577  1.13    simonb 	 *
    578   1.1     ragge 	 * For each state there's only one "normal" interrupt. Anything else
    579   1.1     ragge 	 * has to be checked more intensively. Thus in a first run according
    580   1.1     ragge 	 * to the internal state the expected interrupt is checked/handled.
    581   1.1     ragge 	 *
    582   1.1     ragge 	 * In a second run the remaining (not yet handled) interrupts are
    583   1.1     ragge 	 * checked according to the drive's result.
    584   1.1     ragge 	 */
    585   1.1     ragge 	switch (sc->sc_state) {
    586   1.1     ragge 
    587   1.2     ragge 	case TS_INVALID:
    588   1.1     ragge 		/*
    589   1.1     ragge 		 * Ignore unsolicited interrupts.
    590   1.1     ragge 		 */
    591  1.13    simonb 		log(LOG_WARNING, "%s: stray intr [%x,%x]\n",
    592  1.24      matt 			device_xname(sc->sc_dev), sr, mh);
    593   1.1     ragge 		return;
    594   1.1     ragge 
    595   1.2     ragge 	case TS_INIT:
    596   1.1     ragge 		/*
    597   1.2     ragge 		 * Init phase ready.
    598   1.1     ragge 		 */
    599   1.2     ragge 		wakeup(sc);
    600   1.1     ragge 		return;
    601   1.1     ragge 
    602   1.2     ragge 	case TS_RUNNING:
    603   1.2     ragge 	case TS_FASTREPOS:
    604   1.1     ragge 		/*
    605   1.1     ragge 		 * Here we expect interrupts indicating the end of
    606   1.1     ragge 		 * commands or indicating problems.
    607   1.1     ragge 		 */
    608   1.1     ragge 		/*
    609   1.1     ragge 		 * Anything else is handled outside this switch ...
    610   1.1     ragge 		 */
    611   1.1     ragge 		break;
    612   1.1     ragge 
    613   1.1     ragge 	default:
    614  1.24      matt 		aprint_error_dev(sc->sc_dev,
    615  1.24      matt 		    "unexpected interrupt during state %d [%x,%x]\n",
    616  1.24      matt 		    sc->sc_state, sr, mh);
    617   1.1     ragge 		return;
    618   1.1     ragge 	}
    619   1.1     ragge 
    620   1.1     ragge 	/*
    621   1.1     ragge 	 * now we check the termination class.
    622   1.1     ragge 	 */
    623   1.1     ragge 	switch (sr & TS_TC) {
    624   1.1     ragge 
    625   1.1     ragge 	case TS_TC_NORM:
    626   1.1     ragge 		/*
    627   1.1     ragge 		 * Normal termination -- The operation is completed
    628   1.1     ragge 		 * witout incident.
    629   1.1     ragge 		 */
    630   1.2     ragge 		if (sc->sc_state == TS_FASTREPOS) {
    631   1.2     ragge #ifdef TSDEBUG
    632   1.2     ragge 			printf("Fast repos interrupt\n");
    633   1.2     ragge #endif
    634   1.2     ragge 			/* Fast repos succeeded, start normal data xfer */
    635   1.2     ragge 			sc->sc_state = TS_RUNNING;
    636   1.2     ragge 			tsstart(sc, 1);
    637   1.2     ragge 			return;
    638   1.2     ragge 		}
    639   1.1     ragge 		sc->sc_liowf = (ccode == TS_CC_WRITE);
    640   1.2     ragge 		break;
    641   1.1     ragge 
    642   1.1     ragge 	case TS_TC_ATTN:
    643   1.1     ragge 		/*
    644   1.1     ragge 		 * Attention condition -- this code indicates that the
    645   1.1     ragge 		 * drive has undergone a status change, such as going
    646   1.1     ragge 		 * off-line or coming on-line.
    647   1.1     ragge 		 * (Without EAI enabled, no Attention interrupts occur.
    648   1.1     ragge 		 * drive status changes are signaled by the VCK flag.)
    649   1.1     ragge 		 */
    650   1.1     ragge 		return;
    651   1.1     ragge 
    652   1.1     ragge 	case TS_TC_TSA:
    653  1.13    simonb 		/*
    654   1.1     ragge 		 * Tape Status Alert -- A status condition is encountered
    655   1.1     ragge 		 * that may have significance to the program. Bits of
    656   1.1     ragge 		 * interest in the extended status registers include
    657   1.1     ragge 		 * TMK, EOT and RLL.
    658   1.1     ragge 		 */
    659   1.2     ragge #ifdef TSDEBUG
    660   1.2     ragge 		{
    661   1.2     ragge 			char buf[100];
    662  1.26  christos 			snprintb(buf, sizeof(buf),
    663  1.26  christos 			    TS_XST0_BITS, sc->sc_vts->status.xst0);
    664   1.2     ragge 			printf("TSA: sr %x bits %s\n",
    665   1.2     ragge 			    sc->sc_vts->status.xst0, buf);
    666   1.2     ragge 		}
    667   1.2     ragge #endif
    668   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_TMK) {
    669  1.24      matt #ifdef TSDEBUG
    670  1.24      matt 			printf(("Tape Mark detected"));
    671  1.24      matt #endif
    672   1.2     ragge 			/* Read to end-of-file. No error. */
    673   1.2     ragge 			break;
    674   1.2     ragge 		}
    675   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_EOT) {
    676   1.2     ragge 			/* End of tape. Bad. */
    677   1.2     ragge #ifdef TSDEBUG
    678   1.2     ragge 			printf("TS_TC_TSA: EOT\n");
    679   1.2     ragge #endif
    680  1.24      matt 			if (bp != NULL)
    681  1.24      matt 				bp->b_error = EIO;
    682   1.2     ragge 			break;
    683   1.2     ragge 		}
    684   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_RLS)
    685   1.2     ragge 			break;
    686   1.2     ragge #ifndef TSDEBUG
    687   1.2     ragge 		{
    688   1.2     ragge 			char buf[100];
    689  1.26  christos 			snprintb(buf, sizeof(buf),
    690  1.26  christos 			    TS_XST0_BITS, sc->sc_vts->status.xst0);
    691   1.2     ragge 			printf("TSA: sr %x bits %s\n",
    692   1.2     ragge 			    sc->sc_vts->status.xst0, buf);
    693   1.1     ragge 		}
    694   1.2     ragge #endif
    695   1.1     ragge 		break;
    696   1.1     ragge 
    697  1.13    simonb 	case TS_TC_FR:
    698   1.1     ragge 		/*
    699   1.1     ragge 		 * Function Reject -- The specified function was not
    700   1.1     ragge 		 * initiated. Bits of interest include OFL, VCK, BOT,
    701   1.1     ragge 		 * WLE, ILC and ILA.
    702   1.1     ragge 		 */
    703   1.2     ragge 		if (sr & TS_OFL)
    704   1.2     ragge 			printf("tape is off-line.\n");
    705   1.2     ragge #ifdef TSDEBUG
    706   1.2     ragge 		{
    707   1.2     ragge 			char buf[100];
    708  1.26  christos 			snprintb(buf, sizeof(buf),
    709  1.26  christos 			    TS_XST0_BITS, sc->sc_vts->status.xst0);
    710   1.2     ragge 			printf("FR: sr %x bits %s\n",
    711   1.2     ragge 			    sc->sc_vts->status.xst0, buf);
    712   1.2     ragge 		}
    713   1.2     ragge #endif
    714   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_VCK)
    715   1.2     ragge 			printf("Volume check\n");
    716   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_BOT)
    717   1.2     ragge 			printf("Start of tape.\n");
    718   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_WLE)
    719   1.2     ragge 			printf("Write Lock Error\n");
    720   1.2     ragge 		if (sc->sc_vts->status.xst0 & TS_SF_EOT)
    721   1.2     ragge 			printf("End of tape.\n");
    722   1.1     ragge 		break;
    723   1.1     ragge 
    724   1.1     ragge 	case TS_TC_TPD:
    725   1.1     ragge 		/*
    726   1.1     ragge 		 * Recoverable Error -- Tape position is a record beyond
    727   1.1     ragge 		 * what its position was when the function was initiated.
    728   1.1     ragge 		 * Suggested recovery procedure is to log the error and
    729   1.1     ragge 		 * issue the appropriate retry command.
    730   1.2     ragge 		 *
    731   1.2     ragge 		 * Do a fast repositioning one record back.
    732   1.1     ragge 		 */
    733   1.2     ragge 		sc->sc_state = TS_FASTREPOS;
    734   1.2     ragge #ifdef TSDEBUG
    735   1.2     ragge 		printf("TS_TC_TPD: errcnt %d\n", sc->sc_rtc);
    736   1.2     ragge #endif
    737   1.2     ragge 		if (sc->sc_rtc++ == 8) {
    738  1.24      matt 			aprint_error_dev(sc->sc_dev, "failed 8 retries\n");
    739   1.2     ragge 			prtstat(sc, sr);
    740  1.24      matt 			if (bp != NULL)
    741  1.24      matt 				bp->b_error = EIO;
    742   1.2     ragge 			break;
    743   1.1     ragge 		}
    744   1.2     ragge 		sc->sc_vts->cmd.cmdr = TS_CF_ACK | TS_CF_IE | TS_CMD_SRR;
    745   1.2     ragge 		sc->sc_vts->cmd.cw1 = 1;
    746   1.2     ragge 		TS_WCSR(TSDB, sc->sc_waddr);
    747   1.2     ragge 		return;
    748   1.2     ragge 
    749   1.1     ragge 	case TS_TC_TNM:
    750   1.1     ragge 		/*
    751   1.1     ragge 		 * Recoverable Error -- Tape position has not changed.
    752   1.1     ragge 		 * Suggested recovery procedure is to log the error and
    753   1.1     ragge 		 * reissue the original command.
    754   1.1     ragge 		 */
    755   1.2     ragge 		if (sc->sc_rtc++ == 8) {
    756  1.24      matt 			aprint_error_dev(sc->sc_dev, "failed 8 retries\n");
    757   1.2     ragge 			prtstat(sc, sr);
    758  1.24      matt 			if (bp != NULL)
    759  1.24      matt 				bp->b_error = EIO;
    760   1.2     ragge 			break;
    761   1.1     ragge 		}
    762   1.2     ragge 		tsstart(sc, 1);
    763   1.2     ragge 		return;
    764   1.1     ragge 
    765   1.1     ragge 	case TS_TC_TPL:
    766   1.1     ragge 		/*
    767   1.1     ragge 		 * Unrecoverable Error -- Tape position has been lost.
    768   1.1     ragge 		 * No valid recovery procedures exist unless the tape
    769   1.1     ragge 		 * has labels or sequence numbers.
    770   1.1     ragge 		 */
    771  1.24      matt 		aprint_error_dev(sc->sc_dev, "tape position lost\n");
    772  1.24      matt 		if (bp != NULL)
    773  1.24      matt 			bp->b_error = EIO;
    774   1.1     ragge 		break;
    775   1.1     ragge 
    776   1.1     ragge 	case TS_TC_FCE:
    777   1.1     ragge 		/*
    778   1.1     ragge 		 * Fatal subsytem Error -- The subsytem is incapable
    779   1.1     ragge 		 * of properly performing commands, or at least its
    780  1.13    simonb 		 * integrity is seriously questionable. Refer to the
    781   1.1     ragge 		 * fatal class code field in the TSSR register for
    782   1.1     ragge 		 * additional information on the type of fatal error.
    783   1.1     ragge 		 */
    784  1.24      matt 		aprint_error_dev(sc->sc_dev, "fatal controller error\n");
    785   1.2     ragge 		prtstat(sc, sr);
    786   1.2     ragge 		break;
    787   1.1     ragge 
    788   1.1     ragge 	default:
    789  1.24      matt 		aprint_error_dev(sc->sc_dev,
    790  1.24      matt 		    "error 0x%x, resetting controller\n", sr & TS_TC);
    791   1.2     ragge 		tsreset(sc);
    792   1.1     ragge 	}
    793  1.27      yamt 	if ((bp = bufq_get(sc->sc_bufq)) != NULL) {
    794   1.2     ragge #ifdef TSDEBUG
    795  1.27      yamt 		printf("tsintr2: que %p\n", bufq_peek(sc->sc_bufq));
    796   1.2     ragge #endif
    797   1.2     ragge 		if (bp != &sc->ts_cbuf) {	/* no ioctl */
    798   1.2     ragge 			bus_dmamap_unload(sc->sc_dmat, sc->sc_dmam);
    799  1.24      matt 			uba_done(sc->sc_uh);
    800   1.2     ragge 		}
    801   1.2     ragge 		bp->b_resid = sc->sc_vts->status.rbpcr;
    802   1.1     ragge 		biodone (bp);
    803   1.1     ragge 	}
    804   1.2     ragge 	tsstart(sc, 0);
    805   1.1     ragge }
    806   1.1     ragge 
    807   1.1     ragge 
    808   1.1     ragge /*
    809   1.1     ragge  * Open a ts device and set the unit online.  If the controller is not
    810   1.1     ragge  * in the run state, call init to initialize the ts controller first.
    811   1.1     ragge  */
    812   1.1     ragge int
    813  1.24      matt tsopen(dev_t dev, int flag, int type, struct lwp *l)
    814   1.1     ragge {
    815  1.24      matt 	struct ts_softc *sc = device_lookup_private(&ts_cd, TS_UNIT(dev));
    816   1.1     ragge 
    817  1.24      matt 	if (sc == NULL)
    818   1.1     ragge 		return ENXIO;
    819   1.1     ragge 
    820   1.2     ragge 	if (sc->sc_state < TS_RUNNING)
    821   1.2     ragge 		return ENXIO;
    822   1.2     ragge 
    823   1.1     ragge 	if (sc->sc_openf)
    824   1.1     ragge 		return EBUSY;
    825   1.1     ragge 	sc->sc_openf = 1;
    826   1.1     ragge 
    827   1.1     ragge 	/*
    828   1.1     ragge 	 * check if transport is really online.
    829   1.1     ragge 	 * (without attention-interrupts enabled, we really don't know
    830   1.1     ragge 	 * the actual state of the transport. Thus we call get-status
    831   1.1     ragge 	 * (ie. MTNOP) once and check the actual status.)
    832   1.1     ragge 	 */
    833   1.2     ragge 	if (TS_RCSR(TSSR) & TS_OFL) {
    834  1.24      matt 		uprintf("%s: transport is offline.\n", device_xname(sc->sc_dev));
    835   1.1     ragge 		sc->sc_openf = 0;
    836   1.1     ragge 		return EIO;		/* transport is offline */
    837   1.1     ragge 	}
    838   1.2     ragge 	tscommand(sc, dev, MTNOP, 1);
    839   1.2     ragge 	if ((flag & FWRITE) && (sc->sc_vts->status.xst0 & TS_SF_WLK)) {
    840  1.24      matt 		uprintf("%s: no write ring.\n", device_xname(sc->sc_dev));
    841   1.2     ragge 		sc->sc_openf = 0;
    842   1.2     ragge 		return EROFS;
    843   1.2     ragge 	}
    844   1.2     ragge 	if (sc->sc_vts->status.xst0 & TS_SF_VCK) {
    845   1.2     ragge 		sc->sc_vts->cmd.cmdr = TS_CF_CVC|TS_CF_ACK;
    846   1.2     ragge 		TS_WCSR(TSDB, sc->sc_waddr);
    847   1.2     ragge 	}
    848   1.2     ragge 	tscommand(sc, dev, MTNOP, 1);
    849   1.2     ragge #ifdef TSDEBUG
    850   1.2     ragge 	{
    851   1.2     ragge 		char buf[100];
    852  1.26  christos 		snprintb(buf, sizeof(buf),
    853  1.26  christos 		    TS_XST0_BITS, sc->sc_vts->status.xst0);
    854   1.2     ragge 		printf("tsopen: xst0 %s\n", buf);
    855   1.2     ragge 	}
    856   1.2     ragge #endif
    857   1.1     ragge 	sc->sc_liowf = 0;
    858   1.1     ragge 	return 0;
    859   1.1     ragge }
    860   1.1     ragge 
    861   1.1     ragge 
    862   1.1     ragge /*
    863   1.1     ragge  * Close tape device.
    864   1.1     ragge  *
    865   1.1     ragge  * If tape was open for writing or last operation was
    866   1.1     ragge  * a write, then write two EOF's and backspace over the last one.
    867   1.1     ragge  * Unless this is a non-rewinding special file, rewind the tape.
    868   1.1     ragge  *
    869   1.1     ragge  * Make the tape available to others, by clearing openf flag.
    870   1.1     ragge  */
    871   1.1     ragge int
    872  1.24      matt tsclose(dev_t dev, int flag, int type, struct lwp *l)
    873   1.1     ragge {
    874  1.24      matt 	struct ts_softc *sc = device_lookup_private(&ts_cd, TS_UNIT(dev));
    875   1.1     ragge 
    876   1.1     ragge 	if (flag == FWRITE || ((flag & FWRITE) && sc->sc_liowf)) {
    877  1.13    simonb 		/*
    878   1.1     ragge 		 * We are writing two tape marks (EOT), but place the tape
    879   1.1     ragge 		 * before the second one, so that another write operation
    880   1.1     ragge 		 * will overwrite the second one and leave and EOF-mark.
    881   1.1     ragge 		 */
    882   1.2     ragge 		tscommand(sc, dev, MTWEOF, 1);	/* Write Tape Mark */
    883   1.2     ragge 		tscommand(sc, dev, MTWEOF, 1);	/* Write Tape Mark */
    884   1.2     ragge 		tscommand(sc, dev, MTBSF, 1);	/* Skip Tape Marks Reverse */
    885   1.1     ragge 	}
    886   1.1     ragge 
    887   1.1     ragge 	if ((dev & T_NOREWIND) == 0)
    888   1.2     ragge 		tscommand(sc, dev, MTREW, 0);
    889   1.1     ragge 
    890   1.1     ragge 	sc->sc_openf = 0;
    891   1.1     ragge 	sc->sc_liowf = 0;
    892   1.1     ragge 	return 0;
    893   1.1     ragge }
    894   1.1     ragge 
    895   1.1     ragge 
    896   1.1     ragge /*
    897   1.1     ragge  * Manage buffers and perform block mode read and write operations.
    898   1.1     ragge  */
    899   1.1     ragge void
    900   1.2     ragge tsstrategy(struct buf *bp)
    901   1.1     ragge {
    902  1.24      matt 	struct ts_softc *sc = device_lookup_private(&ts_cd, TS_UNIT(bp->b_dev));
    903  1.24      matt 	bool empty;
    904  1.24      matt 	int s;
    905   1.1     ragge 
    906   1.2     ragge #ifdef TSDEBUG
    907   1.2     ragge 	printf("buf: %p bcount %ld blkno %d\n", bp, bp->b_bcount, bp->b_blkno);
    908   1.2     ragge #endif
    909   1.1     ragge 	s = splbio ();
    910  1.27      yamt 	empty = (bufq_peek(sc->sc_bufq) == NULL);
    911  1.27      yamt 	bufq_put(sc->sc_bufq, bp);
    912   1.2     ragge 	if (empty)
    913   1.2     ragge 		tsstart(sc, 0);
    914   1.1     ragge 	splx(s);
    915   1.1     ragge }
    916   1.1     ragge 
    917   1.1     ragge 
    918   1.1     ragge /*
    919   1.1     ragge  * Catch ioctl commands, and call the "command" routine to do them.
    920   1.1     ragge  */
    921   1.1     ragge int
    922  1.24      matt tsioctl(dev_t dev,
    923  1.24      matt 	u_long cmd,
    924  1.24      matt 	void *data,
    925  1.24      matt 	int flag,
    926  1.24      matt 	struct lwp *l)
    927   1.1     ragge {
    928   1.2     ragge 	struct buf *bp;
    929  1.24      matt 	struct ts_softc * const sc = device_lookup_private(&ts_cd, TS_UNIT(dev));
    930   1.2     ragge 	struct mtop *mtop;	/* mag tape cmd op to perform */
    931   1.2     ragge 	struct mtget *mtget;	/* mag tape struct to get info in */
    932   1.2     ragge 	int callcount;		/* number of times to call routine */
    933   1.1     ragge 	int scount;			/* number of files/records to space */
    934   1.1     ragge 	int spaceop = 0;		/* flag for skip/space operation */
    935   1.1     ragge 	int error = 0;
    936   1.1     ragge 
    937   1.2     ragge #ifdef TSDEBUG
    938   1.2     ragge 	printf("tsioctl (%x, %lx, %p, %d)\n", dev, cmd, data, flag);
    939   1.2     ragge #endif
    940   1.2     ragge 
    941   1.2     ragge 	bp = &sc->ts_cbuf;
    942   1.1     ragge 
    943   1.1     ragge 	switch (cmd) {
    944   1.1     ragge 	case MTIOCTOP:			/* do a mag tape op */
    945   1.1     ragge 		mtop = (struct mtop *)data;
    946   1.1     ragge 		switch (mtop->mt_op) {
    947   1.1     ragge 		case MTWEOF:		/* write an end-of-file record */
    948   1.1     ragge 			callcount = mtop->mt_count;
    949   1.1     ragge 			scount = 1;
    950   1.1     ragge 			break;
    951   1.1     ragge 		case MTFSR:		/* forward space record */
    952   1.1     ragge 		case MTBSR:		/* backward space record */
    953   1.1     ragge 			spaceop = 1;
    954   1.2     ragge 		case MTFSF:		/* forward space file */
    955   1.2     ragge 		case MTBSF:		/* backward space file */
    956   1.1     ragge 			callcount = 1;
    957   1.1     ragge 			scount = mtop->mt_count;
    958   1.1     ragge 			break;
    959   1.1     ragge 		case MTREW:		/* rewind */
    960   1.1     ragge 		case MTOFFL:		/* rewind and put the drive offline */
    961   1.1     ragge 		case MTNOP:		/* no operation, sets status only */
    962   1.1     ragge 			callcount = 1;
    963   1.1     ragge 			scount = 1;		/* wait for this rewind */
    964   1.1     ragge 			break;
    965   1.1     ragge 		case MTRETEN:		/* retension */
    966   1.1     ragge 		case MTERASE:		/* erase entire tape */
    967   1.1     ragge 		case MTEOM:		/* forward to end of media */
    968   1.1     ragge 		case MTNBSF:		/* backward space to begin of file */
    969   1.1     ragge 		case MTCACHE:		/* enable controller cache */
    970   1.1     ragge 		case MTNOCACHE:		/* disable controller cache */
    971   1.1     ragge 		case MTSETBSIZ:		/* set block size; 0 for variable */
    972   1.1     ragge 		case MTSETDNSTY:	/* set density code for current mode */
    973   1.2     ragge 			printf("ioctl %d not implemented.\n", mtop->mt_op);
    974   1.1     ragge 			return (ENXIO);
    975   1.1     ragge 		default:
    976   1.2     ragge #ifdef TSDEBUG
    977   1.2     ragge 			printf("invalid ioctl %d\n", mtop->mt_op);
    978   1.2     ragge #endif
    979   1.1     ragge 			return (ENXIO);
    980   1.1     ragge 		}	/* switch (mtop->mt_op) */
    981   1.1     ragge 
    982   1.1     ragge 		if (callcount <= 0 || scount <= 0) {
    983   1.2     ragge #ifdef TSDEBUG
    984   1.2     ragge 			printf("invalid values %d/%d\n", callcount, scount);
    985   1.2     ragge #endif
    986   1.1     ragge 			return (EINVAL);
    987   1.1     ragge 		}
    988   1.1     ragge 		do {
    989   1.2     ragge 			tscommand(sc, dev, mtop->mt_op, scount);
    990   1.1     ragge 			if (spaceop && bp->b_resid) {
    991   1.2     ragge #ifdef TSDEBUG
    992   1.2     ragge 				printf(("spaceop didn't complete\n"));
    993   1.2     ragge #endif
    994   1.1     ragge 				return (EIO);
    995   1.1     ragge 			}
    996  1.20        ad 			if (bp->b_error != 0) {
    997   1.2     ragge #ifdef TSDEBUG
    998   1.2     ragge 				printf("error in ioctl %d\n", mtop->mt_op);
    999   1.2     ragge #endif
   1000   1.1     ragge 				break;
   1001   1.1     ragge 			}
   1002   1.1     ragge 		} while (--callcount > 0);
   1003  1.20        ad 		if (bp->b_error != 0)
   1004  1.20        ad 			error = bp->b_error;
   1005  1.13    simonb 		return (error);
   1006   1.1     ragge 
   1007   1.1     ragge 	case MTIOCGET:			/* get tape status */
   1008   1.1     ragge 		mtget = (struct mtget *)data;
   1009   1.1     ragge 		mtget->mt_type = MT_ISTS;
   1010   1.2     ragge 		mtget->mt_dsreg = TS_RCSR(TSSR);
   1011   1.2     ragge 		mtget->mt_erreg = sc->sc_vts->status.xst0;
   1012   1.1     ragge 		mtget->mt_resid = 0;		/* ??? */
   1013   1.1     ragge 		mtget->mt_density = 0;		/* ??? */
   1014   1.1     ragge 		break;
   1015   1.1     ragge 
   1016   1.1     ragge 	case MTIOCIEOT:			/* ignore EOT error */
   1017   1.2     ragge #ifdef TSDEBUG
   1018   1.2     ragge 		printf(("MTIOCIEOT not implemented.\n"));
   1019   1.2     ragge #endif
   1020  1.13    simonb 		return (ENXIO);
   1021   1.1     ragge 
   1022   1.1     ragge 	case MTIOCEEOT:			/* enable EOT error */
   1023   1.2     ragge #ifdef TSDEBUG
   1024   1.2     ragge 		printf(("MTIOCEEOT not implemented.\n"));
   1025   1.2     ragge #endif
   1026   1.1     ragge 		return (ENXIO);
   1027   1.1     ragge 
   1028   1.1     ragge 	default:
   1029   1.2     ragge #ifdef TSDEBUG
   1030   1.2     ragge 		printf("invalid ioctl cmd 0x%lx\n", cmd);
   1031   1.2     ragge #endif
   1032   1.1     ragge 		return (ENXIO);
   1033   1.1     ragge 	}
   1034   1.1     ragge 
   1035   1.1     ragge 	return (0);
   1036   1.1     ragge }
   1037   1.1     ragge 
   1038   1.1     ragge 
   1039   1.1     ragge /*
   1040  1.13    simonb  *
   1041   1.1     ragge  */
   1042   1.1     ragge int
   1043   1.2     ragge tsread(dev_t dev, struct uio *uio, int flag)
   1044   1.1     ragge {
   1045   1.1     ragge 	return (physio (tsstrategy, NULL, dev, B_READ, minphys, uio));
   1046   1.1     ragge }
   1047   1.1     ragge 
   1048   1.1     ragge /*
   1049   1.1     ragge  *
   1050   1.1     ragge  */
   1051   1.1     ragge int
   1052   1.2     ragge tswrite(dev_t dev, struct uio *uio, int flag)
   1053   1.1     ragge {
   1054   1.1     ragge 	return (physio (tsstrategy, NULL, dev, B_WRITE, minphys, uio));
   1055   1.1     ragge }
   1056   1.1     ragge 
   1057   1.1     ragge /*
   1058   1.1     ragge  *
   1059   1.1     ragge  */
   1060   1.1     ragge int
   1061  1.24      matt tsdump(dev_t dev, daddr_t blkno, void *va, size_t size)
   1062   1.1     ragge {
   1063   1.2     ragge 	return EIO;
   1064   1.1     ragge }
   1065