Home | History | Annotate | Line # | Download | only in dev
sci.c revision 1.7
      1  1.5  chopps /*
      2  1.5  chopps  * Copyright (c) 1994 Michael L. Hitch
      3  1.1  chopps  * Copyright (c) 1990 The Regents of the University of California.
      4  1.1  chopps  * All rights reserved.
      5  1.1  chopps  *
      6  1.1  chopps  * This code is derived from software contributed to Berkeley by
      7  1.1  chopps  * Van Jacobson of Lawrence Berkeley Laboratory.
      8  1.1  chopps  *
      9  1.1  chopps  * Redistribution and use in source and binary forms, with or without
     10  1.1  chopps  * modification, are permitted provided that the following conditions
     11  1.1  chopps  * are met:
     12  1.1  chopps  * 1. Redistributions of source code must retain the above copyright
     13  1.1  chopps  *    notice, this list of conditions and the following disclaimer.
     14  1.1  chopps  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  chopps  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  chopps  *    documentation and/or other materials provided with the distribution.
     17  1.1  chopps  * 3. All advertising materials mentioning features or use of this software
     18  1.1  chopps  *    must display the following acknowledgement:
     19  1.1  chopps  *	This product includes software developed by the University of
     20  1.1  chopps  *	California, Berkeley and its contributors.
     21  1.1  chopps  * 4. Neither the name of the University nor the names of its contributors
     22  1.1  chopps  *    may be used to endorse or promote products derived from this software
     23  1.1  chopps  *    without specific prior written permission.
     24  1.1  chopps  *
     25  1.1  chopps  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     26  1.1  chopps  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     27  1.1  chopps  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     28  1.1  chopps  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     29  1.1  chopps  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     30  1.1  chopps  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     31  1.1  chopps  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32  1.1  chopps  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33  1.1  chopps  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34  1.1  chopps  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35  1.1  chopps  * SUCH DAMAGE.
     36  1.1  chopps  *
     37  1.5  chopps  *	@(#)scsi.c	7.5 (Berkeley) 5/4/91
     38  1.7  chopps  *	$Id: sci.c,v 1.7 1994/06/22 16:20:51 chopps Exp $
     39  1.1  chopps  */
     40  1.1  chopps 
     41  1.1  chopps /*
     42  1.1  chopps  * AMIGA NCR 5380 scsi adaptor driver
     43  1.1  chopps  */
     44  1.1  chopps 
     45  1.1  chopps #include <sys/param.h>
     46  1.1  chopps #include <sys/systm.h>
     47  1.5  chopps #include <sys/device.h>
     48  1.1  chopps #include <sys/buf.h>
     49  1.5  chopps #include <scsi/scsi_all.h>
     50  1.5  chopps #include <scsi/scsiconf.h>
     51  1.1  chopps #include <vm/vm.h>
     52  1.1  chopps #include <vm/vm_kern.h>
     53  1.1  chopps #include <vm/vm_page.h>
     54  1.1  chopps #include <machine/pmap.h>
     55  1.5  chopps #include <machine/cpu.h>
     56  1.5  chopps #include <amiga/amiga/device.h>
     57  1.5  chopps #include <amiga/amiga/custom.h>
     58  1.5  chopps #include <amiga/dev/scireg.h>
     59  1.1  chopps #include <amiga/dev/scivar.h>
     60  1.1  chopps 
     61  1.1  chopps /*
     62  1.1  chopps  * SCSI delays
     63  1.1  chopps  * In u-seconds, primarily for state changes on the SPC.
     64  1.1  chopps  */
     65  1.5  chopps #define	SCI_CMD_WAIT	50000	/* wait per step of 'immediate' cmds */
     66  1.5  chopps #define	SCI_DATA_WAIT	50000	/* wait per data in/out step */
     67  1.5  chopps #define	SCI_INIT_WAIT	50000	/* wait per step (both) during init */
     68  1.1  chopps 
     69  1.5  chopps #define	b_cylin		b_resid
     70  1.1  chopps 
     71  1.5  chopps int  sciicmd __P((struct sci_softc *, int, void *, int, void *, int,u_char));
     72  1.5  chopps int  scigo __P((struct sci_softc *, struct scsi_xfer *));
     73  1.5  chopps int  scigetsense __P((struct sci_softc *, struct scsi_xfer *));
     74  1.5  chopps int  sciselectbus __P((struct sci_softc *, u_char, u_char));
     75  1.5  chopps void sciabort __P((struct sci_softc *, char *));
     76  1.5  chopps void scierror __P((struct sci_softc *, u_char));
     77  1.5  chopps void scireset __P((struct sci_softc *));
     78  1.5  chopps void scisetdelay __P((int));
     79  1.5  chopps void sci_scsidone __P((struct sci_softc *, int));
     80  1.5  chopps void sci_donextcmd __P((struct sci_softc *));
     81  1.5  chopps 
     82  1.5  chopps int sci_cmd_wait = SCI_CMD_WAIT;
     83  1.5  chopps int sci_data_wait = SCI_DATA_WAIT;
     84  1.5  chopps int sci_init_wait = SCI_INIT_WAIT;
     85  1.1  chopps 
     86  1.5  chopps int sci_no_dma = 0;
     87  1.5  chopps 
     88  1.5  chopps #ifdef DEBUG
     89  1.5  chopps #define QPRINTF(a) if (sci_debug > 1) printf a
     90  1.5  chopps int	sci_debug = 0;
     91  1.1  chopps #else
     92  1.5  chopps #define QPRINTF
     93  1.1  chopps #endif
     94  1.1  chopps 
     95  1.5  chopps /*
     96  1.5  chopps  * default minphys routine for sci based controllers
     97  1.5  chopps  */
     98  1.5  chopps void
     99  1.5  chopps sci_minphys(bp)
    100  1.5  chopps 	struct buf *bp;
    101  1.5  chopps {
    102  1.5  chopps 	/*
    103  1.5  chopps 	 * no max transfer at this level
    104  1.5  chopps 	 */
    105  1.5  chopps }
    106  1.5  chopps 
    107  1.5  chopps /*
    108  1.5  chopps  * must be used
    109  1.5  chopps  */
    110  1.5  chopps u_int
    111  1.5  chopps sci_adinfo()
    112  1.5  chopps {
    113  1.5  chopps 	/*
    114  1.5  chopps 	 * one request at a time please
    115  1.5  chopps 	 */
    116  1.5  chopps 	return(1);
    117  1.5  chopps }
    118  1.1  chopps 
    119  1.5  chopps /*
    120  1.5  chopps  * used by specific sci controller
    121  1.5  chopps  *
    122  1.5  chopps  * it appears that the higher level code does nothing with LUN's
    123  1.5  chopps  * so I will too.  I could plug it in, however so could they
    124  1.5  chopps  * in scsi_scsi_cmd().
    125  1.5  chopps  */
    126  1.5  chopps int
    127  1.5  chopps sci_scsicmd(xs)
    128  1.5  chopps 	struct scsi_xfer *xs;
    129  1.5  chopps {
    130  1.5  chopps 	struct sci_pending *pendp;
    131  1.5  chopps 	struct sci_softc *dev;
    132  1.5  chopps 	struct scsi_link *slp;
    133  1.5  chopps 	int flags, s;
    134  1.1  chopps 
    135  1.5  chopps 	slp = xs->sc_link;
    136  1.5  chopps 	dev = slp->adapter_softc;
    137  1.5  chopps 	flags = xs->flags;
    138  1.1  chopps 
    139  1.5  chopps 	if (flags & SCSI_DATA_UIO)
    140  1.5  chopps 		panic("sci: scsi data uio requested");
    141  1.5  chopps 
    142  1.5  chopps 	if (dev->sc_xs && flags & SCSI_NOMASK)
    143  1.5  chopps 		panic("sci_scsicmd: busy");
    144  1.1  chopps 
    145  1.5  chopps 	s = splbio();
    146  1.5  chopps 	pendp = &dev->sc_xsstore[slp->target][slp->lun];
    147  1.5  chopps 	if (pendp->xs) {
    148  1.5  chopps 		splx(s);
    149  1.5  chopps 		return(TRY_AGAIN_LATER);
    150  1.5  chopps 	}
    151  1.1  chopps 
    152  1.5  chopps 	if (dev->sc_xs) {
    153  1.5  chopps 		pendp->xs = xs;
    154  1.5  chopps 		TAILQ_INSERT_TAIL(&dev->sc_xslist, pendp, link);
    155  1.5  chopps 		splx(s);
    156  1.5  chopps 		return(SUCCESSFULLY_QUEUED);
    157  1.5  chopps 	}
    158  1.5  chopps 	pendp->xs = NULL;
    159  1.5  chopps 	dev->sc_xs = xs;
    160  1.5  chopps 	splx(s);
    161  1.1  chopps 
    162  1.5  chopps 	/*
    163  1.5  chopps 	 * nothing is pending do it now.
    164  1.5  chopps 	 */
    165  1.5  chopps 	sci_donextcmd(dev);
    166  1.1  chopps 
    167  1.5  chopps 	if (flags & SCSI_NOMASK)
    168  1.5  chopps 		return(COMPLETE);
    169  1.5  chopps 	return(SUCCESSFULLY_QUEUED);
    170  1.5  chopps }
    171  1.1  chopps 
    172  1.5  chopps /*
    173  1.5  chopps  * entered with dev->sc_xs pointing to the next xfer to perform
    174  1.5  chopps  */
    175  1.5  chopps void
    176  1.5  chopps sci_donextcmd(dev)
    177  1.5  chopps 	struct sci_softc *dev;
    178  1.5  chopps {
    179  1.5  chopps 	struct scsi_xfer *xs;
    180  1.5  chopps 	struct scsi_link *slp;
    181  1.5  chopps 	int flags, phase, stat;
    182  1.5  chopps 
    183  1.5  chopps 	xs = dev->sc_xs;
    184  1.5  chopps 	slp = xs->sc_link;
    185  1.5  chopps 	flags = xs->flags;
    186  1.5  chopps 
    187  1.5  chopps 	if (flags & SCSI_DATA_IN)
    188  1.5  chopps 		phase = DATA_IN_PHASE;
    189  1.5  chopps 	else if (flags & SCSI_DATA_OUT)
    190  1.5  chopps 		phase = DATA_OUT_PHASE;
    191  1.5  chopps 	else
    192  1.5  chopps 		phase = STATUS_PHASE;
    193  1.5  chopps 
    194  1.5  chopps 	if (flags & SCSI_RESET)
    195  1.5  chopps 		scireset(dev);
    196  1.1  chopps 
    197  1.5  chopps 	dev->sc_stat[0] = -1;
    198  1.5  chopps 	if (phase == STATUS_PHASE || flags & SCSI_NOMASK)
    199  1.5  chopps 		stat = sciicmd(dev, slp->target, xs->cmd, xs->cmdlen,
    200  1.5  chopps 		    xs->data, xs->datalen, phase);
    201  1.5  chopps 	else if (scigo(dev, xs) == 0)
    202  1.5  chopps 		return;
    203  1.5  chopps 	else
    204  1.5  chopps 		stat = dev->sc_stat[0];
    205  1.5  chopps 
    206  1.5  chopps 	sci_scsidone(dev, stat);
    207  1.5  chopps }
    208  1.1  chopps 
    209  1.5  chopps void
    210  1.5  chopps sci_scsidone(dev, stat)
    211  1.5  chopps 	struct sci_softc *dev;
    212  1.5  chopps 	int stat;
    213  1.5  chopps {
    214  1.5  chopps 	struct sci_pending *pendp;
    215  1.5  chopps 	struct scsi_xfer *xs;
    216  1.5  chopps 	int s, donext;
    217  1.5  chopps 
    218  1.5  chopps 	xs = dev->sc_xs;
    219  1.5  chopps #ifdef DIAGNOSTIC
    220  1.5  chopps 	if (xs == NULL)
    221  1.5  chopps 		panic("sci_scsidone");
    222  1.1  chopps #endif
    223  1.5  chopps 	/*
    224  1.5  chopps 	 * is this right?
    225  1.5  chopps 	 */
    226  1.5  chopps 	xs->status = stat;
    227  1.1  chopps 
    228  1.5  chopps 	if (stat == 0 || xs->flags & SCSI_ERR_OK)
    229  1.5  chopps 		xs->resid = 0;
    230  1.5  chopps 	else {
    231  1.5  chopps 		switch(stat) {
    232  1.5  chopps 		case SCSI_CHECK:
    233  1.5  chopps 			if (stat = scigetsense(dev, xs))
    234  1.5  chopps 				goto bad_sense;
    235  1.5  chopps 			xs->error = XS_SENSE;
    236  1.5  chopps 			break;
    237  1.5  chopps 		case SCSI_BUSY:
    238  1.5  chopps 			xs->error = XS_BUSY;
    239  1.5  chopps 			break;
    240  1.5  chopps 		bad_sense:
    241  1.5  chopps 		default:
    242  1.5  chopps 			xs->error = XS_DRIVER_STUFFUP;
    243  1.5  chopps 			QPRINTF(("sci_scsicmd() bad %x\n", stat));
    244  1.5  chopps 			break;
    245  1.5  chopps 		}
    246  1.5  chopps 	}
    247  1.5  chopps 	xs->flags |= ITSDONE;
    248  1.1  chopps 
    249  1.5  chopps 	/*
    250  1.5  chopps 	 * grab next command before scsi_done()
    251  1.5  chopps 	 * this way no single device can hog scsi resources.
    252  1.5  chopps 	 */
    253  1.5  chopps 	s = splbio();
    254  1.5  chopps 	pendp = dev->sc_xslist.tqh_first;
    255  1.5  chopps 	if (pendp == NULL) {
    256  1.5  chopps 		donext = 0;
    257  1.5  chopps 		dev->sc_xs = NULL;
    258  1.5  chopps 	} else {
    259  1.5  chopps 		donext = 1;
    260  1.5  chopps 		TAILQ_REMOVE(&dev->sc_xslist, pendp, link);
    261  1.5  chopps 		dev->sc_xs = pendp->xs;
    262  1.5  chopps 		pendp->xs = NULL;
    263  1.5  chopps 	}
    264  1.5  chopps 	splx(s);
    265  1.5  chopps 	scsi_done(xs);
    266  1.1  chopps 
    267  1.5  chopps 	if (donext)
    268  1.5  chopps 		sci_donextcmd(dev);
    269  1.5  chopps }
    270  1.1  chopps 
    271  1.5  chopps int
    272  1.5  chopps scigetsense(dev, xs)
    273  1.5  chopps 	struct sci_softc *dev;
    274  1.5  chopps 	struct scsi_xfer *xs;
    275  1.1  chopps {
    276  1.5  chopps 	struct scsi_sense rqs;
    277  1.5  chopps 	struct scsi_link *slp;
    278  1.5  chopps 	int stat;
    279  1.1  chopps 
    280  1.5  chopps 	slp = xs->sc_link;
    281  1.5  chopps 
    282  1.5  chopps 	rqs.op_code = REQUEST_SENSE;
    283  1.5  chopps 	rqs.byte2 = slp->lun << 5;
    284  1.5  chopps #ifdef not_yet
    285  1.5  chopps 	rqs.length = xs->req_sense_length ? xs->req_sense_length :
    286  1.5  chopps 	    sizeof(xs->sense);
    287  1.5  chopps #else
    288  1.5  chopps 	rqs.length = sizeof(xs->sense);
    289  1.5  chopps #endif
    290  1.5  chopps 
    291  1.5  chopps 	rqs.unused[0] = rqs.unused[1] = rqs.control = 0;
    292  1.5  chopps 
    293  1.5  chopps 	return(sciicmd(dev, slp->target, &rqs, sizeof(rqs), &xs->sense,
    294  1.5  chopps 	    rqs.length, DATA_IN_PHASE));
    295  1.1  chopps }
    296  1.1  chopps 
    297  1.5  chopps void
    298  1.5  chopps sciabort(dev, where)
    299  1.5  chopps 	struct sci_softc *dev;
    300  1.1  chopps 	char *where;
    301  1.1  chopps {
    302  1.5  chopps 	printf ("%s: abort %s: csr = 0x%02x, bus = 0x%02x\n",
    303  1.5  chopps 	  dev->sc_dev.dv_xname, where, *dev->sci_csr, *dev->sci_bus_csr);
    304  1.1  chopps 
    305  1.1  chopps 	if (dev->sc_flags & SCI_SELECTED) {
    306  1.1  chopps 
    307  1.7  chopps 		/* lets just hope it worked.. */
    308  1.7  chopps 		dev->sc_flags &= ~SCI_SELECTED;
    309  1.1  chopps 		/* XXX */
    310  1.5  chopps 		scireset (dev);
    311  1.1  chopps 	}
    312  1.1  chopps }
    313  1.1  chopps 
    314  1.1  chopps /*
    315  1.1  chopps  * XXX Set/reset long delays.
    316  1.1  chopps  *
    317  1.1  chopps  * if delay == 0, reset default delays
    318  1.1  chopps  * if delay < 0,  set both delays to default long initialization values
    319  1.1  chopps  * if delay > 0,  set both delays to this value
    320  1.1  chopps  *
    321  1.1  chopps  * Used when a devices is expected to respond slowly (e.g. during
    322  1.1  chopps  * initialization).
    323  1.1  chopps  */
    324  1.1  chopps void
    325  1.5  chopps scisetdelay(del)
    326  1.5  chopps 	int del;
    327  1.1  chopps {
    328  1.1  chopps 	static int saved_cmd_wait, saved_data_wait;
    329  1.1  chopps 
    330  1.5  chopps 	if (del) {
    331  1.1  chopps 		saved_cmd_wait = sci_cmd_wait;
    332  1.1  chopps 		saved_data_wait = sci_data_wait;
    333  1.5  chopps 		if (del > 0)
    334  1.5  chopps 			sci_cmd_wait = sci_data_wait = del;
    335  1.1  chopps 		else
    336  1.1  chopps 			sci_cmd_wait = sci_data_wait = sci_init_wait;
    337  1.1  chopps 	} else {
    338  1.1  chopps 		sci_cmd_wait = saved_cmd_wait;
    339  1.1  chopps 		sci_data_wait = saved_data_wait;
    340  1.1  chopps 	}
    341  1.1  chopps }
    342  1.1  chopps 
    343  1.1  chopps void
    344  1.5  chopps scireset(dev)
    345  1.5  chopps 	struct sci_softc *dev;
    346  1.1  chopps {
    347  1.1  chopps 	u_int i, s;
    348  1.1  chopps 	u_char my_id, csr;
    349  1.1  chopps 
    350  1.7  chopps 	dev->sc_flags &= ~SCI_SELECTED;
    351  1.1  chopps 	if (dev->sc_flags & SCI_ALIVE)
    352  1.5  chopps 		sciabort(dev, "reset");
    353  1.1  chopps 
    354  1.5  chopps 	printf("%s: ", dev->sc_dev.dv_xname);
    355  1.1  chopps 
    356  1.1  chopps 	s = splbio();
    357  1.1  chopps 	/* preserve our ID for now */
    358  1.1  chopps 	my_id = 7;
    359  1.1  chopps 
    360  1.1  chopps 	/*
    361  1.5  chopps 	 * Reset the chip
    362  1.1  chopps 	 */
    363  1.1  chopps 	*dev->sci_icmd = SCI_ICMD_TEST;
    364  1.1  chopps 	*dev->sci_icmd = SCI_ICMD_TEST | SCI_ICMD_RST;
    365  1.6  chopps 	delay (25);
    366  1.1  chopps 	*dev->sci_icmd = 0;
    367  1.1  chopps 
    368  1.1  chopps 	/*
    369  1.1  chopps 	 * Set up various chip parameters
    370  1.1  chopps 	 */
    371  1.1  chopps 	*dev->sci_icmd = 0;
    372  1.1  chopps 	*dev->sci_tcmd = 0;
    373  1.1  chopps 	*dev->sci_sel_enb = 0;
    374  1.1  chopps 
    375  1.1  chopps 	/* anything else was zeroed by reset */
    376  1.1  chopps 
    377  1.1  chopps 	splx (s);
    378  1.1  chopps 
    379  1.1  chopps 	printf("sci id %d\n", my_id);
    380  1.1  chopps 	dev->sc_flags |= SCI_ALIVE;
    381  1.1  chopps }
    382  1.1  chopps 
    383  1.5  chopps void
    384  1.5  chopps scierror(dev, csr)
    385  1.5  chopps 	struct sci_softc *dev;
    386  1.1  chopps 	u_char csr;
    387  1.1  chopps {
    388  1.5  chopps 	struct scsi_xfer *xs;
    389  1.1  chopps 
    390  1.5  chopps 	xs = dev->sc_xs;
    391  1.5  chopps 
    392  1.5  chopps #ifdef DIAGNOSTIC
    393  1.5  chopps 	if (xs == NULL)
    394  1.5  chopps 		panic("scierror");
    395  1.5  chopps #endif
    396  1.5  chopps 	if (xs->flags & SCSI_SILENT)
    397  1.5  chopps 		return;
    398  1.5  chopps 
    399  1.5  chopps 	printf("%s: ", dev->sc_dev.dv_xname);
    400  1.5  chopps 	printf("csr == 0x%02i\n", csr);	/* XXX */
    401  1.1  chopps }
    402  1.1  chopps 
    403  1.5  chopps /*
    404  1.5  chopps  * select the bus, return when selected or error.
    405  1.5  chopps  */
    406  1.5  chopps int
    407  1.5  chopps sciselectbus(dev, target, our_addr)
    408  1.5  chopps         struct sci_softc *dev;
    409  1.1  chopps 	u_char target, our_addr;
    410  1.1  chopps {
    411  1.1  chopps 	register int timeo = 2500;
    412  1.1  chopps 
    413  1.5  chopps 	QPRINTF (("sciselectbus %d\n", target));
    414  1.1  chopps 
    415  1.1  chopps 	/* if we're already selected, return */
    416  1.1  chopps 	if (dev->sc_flags & SCI_SELECTED)	/* XXXX */
    417  1.1  chopps 		return 1;
    418  1.1  chopps 
    419  1.1  chopps 	if ((*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)) &&
    420  1.1  chopps 	    (*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)) &&
    421  1.1  chopps 	    (*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)))
    422  1.1  chopps 		return 1;
    423  1.1  chopps 
    424  1.1  chopps 	*dev->sci_tcmd = 0;
    425  1.1  chopps 	*dev->sci_odata = 0x80 + (1 << target);
    426  1.1  chopps 	*dev->sci_icmd = SCI_ICMD_DATA|SCI_ICMD_SEL;
    427  1.1  chopps 	while ((*dev->sci_bus_csr & SCI_BUS_BSY) == 0) {
    428  1.1  chopps 		if (--timeo > 0) {
    429  1.6  chopps 			delay(100);
    430  1.1  chopps 		} else {
    431  1.1  chopps 			break;
    432  1.1  chopps 		}
    433  1.1  chopps 	}
    434  1.1  chopps 	if (timeo) {
    435  1.1  chopps 		*dev->sci_icmd = 0;
    436  1.1  chopps 		dev->sc_flags |= SCI_SELECTED;
    437  1.1  chopps 		return (0);
    438  1.1  chopps 	}
    439  1.1  chopps 	*dev->sci_icmd = 0;
    440  1.1  chopps 	return (1);
    441  1.1  chopps }
    442  1.1  chopps 
    443  1.5  chopps int
    444  1.5  chopps sci_ixfer_out(dev, len, buf, phase)
    445  1.1  chopps 	register struct sci_softc *dev;
    446  1.1  chopps 	int len;
    447  1.1  chopps 	register u_char *buf;
    448  1.1  chopps 	int phase;
    449  1.1  chopps {
    450  1.1  chopps 	register int wait = sci_data_wait;
    451  1.1  chopps 	u_char csr;
    452  1.1  chopps 
    453  1.5  chopps 	QPRINTF(("sci_ixfer_out {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
    454  1.1  chopps 	  len, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
    455  1.1  chopps 	  buf[6], buf[7], buf[8], buf[9]));
    456  1.1  chopps 
    457  1.1  chopps 	*dev->sci_tcmd = phase;
    458  1.1  chopps 	*dev->sci_icmd = SCI_ICMD_DATA;
    459  1.1  chopps 	for (;len > 0; len--) {
    460  1.1  chopps 		csr = *dev->sci_bus_csr;
    461  1.1  chopps 		while (!(csr & SCI_BUS_REQ)) {
    462  1.1  chopps 			if ((csr & SCI_BUS_BSY) == 0 || --wait < 0) {
    463  1.1  chopps #ifdef DEBUG
    464  1.1  chopps 				if (sci_debug)
    465  1.5  chopps 					printf("sci_ixfer_out fail: l%d i%x w%d\n",
    466  1.1  chopps 					  len, csr, wait);
    467  1.1  chopps #endif
    468  1.1  chopps 				return (len);
    469  1.1  chopps 			}
    470  1.6  chopps 			delay(1);
    471  1.1  chopps 			csr = *dev->sci_bus_csr;
    472  1.1  chopps 		}
    473  1.1  chopps 
    474  1.1  chopps 		if (!(*dev->sci_csr & SCI_CSR_PHASE_MATCH))
    475  1.1  chopps 			break;
    476  1.1  chopps 		*dev->sci_odata = *buf;
    477  1.1  chopps 		*dev->sci_icmd = SCI_ICMD_DATA|SCI_ICMD_ACK;
    478  1.1  chopps 		buf++;
    479  1.1  chopps 		while (*dev->sci_bus_csr & SCI_BUS_REQ);
    480  1.1  chopps 		*dev->sci_icmd = SCI_ICMD_DATA;
    481  1.1  chopps 	}
    482  1.1  chopps 
    483  1.5  chopps 	QPRINTF(("sci_ixfer_out done\n"));
    484  1.1  chopps 	return (0);
    485  1.1  chopps }
    486  1.1  chopps 
    487  1.5  chopps void
    488  1.5  chopps sci_ixfer_in(dev, len, buf, phase)
    489  1.1  chopps 	struct sci_softc *dev;
    490  1.1  chopps 	int len;
    491  1.1  chopps 	register u_char *buf;
    492  1.1  chopps 	int phase;
    493  1.1  chopps {
    494  1.1  chopps 	int wait = sci_data_wait;
    495  1.1  chopps 	u_char *obp = buf;
    496  1.1  chopps 	u_char csr;
    497  1.1  chopps 	volatile register u_char *sci_bus_csr = dev->sci_bus_csr;
    498  1.1  chopps 	volatile register u_char *sci_data = dev->sci_data;
    499  1.1  chopps 	volatile register u_char *sci_icmd = dev->sci_icmd;
    500  1.1  chopps 
    501  1.1  chopps 	csr = *sci_bus_csr;
    502  1.1  chopps 
    503  1.5  chopps 	QPRINTF(("sci_ixfer_in %d, csr=%02x\n", len, csr));
    504  1.1  chopps 
    505  1.1  chopps 	*dev->sci_tcmd = phase;
    506  1.1  chopps 	*sci_icmd = 0;
    507  1.1  chopps 	for (;len > 0; len--) {
    508  1.1  chopps 		csr = *sci_bus_csr;
    509  1.1  chopps 		while (!(csr & SCI_BUS_REQ)) {
    510  1.1  chopps 			if (!(csr & SCI_BUS_BSY) || --wait < 0) {
    511  1.1  chopps #ifdef DEBUG
    512  1.1  chopps 				if (sci_debug)
    513  1.5  chopps 					printf("sci_ixfer_in fail: l%d i%x w%d\n",
    514  1.1  chopps 					len, csr, wait);
    515  1.1  chopps #endif
    516  1.1  chopps 				return;
    517  1.1  chopps 			}
    518  1.1  chopps 
    519  1.6  chopps 			delay(1);
    520  1.1  chopps 			csr = *sci_bus_csr;
    521  1.1  chopps 		}
    522  1.1  chopps 
    523  1.1  chopps 		if (!(*dev->sci_csr & SCI_CSR_PHASE_MATCH))
    524  1.1  chopps 			break;
    525  1.1  chopps 		*buf = *sci_data;
    526  1.1  chopps 		*sci_icmd = SCI_ICMD_ACK;
    527  1.1  chopps 		buf++;
    528  1.1  chopps 		while (*sci_bus_csr & SCI_BUS_REQ);
    529  1.1  chopps 		*sci_icmd = 0;
    530  1.1  chopps 	}
    531  1.1  chopps 
    532  1.5  chopps 	QPRINTF(("sci_ixfer_in {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
    533  1.1  chopps 	  len, obp[0], obp[1], obp[2], obp[3], obp[4], obp[5],
    534  1.1  chopps 	  obp[6], obp[7], obp[8], obp[9]));
    535  1.1  chopps }
    536  1.1  chopps 
    537  1.1  chopps /*
    538  1.1  chopps  * SCSI 'immediate' command:  issue a command to some SCSI device
    539  1.1  chopps  * and get back an 'immediate' response (i.e., do programmed xfer
    540  1.1  chopps  * to get the response data).  'cbuf' is a buffer containing a scsi
    541  1.1  chopps  * command of length clen bytes.  'buf' is a buffer of length 'len'
    542  1.1  chopps  * bytes for data.  The transfer direction is determined by the device
    543  1.1  chopps  * (i.e., by the scsi bus data xfer phase).  If 'len' is zero, the
    544  1.1  chopps  * command must supply no data.  'xferphase' is the bus phase the
    545  1.1  chopps  * caller expects to happen after the command is issued.  It should
    546  1.1  chopps  * be one of DATA_IN_PHASE, DATA_OUT_PHASE or STATUS_PHASE.
    547  1.1  chopps  */
    548  1.5  chopps int
    549  1.5  chopps sciicmd(dev, target, cbuf, clen, buf, len, xferphase)
    550  1.1  chopps 	struct sci_softc *dev;
    551  1.5  chopps 	void *cbuf, *buf;
    552  1.5  chopps 	int clen, len;
    553  1.1  chopps 	u_char xferphase;
    554  1.1  chopps {
    555  1.1  chopps 	u_char phase, csr, asr;
    556  1.1  chopps 	register int wait;
    557  1.1  chopps 
    558  1.1  chopps 	/* select the SCSI bus (it's an error if bus isn't free) */
    559  1.5  chopps 	if (sciselectbus (dev, target, dev->sc_scsi_addr))
    560  1.1  chopps 		return -1;
    561  1.1  chopps 	/*
    562  1.1  chopps 	 * Wait for a phase change (or error) then let the device
    563  1.1  chopps 	 * sequence us through the various SCSI phases.
    564  1.1  chopps 	 */
    565  1.1  chopps 	dev->sc_stat[0] = 0xff;
    566  1.1  chopps 	dev->sc_msg[0] = 0xff;
    567  1.1  chopps 	phase = CMD_PHASE;
    568  1.1  chopps 	while (1) {
    569  1.1  chopps 		wait = sci_cmd_wait;
    570  1.1  chopps 
    571  1.1  chopps 		while ((*dev->sci_bus_csr & (SCI_BUS_REQ|SCI_BUS_BSY)) == SCI_BUS_BSY);
    572  1.1  chopps 
    573  1.1  chopps 		QPRINTF((">CSR:%02x<", *dev->sci_bus_csr));
    574  1.1  chopps 		if ((*dev->sci_bus_csr & SCI_BUS_REQ) == 0) {
    575  1.1  chopps 			return -1;
    576  1.1  chopps 		}
    577  1.1  chopps 		phase = SCI_PHASE(*dev->sci_bus_csr);
    578  1.1  chopps 
    579  1.1  chopps 		switch (phase) {
    580  1.1  chopps 		case CMD_PHASE:
    581  1.5  chopps 			if (sci_ixfer_out (dev, clen, cbuf, phase))
    582  1.1  chopps 				goto abort;
    583  1.1  chopps 			phase = xferphase;
    584  1.1  chopps 			break;
    585  1.1  chopps 
    586  1.1  chopps 		case DATA_IN_PHASE:
    587  1.1  chopps 			if (len <= 0)
    588  1.1  chopps 				goto abort;
    589  1.1  chopps 			wait = sci_data_wait;
    590  1.5  chopps 			sci_ixfer_in (dev, len, buf, phase);
    591  1.1  chopps 			phase = STATUS_PHASE;
    592  1.1  chopps 			break;
    593  1.1  chopps 
    594  1.1  chopps 		case DATA_OUT_PHASE:
    595  1.1  chopps 			if (len <= 0)
    596  1.1  chopps 				goto abort;
    597  1.1  chopps 			wait = sci_data_wait;
    598  1.5  chopps 			if (sci_ixfer_out (dev, len, buf, phase))
    599  1.1  chopps 				goto abort;
    600  1.1  chopps 			phase = STATUS_PHASE;
    601  1.1  chopps 			break;
    602  1.1  chopps 
    603  1.1  chopps 		case MESG_IN_PHASE:
    604  1.1  chopps 			dev->sc_msg[0] = 0xff;
    605  1.5  chopps 			sci_ixfer_in (dev, 1, dev->sc_msg,phase);
    606  1.1  chopps 			dev->sc_flags &= ~SCI_SELECTED;
    607  1.1  chopps 			while (*dev->sci_bus_csr & SCI_BUS_BSY);
    608  1.1  chopps 			goto out;
    609  1.1  chopps 			break;
    610  1.1  chopps 
    611  1.1  chopps 		case MESG_OUT_PHASE:
    612  1.1  chopps 			phase = STATUS_PHASE;
    613  1.1  chopps 			break;
    614  1.1  chopps 
    615  1.1  chopps 		case STATUS_PHASE:
    616  1.5  chopps 			sci_ixfer_in (dev, 1, dev->sc_stat, phase);
    617  1.1  chopps 			phase = MESG_IN_PHASE;
    618  1.1  chopps 			break;
    619  1.1  chopps 
    620  1.1  chopps 		case BUS_FREE_PHASE:
    621  1.1  chopps 			goto out;
    622  1.1  chopps 
    623  1.1  chopps 		default:
    624  1.1  chopps 		printf("sci: unexpected phase %d in icmd from %d\n",
    625  1.1  chopps 		  phase, target);
    626  1.1  chopps 		goto abort;
    627  1.1  chopps 		}
    628  1.1  chopps #if 0
    629  1.1  chopps 		if (wait <= 0)
    630  1.1  chopps 			goto abort;
    631  1.1  chopps #endif
    632  1.1  chopps 	}
    633  1.1  chopps 
    634  1.1  chopps abort:
    635  1.5  chopps 	sciabort(dev, "icmd");
    636  1.1  chopps out:
    637  1.1  chopps 	QPRINTF(("=STS:%02x=", dev->sc_stat[0]));
    638  1.1  chopps 	return (dev->sc_stat[0]);
    639  1.1  chopps }
    640  1.1  chopps 
    641  1.1  chopps int
    642  1.5  chopps scigo(dev, xs)
    643  1.5  chopps 	struct sci_softc *dev;
    644  1.5  chopps 	struct scsi_xfer *xs;
    645  1.1  chopps {
    646  1.5  chopps 	int i, count, target;
    647  1.5  chopps 	u_char phase, csr, asr, cmd, *addr;
    648  1.5  chopps 	int wait;
    649  1.5  chopps 
    650  1.5  chopps 	target = xs->sc_link->target;
    651  1.5  chopps 	count = xs->datalen;
    652  1.5  chopps 	addr = xs->data;
    653  1.1  chopps 
    654  1.1  chopps 	if (sci_no_dma)	{
    655  1.5  chopps 		sciicmd (dev, target, (u_char *) xs->cmd, xs->cmdlen,
    656  1.1  chopps 		  addr, count,
    657  1.5  chopps 		  xs->flags & SCSI_DATA_IN ? DATA_IN_PHASE : DATA_OUT_PHASE);
    658  1.1  chopps 
    659  1.5  chopps 		return (1);
    660  1.1  chopps 	}
    661  1.1  chopps 
    662  1.1  chopps 	/* select the SCSI bus (it's an error if bus isn't free) */
    663  1.5  chopps 	if (sciselectbus (dev, target, dev->sc_scsi_addr))
    664  1.1  chopps 		return -1;
    665  1.1  chopps 	/*
    666  1.1  chopps 	 * Wait for a phase change (or error) then let the device
    667  1.1  chopps 	 * sequence us through the various SCSI phases.
    668  1.1  chopps 	 */
    669  1.1  chopps 	dev->sc_stat[0] = 0xff;
    670  1.1  chopps 	dev->sc_msg[0] = 0xff;
    671  1.1  chopps 	phase = CMD_PHASE;
    672  1.1  chopps 	while (1) {
    673  1.1  chopps 		while ((*dev->sci_bus_csr & (SCI_BUS_REQ|SCI_BUS_BSY)) ==
    674  1.1  chopps 		  SCI_BUS_BSY);
    675  1.1  chopps 
    676  1.1  chopps 		QPRINTF((">CSR:%02x<", *dev->sci_bus_csr));
    677  1.1  chopps 		if ((*dev->sci_bus_csr & SCI_BUS_REQ) == 0) {
    678  1.1  chopps 			goto abort;
    679  1.1  chopps 		}
    680  1.1  chopps 		phase = SCI_PHASE(*dev->sci_bus_csr);
    681  1.1  chopps 
    682  1.1  chopps 		switch (phase) {
    683  1.1  chopps 		case CMD_PHASE:
    684  1.5  chopps 			if (sci_ixfer_out (dev, xs->cmdlen, xs->cmd, phase))
    685  1.1  chopps 				goto abort;
    686  1.5  chopps 			phase = xs->flags & SCSI_DATA_IN ? DATA_IN_PHASE : DATA_OUT_PHASE;
    687  1.1  chopps 			break;
    688  1.1  chopps 
    689  1.1  chopps 		case DATA_IN_PHASE:
    690  1.1  chopps 			if (count <= 0)
    691  1.1  chopps 				goto abort;
    692  1.1  chopps 			/* XXX use psuedo DMA if available */
    693  1.1  chopps 			if (count >= 128 && dev->dma_xfer_in)
    694  1.1  chopps 				(*dev->dma_xfer_in)(dev, count, addr, phase);
    695  1.1  chopps 			else
    696  1.5  chopps 				sci_ixfer_in (dev, count, addr, phase);
    697  1.1  chopps 			phase = STATUS_PHASE;
    698  1.1  chopps 			break;
    699  1.1  chopps 
    700  1.1  chopps 		case DATA_OUT_PHASE:
    701  1.1  chopps 			if (count <= 0)
    702  1.1  chopps 				goto abort;
    703  1.1  chopps 			/* XXX use psuedo DMA if available */
    704  1.1  chopps 			if (count >= 128 && dev->dma_xfer_out)
    705  1.1  chopps 				(*dev->dma_xfer_out)(dev, count, addr, phase);
    706  1.1  chopps 			else
    707  1.5  chopps 				if (sci_ixfer_out (dev, count, addr, phase))
    708  1.1  chopps 					goto abort;
    709  1.1  chopps 			phase = STATUS_PHASE;
    710  1.1  chopps 			break;
    711  1.1  chopps 
    712  1.1  chopps 		case MESG_IN_PHASE:
    713  1.1  chopps 			dev->sc_msg[0] = 0xff;
    714  1.5  chopps 			sci_ixfer_in (dev, 1, dev->sc_msg,phase);
    715  1.1  chopps 			dev->sc_flags &= ~SCI_SELECTED;
    716  1.1  chopps 			while (*dev->sci_bus_csr & SCI_BUS_BSY);
    717  1.1  chopps 			goto out;
    718  1.1  chopps 			break;
    719  1.1  chopps 
    720  1.1  chopps 		case MESG_OUT_PHASE:
    721  1.1  chopps 			phase = STATUS_PHASE;
    722  1.1  chopps 			break;
    723  1.1  chopps 
    724  1.1  chopps 		case STATUS_PHASE:
    725  1.5  chopps 			sci_ixfer_in (dev, 1, dev->sc_stat, phase);
    726  1.1  chopps 			phase = MESG_IN_PHASE;
    727  1.1  chopps 			break;
    728  1.1  chopps 
    729  1.1  chopps 		case BUS_FREE_PHASE:
    730  1.1  chopps 			goto out;
    731  1.1  chopps 
    732  1.1  chopps 		default:
    733  1.1  chopps 		printf("sci: unexpected phase %d in icmd from %d\n",
    734  1.5  chopps 		  phase, target);
    735  1.1  chopps 		goto abort;
    736  1.1  chopps 		}
    737  1.1  chopps 	}
    738  1.1  chopps 
    739  1.1  chopps abort:
    740  1.5  chopps 	sciabort(dev, "go");
    741  1.1  chopps out:
    742  1.1  chopps 	QPRINTF(("=STS:%02x=", dev->sc_stat[0]));
    743  1.5  chopps 	return (1);
    744  1.1  chopps }
    745