Home | History | Annotate | Line # | Download | only in dev
siop.c revision 1.43
      1  1.43   thorpej /*	$NetBSD: siop.c,v 1.43 1999/09/30 22:59:53 thorpej Exp $	*/
      2  1.17       cgd 
      3   1.1        mw /*
      4   1.8    chopps  * Copyright (c) 1994 Michael L. Hitch
      5   1.1        mw  * Copyright (c) 1990 The Regents of the University of California.
      6   1.1        mw  * All rights reserved.
      7   1.1        mw  *
      8   1.1        mw  * This code is derived from software contributed to Berkeley by
      9   1.1        mw  * Van Jacobson of Lawrence Berkeley Laboratory.
     10   1.1        mw  *
     11   1.1        mw  * Redistribution and use in source and binary forms, with or without
     12   1.1        mw  * modification, are permitted provided that the following conditions
     13   1.1        mw  * are met:
     14   1.1        mw  * 1. Redistributions of source code must retain the above copyright
     15   1.1        mw  *    notice, this list of conditions and the following disclaimer.
     16   1.1        mw  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1        mw  *    notice, this list of conditions and the following disclaimer in the
     18   1.1        mw  *    documentation and/or other materials provided with the distribution.
     19   1.1        mw  * 3. All advertising materials mentioning features or use of this software
     20   1.1        mw  *    must display the following acknowledgement:
     21   1.1        mw  *	This product includes software developed by the University of
     22   1.1        mw  *	California, Berkeley and its contributors.
     23   1.1        mw  * 4. Neither the name of the University nor the names of its contributors
     24   1.1        mw  *    may be used to endorse or promote products derived from this software
     25   1.1        mw  *    without specific prior written permission.
     26   1.1        mw  *
     27   1.1        mw  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28   1.1        mw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29   1.1        mw  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30   1.1        mw  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31   1.1        mw  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32   1.1        mw  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33   1.1        mw  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1        mw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1        mw  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1        mw  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1        mw  * SUCH DAMAGE.
     38   1.1        mw  *
     39   1.1        mw  *	@(#)siop.c	7.5 (Berkeley) 5/4/91
     40   1.1        mw  */
     41   1.1        mw 
     42   1.1        mw /*
     43   1.1        mw  * AMIGA 53C710 scsi adaptor driver
     44   1.1        mw  */
     45  1.39  jonathan 
     46  1.39  jonathan #include "opt_ddb.h"
     47   1.2    chopps 
     48   1.4    chopps #include <sys/param.h>
     49   1.4    chopps #include <sys/systm.h>
     50   1.8    chopps #include <sys/device.h>
     51  1.20    chopps #include <sys/disklabel.h>
     52  1.20    chopps #include <sys/dkstat.h>
     53   1.4    chopps #include <sys/buf.h>
     54  1.28     chuck #include <sys/malloc.h>
     55  1.37    bouyer #include <dev/scsipi/scsi_all.h>
     56  1.37    bouyer #include <dev/scsipi/scsipi_all.h>
     57  1.37    bouyer #include <dev/scsipi/scsiconf.h>
     58   1.8    chopps #include <machine/cpu.h>
     59  1.42        is #ifdef __m68k__
     60  1.42        is #include <m68k/cacheops.h>
     61  1.42        is #endif
     62   1.8    chopps #include <amiga/amiga/custom.h>
     63  1.20    chopps #include <amiga/amiga/isr.h>
     64   1.8    chopps #include <amiga/dev/siopreg.h>
     65   1.4    chopps #include <amiga/dev/siopvar.h>
     66   1.1        mw 
     67   1.1        mw /*
     68   1.1        mw  * SCSI delays
     69   1.1        mw  * In u-seconds, primarily for state changes on the SPC.
     70   1.1        mw  */
     71  1.11    chopps #define	SCSI_CMD_WAIT	500000	/* wait per step of 'immediate' cmds */
     72  1.11    chopps #define	SCSI_DATA_WAIT	500000	/* wait per data in/out step */
     73  1.11    chopps #define	SCSI_INIT_WAIT	500000	/* wait per step (both) during init */
     74   1.1        mw 
     75  1.23    chopps void siop_select __P((struct siop_softc *));
     76   1.8    chopps void siopabort __P((struct siop_softc *, siop_regmap_p, char *));
     77   1.8    chopps void sioperror __P((struct siop_softc *, siop_regmap_p, u_char));
     78   1.8    chopps void siopstart __P((struct siop_softc *));
     79  1.30     veego int  siop_checkintr __P((struct siop_softc *, u_char, u_char, u_char, int *));
     80   1.8    chopps void siopreset __P((struct siop_softc *));
     81   1.8    chopps void siopsetdelay __P((int));
     82  1.23    chopps void siop_scsidone __P((struct siop_acb *, int));
     83  1.23    chopps void siop_sched __P((struct siop_softc *));
     84  1.23    chopps int  siop_poll __P((struct siop_softc *, struct siop_acb *));
     85  1.30     veego void siopintr __P((struct siop_softc *));
     86  1.30     veego void scsi_period_to_siop __P((struct siop_softc *, int));
     87  1.30     veego void siop_start __P((struct siop_softc *, int, int, u_char *, int, u_char *, int));
     88  1.30     veego void siop_dump_acb __P((struct siop_acb *));
     89   1.1        mw 
     90   1.1        mw /* 53C710 script */
     91  1.23    chopps const
     92  1.18    chopps #include <amiga/dev/siop_script.out>
     93   1.1        mw 
     94   1.8    chopps /* default to not inhibit sync negotiation on any drive */
     95  1.14    chopps u_char siop_inhibit_sync[8] = { 0, 0, 0, 0, 0, 0, 0 }; /* initialize, so patchable */
     96  1.23    chopps u_char siop_allow_disc[8] = {3, 3, 3, 3, 3, 3, 3, 3};
     97   1.8    chopps int siop_no_dma = 0;
     98   1.8    chopps 
     99  1.18    chopps int siop_reset_delay = 250;	/* delay after reset, in milleseconds */
    100   1.1        mw 
    101   1.1        mw int siop_cmd_wait = SCSI_CMD_WAIT;
    102   1.1        mw int siop_data_wait = SCSI_DATA_WAIT;
    103   1.1        mw int siop_init_wait = SCSI_INIT_WAIT;
    104   1.1        mw 
    105  1.29    mhitch #ifdef DEBUG_SYNC
    106  1.18    chopps /*
    107  1.18    chopps  * sync period transfer lookup - only valid for 66Mhz clock
    108  1.18    chopps  */
    109   1.1        mw static struct {
    110  1.24    chopps 	unsigned char p;	/* period from sync request message */
    111  1.24    chopps 	unsigned char r;	/* siop_period << 4 | sbcl */
    112  1.24    chopps } sync_tab[] = {
    113  1.18    chopps 	{ 60/4, 0<<4 | 1},
    114  1.18    chopps 	{ 76/4, 1<<4 | 1},
    115  1.18    chopps 	{ 92/4, 2<<4 | 1},
    116  1.18    chopps 	{ 92/4, 0<<4 | 2},
    117  1.18    chopps 	{108/4, 3<<4 | 1},
    118  1.18    chopps 	{116/4, 1<<4 | 2},
    119  1.18    chopps 	{120/4, 4<<4 | 1},
    120  1.18    chopps 	{120/4, 0<<4 | 3},
    121  1.18    chopps 	{136/4, 5<<4 | 1},
    122  1.18    chopps 	{140/4, 2<<4 | 2},
    123  1.18    chopps 	{152/4, 6<<4 | 1},
    124  1.18    chopps 	{152/4, 1<<4 | 3},
    125  1.18    chopps 	{164/4, 3<<4 | 2},
    126  1.18    chopps 	{168/4, 7<<4 | 1},
    127  1.18    chopps 	{180/4, 2<<4 | 3},
    128  1.18    chopps 	{184/4, 4<<4 | 2},
    129  1.18    chopps 	{208/4, 5<<4 | 2},
    130  1.18    chopps 	{212/4, 3<<4 | 3},
    131  1.18    chopps 	{232/4, 6<<4 | 2},
    132  1.18    chopps 	{240/4, 4<<4 | 3},
    133  1.18    chopps 	{256/4, 7<<4 | 2},
    134  1.18    chopps 	{272/4, 5<<4 | 3},
    135  1.18    chopps 	{300/4, 6<<4 | 3},
    136  1.18    chopps 	{332/4, 7<<4 | 3}
    137   1.1        mw };
    138  1.24    chopps #endif
    139   1.1        mw 
    140   1.1        mw #ifdef DEBUG
    141   1.8    chopps /*
    142   1.8    chopps  *	0x01 - full debug
    143   1.8    chopps  *	0x02 - DMA chaining
    144   1.8    chopps  *	0x04 - siopintr
    145   1.8    chopps  *	0x08 - phase mismatch
    146  1.23    chopps  *	0x10 - <not used>
    147  1.15    chopps  *	0x20 - panic on unhandled exceptions
    148  1.23    chopps  *	0x100 - disconnect/reselect
    149   1.8    chopps  */
    150   1.8    chopps int	siop_debug = 0;
    151   1.8    chopps int	siopsync_debug = 0;
    152   1.8    chopps int	siopdma_hits = 0;
    153   1.8    chopps int	siopdma_misses = 0;
    154  1.14    chopps int	siopchain_ints = 0;
    155  1.18    chopps int	siopstarts = 0;
    156  1.18    chopps int	siopints = 0;
    157  1.18    chopps int	siopphmm = 0;
    158  1.23    chopps #define SIOP_TRACE_SIZE	128
    159  1.23    chopps #define SIOP_TRACE(a,b,c,d) \
    160  1.23    chopps 	siop_trbuf[siop_trix] = (a); \
    161  1.23    chopps 	siop_trbuf[siop_trix+1] = (b); \
    162  1.23    chopps 	siop_trbuf[siop_trix+2] = (c); \
    163  1.23    chopps 	siop_trbuf[siop_trix+3] = (d); \
    164  1.23    chopps 	siop_trix = (siop_trix + 4) & (SIOP_TRACE_SIZE - 1);
    165  1.23    chopps u_char	siop_trbuf[SIOP_TRACE_SIZE];
    166  1.23    chopps int	siop_trix;
    167  1.24    chopps void siop_dump __P((struct siop_softc *));
    168  1.24    chopps void siop_dump_trace __P((void));
    169  1.16    chopps #else
    170  1.23    chopps #define SIOP_TRACE(a,b,c,d)
    171   1.1        mw #endif
    172   1.8    chopps 
    173   1.8    chopps 
    174   1.8    chopps /*
    175   1.8    chopps  * default minphys routine for siop based controllers
    176   1.8    chopps  */
    177  1.22   mycroft void
    178   1.8    chopps siop_minphys(bp)
    179   1.8    chopps 	struct buf *bp;
    180   1.8    chopps {
    181  1.22   mycroft 
    182   1.8    chopps 	/*
    183  1.22   mycroft 	 * No max transfer at this level.
    184   1.8    chopps 	 */
    185  1.22   mycroft 	minphys(bp);
    186   1.1        mw }
    187   1.1        mw 
    188   1.8    chopps /*
    189   1.8    chopps  * used by specific siop controller
    190   1.1        mw  *
    191   1.8    chopps  */
    192   1.8    chopps int
    193   1.8    chopps siop_scsicmd(xs)
    194  1.37    bouyer 	struct scsipi_xfer *xs;
    195   1.8    chopps {
    196  1.23    chopps 	struct siop_acb *acb;
    197  1.20    chopps 	struct siop_softc *sc;
    198  1.37    bouyer 	struct scsipi_link *slp;
    199  1.30     veego 	int flags, s;
    200   1.8    chopps 
    201   1.8    chopps 	slp = xs->sc_link;
    202  1.20    chopps 	sc = slp->adapter_softc;
    203  1.43   thorpej 	flags = xs->xs_control;
    204   1.8    chopps 
    205  1.23    chopps 	/* XXXX ?? */
    206  1.43   thorpej 	if (flags & XS_CTL_DATA_UIO)
    207   1.8    chopps 		panic("siop: scsi data uio requested");
    208  1.22   mycroft 
    209  1.23    chopps 	/* XXXX ?? */
    210  1.43   thorpej 	if (sc->sc_nexus && flags & XS_CTL_POLL)
    211  1.24    chopps /*		panic("siop_scsicmd: busy");*/
    212  1.35  christos 		printf("siop_scsicmd: busy\n");
    213   1.8    chopps 
    214   1.8    chopps 	s = splbio();
    215  1.23    chopps 	acb = sc->free_list.tqh_first;
    216  1.23    chopps 	if (acb) {
    217  1.23    chopps 		TAILQ_REMOVE(&sc->free_list, acb, chain);
    218  1.23    chopps 	}
    219  1.23    chopps 	splx(s);
    220  1.23    chopps 
    221  1.23    chopps 	if (acb == NULL) {
    222  1.23    chopps 		xs->error = XS_DRIVER_STUFFUP;
    223   1.8    chopps 		return(TRY_AGAIN_LATER);
    224   1.8    chopps 	}
    225   1.8    chopps 
    226  1.23    chopps 	acb->flags = ACB_ACTIVE;
    227  1.23    chopps 	acb->xs = xs;
    228  1.23    chopps 	bcopy(xs->cmd, &acb->cmd, xs->cmdlen);
    229  1.23    chopps 	acb->clen = xs->cmdlen;
    230  1.23    chopps 	acb->daddr = xs->data;
    231  1.23    chopps 	acb->dleft = xs->datalen;
    232  1.23    chopps 
    233  1.23    chopps 	s = splbio();
    234  1.23    chopps 	TAILQ_INSERT_TAIL(&sc->ready_list, acb, chain);
    235  1.23    chopps 
    236  1.23    chopps 	if (sc->sc_nexus == NULL)
    237  1.23    chopps 		siop_sched(sc);
    238  1.23    chopps 
    239   1.8    chopps 	splx(s);
    240   1.8    chopps 
    241  1.43   thorpej 	if (flags & XS_CTL_POLL || siop_no_dma)
    242  1.23    chopps 		return(siop_poll(sc, acb));
    243  1.23    chopps 	return(SUCCESSFULLY_QUEUED);
    244  1.23    chopps }
    245  1.23    chopps 
    246  1.23    chopps int
    247  1.23    chopps siop_poll(sc, acb)
    248  1.23    chopps 	struct siop_softc *sc;
    249  1.23    chopps 	struct siop_acb *acb;
    250  1.23    chopps {
    251  1.23    chopps 	siop_regmap_p rp = sc->sc_siopp;
    252  1.37    bouyer 	struct scsipi_xfer *xs = acb->xs;
    253  1.23    chopps 	int i;
    254  1.23    chopps 	int status;
    255  1.23    chopps 	u_char istat;
    256  1.23    chopps 	u_char dstat;
    257  1.23    chopps 	u_char sstat0;
    258  1.23    chopps 	int s;
    259  1.23    chopps 	int to;
    260   1.8    chopps 
    261  1.23    chopps 	s = splbio();
    262  1.23    chopps 	to = xs->timeout / 1000;
    263  1.23    chopps 	if (sc->nexus_list.tqh_first)
    264  1.35  christos 		printf("%s: siop_poll called with disconnected device\n",
    265  1.23    chopps 		    sc->sc_dev.dv_xname);
    266  1.23    chopps 	for (;;) {
    267  1.23    chopps 		/* use cmd_wait values? */
    268  1.23    chopps 		i = 50000;
    269  1.36        is 		/* XXX spl0(); */
    270  1.23    chopps 		while (((istat = rp->siop_istat) &
    271  1.23    chopps 		    (SIOP_ISTAT_SIP | SIOP_ISTAT_DIP)) == 0) {
    272  1.23    chopps 			if (--i <= 0) {
    273  1.23    chopps #ifdef DEBUG
    274  1.35  christos 				printf ("waiting: tgt %d cmd %02x sbcl %02x dsp %lx (+%lx) dcmd %lx ds %p timeout %d\n",
    275  1.37    bouyer 				    xs->sc_link->scsipi_scsi.target, acb->cmd.opcode,
    276  1.23    chopps 				    rp->siop_sbcl, rp->siop_dsp,
    277  1.23    chopps 				    rp->siop_dsp - sc->sc_scriptspa,
    278  1.23    chopps 				    *((long *)&rp->siop_dcmd), &acb->ds, acb->xs->timeout);
    279  1.23    chopps #endif
    280  1.23    chopps 				i = 50000;
    281  1.23    chopps 				--to;
    282  1.23    chopps 				if (to <= 0) {
    283  1.23    chopps 					siopreset(sc);
    284  1.23    chopps 					return(COMPLETE);
    285  1.23    chopps 				}
    286  1.23    chopps 			}
    287  1.38    mhitch 			delay(20);
    288  1.23    chopps 		}
    289  1.23    chopps 		sstat0 = rp->siop_sstat0;
    290  1.23    chopps 		dstat = rp->siop_dstat;
    291  1.23    chopps 		if (siop_checkintr(sc, istat, dstat, sstat0, &status)) {
    292  1.23    chopps 			if (acb != sc->sc_nexus)
    293  1.35  christos 				printf("%s: siop_poll disconnected device completed\n",
    294  1.23    chopps 				    sc->sc_dev.dv_xname);
    295  1.23    chopps 			else if ((sc->sc_flags & SIOP_INTDEFER) == 0) {
    296  1.23    chopps 				sc->sc_flags &= ~SIOP_INTSOFF;
    297  1.23    chopps 				rp->siop_sien = sc->sc_sien;
    298  1.23    chopps 				rp->siop_dien = sc->sc_dien;
    299  1.23    chopps 			}
    300  1.23    chopps 			siop_scsidone(sc->sc_nexus, status);
    301  1.23    chopps 		}
    302  1.43   thorpej 
    303  1.43   thorpej 		if (xs->xs_status & XS_STS_DONE)
    304  1.23    chopps 			break;
    305  1.23    chopps 	}
    306  1.23    chopps 	splx(s);
    307  1.23    chopps 	return (COMPLETE);
    308   1.8    chopps }
    309   1.8    chopps 
    310   1.8    chopps /*
    311  1.23    chopps  * start next command that's ready
    312   1.1        mw  */
    313   1.1        mw void
    314  1.23    chopps siop_sched(sc)
    315  1.20    chopps 	struct siop_softc *sc;
    316   1.8    chopps {
    317  1.37    bouyer 	struct scsipi_link *slp;
    318  1.23    chopps 	struct siop_acb *acb;
    319  1.30     veego 	int i;
    320   1.8    chopps 
    321  1.23    chopps #ifdef DEBUG
    322  1.23    chopps 	if (sc->sc_nexus) {
    323  1.35  christos 		printf("%s: siop_sched- nexus %p/%d ready %p/%d\n",
    324  1.23    chopps 		    sc->sc_dev.dv_xname, sc->sc_nexus,
    325  1.37    bouyer 		    sc->sc_nexus->xs->sc_link->scsipi_scsi.target,
    326  1.23    chopps 		    sc->ready_list.tqh_first,
    327  1.37    bouyer 		    sc->ready_list.tqh_first->xs->sc_link->scsipi_scsi.target);
    328  1.23    chopps 		return;
    329  1.23    chopps 	}
    330  1.23    chopps #endif
    331  1.23    chopps 	for (acb = sc->ready_list.tqh_first; acb; acb = acb->chain.tqe_next) {
    332  1.23    chopps 		slp = acb->xs->sc_link;
    333  1.37    bouyer 		i = slp->scsipi_scsi.target;
    334  1.37    bouyer 		if(!(sc->sc_tinfo[i].lubusy & (1 << slp->scsipi_scsi.lun))) {
    335  1.23    chopps 			struct siop_tinfo *ti = &sc->sc_tinfo[i];
    336  1.23    chopps 
    337  1.23    chopps 			TAILQ_REMOVE(&sc->ready_list, acb, chain);
    338  1.23    chopps 			sc->sc_nexus = acb;
    339  1.23    chopps 			slp = acb->xs->sc_link;
    340  1.37    bouyer 			ti = &sc->sc_tinfo[slp->scsipi_scsi.target];
    341  1.37    bouyer 			ti->lubusy |= (1 << slp->scsipi_scsi.lun);
    342  1.18    chopps 			break;
    343  1.18    chopps 		}
    344  1.18    chopps 	}
    345  1.23    chopps 
    346  1.23    chopps 	if (acb == NULL) {
    347  1.23    chopps #ifdef DEBUGXXX
    348  1.35  christos 		printf("%s: siop_sched didn't find ready command\n",
    349  1.23    chopps 		    sc->sc_dev.dv_xname);
    350  1.18    chopps #endif
    351   1.8    chopps 		return;
    352  1.23    chopps 	}
    353  1.23    chopps 
    354  1.43   thorpej 	if (acb->xs->xs_control & XS_CTL_RESET)
    355  1.23    chopps 		siopreset(sc);
    356  1.22   mycroft 
    357  1.23    chopps #if 0
    358  1.37    bouyer 	acb->cmd.bytes[0] |= slp->scsipi_scsi.lun << 5;	/* XXXX */
    359  1.23    chopps #endif
    360  1.23    chopps 	++sc->sc_active;
    361  1.23    chopps 	siop_select(sc);
    362   1.8    chopps }
    363   1.8    chopps 
    364   1.8    chopps void
    365  1.23    chopps siop_scsidone(acb, stat)
    366  1.23    chopps 	struct siop_acb *acb;
    367   1.8    chopps 	int stat;
    368   1.1        mw {
    369  1.37    bouyer 	struct scsipi_xfer *xs;
    370  1.37    bouyer 	struct scsipi_link *slp;
    371  1.29    mhitch 	struct siop_softc *sc;
    372  1.30     veego 	int dosched = 0;
    373   1.8    chopps 
    374  1.32    mhitch 	if (acb == NULL || (xs = acb->xs) == NULL) {
    375   1.8    chopps #ifdef DIAGNOSTIC
    376  1.37    bouyer 		printf("siop_scsidone: NULL acb or scsipi_xfer\n");
    377  1.32    mhitch #if defined(DEBUG) && defined(DDB)
    378  1.29    mhitch 		Debugger();
    379  1.32    mhitch #endif
    380  1.32    mhitch #endif
    381  1.29    mhitch 		return;
    382  1.29    mhitch 	}
    383  1.29    mhitch 	slp = xs->sc_link;
    384  1.29    mhitch 	sc = slp->adapter_softc;
    385   1.8    chopps 	/*
    386   1.8    chopps 	 * is this right?
    387   1.8    chopps 	 */
    388   1.8    chopps 	xs->status = stat;
    389   1.8    chopps 
    390  1.23    chopps 	if (xs->error == XS_NOERROR && !(acb->flags & ACB_CHKSENSE)) {
    391  1.23    chopps 		if (stat == SCSI_CHECK) {
    392  1.37    bouyer 			struct scsipi_sense *ss = (void *)&acb->cmd;
    393  1.23    chopps 			bzero(ss, sizeof(*ss));
    394  1.23    chopps 			ss->opcode = REQUEST_SENSE;
    395  1.37    bouyer 			ss->byte2 = slp->scsipi_scsi.lun << 5;
    396  1.37    bouyer 			ss->length = sizeof(struct scsipi_sense_data);
    397  1.23    chopps 			acb->clen = sizeof(*ss);
    398  1.37    bouyer 			acb->daddr = (char *)&xs->sense.scsi_sense;
    399  1.37    bouyer 			acb->dleft = sizeof(struct scsipi_sense_data);
    400  1.23    chopps 			acb->flags = ACB_ACTIVE | ACB_CHKSENSE;
    401  1.23    chopps 			TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
    402  1.23    chopps 			--sc->sc_active;
    403  1.37    bouyer 			sc->sc_tinfo[slp->scsipi_scsi.target].lubusy &=
    404  1.37    bouyer 			    ~(1 << slp->scsipi_scsi.lun);
    405  1.37    bouyer 			sc->sc_tinfo[slp->scsipi_scsi.target].senses++;
    406  1.23    chopps 			if (sc->sc_nexus == acb) {
    407  1.23    chopps 				sc->sc_nexus = NULL;
    408  1.23    chopps 				siop_sched(sc);
    409  1.23    chopps 			}
    410  1.23    chopps 			SIOP_TRACE('d','s',0,0)
    411  1.23    chopps 			return;
    412  1.23    chopps 		}
    413  1.23    chopps 	}
    414  1.23    chopps 	if (xs->error == XS_NOERROR && (acb->flags & ACB_CHKSENSE)) {
    415  1.23    chopps 		xs->error = XS_SENSE;
    416  1.23    chopps 	} else {
    417  1.23    chopps 		xs->resid = 0;		/* XXXX */
    418  1.23    chopps 	}
    419  1.23    chopps #if whataboutthisone
    420   1.8    chopps 		case SCSI_BUSY:
    421   1.8    chopps 			xs->error = XS_BUSY;
    422   1.8    chopps 			break;
    423  1.23    chopps #endif
    424  1.43   thorpej 	xs->xs_status |= XS_STS_DONE;
    425   1.1        mw 
    426   1.8    chopps 	/*
    427  1.23    chopps 	 * Remove the ACB from whatever queue it's on.  We have to do a bit of
    428  1.23    chopps 	 * a hack to figure out which queue it's on.  Note that it is *not*
    429  1.23    chopps 	 * necessary to cdr down the ready queue, but we must cdr down the
    430  1.23    chopps 	 * nexus queue and see if it's there, so we can mark the unit as no
    431  1.23    chopps 	 * longer busy.  This code is sickening, but it works.
    432   1.8    chopps 	 */
    433  1.23    chopps 	if (acb == sc->sc_nexus) {
    434  1.23    chopps 		sc->sc_nexus = NULL;
    435  1.37    bouyer 		sc->sc_tinfo[slp->scsipi_scsi.target].lubusy &=
    436  1.37    bouyer 			~(1<<slp->scsipi_scsi.lun);
    437  1.23    chopps 		if (sc->ready_list.tqh_first)
    438  1.23    chopps 			dosched = 1;	/* start next command */
    439  1.23    chopps 		--sc->sc_active;
    440  1.23    chopps 		SIOP_TRACE('d','a',stat,0)
    441  1.23    chopps 	} else if (sc->ready_list.tqh_last == &acb->chain.tqe_next) {
    442  1.23    chopps 		TAILQ_REMOVE(&sc->ready_list, acb, chain);
    443  1.23    chopps 		SIOP_TRACE('d','r',stat,0)
    444   1.1        mw 	} else {
    445  1.23    chopps 		register struct siop_acb *acb2;
    446  1.23    chopps 		for (acb2 = sc->nexus_list.tqh_first; acb2;
    447  1.23    chopps 		    acb2 = acb2->chain.tqe_next)
    448  1.23    chopps 			if (acb2 == acb) {
    449  1.23    chopps 				TAILQ_REMOVE(&sc->nexus_list, acb, chain);
    450  1.37    bouyer 				sc->sc_tinfo[slp->scsipi_scsi.target].lubusy
    451  1.37    bouyer 					&= ~(1<<slp->scsipi_scsi.lun);
    452  1.23    chopps 				--sc->sc_active;
    453  1.23    chopps 				break;
    454  1.23    chopps 			}
    455  1.23    chopps 		if (acb2)
    456  1.23    chopps 			;
    457  1.23    chopps 		else if (acb->chain.tqe_next) {
    458  1.23    chopps 			TAILQ_REMOVE(&sc->ready_list, acb, chain);
    459  1.23    chopps 			--sc->sc_active;
    460  1.23    chopps 		} else {
    461  1.35  christos 			printf("%s: can't find matching acb\n",
    462  1.23    chopps 			    sc->sc_dev.dv_xname);
    463  1.23    chopps #ifdef DDB
    464  1.23    chopps /*			Debugger(); */
    465  1.23    chopps #endif
    466  1.23    chopps 		}
    467  1.23    chopps 		SIOP_TRACE('d','n',stat,0);
    468  1.23    chopps 	}
    469  1.23    chopps 	/* Put it on the free list. */
    470  1.23    chopps 	acb->flags = ACB_FREE;
    471  1.23    chopps 	TAILQ_INSERT_HEAD(&sc->free_list, acb, chain);
    472   1.8    chopps 
    473  1.37    bouyer 	sc->sc_tinfo[slp->scsipi_scsi.target].cmds++;
    474   1.1        mw 
    475  1.37    bouyer 	scsipi_done(xs);
    476   1.1        mw 
    477  1.23    chopps 	if (dosched && sc->sc_nexus == NULL)
    478  1.23    chopps 		siop_sched(sc);
    479   1.8    chopps }
    480   1.1        mw 
    481   1.8    chopps void
    482  1.20    chopps siopabort(sc, rp, where)
    483  1.20    chopps 	register struct siop_softc *sc;
    484  1.20    chopps 	siop_regmap_p rp;
    485   1.1        mw 	char *where;
    486   1.1        mw {
    487  1.30     veego #ifdef fix_this
    488  1.18    chopps 	int i;
    489  1.30     veego #endif
    490   1.1        mw 
    491  1.35  christos 	printf ("%s: abort %s: dstat %02x, sstat0 %02x sbcl %02x\n",
    492  1.20    chopps 	    sc->sc_dev.dv_xname,
    493  1.20    chopps 	    where, rp->siop_dstat, rp->siop_sstat0, rp->siop_sbcl);
    494   1.1        mw 
    495  1.20    chopps 	if (sc->sc_active > 0) {
    496   1.1        mw #ifdef TODO
    497  1.20    chopps       SET_SBIC_cmd (rp, SBIC_CMD_ABORT);
    498  1.20    chopps       WAIT_CIP (rp);
    499   1.1        mw 
    500  1.20    chopps       GET_SBIC_asr (rp, asr);
    501   1.1        mw       if (asr & (SBIC_ASR_BSY|SBIC_ASR_LCI))
    502   1.1        mw         {
    503   1.1        mw           /* ok, get more drastic.. */
    504  1.22   mycroft 
    505  1.20    chopps 	  SET_SBIC_cmd (rp, SBIC_CMD_RESET);
    506  1.11    chopps 	  delay(25);
    507  1.20    chopps 	  SBIC_WAIT(rp, SBIC_ASR_INT, 0);
    508  1.20    chopps 	  GET_SBIC_csr (rp, csr);       /* clears interrupt also */
    509   1.1        mw 
    510   1.1        mw           return;
    511   1.1        mw         }
    512   1.1        mw 
    513   1.1        mw       do
    514   1.1        mw         {
    515  1.20    chopps           SBIC_WAIT (rp, SBIC_ASR_INT, 0);
    516  1.20    chopps           GET_SBIC_csr (rp, csr);
    517   1.1        mw         }
    518   1.1        mw       while ((csr != SBIC_CSR_DISC) && (csr != SBIC_CSR_DISC_1)
    519   1.1        mw 	      && (csr != SBIC_CSR_CMD_INVALID));
    520   1.1        mw #endif
    521   1.1        mw 
    522   1.1        mw 		/* lets just hope it worked.. */
    523  1.23    chopps #ifdef fix_this
    524  1.18    chopps 		for (i = 0; i < 2; ++i) {
    525  1.20    chopps 			if (sc->sc_iob[i].sc_xs && &sc->sc_iob[i] !=
    526  1.20    chopps 			    sc->sc_cur) {
    527  1.35  christos 				printf ("siopabort: cleanup!\n");
    528  1.20    chopps 				sc->sc_iob[i].sc_xs = NULL;
    529  1.18    chopps 			}
    530  1.18    chopps 		}
    531  1.23    chopps #endif	/* fix_this */
    532  1.23    chopps /*		sc->sc_active = 0; */
    533   1.8    chopps 	}
    534   1.1        mw }
    535   1.1        mw 
    536   1.1        mw void
    537  1.20    chopps siopinitialize(sc)
    538  1.20    chopps 	struct siop_softc *sc;
    539  1.12    chopps {
    540  1.26       jtc 	int i;
    541  1.26       jtc 	u_int inhibit_sync;
    542  1.26       jtc 	extern u_long scsi_nosync;
    543  1.26       jtc 	extern int shift_nosync;
    544  1.26       jtc 
    545  1.12    chopps 	/*
    546  1.14    chopps 	 * Need to check that scripts is on a long word boundary
    547  1.23    chopps 	 * Also should verify that dev doesn't span non-contiguous
    548  1.14    chopps 	 * physical pages.
    549  1.12    chopps 	 */
    550  1.30     veego 	sc->sc_scriptspa = kvtop((caddr_t)scripts);
    551  1.28     chuck 
    552  1.28     chuck 	/*
    553  1.28     chuck 	 * malloc sc_acb to ensure that DS is on a long word boundary.
    554  1.28     chuck 	 */
    555  1.28     chuck 
    556  1.28     chuck 	MALLOC(sc->sc_acb, struct siop_acb *,
    557  1.28     chuck 		sizeof(struct siop_acb) * SIOP_NACB, M_DEVBUF, M_NOWAIT);
    558  1.28     chuck 	if (sc->sc_acb == NULL)
    559  1.28     chuck 		panic("siopinitialize: ACB malloc failed!");
    560  1.28     chuck 
    561  1.24    chopps 	sc->sc_tcp[1] = 1000 / sc->sc_clock_freq;
    562  1.24    chopps 	sc->sc_tcp[2] = 1500 / sc->sc_clock_freq;
    563  1.24    chopps 	sc->sc_tcp[3] = 2000 / sc->sc_clock_freq;
    564  1.24    chopps 	sc->sc_minsync = sc->sc_tcp[1];		/* in 4ns units */
    565  1.24    chopps 	if (sc->sc_minsync < 25)
    566  1.24    chopps 		sc->sc_minsync = 25;
    567  1.24    chopps 	if (sc->sc_clock_freq <= 25) {
    568  1.29    mhitch 		sc->sc_dcntl |= 0x80;		/* SCLK/1 */
    569  1.24    chopps 		sc->sc_tcp[0] = sc->sc_tcp[1];
    570  1.24    chopps 	} else if (sc->sc_clock_freq <= 37) {
    571  1.29    mhitch 		sc->sc_dcntl |= 0x40;		/* SCLK/1.5 */
    572  1.24    chopps 		sc->sc_tcp[0] = sc->sc_tcp[2];
    573  1.24    chopps 	} else if (sc->sc_clock_freq <= 50) {
    574  1.29    mhitch 		sc->sc_dcntl |= 0x00;		/* SCLK/2 */
    575  1.24    chopps 		sc->sc_tcp[0] = sc->sc_tcp[3];
    576  1.24    chopps 	} else {
    577  1.29    mhitch 		sc->sc_dcntl |= 0xc0;		/* SCLK/3 */
    578  1.24    chopps 		sc->sc_tcp[0] = 3000 / sc->sc_clock_freq;
    579  1.26       jtc 	}
    580  1.26       jtc 
    581  1.26       jtc 	if (scsi_nosync) {
    582  1.26       jtc 		inhibit_sync = (scsi_nosync >> shift_nosync) & 0xff;
    583  1.26       jtc 		shift_nosync += 8;
    584  1.26       jtc #ifdef DEBUG
    585  1.26       jtc 		if (inhibit_sync)
    586  1.35  christos 			printf("%s: Inhibiting synchronous transfer %02x\n",
    587  1.26       jtc 				sc->sc_dev.dv_xname, inhibit_sync);
    588  1.26       jtc #endif
    589  1.26       jtc 		for (i = 0; i < 8; ++i)
    590  1.26       jtc 			if (inhibit_sync & (1 << i))
    591  1.26       jtc 				siop_inhibit_sync[i] = 1;
    592  1.24    chopps 	}
    593  1.23    chopps 
    594  1.20    chopps 	siopreset (sc);
    595  1.12    chopps }
    596  1.12    chopps 
    597  1.12    chopps void
    598  1.20    chopps siopreset(sc)
    599  1.20    chopps 	struct siop_softc *sc;
    600   1.1        mw {
    601  1.20    chopps 	siop_regmap_p rp;
    602   1.1        mw 	u_int i, s;
    603  1.23    chopps 	u_char  dummy;
    604  1.23    chopps 	struct siop_acb *acb;
    605   1.1        mw 
    606  1.20    chopps 	rp = sc->sc_siopp;
    607   1.8    chopps 
    608  1.20    chopps 	if (sc->sc_flags & SIOP_ALIVE)
    609  1.20    chopps 		siopabort(sc, rp, "reset");
    610  1.22   mycroft 
    611  1.35  christos 	printf("%s: ", sc->sc_dev.dv_xname);		/* XXXX */
    612   1.1        mw 
    613   1.1        mw 	s = splbio();
    614   1.1        mw 
    615   1.1        mw 	/*
    616   1.1        mw 	 * Reset the chip
    617   1.1        mw 	 * XXX - is this really needed?
    618   1.1        mw 	 */
    619  1.20    chopps 	rp->siop_istat |= SIOP_ISTAT_ABRT;	/* abort current script */
    620  1.20    chopps 	rp->siop_istat |= SIOP_ISTAT_RST;		/* reset chip */
    621  1.20    chopps 	rp->siop_istat &= ~SIOP_ISTAT_RST;
    622  1.18    chopps 	/*
    623  1.18    chopps 	 * Reset SCSI bus (do we really want this?)
    624  1.18    chopps 	 */
    625  1.23    chopps 	rp->siop_sien = 0;
    626  1.20    chopps 	rp->siop_scntl1 |= SIOP_SCNTL1_RST;
    627  1.18    chopps 	delay(1);
    628  1.20    chopps 	rp->siop_scntl1 &= ~SIOP_SCNTL1_RST;
    629   1.1        mw 
    630   1.1        mw 	/*
    631   1.1        mw 	 * Set up various chip parameters
    632   1.1        mw 	 */
    633  1.20    chopps 	rp->siop_scntl0 = SIOP_ARB_FULL | SIOP_SCNTL0_EPC | SIOP_SCNTL0_EPG;
    634  1.23    chopps 	rp->siop_scntl1 = SIOP_SCNTL1_ESR;
    635  1.24    chopps 	rp->siop_dcntl = sc->sc_dcntl;
    636  1.20    chopps 	rp->siop_dmode = 0x80;	/* burst length = 4 */
    637  1.20    chopps 	rp->siop_sien = 0x00;	/* don't enable interrupts yet */
    638  1.20    chopps 	rp->siop_dien = 0x00;	/* don't enable interrupts yet */
    639  1.37    bouyer 	rp->siop_scid = 1 << sc->sc_link.scsipi_scsi.adapter_target;
    640  1.20    chopps 	rp->siop_dwt = 0x00;
    641  1.20    chopps 	rp->siop_ctest0 |= SIOP_CTEST0_BTD | SIOP_CTEST0_EAN;
    642  1.24    chopps 	rp->siop_ctest7 |= sc->sc_ctest7;
    643   1.1        mw 
    644   1.1        mw 	/* will need to re-negotiate sync xfers */
    645  1.20    chopps 	bzero(&sc->sc_sync, sizeof (sc->sc_sync));
    646   1.1        mw 
    647  1.20    chopps 	i = rp->siop_istat;
    648  1.18    chopps 	if (i & SIOP_ISTAT_SIP)
    649  1.20    chopps 		dummy = rp->siop_sstat0;
    650  1.18    chopps 	if (i & SIOP_ISTAT_DIP)
    651  1.20    chopps 		dummy = rp->siop_dstat;
    652  1.18    chopps 
    653   1.1        mw 	splx (s);
    654   1.1        mw 
    655  1.23    chopps 	delay (siop_reset_delay * 1000);
    656  1.37    bouyer 	printf("siop id %d reset V%d\n", sc->sc_link.scsipi_scsi.adapter_target,
    657  1.23    chopps 	    rp->siop_ctest8 >> 4);
    658  1.23    chopps 
    659  1.23    chopps 	if ((sc->sc_flags & SIOP_ALIVE) == 0) {
    660  1.23    chopps 		TAILQ_INIT(&sc->ready_list);
    661  1.23    chopps 		TAILQ_INIT(&sc->nexus_list);
    662  1.23    chopps 		TAILQ_INIT(&sc->free_list);
    663  1.23    chopps 		sc->sc_nexus = NULL;
    664  1.23    chopps 		acb = sc->sc_acb;
    665  1.28     chuck 		bzero(acb, sizeof(struct siop_acb) * SIOP_NACB);
    666  1.28     chuck 		for (i = 0; i < SIOP_NACB; i++) {
    667  1.23    chopps 			TAILQ_INSERT_TAIL(&sc->free_list, acb, chain);
    668  1.23    chopps 			acb++;
    669  1.23    chopps 		}
    670  1.23    chopps 		bzero(sc->sc_tinfo, sizeof(sc->sc_tinfo));
    671  1.23    chopps 	} else {
    672  1.23    chopps 		if (sc->sc_nexus != NULL) {
    673  1.23    chopps 			sc->sc_nexus->xs->error = XS_DRIVER_STUFFUP;
    674  1.23    chopps 			siop_scsidone(sc->sc_nexus, sc->sc_nexus->stat[0]);
    675  1.23    chopps 		}
    676  1.30     veego 		while ((acb = sc->nexus_list.tqh_first) > 0) {
    677  1.23    chopps 			acb->xs->error = XS_DRIVER_STUFFUP;
    678  1.23    chopps 			siop_scsidone(acb, acb->stat[0]);
    679  1.23    chopps 		}
    680  1.23    chopps 	}
    681  1.23    chopps 
    682  1.20    chopps 	sc->sc_flags |= SIOP_ALIVE;
    683  1.23    chopps 	sc->sc_flags &= ~(SIOP_INTDEFER|SIOP_INTSOFF);
    684  1.23    chopps 	/* enable SCSI and DMA interrupts */
    685  1.23    chopps 	sc->sc_sien = SIOP_SIEN_M_A | SIOP_SIEN_STO | /*SIOP_SIEN_SEL |*/ SIOP_SIEN_SGE |
    686  1.23    chopps 	    SIOP_SIEN_UDC | SIOP_SIEN_RST | SIOP_SIEN_PAR;
    687  1.23    chopps 	sc->sc_dien = SIOP_DIEN_BF | SIOP_DIEN_ABRT | SIOP_DIEN_SIR |
    688  1.23    chopps 	    /*SIOP_DIEN_WTD |*/ SIOP_DIEN_IID;
    689  1.23    chopps 	rp->siop_sien = sc->sc_sien;
    690  1.23    chopps 	rp->siop_dien = sc->sc_dien;
    691   1.1        mw }
    692   1.1        mw 
    693   1.1        mw /*
    694   1.1        mw  * Setup Data Storage for 53C710 and start SCRIPTS processing
    695   1.1        mw  */
    696   1.1        mw 
    697   1.8    chopps void
    698  1.23    chopps siop_start (sc, target, lun, cbuf, clen, buf, len)
    699  1.20    chopps 	struct siop_softc *sc;
    700   1.1        mw 	int target;
    701  1.18    chopps 	int lun;
    702   1.1        mw 	u_char *cbuf;
    703   1.1        mw 	int clen;
    704   1.1        mw 	u_char *buf;
    705   1.1        mw 	int len;
    706   1.1        mw {
    707  1.20    chopps 	siop_regmap_p rp = sc->sc_siopp;
    708   1.1        mw 	int nchain;
    709   1.1        mw 	int count, tcount;
    710   1.1        mw 	char *addr, *dmaend;
    711  1.23    chopps 	struct siop_acb *acb = sc->sc_nexus;
    712  1.31     veego #ifdef DEBUG
    713  1.31     veego 	int i;
    714  1.31     veego #endif
    715   1.1        mw 
    716  1.18    chopps #ifdef DEBUG
    717  1.23    chopps 	if (siop_debug & 0x100 && rp->siop_sbcl & SIOP_BSY) {
    718  1.35  christos 		printf ("ACK! siop was busy: rp %p script %p dsa %p active %ld\n",
    719  1.23    chopps 		    rp, &scripts, &acb->ds, sc->sc_active);
    720  1.35  christos 		printf ("istat %02x sfbr %02x lcrc %02x sien %02x dien %02x\n",
    721  1.23    chopps 		    rp->siop_istat, rp->siop_sfbr, rp->siop_lcrc,
    722  1.23    chopps 		    rp->siop_sien, rp->siop_dien);
    723  1.23    chopps #ifdef DDB
    724  1.18    chopps 		/*Debugger();*/
    725  1.23    chopps #endif
    726  1.18    chopps 	}
    727  1.18    chopps #endif
    728  1.23    chopps 	acb->msgout[0] = MSG_IDENTIFY | lun;
    729  1.23    chopps 	if (siop_allow_disc[target] & 2 ||
    730  1.23    chopps 	    (siop_allow_disc[target] && len == 0))
    731  1.23    chopps 		acb->msgout[0] = MSG_IDENTIFY_DR | lun;
    732  1.23    chopps 	acb->status = 0;
    733  1.23    chopps 	acb->stat[0] = -1;
    734  1.23    chopps 	acb->msg[0] = -1;
    735  1.24    chopps 	acb->ds.scsi_addr = (0x10000 << target) | (sc->sc_sync[target].sxfer << 8);
    736  1.23    chopps 	acb->ds.idlen = 1;
    737  1.23    chopps 	acb->ds.idbuf = (char *) kvtop(&acb->msgout[0]);
    738  1.23    chopps 	acb->ds.cmdlen = clen;
    739  1.23    chopps 	acb->ds.cmdbuf = (char *) kvtop(cbuf);
    740  1.23    chopps 	acb->ds.stslen = 1;
    741  1.23    chopps 	acb->ds.stsbuf = (char *) kvtop(&acb->stat[0]);
    742  1.23    chopps 	acb->ds.msglen = 1;
    743  1.23    chopps 	acb->ds.msgbuf = (char *) kvtop(&acb->msg[0]);
    744  1.23    chopps 	acb->msg[1] = -1;
    745  1.23    chopps 	acb->ds.msginlen = 1;
    746  1.23    chopps 	acb->ds.extmsglen = 1;
    747  1.23    chopps 	acb->ds.synmsglen = 3;
    748  1.23    chopps 	acb->ds.msginbuf = (char *) kvtop(&acb->msg[1]);
    749  1.23    chopps 	acb->ds.extmsgbuf = (char *) kvtop(&acb->msg[2]);
    750  1.23    chopps 	acb->ds.synmsgbuf = (char *) kvtop(&acb->msg[3]);
    751  1.23    chopps 	bzero(&acb->ds.chain, sizeof (acb->ds.chain));
    752   1.1        mw 
    753  1.40    mhitch 	/*
    754  1.40    mhitch 	 * Negotiate wide is the initial negotiation state;  since the 53c710
    755  1.40    mhitch 	 * doesn't do wide transfers, just begin the synchronous transfer
    756  1.40    mhitch 	 * negotation here.
    757  1.40    mhitch 	 */
    758  1.40    mhitch 	if (sc->sc_sync[target].state == NEG_WIDE) {
    759   1.8    chopps 		if (siop_inhibit_sync[target]) {
    760  1.40    mhitch 			sc->sc_sync[target].state = NEG_DONE;
    761  1.24    chopps 			sc->sc_sync[target].sbcl = 0;
    762  1.24    chopps 			sc->sc_sync[target].sxfer = 0;
    763   1.1        mw #ifdef DEBUG
    764   1.1        mw 			if (siopsync_debug)
    765  1.35  christos 				printf ("Forcing target %d asynchronous\n", target);
    766   1.1        mw #endif
    767   1.1        mw 		}
    768   1.1        mw 		else {
    769  1.23    chopps 			acb->msg[2] = -1;
    770  1.23    chopps 			acb->msgout[1] = MSG_EXT_MESSAGE;
    771  1.23    chopps 			acb->msgout[2] = 3;
    772  1.23    chopps 			acb->msgout[3] = MSG_SYNC_REQ;
    773  1.23    chopps #ifdef MAXTOR_SYNC_KLUDGE
    774  1.23    chopps 			acb->msgout[4] = 50 / 4;	/* ask for ridiculous period */
    775  1.23    chopps #else
    776  1.24    chopps 			acb->msgout[4] = sc->sc_minsync;
    777  1.23    chopps #endif
    778  1.23    chopps 			acb->msgout[5] = SIOP_MAX_OFFSET;
    779  1.23    chopps 			acb->ds.idlen = 6;
    780  1.40    mhitch 			sc->sc_sync[target].state = NEG_WAITS;
    781   1.1        mw #ifdef DEBUG
    782   1.1        mw 			if (siopsync_debug)
    783  1.35  christos 				printf ("Sending sync request to target %d\n", target);
    784   1.1        mw #endif
    785   1.1        mw 		}
    786   1.1        mw 	}
    787   1.1        mw 
    788   1.1        mw /*
    789  1.23    chopps  * Build physical DMA addresses for scatter/gather I/O
    790   1.1        mw  */
    791  1.23    chopps 	acb->iob_buf = buf;
    792  1.23    chopps 	acb->iob_len = len;
    793  1.23    chopps 	acb->iob_curbuf = acb->iob_curlen = 0;
    794   1.1        mw 	nchain = 0;
    795   1.1        mw 	count = len;
    796   1.1        mw 	addr = buf;
    797   1.1        mw 	dmaend = NULL;
    798   1.1        mw 	while (count > 0) {
    799  1.23    chopps 		acb->ds.chain[nchain].databuf = (char *) kvtop (addr);
    800   1.1        mw 		if (count < (tcount = NBPG - ((int) addr & PGOFSET)))
    801   1.1        mw 			tcount = count;
    802  1.23    chopps 		acb->ds.chain[nchain].datalen = tcount;
    803   1.1        mw 		addr += tcount;
    804   1.1        mw 		count -= tcount;
    805  1.23    chopps 		if (acb->ds.chain[nchain].databuf == dmaend) {
    806  1.23    chopps 			dmaend += acb->ds.chain[nchain].datalen;
    807  1.23    chopps 			acb->ds.chain[nchain].datalen = 0;
    808  1.23    chopps 			acb->ds.chain[--nchain].datalen += tcount;
    809   1.1        mw #ifdef DEBUG
    810   1.1        mw 			++siopdma_hits;
    811   1.1        mw #endif
    812   1.1        mw 		}
    813   1.1        mw 		else {
    814  1.23    chopps 			dmaend = acb->ds.chain[nchain].databuf +
    815  1.23    chopps 			    acb->ds.chain[nchain].datalen;
    816  1.23    chopps 			acb->ds.chain[nchain].datalen = tcount;
    817   1.1        mw #ifdef DEBUG
    818  1.14    chopps 			if (nchain)	/* Don't count miss on first one */
    819  1.14    chopps 				++siopdma_misses;
    820   1.1        mw #endif
    821   1.1        mw 		}
    822   1.1        mw 		++nchain;
    823   1.1        mw 	}
    824   1.1        mw #ifdef DEBUG
    825   1.1        mw 	if (nchain != 1 && len != 0 && siop_debug & 3) {
    826  1.35  christos 		printf ("DMA chaining set: %d\n", nchain);
    827   1.1        mw 		for (i = 0; i < nchain; ++i) {
    828  1.35  christos 			printf ("  [%d] %8p %lx\n", i, acb->ds.chain[i].databuf,
    829  1.23    chopps 			    acb->ds.chain[i].datalen);
    830   1.1        mw 		}
    831   1.1        mw 	}
    832   1.1        mw #endif
    833   1.1        mw 
    834  1.23    chopps 	/* push data cache for all data the 53c710 needs to access */
    835  1.30     veego 	dma_cachectl ((caddr_t)acb, sizeof (struct siop_acb));
    836  1.12    chopps 	dma_cachectl (cbuf, clen);
    837  1.12    chopps 	if (buf != NULL && len != 0)
    838  1.12    chopps 		dma_cachectl (buf, len);
    839  1.23    chopps #ifdef DEBUG
    840  1.23    chopps 	if (siop_debug & 0x100 && rp->siop_sbcl & SIOP_BSY) {
    841  1.35  christos 		printf ("ACK! siop was busy at start: rp %p script %p dsa %p active %ld\n",
    842  1.23    chopps 		    rp, &scripts, &acb->ds, sc->sc_active);
    843  1.23    chopps #ifdef DDB
    844  1.23    chopps 		/*Debugger();*/
    845  1.23    chopps #endif
    846  1.23    chopps 	}
    847  1.23    chopps #endif
    848  1.23    chopps 	if (sc->nexus_list.tqh_first == NULL) {
    849  1.23    chopps 		if (rp->siop_istat & SIOP_ISTAT_CON)
    850  1.35  christos 			printf("%s: siop_select while connected?\n",
    851  1.23    chopps 			    sc->sc_dev.dv_xname);
    852  1.23    chopps 		rp->siop_temp = 0;
    853  1.24    chopps 		rp->siop_sbcl = sc->sc_sync[target].sbcl;
    854  1.30     veego 		rp->siop_dsa = kvtop((caddr_t)&acb->ds);
    855  1.20    chopps 		rp->siop_dsp = sc->sc_scriptspa;
    856  1.23    chopps 		SIOP_TRACE('s',1,0,0)
    857  1.18    chopps 	} else {
    858  1.23    chopps 		if ((rp->siop_istat & SIOP_ISTAT_CON) == 0) {
    859  1.23    chopps 			rp->siop_istat = SIOP_ISTAT_SIGP;
    860  1.23    chopps 			SIOP_TRACE('s',2,0,0);
    861  1.23    chopps 		}
    862  1.23    chopps 		else {
    863  1.23    chopps 			SIOP_TRACE('s',3,rp->siop_istat,0);
    864  1.23    chopps 		}
    865  1.18    chopps 	}
    866  1.18    chopps #ifdef DEBUG
    867  1.18    chopps 	++siopstarts;
    868  1.18    chopps #endif
    869   1.1        mw }
    870   1.1        mw 
    871   1.1        mw /*
    872   1.1        mw  * Process a DMA or SCSI interrupt from the 53C710 SIOP
    873   1.1        mw  */
    874   1.1        mw 
    875   1.8    chopps int
    876  1.20    chopps siop_checkintr(sc, istat, dstat, sstat0, status)
    877  1.20    chopps 	struct	siop_softc *sc;
    878   1.1        mw 	u_char	istat;
    879   1.1        mw 	u_char	dstat;
    880   1.1        mw 	u_char	sstat0;
    881   1.1        mw 	int	*status;
    882   1.1        mw {
    883  1.20    chopps 	siop_regmap_p rp = sc->sc_siopp;
    884  1.23    chopps 	struct siop_acb *acb = sc->sc_nexus;
    885  1.30     veego 	int	target = 0;
    886  1.18    chopps 	int	dfifo, dbc, sstat1;
    887   1.1        mw 
    888  1.20    chopps 	dfifo = rp->siop_dfifo;
    889  1.20    chopps 	dbc = rp->siop_dbc0;
    890  1.20    chopps 	sstat1 = rp->siop_sstat1;
    891  1.20    chopps 	rp->siop_ctest8 |= SIOP_CTEST8_CLF;
    892  1.23    chopps 	while ((rp->siop_ctest1 & SIOP_CTEST1_FMT) != SIOP_CTEST1_FMT)
    893   1.1        mw 		;
    894  1.20    chopps 	rp->siop_ctest8 &= ~SIOP_CTEST8_CLF;
    895   1.1        mw #ifdef DEBUG
    896  1.18    chopps 	++siopints;
    897  1.23    chopps #if 0
    898  1.18    chopps 	if (siop_debug & 0x100) {
    899  1.23    chopps 		DCIAS(&acb->stat[0]);	/* XXX */
    900  1.35  christos 		printf ("siopchkintr: istat %x dstat %x sstat0 %x dsps %x sbcl %x sts %x msg %x\n",
    901  1.23    chopps 		    istat, dstat, sstat0, rp->siop_dsps, rp->siop_sbcl, acb->stat[0], acb->msg[0]);
    902  1.35  christos 		printf ("sync msg in: %02x %02x %02x %02x %02x %02x\n",
    903  1.23    chopps 		    acb->msg[0], acb->msg[1], acb->msg[2],
    904  1.23    chopps 		    acb->msg[3], acb->msg[4], acb->msg[5]);
    905  1.23    chopps 	}
    906  1.23    chopps #endif
    907  1.23    chopps 	if (rp->siop_dsp && (rp->siop_dsp < sc->sc_scriptspa ||
    908  1.23    chopps 	    rp->siop_dsp >= sc->sc_scriptspa + sizeof(scripts))) {
    909  1.35  christos 		printf ("%s: dsp not within script dsp %lx scripts %lx:%lx",
    910  1.23    chopps 		    sc->sc_dev.dv_xname, rp->siop_dsp, sc->sc_scriptspa,
    911  1.23    chopps 		    sc->sc_scriptspa + sizeof(scripts));
    912  1.35  christos 		printf(" istat %x dstat %x sstat0 %x\n",
    913  1.23    chopps 		    istat, dstat, sstat0);
    914  1.32    mhitch #ifdef DDB
    915  1.23    chopps 		Debugger();
    916  1.32    mhitch #endif
    917   1.1        mw 	}
    918   1.1        mw #endif
    919  1.23    chopps 	SIOP_TRACE('i',dstat,istat,(istat&SIOP_ISTAT_DIP)?rp->siop_dsps&0xff:sstat0);
    920  1.20    chopps 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff00) {
    921   1.1        mw 		/* Normal completion status, or check condition */
    922  1.23    chopps #ifdef DEBUG
    923  1.30     veego 		if (rp->siop_dsa != kvtop((caddr_t)&acb->ds)) {
    924  1.35  christos 			printf ("siop: invalid dsa: %lx %x\n", rp->siop_dsa,
    925  1.30     veego 			    kvtop((caddr_t)&acb->ds));
    926   1.1        mw 			panic("*** siop DSA invalid ***");
    927   1.1        mw 		}
    928  1.23    chopps #endif
    929  1.37    bouyer 		target = acb->xs->sc_link->scsipi_scsi.target;
    930  1.40    mhitch 		if (sc->sc_sync[target].state == NEG_WAITS) {
    931  1.40    mhitch 			if (acb->msg[1] == 0xff)
    932  1.40    mhitch 				printf ("%s: target %d ignored sync request\n",
    933  1.40    mhitch 				    sc->sc_dev.dv_xname, target);
    934  1.40    mhitch 			else if (acb->msg[1] == MSG_REJECT)
    935  1.40    mhitch 				printf ("%s: target %d rejected sync request\n",
    936  1.40    mhitch 				    sc->sc_dev.dv_xname, target);
    937  1.40    mhitch 			else
    938  1.40    mhitch /* XXX - need to set sync transfer parameters */
    939  1.40    mhitch 				printf("%s: target %d (sync) %02x %02x %02x\n",
    940  1.40    mhitch 				    sc->sc_dev.dv_xname, target, acb->msg[1],
    941  1.40    mhitch 				    acb->msg[2], acb->msg[3]);
    942  1.40    mhitch 			sc->sc_sync[target].state = NEG_DONE;
    943  1.40    mhitch 		}
    944  1.40    mhitch 		dma_cachectl(&acb->stat[0], 1);
    945  1.40    mhitch 		*status = acb->stat[0];
    946  1.40    mhitch #ifdef DEBUG
    947  1.40    mhitch 		if (rp->siop_sbcl & SIOP_BSY) {
    948  1.40    mhitch 			/*printf ("ACK! siop was busy at end: rp %x script %x dsa %x\n",
    949  1.40    mhitch 			    rp, &scripts, &acb->ds);*/
    950  1.40    mhitch #ifdef DDB
    951  1.40    mhitch 			/*Debugger();*/
    952  1.40    mhitch #endif
    953  1.40    mhitch 		}
    954  1.40    mhitch 		if (acb->msg[0] != 0x00)
    955  1.40    mhitch 			printf("%s: message was not COMMAND COMPLETE: %x\n",
    956  1.40    mhitch 			    sc->sc_dev.dv_xname, acb->msg[0]);
    957  1.40    mhitch #endif
    958  1.40    mhitch 		if (sc->nexus_list.tqh_first)
    959  1.40    mhitch 			rp->siop_dcntl |= SIOP_DCNTL_STD;
    960  1.40    mhitch 		return 1;
    961  1.40    mhitch 	}
    962  1.40    mhitch 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff0b) {
    963  1.40    mhitch 		target = acb->xs->sc_link->scsipi_scsi.target;
    964  1.40    mhitch 		if (acb->msg[1] == MSG_EXT_MESSAGE && acb->msg[2] == 3 &&
    965  1.40    mhitch 		    acb->msg[3] == MSG_SYNC_REQ) {
    966   1.1        mw #ifdef DEBUG
    967   1.1        mw 			if (siopsync_debug)
    968  1.35  christos 				printf ("sync msg in: %02x %02x %02x %02x %02x %02x\n",
    969  1.23    chopps 				    acb->msg[0], acb->msg[1], acb->msg[2],
    970  1.23    chopps 				    acb->msg[3], acb->msg[4], acb->msg[5]);
    971   1.1        mw #endif
    972  1.24    chopps 			sc->sc_sync[target].sxfer = 0;
    973  1.24    chopps 			sc->sc_sync[target].sbcl = 0;
    974  1.23    chopps 			if (acb->msg[2] == 3 &&
    975  1.23    chopps 			    acb->msg[3] == MSG_SYNC_REQ &&
    976  1.23    chopps 			    acb->msg[5] != 0) {
    977  1.23    chopps #ifdef MAXTOR_KLUDGE
    978  1.23    chopps 				/*
    979  1.23    chopps 				 * Kludge for my Maxtor XT8580S
    980  1.23    chopps 				 * It accepts whatever we request, even
    981  1.23    chopps 				 * though it won't work.  So we ask for
    982  1.23    chopps 				 * a short period than we can handle.  If
    983  1.23    chopps 				 * the device says it can do it, use 208ns.
    984  1.23    chopps 				 * If the device says it can do less than
    985  1.23    chopps 				 * 100ns, then we limit it to 100ns.
    986  1.23    chopps 				 */
    987  1.23    chopps 				if (acb->msg[4] && acb->msg[4] < 100 / 4) {
    988   1.8    chopps #ifdef DEBUG
    989  1.35  christos 					printf ("%d: target %d wanted %dns period\n",
    990  1.20    chopps 					    sc->sc_dev.dv_xname, target,
    991  1.23    chopps 					    acb->msg[4] * 4);
    992   1.8    chopps #endif
    993  1.23    chopps 					if (acb->msg[4] == 50 / 4)
    994  1.23    chopps 						acb->msg[4] = 208 / 4;
    995   1.8    chopps 					else
    996  1.23    chopps 						acb->msg[4] = 100 / 4;
    997   1.8    chopps 				}
    998  1.23    chopps #endif /* MAXTOR_KLUDGE */
    999  1.35  christos 				printf ("%s: target %d now synchronous, period=%dns, offset=%d\n",
   1000  1.20    chopps 				    sc->sc_dev.dv_xname, target,
   1001  1.23    chopps 				    acb->msg[4] * 4, acb->msg[5]);
   1002  1.20    chopps 				scsi_period_to_siop (sc, target);
   1003   1.1        mw 			}
   1004  1.40    mhitch 			rp->siop_sxfer = sc->sc_sync[target].sxfer;
   1005  1.40    mhitch 			rp->siop_sbcl = sc->sc_sync[target].sbcl;
   1006  1.40    mhitch 			if (sc->sc_sync[target].state == NEG_WAITS) {
   1007  1.40    mhitch 				sc->sc_sync[target].state = NEG_DONE;
   1008  1.40    mhitch 				rp->siop_dsp = sc->sc_scriptspa + Ent_clear_ack;
   1009  1.40    mhitch 				return(0);
   1010  1.40    mhitch 			}
   1011  1.40    mhitch 			rp->siop_dcntl |= SIOP_DCNTL_STD;
   1012  1.40    mhitch 			sc->sc_sync[target].state = NEG_DONE;
   1013  1.40    mhitch 			return (0);
   1014   1.1        mw 		}
   1015  1.40    mhitch 		/* XXX - not SDTR message */
   1016   1.1        mw 	}
   1017   1.1        mw 	if (sstat0 & SIOP_SSTAT0_M_A) {		/* Phase mismatch */
   1018   1.1        mw #ifdef DEBUG
   1019  1.18    chopps 		++siopphmm;
   1020  1.23    chopps 		if (acb == NULL)
   1021  1.35  christos 			printf("%s: Phase mismatch with no active command?\n",
   1022  1.23    chopps 			    sc->sc_dev.dv_xname);
   1023  1.23    chopps #endif
   1024  1.23    chopps 		if (acb->iob_len) {
   1025  1.18    chopps 			int adjust;
   1026  1.18    chopps 			adjust = ((dfifo - (dbc & 0x7f)) & 0x7f);
   1027  1.18    chopps 			if (sstat1 & SIOP_SSTAT1_ORF)
   1028  1.18    chopps 				++adjust;
   1029  1.18    chopps 			if (sstat1 & SIOP_SSTAT1_OLF)
   1030  1.18    chopps 				++adjust;
   1031  1.23    chopps 			acb->iob_curlen = *((long *)&rp->siop_dcmd) & 0xffffff;
   1032  1.23    chopps 			acb->iob_curlen += adjust;
   1033  1.23    chopps 			acb->iob_curbuf = *((long *)&rp->siop_dnad) - adjust;
   1034  1.23    chopps #ifdef DEBUG
   1035  1.23    chopps 			if (siop_debug & 0x100) {
   1036  1.23    chopps 				int i;
   1037  1.35  christos 				printf ("Phase mismatch: curbuf %lx curlen %lx dfifo %x dbc %x sstat1 %x adjust %x sbcl %x starts %d acb %p\n",
   1038  1.23    chopps 				    acb->iob_curbuf, acb->iob_curlen, dfifo,
   1039  1.23    chopps 				    dbc, sstat1, adjust, rp->siop_sbcl, siopstarts, acb);
   1040  1.23    chopps 				if (acb->ds.chain[1].datalen) {
   1041  1.23    chopps 					for (i = 0; acb->ds.chain[i].datalen; ++i)
   1042  1.35  christos 						printf("chain[%d] addr %p len %lx\n",
   1043  1.23    chopps 						    i, acb->ds.chain[i].databuf,
   1044  1.23    chopps 						    acb->ds.chain[i].datalen);
   1045  1.23    chopps 				}
   1046  1.23    chopps 			}
   1047  1.18    chopps #endif
   1048  1.30     veego 			dma_cachectl ((caddr_t)acb, sizeof(*acb));
   1049  1.18    chopps 		}
   1050  1.23    chopps #ifdef DEBUG
   1051  1.23    chopps 		SIOP_TRACE('m',rp->siop_sbcl,(rp->siop_dsp>>8),rp->siop_dsp);
   1052   1.1        mw 		if (siop_debug & 9)
   1053  1.35  christos 			printf ("Phase mismatch: %x dsp +%lx dcmd %lx\n",
   1054  1.20    chopps 			    rp->siop_sbcl,
   1055  1.20    chopps 			    rp->siop_dsp - sc->sc_scriptspa,
   1056  1.20    chopps 			    *((long *)&rp->siop_dcmd));
   1057   1.1        mw #endif
   1058  1.23    chopps 		if ((rp->siop_sbcl & SIOP_REQ) == 0) {
   1059  1.35  christos 			printf ("Phase mismatch: REQ not asserted! %02x dsp %lx\n",
   1060  1.23    chopps 			    rp->siop_sbcl, rp->siop_dsp);
   1061  1.32    mhitch #if defined(DEBUG) && defined(DDB)
   1062  1.41        is 			/*Debugger(); XXX is*/
   1063  1.23    chopps #endif
   1064  1.23    chopps 		}
   1065  1.20    chopps 		switch (rp->siop_sbcl & 7) {
   1066  1.18    chopps 		case 0:		/* data out */
   1067  1.18    chopps 		case 1:		/* data in */
   1068  1.18    chopps 		case 2:		/* status */
   1069  1.18    chopps 		case 3:		/* command */
   1070  1.18    chopps 		case 6:		/* message in */
   1071  1.18    chopps 		case 7:		/* message out */
   1072  1.20    chopps 			rp->siop_dsp = sc->sc_scriptspa + Ent_switch;
   1073   1.1        mw 			break;
   1074   1.1        mw 		default:
   1075   1.1        mw 			goto bad_phase;
   1076   1.1        mw 		}
   1077   1.1        mw 		return 0;
   1078   1.1        mw 	}
   1079   1.1        mw 	if (sstat0 & SIOP_SSTAT0_STO) {		/* Select timed out */
   1080   1.1        mw #ifdef DEBUG
   1081  1.23    chopps 		if (acb == NULL)
   1082  1.35  christos 			printf("%s: Select timeout with no active command?\n",
   1083  1.23    chopps 			    sc->sc_dev.dv_xname);
   1084  1.20    chopps 		if (rp->siop_sbcl & SIOP_BSY) {
   1085  1.35  christos 			printf ("ACK! siop was busy at timeout: rp %p script %p dsa %p\n",
   1086  1.23    chopps 			    rp, &scripts, &acb->ds);
   1087  1.35  christos 			printf(" sbcl %x sdid %x istat %x dstat %x sstat0 %x\n",
   1088  1.20    chopps 			    rp->siop_sbcl, rp->siop_sdid, istat, dstat, sstat0);
   1089  1.23    chopps 			if (!(rp->siop_sbcl & SIOP_BSY)) {
   1090  1.35  christos 				printf ("Yikes, it's not busy now!\n");
   1091  1.18    chopps #if 0
   1092  1.23    chopps 				*status = -1;
   1093  1.23    chopps 				if (sc->nexus_list.tqh_first)
   1094  1.23    chopps 					rp->siop_dsp = sc->sc_scriptspa + Ent_wait_reselect;
   1095  1.23    chopps 				return 1;
   1096   1.1        mw #endif
   1097  1.23    chopps 			}
   1098  1.20    chopps /*			rp->siop_dcntl |= SIOP_DCNTL_STD;*/
   1099   1.1        mw 			return (0);
   1100  1.23    chopps #ifdef DDB
   1101  1.18    chopps 			Debugger();
   1102  1.23    chopps #endif
   1103   1.1        mw 		}
   1104  1.18    chopps #endif
   1105  1.18    chopps 		*status = -1;
   1106  1.23    chopps 		acb->xs->error = XS_SELTIMEOUT;
   1107  1.23    chopps 		if (sc->nexus_list.tqh_first)
   1108  1.20    chopps 			rp->siop_dsp = sc->sc_scriptspa + Ent_wait_reselect;
   1109  1.18    chopps 		return 1;
   1110   1.1        mw 	}
   1111  1.23    chopps 	if (acb)
   1112  1.37    bouyer 		target = acb->xs->sc_link->scsipi_scsi.target;
   1113  1.23    chopps 	else
   1114  1.23    chopps 		target = 7;
   1115  1.18    chopps 	if (sstat0 & SIOP_SSTAT0_UDC) {
   1116   1.8    chopps #ifdef DEBUG
   1117  1.23    chopps 		if (acb == NULL)
   1118  1.35  christos 			printf("%s: Unexpected disconnect with no active command?\n",
   1119  1.23    chopps 			    sc->sc_dev.dv_xname);
   1120  1.35  christos 		printf ("%s: target %d disconnected unexpectedly\n",
   1121  1.20    chopps 		   sc->sc_dev.dv_xname, target);
   1122   1.8    chopps #endif
   1123   1.8    chopps #if 0
   1124  1.20    chopps 		siopabort (sc, rp, "siopchkintr");
   1125   1.8    chopps #endif
   1126   1.8    chopps 		*status = STS_BUSY;
   1127  1.23    chopps 		if (sc->nexus_list.tqh_first)
   1128  1.20    chopps 			rp->siop_dsp = sc->sc_scriptspa + Ent_wait_reselect;
   1129  1.29    mhitch 		return (acb != NULL);
   1130   1.8    chopps 	}
   1131  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR && (rp->siop_dsps == 0xff01 ||
   1132  1.23    chopps 	    rp->siop_dsps == 0xff02)) {
   1133  1.18    chopps #ifdef DEBUG
   1134  1.18    chopps 		if (siop_debug & 0x100)
   1135  1.35  christos 			printf ("%s: ID %02x disconnected TEMP %lx (+%lx) curbuf %lx curlen %lx buf %p len %lx dfifo %x dbc %x sstat1 %x starts %d acb %p\n",
   1136  1.20    chopps 			    sc->sc_dev.dv_xname, 1 << target, rp->siop_temp,
   1137  1.23    chopps 			    rp->siop_temp ? rp->siop_temp - sc->sc_scriptspa : 0,
   1138  1.23    chopps 			    acb->iob_curbuf, acb->iob_curlen,
   1139  1.23    chopps 			    acb->ds.chain[0].databuf, acb->ds.chain[0].datalen, dfifo, dbc, sstat1, siopstarts, acb);
   1140  1.23    chopps #endif
   1141  1.23    chopps 		if (acb == NULL) {
   1142  1.35  christos 			printf("%s: Disconnect with no active command?\n",
   1143  1.23    chopps 			    sc->sc_dev.dv_xname);
   1144  1.23    chopps 			return (0);
   1145  1.23    chopps 		}
   1146  1.23    chopps 		/*
   1147  1.23    chopps 		 * XXXX need to update iob_curbuf/iob_curlen to reflect
   1148  1.23    chopps 		 * current data transferred.  If device disconnected in
   1149  1.23    chopps 		 * the middle of a DMA block, they should already be set
   1150  1.23    chopps 		 * by the phase change interrupt.  If the disconnect
   1151  1.23    chopps 		 * occurs on a DMA block boundary, we have to figure out
   1152  1.23    chopps 		 * which DMA block it was.
   1153  1.23    chopps 		 */
   1154  1.23    chopps 		if (acb->iob_len && rp->siop_temp) {
   1155  1.23    chopps 			int n = rp->siop_temp - sc->sc_scriptspa;
   1156  1.23    chopps 
   1157  1.23    chopps 			if (acb->iob_curlen && acb->iob_curlen != acb->ds.chain[0].datalen)
   1158  1.35  christos 				printf("%s: iob_curbuf/len already set? n %x iob %lx/%lx chain[0] %p/%lx\n",
   1159  1.23    chopps 				    sc->sc_dev.dv_xname, n, acb->iob_curbuf, acb->iob_curlen,
   1160  1.23    chopps 				    acb->ds.chain[0].databuf, acb->ds.chain[0].datalen);
   1161  1.23    chopps 			if (n < Ent_datain)
   1162  1.23    chopps 				n = (n - Ent_dataout) / 16;
   1163  1.23    chopps 			else
   1164  1.23    chopps 				n = (n - Ent_datain) / 16;
   1165  1.23    chopps 			if (n <= 0 && n > DMAMAXIO)
   1166  1.35  christos 				printf("TEMP invalid %d\n", n);
   1167  1.23    chopps 			else {
   1168  1.23    chopps 				acb->iob_curbuf = (u_long)acb->ds.chain[n].databuf;
   1169  1.23    chopps 				acb->iob_curlen = acb->ds.chain[n].datalen;
   1170  1.23    chopps 			}
   1171  1.23    chopps #ifdef DEBUG
   1172  1.23    chopps 			if (siop_debug & 0x100) {
   1173  1.35  christos 				printf("%s: TEMP offset %d", sc->sc_dev.dv_xname, n);
   1174  1.35  christos 				printf(" curbuf %lx curlen %lx\n", acb->iob_curbuf,
   1175  1.23    chopps 				    acb->iob_curlen);
   1176  1.23    chopps 			}
   1177  1.18    chopps #endif
   1178  1.23    chopps 		}
   1179  1.18    chopps 		/*
   1180  1.23    chopps 		 * If data transfer was interrupted by disconnect, iob_curbuf
   1181  1.23    chopps 		 * and iob_curlen should reflect the point of interruption.
   1182  1.23    chopps 		 * Adjust the DMA chain so that the data transfer begins
   1183  1.23    chopps 		 * at the appropriate place upon reselection.
   1184  1.23    chopps 		 * XXX This should only be done on save data pointer message?
   1185  1.18    chopps 		 */
   1186  1.23    chopps 		if (acb->iob_curlen) {
   1187  1.23    chopps 			int i, j;
   1188  1.23    chopps 
   1189  1.23    chopps #ifdef DEBUG
   1190  1.23    chopps 			if (siop_debug & 0x100)
   1191  1.35  christos 				printf ("%s: adjusting DMA chain\n",
   1192  1.23    chopps 				    sc->sc_dev.dv_xname);
   1193  1.23    chopps 			if (rp->siop_dsps == 0xff02)
   1194  1.35  christos 				printf ("%s: ID %02x disconnected without Save Data Pointers\n",
   1195  1.23    chopps 				    sc->sc_dev.dv_xname, 1 << target);
   1196  1.23    chopps #endif
   1197  1.23    chopps 			for (i = 0; i < DMAMAXIO; ++i) {
   1198  1.23    chopps 				if (acb->ds.chain[i].datalen == 0)
   1199  1.23    chopps 					break;
   1200  1.23    chopps 				if (acb->iob_curbuf >= (long)acb->ds.chain[i].databuf &&
   1201  1.23    chopps 				    acb->iob_curbuf < (long)(acb->ds.chain[i].databuf +
   1202  1.23    chopps 				    acb->ds.chain[i].datalen))
   1203  1.23    chopps 					break;
   1204  1.23    chopps 			}
   1205  1.29    mhitch 			if (i >= DMAMAXIO || acb->ds.chain[i].datalen == 0) {
   1206  1.35  christos 				printf("couldn't find saved data pointer: ");
   1207  1.35  christos 				printf("curbuf %lx curlen %lx i %d\n",
   1208  1.29    mhitch 				    acb->iob_curbuf, acb->iob_curlen, i);
   1209  1.29    mhitch #ifdef DDB
   1210  1.29    mhitch 				Debugger();
   1211  1.29    mhitch #endif
   1212  1.29    mhitch 			}
   1213  1.23    chopps #ifdef DEBUG
   1214  1.23    chopps 			if (siop_debug & 0x100)
   1215  1.35  christos 				printf("  chain[0]: %p/%lx -> %lx/%lx\n",
   1216  1.23    chopps 				    acb->ds.chain[0].databuf,
   1217  1.23    chopps 				    acb->ds.chain[0].datalen,
   1218  1.23    chopps 				    acb->iob_curbuf,
   1219  1.23    chopps 				    acb->iob_curlen);
   1220  1.23    chopps #endif
   1221  1.23    chopps 			acb->ds.chain[0].databuf = (char *)acb->iob_curbuf;
   1222  1.23    chopps 			acb->ds.chain[0].datalen = acb->iob_curlen;
   1223  1.23    chopps 			for (j = 1, ++i; i < DMAMAXIO && acb->ds.chain[i].datalen; ++i, ++j) {
   1224  1.18    chopps #ifdef DEBUG
   1225  1.23    chopps 			if (siop_debug & 0x100)
   1226  1.35  christos 				printf("  chain[%d]: %p/%lx -> %p/%lx\n", j,
   1227  1.23    chopps 				    acb->ds.chain[j].databuf,
   1228  1.23    chopps 				    acb->ds.chain[j].datalen,
   1229  1.23    chopps 				    acb->ds.chain[i].databuf,
   1230  1.23    chopps 				    acb->ds.chain[i].datalen);
   1231   1.8    chopps #endif
   1232  1.23    chopps 				acb->ds.chain[j].databuf = acb->ds.chain[i].databuf;
   1233  1.23    chopps 				acb->ds.chain[j].datalen = acb->ds.chain[i].datalen;
   1234  1.18    chopps 			}
   1235  1.23    chopps 			if (j < DMAMAXIO)
   1236  1.23    chopps 				acb->ds.chain[j].datalen = 0;
   1237  1.30     veego 			DCIAS(kvtop((caddr_t)&acb->ds.chain));
   1238  1.18    chopps 		}
   1239  1.23    chopps 		++sc->sc_tinfo[target].dconns;
   1240  1.23    chopps 		/*
   1241  1.23    chopps 		 * add nexus to waiting list
   1242  1.23    chopps 		 * clear nexus
   1243  1.23    chopps 		 * try to start another command for another target/lun
   1244  1.23    chopps 		 */
   1245  1.23    chopps 		acb->status = sc->sc_flags & SIOP_INTSOFF;
   1246  1.23    chopps 		TAILQ_INSERT_HEAD(&sc->nexus_list, acb, chain);
   1247  1.23    chopps 		sc->sc_nexus = NULL;		/* no current device */
   1248  1.23    chopps 		/* start script to wait for reselect */
   1249  1.23    chopps 		if (sc->sc_nexus == NULL)
   1250  1.23    chopps 			rp->siop_dsp = sc->sc_scriptspa + Ent_wait_reselect;
   1251  1.23    chopps /* XXXX start another command ? */
   1252  1.23    chopps 		if (sc->ready_list.tqh_first)
   1253  1.23    chopps 			siop_sched(sc);
   1254  1.18    chopps 		return (0);
   1255  1.18    chopps 	}
   1256  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff03) {
   1257  1.23    chopps 		int reselid = rp->siop_scratch & 0x7f;
   1258  1.23    chopps 		int reselun = rp->siop_sfbr & 0x07;
   1259  1.23    chopps 
   1260  1.23    chopps 		sc->sc_sstat1 = rp->siop_sbcl;	/* XXXX save current SBCL */
   1261  1.18    chopps #ifdef DEBUG
   1262  1.18    chopps 		if (siop_debug & 0x100)
   1263  1.35  christos 			printf ("%s: target ID %02x reselected dsps %lx\n",
   1264  1.23    chopps 			     sc->sc_dev.dv_xname, reselid,
   1265  1.20    chopps 			     rp->siop_dsps);
   1266  1.23    chopps 		if ((rp->siop_sfbr & 0x80) == 0)
   1267  1.35  christos 			printf("%s: Reselect message in was not identify: %x\n",
   1268  1.23    chopps 			    sc->sc_dev.dv_xname, rp->siop_sfbr);
   1269  1.18    chopps #endif
   1270  1.23    chopps 		if (sc->sc_nexus) {
   1271  1.23    chopps #ifdef DEBUG
   1272  1.23    chopps 			if (siop_debug & 0x100)
   1273  1.35  christos 				printf ("%s: reselect ID %02x w/active\n",
   1274  1.23    chopps 				    sc->sc_dev.dv_xname, reselid);
   1275  1.23    chopps #endif
   1276  1.23    chopps 			TAILQ_INSERT_HEAD(&sc->ready_list, sc->sc_nexus, chain);
   1277  1.37    bouyer 			sc->sc_tinfo[sc->sc_nexus->xs->sc_link->scsipi_scsi.target].lubusy
   1278  1.37    bouyer 			    &= ~(1 << sc->sc_nexus->xs->sc_link->scsipi_scsi.lun);
   1279  1.23    chopps 			--sc->sc_active;
   1280  1.18    chopps 		}
   1281  1.18    chopps 		/*
   1282  1.23    chopps 		 * locate acb of reselecting device
   1283  1.23    chopps 		 * set sc->sc_nexus to acb
   1284  1.18    chopps 		 */
   1285  1.23    chopps 		for (acb = sc->nexus_list.tqh_first; acb;
   1286  1.23    chopps 		    acb = acb->chain.tqe_next) {
   1287  1.23    chopps 			if (reselid != (acb->ds.scsi_addr >> 16) ||
   1288  1.23    chopps 			    reselun != (acb->msgout[0] & 0x07))
   1289  1.18    chopps 				continue;
   1290  1.23    chopps 			TAILQ_REMOVE(&sc->nexus_list, acb, chain);
   1291  1.23    chopps 			sc->sc_nexus = acb;
   1292  1.23    chopps 			sc->sc_flags |= acb->status;
   1293  1.23    chopps 			acb->status = 0;
   1294  1.23    chopps 			DCIAS(kvtop(&acb->stat[0]));
   1295  1.30     veego 			rp->siop_dsa = kvtop((caddr_t)&acb->ds);
   1296  1.37    bouyer 			rp->siop_sxfer =
   1297  1.37    bouyer 				sc->sc_sync[acb->xs->sc_link->scsipi_scsi.target].sxfer;
   1298  1.37    bouyer 			rp->siop_sbcl =
   1299  1.37    bouyer 				sc->sc_sync[acb->xs->sc_link->scsipi_scsi.target].sbcl;
   1300  1.23    chopps 			break;
   1301  1.23    chopps 		}
   1302  1.23    chopps 		if (acb == NULL) {
   1303  1.35  christos 			printf("%s: target ID %02x reselect nexus_list %p\n",
   1304  1.23    chopps 			    sc->sc_dev.dv_xname, reselid,
   1305  1.23    chopps 			    sc->nexus_list.tqh_first);
   1306  1.23    chopps 			panic("unable to find reselecting device");
   1307  1.18    chopps 		}
   1308  1.30     veego 		dma_cachectl ((caddr_t)acb, sizeof(*acb));
   1309  1.23    chopps 		rp->siop_temp = 0;
   1310  1.20    chopps 		rp->siop_dcntl |= SIOP_DCNTL_STD;
   1311  1.18    chopps 		return (0);
   1312  1.18    chopps 	}
   1313  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff04) {
   1314  1.31     veego #ifdef DEBUG
   1315  1.24    chopps 		u_short ctest2 = rp->siop_ctest2;
   1316  1.24    chopps 
   1317  1.23    chopps 		/* reselect was interrupted (by Sig_P or select) */
   1318  1.23    chopps 		if (siop_debug & 0x100 ||
   1319  1.24    chopps 		    (ctest2 & SIOP_CTEST2_SIGP) == 0)
   1320  1.35  christos 			printf ("%s: reselect interrupted (Sig_P?) scntl1 %x ctest2 %x sfbr %x istat %x/%x\n",
   1321  1.24    chopps 			    sc->sc_dev.dv_xname, rp->siop_scntl1,
   1322  1.24    chopps 			    ctest2, rp->siop_sfbr, istat, rp->siop_istat);
   1323  1.24    chopps #endif
   1324  1.24    chopps 		/* XXX assumes it was not select */
   1325  1.24    chopps 		if (sc->sc_nexus == NULL) {
   1326  1.32    mhitch #ifdef DEBUG
   1327  1.35  christos 			printf("%s: reselect interrupted, sc_nexus == NULL\n",
   1328  1.24    chopps 			    sc->sc_dev.dv_xname);
   1329  1.24    chopps #if 0
   1330  1.24    chopps 			siop_dump(sc);
   1331  1.24    chopps #ifdef DDB
   1332  1.24    chopps 			Debugger();
   1333  1.32    mhitch #endif
   1334  1.24    chopps #endif
   1335  1.18    chopps #endif
   1336  1.24    chopps 			rp->siop_dcntl |= SIOP_DCNTL_STD;
   1337  1.24    chopps 			return(0);
   1338  1.24    chopps 		}
   1339  1.37    bouyer 		target = sc->sc_nexus->xs->sc_link->scsipi_scsi.target;
   1340  1.23    chopps 		rp->siop_temp = 0;
   1341  1.30     veego 		rp->siop_dsa = kvtop((caddr_t)&sc->sc_nexus->ds);
   1342  1.24    chopps 		rp->siop_sxfer = sc->sc_sync[target].sxfer;
   1343  1.24    chopps 		rp->siop_sbcl = sc->sc_sync[target].sbcl;
   1344  1.23    chopps 		rp->siop_dsp = sc->sc_scriptspa;
   1345  1.23    chopps 		return (0);
   1346  1.23    chopps 	}
   1347  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff06) {
   1348  1.23    chopps 		if (acb == NULL)
   1349  1.35  christos 			printf("%s: Bad message-in with no active command?\n",
   1350  1.23    chopps 			    sc->sc_dev.dv_xname);
   1351  1.23    chopps 		/* Unrecognized message in byte */
   1352  1.23    chopps 		dma_cachectl (&acb->msg[1],1);
   1353  1.35  christos 		printf ("%s: Unrecognized message in data sfbr %x msg %x sbcl %x\n",
   1354  1.23    chopps 			sc->sc_dev.dv_xname, rp->siop_sfbr, acb->msg[1], rp->siop_sbcl);
   1355  1.23    chopps 		/* what should be done here? */
   1356  1.23    chopps 		DCIAS(kvtop(&acb->msg[1]));
   1357  1.23    chopps 		rp->siop_dsp = sc->sc_scriptspa + Ent_switch;
   1358  1.18    chopps 		return (0);
   1359   1.8    chopps 	}
   1360  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR && rp->siop_dsps == 0xff0a) {
   1361  1.23    chopps 		/* Status phase wasn't followed by message in phase? */
   1362  1.35  christos 		printf ("%s: Status phase not followed by message in phase? sbcl %x sbdl %x\n",
   1363  1.23    chopps 			sc->sc_dev.dv_xname, rp->siop_sbcl, rp->siop_sbdl);
   1364  1.23    chopps 		if (rp->siop_sbcl == 0xa7) {
   1365  1.23    chopps 			/* It is now, just continue the script? */
   1366  1.23    chopps 			rp->siop_dcntl |= SIOP_DCNTL_STD;
   1367  1.23    chopps 			return (0);
   1368  1.23    chopps 		}
   1369  1.23    chopps 	}
   1370   1.1        mw 	if (sstat0 == 0 && dstat & SIOP_DSTAT_SIR) {
   1371  1.23    chopps 		dma_cachectl (&acb->stat[0], 1);
   1372  1.23    chopps 		dma_cachectl (&acb->msg[0], 1);
   1373  1.35  christos 		printf ("SIOP interrupt: %lx sts %x msg %x %x sbcl %x\n",
   1374  1.23    chopps 		    rp->siop_dsps, acb->stat[0], acb->msg[0], acb->msg[1],
   1375  1.20    chopps 		    rp->siop_sbcl);
   1376  1.20    chopps 		siopreset (sc);
   1377   1.1        mw 		*status = -1;
   1378  1.23    chopps 		return 0;	/* siopreset has cleaned up */
   1379   1.1        mw 	}
   1380  1.15    chopps 	if (sstat0 & SIOP_SSTAT0_SGE)
   1381  1.35  christos 		printf ("SIOP: SCSI Gross Error\n");
   1382  1.15    chopps 	if (sstat0 & SIOP_SSTAT0_PAR)
   1383  1.35  christos 		printf ("SIOP: Parity Error\n");
   1384  1.18    chopps 	if (dstat & SIOP_DSTAT_IID)
   1385  1.35  christos 		printf ("SIOP: Invalid instruction detected\n");
   1386   1.1        mw bad_phase:
   1387  1.15    chopps 	/*
   1388  1.15    chopps 	 * temporary panic for unhandled conditions
   1389  1.15    chopps 	 * displays various things about the 53C710 status and registers
   1390  1.15    chopps 	 * then panics.
   1391  1.15    chopps 	 * XXXX need to clean this up to print out the info, reset, and continue
   1392  1.15    chopps 	 */
   1393  1.35  christos 	printf ("siopchkintr: target %x ds %p\n", target, &acb->ds);
   1394  1.35  christos 	printf ("scripts %lx ds %x rp %x dsp %lx dcmd %lx\n", sc->sc_scriptspa,
   1395  1.30     veego 	    kvtop((caddr_t)&acb->ds), kvtop((caddr_t)rp), rp->siop_dsp,
   1396  1.20    chopps 	    *((long *)&rp->siop_dcmd));
   1397  1.35  christos 	printf ("siopchkintr: istat %x dstat %x sstat0 %x dsps %lx dsa %lx sbcl %x sts %x msg %x %x sfbr %x\n",
   1398  1.20    chopps 	    istat, dstat, sstat0, rp->siop_dsps, rp->siop_dsa,
   1399  1.23    chopps 	     rp->siop_sbcl, acb->stat[0], acb->msg[0], acb->msg[1], rp->siop_sfbr);
   1400  1.15    chopps #ifdef DEBUG
   1401  1.15    chopps 	if (siop_debug & 0x20)
   1402  1.15    chopps 		panic("siopchkintr: **** temp ****");
   1403  1.15    chopps #endif
   1404  1.23    chopps #ifdef DDB
   1405  1.23    chopps 	Debugger ();
   1406  1.23    chopps #endif
   1407  1.20    chopps 	siopreset (sc);		/* hard reset */
   1408  1.15    chopps 	*status = -1;
   1409  1.23    chopps 	return 0;		/* siopreset cleaned up */
   1410   1.1        mw }
   1411   1.1        mw 
   1412  1.23    chopps void
   1413  1.23    chopps siop_select(sc)
   1414  1.20    chopps 	struct siop_softc *sc;
   1415   1.1        mw {
   1416  1.23    chopps 	siop_regmap_p rp;
   1417  1.23    chopps 	struct siop_acb *acb = sc->sc_nexus;
   1418   1.1        mw 
   1419   1.1        mw #ifdef DEBUG
   1420   1.1        mw 	if (siop_debug & 1)
   1421  1.35  christos 		printf ("%s: select ", sc->sc_dev.dv_xname);
   1422   1.1        mw #endif
   1423   1.1        mw 
   1424  1.23    chopps 	rp = sc->sc_siopp;
   1425  1.43   thorpej 	if (acb->xs->xs_control & XS_CTL_POLL || siop_no_dma) {
   1426  1.23    chopps 		sc->sc_flags |= SIOP_INTSOFF;
   1427  1.23    chopps 		sc->sc_flags &= ~SIOP_INTDEFER;
   1428  1.23    chopps 		if ((rp->siop_istat & 0x08) == 0) {
   1429  1.23    chopps 			rp->siop_sien = 0;
   1430  1.23    chopps 			rp->siop_dien = 0;
   1431   1.1        mw 		}
   1432  1.23    chopps #if 0
   1433  1.23    chopps 	} else if ((sc->sc_flags & SIOP_INTDEFER) == 0) {
   1434  1.23    chopps 		sc->sc_flags &= ~SIOP_INTSOFF;
   1435  1.23    chopps 		if ((rp->siop_istat & 0x08) == 0) {
   1436  1.23    chopps 			rp->siop_sien = sc->sc_sien;
   1437  1.23    chopps 			rp->siop_dien = sc->sc_dien;
   1438   1.1        mw 		}
   1439   1.1        mw #endif
   1440   1.1        mw 	}
   1441   1.1        mw #ifdef DEBUG
   1442   1.1        mw 	if (siop_debug & 1)
   1443  1.35  christos 		printf ("siop_select: target %x cmd %02x ds %p\n",
   1444  1.37    bouyer 		    acb->xs->sc_link->scsipi_scsi.target, acb->cmd.opcode,
   1445  1.23    chopps 		    &sc->sc_nexus->ds);
   1446   1.8    chopps #endif
   1447   1.1        mw 
   1448  1.37    bouyer 	siop_start(sc, acb->xs->sc_link->scsipi_scsi.target,
   1449  1.37    bouyer 		acb->xs->sc_link->scsipi_scsi.lun,
   1450  1.30     veego 	    (u_char *)&acb->cmd, acb->clen, acb->daddr, acb->dleft);
   1451   1.1        mw 
   1452  1.23    chopps 	return;
   1453   1.1        mw }
   1454   1.1        mw 
   1455   1.1        mw /*
   1456  1.23    chopps  * 53C710 interrupt handler
   1457   1.1        mw  */
   1458   1.1        mw 
   1459  1.30     veego void
   1460  1.20    chopps siopintr (sc)
   1461  1.20    chopps 	register struct siop_softc *sc;
   1462   1.1        mw {
   1463  1.20    chopps 	siop_regmap_p rp;
   1464   1.1        mw 	register u_char istat, dstat, sstat0;
   1465   1.1        mw 	int status;
   1466  1.23    chopps 	int s = splbio();
   1467   1.1        mw 
   1468  1.20    chopps 	istat = sc->sc_istat;
   1469  1.23    chopps 	if ((istat & (SIOP_ISTAT_SIP | SIOP_ISTAT_DIP)) == 0) {
   1470  1.23    chopps 		splx(s);
   1471   1.8    chopps 		return;
   1472  1.23    chopps 	}
   1473  1.23    chopps 
   1474  1.18    chopps 	/* Got a valid interrupt on this device */
   1475  1.23    chopps 	rp = sc->sc_siopp;
   1476  1.20    chopps 	dstat = sc->sc_dstat;
   1477  1.20    chopps 	sstat0 = sc->sc_sstat0;
   1478  1.23    chopps 	if (dstat & SIOP_DSTAT_SIR)
   1479  1.23    chopps 		sc->sc_intcode = rp->siop_dsps;
   1480  1.20    chopps 	sc->sc_istat = 0;
   1481   1.1        mw #ifdef DEBUG
   1482   1.8    chopps 	if (siop_debug & 1)
   1483  1.35  christos 		printf ("%s: intr istat %x dstat %x sstat0 %x\n",
   1484  1.20    chopps 		    sc->sc_dev.dv_xname, istat, dstat, sstat0);
   1485  1.20    chopps 	if (!sc->sc_active) {
   1486  1.35  christos 		printf ("%s: spurious interrupt? istat %x dstat %x sstat0 %x nexus %p status %x\n",
   1487  1.29    mhitch 		    sc->sc_dev.dv_xname, istat, dstat, sstat0,
   1488  1.29    mhitch 		    sc->sc_nexus, sc->sc_nexus ? sc->sc_nexus->stat[0] : 0);
   1489   1.8    chopps 	}
   1490   1.1        mw #endif
   1491   1.1        mw 
   1492   1.1        mw #ifdef DEBUG
   1493   1.8    chopps 	if (siop_debug & 5) {
   1494  1.23    chopps 		DCIAS(kvtop(&sc->sc_nexus->stat[0]));
   1495  1.35  christos 		printf ("%s: intr istat %x dstat %x sstat0 %x dsps %lx sbcl %x sts %x msg %x\n",
   1496  1.20    chopps 		    sc->sc_dev.dv_xname, istat, dstat, sstat0,
   1497  1.20    chopps 		    rp->siop_dsps,  rp->siop_sbcl,
   1498  1.23    chopps 		    sc->sc_nexus->stat[0], sc->sc_nexus->msg[0]);
   1499   1.8    chopps 	}
   1500   1.1        mw #endif
   1501  1.23    chopps 	if (sc->sc_flags & SIOP_INTDEFER) {
   1502  1.23    chopps 		sc->sc_flags &= ~(SIOP_INTDEFER | SIOP_INTSOFF);
   1503  1.23    chopps 		rp->siop_sien = sc->sc_sien;
   1504  1.23    chopps 		rp->siop_dien = sc->sc_dien;
   1505  1.23    chopps 	}
   1506  1.20    chopps 	if (siop_checkintr (sc, istat, dstat, sstat0, &status)) {
   1507   1.1        mw #if 1
   1508   1.8    chopps 		if (status == 0xff)
   1509  1.35  christos 			printf ("siopintr: status == 0xff\n");
   1510   1.8    chopps #endif
   1511  1.23    chopps 		if ((sc->sc_flags & (SIOP_INTSOFF | SIOP_INTDEFER)) != SIOP_INTSOFF) {
   1512  1.23    chopps #if 0
   1513  1.23    chopps 			if (rp->siop_sbcl & SIOP_BSY) {
   1514  1.35  christos 				printf ("%s: SCSI bus busy at completion",
   1515  1.20    chopps 					sc->sc_dev.dv_xname);
   1516  1.35  christos 				printf(" targ %d sbcl %02x sfbr %x lcrc %02x dsp +%x\n",
   1517  1.37    bouyer 				    sc->sc_nexus->xs->sc_link->scsipi_scsi.target,
   1518  1.23    chopps 				    rp->siop_sbcl, rp->siop_sfbr, rp->siop_lcrc,
   1519  1.23    chopps 				    rp->siop_dsp - sc->sc_scriptspa);
   1520  1.23    chopps 			}
   1521  1.23    chopps #endif
   1522  1.29    mhitch 			siop_scsidone(sc->sc_nexus, sc->sc_nexus ?
   1523  1.29    mhitch 			    sc->sc_nexus->stat[0] : -1);
   1524  1.18    chopps 		}
   1525   1.1        mw 	}
   1526  1.23    chopps 	splx(s);
   1527   1.1        mw }
   1528   1.1        mw 
   1529  1.18    chopps /*
   1530  1.23    chopps  * This is based on the Progressive Peripherals 33Mhz Zeus driver and will
   1531  1.18    chopps  * not be correct for other 53c710 boards.
   1532  1.18    chopps  *
   1533  1.18    chopps  */
   1534  1.30     veego void
   1535  1.20    chopps scsi_period_to_siop (sc, target)
   1536  1.20    chopps 	struct siop_softc *sc;
   1537  1.30     veego 	int target;
   1538   1.1        mw {
   1539  1.30     veego 	int period, offset, sxfer, sbcl = 0;
   1540  1.30     veego #ifdef DEBUG_SYNC
   1541  1.30     veego 	int i;
   1542  1.30     veego #endif
   1543   1.1        mw 
   1544  1.23    chopps 	period = sc->sc_nexus->msg[4];
   1545  1.23    chopps 	offset = sc->sc_nexus->msg[5];
   1546  1.29    mhitch #ifdef DEBUG_SYNC
   1547   1.8    chopps 	sxfer = 0;
   1548   1.8    chopps 	if (offset <= SIOP_MAX_OFFSET)
   1549   1.8    chopps 		sxfer = offset;
   1550  1.24    chopps 	for (i = 0; i < sizeof (sync_tab) / 2; ++i) {
   1551  1.24    chopps 		if (period <= sync_tab[i].p) {
   1552  1.24    chopps 			sxfer |= sync_tab[i].r & 0x70;
   1553  1.24    chopps 			sbcl = sync_tab[i].r & 0x03;
   1554   1.8    chopps 			break;
   1555   1.8    chopps 		}
   1556   1.8    chopps 	}
   1557  1.35  christos 	printf ("siop sync old: siop_sxfr %02x, siop_sbcl %02x\n", sxfer, sbcl);
   1558  1.24    chopps #endif
   1559  1.24    chopps 	for (sbcl = 1; sbcl < 4; ++sbcl) {
   1560  1.24    chopps 		sxfer = (period * 4 - 1) / sc->sc_tcp[sbcl] - 3;
   1561  1.24    chopps 		if (sxfer >= 0 && sxfer <= 7)
   1562  1.24    chopps 			break;
   1563  1.24    chopps 	}
   1564  1.24    chopps 	if (sbcl > 3) {
   1565  1.35  christos 		printf("siop sync: unable to compute sync params for period %dns\n",
   1566  1.24    chopps 		    period * 4);
   1567  1.24    chopps 		/*
   1568  1.24    chopps 		 * XXX need to pick a value we can do and renegotiate
   1569  1.24    chopps 		 */
   1570  1.24    chopps 		sxfer = sbcl = 0;
   1571  1.24    chopps 	} else {
   1572  1.24    chopps 		sxfer = (sxfer << 4) | ((offset <= SIOP_MAX_OFFSET) ?
   1573  1.24    chopps 		    offset : SIOP_MAX_OFFSET);
   1574  1.29    mhitch #ifdef DEBUG_SYNC
   1575  1.35  christos 		printf("siop sync: params for period %dns: sxfer %x sbcl %x",
   1576  1.24    chopps 		    period * 4, sxfer, sbcl);
   1577  1.35  christos 		printf(" actual period %dns\n",
   1578  1.24    chopps 		    sc->sc_tcp[sbcl] * ((sxfer >> 4) + 4));
   1579  1.29    mhitch #endif
   1580  1.24    chopps 	}
   1581  1.24    chopps 	sc->sc_sync[target].sxfer = sxfer;
   1582  1.24    chopps 	sc->sc_sync[target].sbcl = sbcl;
   1583  1.29    mhitch #ifdef DEBUG_SYNC
   1584  1.35  christos 	printf ("siop sync: siop_sxfr %02x, siop_sbcl %02x\n", sxfer, sbcl);
   1585  1.24    chopps #endif
   1586  1.24    chopps }
   1587  1.24    chopps 
   1588   1.1        mw #ifdef DEBUG
   1589  1.24    chopps 
   1590  1.24    chopps #if SIOP_TRACE_SIZE
   1591  1.24    chopps void
   1592  1.24    chopps siop_dump_trace()
   1593  1.24    chopps {
   1594  1.24    chopps 	int i;
   1595  1.24    chopps 
   1596  1.35  christos 	printf("siop trace: next index %d\n", siop_trix);
   1597  1.24    chopps 	i = siop_trix;
   1598  1.24    chopps 	do {
   1599  1.35  christos 		printf("%3d: '%c' %02x %02x %02x\n", i, siop_trbuf[i],
   1600  1.24    chopps 		    siop_trbuf[i + 1], siop_trbuf[i + 2], siop_trbuf[i + 3]);
   1601  1.24    chopps 		i = (i + 4) & (SIOP_TRACE_SIZE - 1);
   1602  1.24    chopps 	} while (i != siop_trix);
   1603  1.24    chopps }
   1604   1.1        mw #endif
   1605  1.24    chopps 
   1606  1.24    chopps void
   1607  1.24    chopps siop_dump_acb(acb)
   1608  1.24    chopps 	struct siop_acb *acb;
   1609  1.24    chopps {
   1610  1.24    chopps 	u_char *b = (u_char *) &acb->cmd;
   1611  1.24    chopps 	int i;
   1612  1.24    chopps 
   1613  1.35  christos 	printf("acb@%p ", acb);
   1614  1.24    chopps 	if (acb->xs == NULL) {
   1615  1.35  christos 		printf("<unused>\n");
   1616  1.24    chopps 		return;
   1617  1.24    chopps 	}
   1618  1.37    bouyer 	printf("(%d:%d) flags %2x clen %2d cmd ",
   1619  1.37    bouyer 		acb->xs->sc_link->scsipi_scsi.target,
   1620  1.37    bouyer 	    acb->xs->sc_link->scsipi_scsi.lun, acb->flags, acb->clen);
   1621  1.24    chopps 	for (i = acb->clen; i; --i)
   1622  1.35  christos 		printf(" %02x", *b++);
   1623  1.35  christos 	printf("\n");
   1624  1.35  christos 	printf("  xs: %p data %p:%04x ", acb->xs, acb->xs->data,
   1625  1.24    chopps 	    acb->xs->datalen);
   1626  1.35  christos 	printf("va %p:%lx ", acb->iob_buf, acb->iob_len);
   1627  1.35  christos 	printf("cur %lx:%lx\n", acb->iob_curbuf, acb->iob_curlen);
   1628   1.1        mw }
   1629  1.24    chopps 
   1630  1.24    chopps void
   1631  1.24    chopps siop_dump(sc)
   1632  1.24    chopps 	struct siop_softc *sc;
   1633  1.24    chopps {
   1634  1.24    chopps 	struct siop_acb *acb;
   1635  1.24    chopps 	siop_regmap_p rp = sc->sc_siopp;
   1636  1.24    chopps 	int s;
   1637  1.24    chopps 	int i;
   1638  1.24    chopps 
   1639  1.24    chopps 	s = splbio();
   1640  1.24    chopps #if SIOP_TRACE_SIZE
   1641  1.24    chopps 	siop_dump_trace();
   1642  1.24    chopps #endif
   1643  1.35  christos 	printf("%s@%p regs %p istat %x\n",
   1644  1.24    chopps 	    sc->sc_dev.dv_xname, sc, rp, rp->siop_istat);
   1645  1.30     veego 	if ((acb = sc->free_list.tqh_first) > 0) {
   1646  1.35  christos 		printf("Free list:\n");
   1647  1.24    chopps 		while (acb) {
   1648  1.24    chopps 			siop_dump_acb(acb);
   1649  1.24    chopps 			acb = acb->chain.tqe_next;
   1650  1.24    chopps 		}
   1651  1.24    chopps 	}
   1652  1.30     veego 	if ((acb = sc->ready_list.tqh_first) > 0) {
   1653  1.35  christos 		printf("Ready list:\n");
   1654  1.24    chopps 		while (acb) {
   1655  1.24    chopps 			siop_dump_acb(acb);
   1656  1.24    chopps 			acb = acb->chain.tqe_next;
   1657  1.24    chopps 		}
   1658  1.24    chopps 	}
   1659  1.30     veego 	if ((acb = sc->nexus_list.tqh_first) > 0) {
   1660  1.35  christos 		printf("Nexus list:\n");
   1661  1.24    chopps 		while (acb) {
   1662  1.24    chopps 			siop_dump_acb(acb);
   1663  1.24    chopps 			acb = acb->chain.tqe_next;
   1664  1.24    chopps 		}
   1665  1.24    chopps 	}
   1666  1.24    chopps 	if (sc->sc_nexus) {
   1667  1.35  christos 		printf("Nexus:\n");
   1668  1.24    chopps 		siop_dump_acb(sc->sc_nexus);
   1669  1.24    chopps 	}
   1670  1.24    chopps 	for (i = 0; i < 8; ++i) {
   1671  1.24    chopps 		if (sc->sc_tinfo[i].cmds > 2) {
   1672  1.35  christos 			printf("tgt %d: cmds %d disc %d senses %d lubusy %x\n",
   1673  1.24    chopps 			    i, sc->sc_tinfo[i].cmds,
   1674  1.24    chopps 			    sc->sc_tinfo[i].dconns,
   1675  1.24    chopps 			    sc->sc_tinfo[i].senses,
   1676  1.24    chopps 			    sc->sc_tinfo[i].lubusy);
   1677  1.24    chopps 		}
   1678  1.24    chopps 	}
   1679  1.24    chopps 	splx(s);
   1680  1.24    chopps }
   1681  1.24    chopps #endif
   1682