Home | History | Annotate | Line # | Download | only in ic
siop.c revision 1.38
      1  1.38   bouyer /*	$NetBSD: siop.c,v 1.38 2001/01/26 22:00:01 bouyer Exp $	*/
      2   1.1   bouyer 
      3   1.1   bouyer /*
      4   1.1   bouyer  * Copyright (c) 2000 Manuel Bouyer.
      5   1.1   bouyer  *
      6   1.1   bouyer  * Redistribution and use in source and binary forms, with or without
      7   1.1   bouyer  * modification, are permitted provided that the following conditions
      8   1.1   bouyer  * are met:
      9   1.1   bouyer  * 1. Redistributions of source code must retain the above copyright
     10   1.1   bouyer  *    notice, this list of conditions and the following disclaimer.
     11   1.1   bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1   bouyer  *    notice, this list of conditions and the following disclaimer in the
     13   1.1   bouyer  *    documentation and/or other materials provided with the distribution.
     14   1.1   bouyer  * 3. All advertising materials mentioning features or use of this software
     15   1.1   bouyer  *    must display the following acknowledgement:
     16   1.5   bouyer  *	This product includes software developed by Manuel Bouyer
     17   1.5   bouyer  * 4. The name of the author may not be used to endorse or promote products
     18   1.5   bouyer  *    derived from this software without specific prior written permission.
     19   1.1   bouyer  *
     20  1.14   bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.14   bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.14   bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.14   bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.14   bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.14   bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.14   bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.14   bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.14   bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.14   bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30   1.1   bouyer  *
     31   1.1   bouyer  */
     32   1.1   bouyer 
     33   1.1   bouyer /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
     34   1.1   bouyer 
     35   1.1   bouyer #include <sys/param.h>
     36   1.1   bouyer #include <sys/systm.h>
     37   1.1   bouyer #include <sys/device.h>
     38   1.1   bouyer #include <sys/malloc.h>
     39   1.1   bouyer #include <sys/buf.h>
     40   1.1   bouyer #include <sys/kernel.h>
     41   1.1   bouyer 
     42  1.37  thorpej #include <uvm/uvm_extern.h>
     43  1.37  thorpej 
     44   1.1   bouyer #include <machine/endian.h>
     45   1.1   bouyer #include <machine/bus.h>
     46   1.1   bouyer 
     47   1.1   bouyer #include <dev/microcode/siop/siop.out>
     48   1.1   bouyer 
     49   1.1   bouyer #include <dev/scsipi/scsi_all.h>
     50   1.1   bouyer #include <dev/scsipi/scsi_message.h>
     51   1.1   bouyer #include <dev/scsipi/scsipi_all.h>
     52   1.1   bouyer 
     53   1.1   bouyer #include <dev/scsipi/scsiconf.h>
     54   1.1   bouyer 
     55   1.1   bouyer #include <dev/ic/siopreg.h>
     56   1.1   bouyer #include <dev/ic/siopvar.h>
     57  1.14   bouyer #include <dev/ic/siopvar_common.h>
     58   1.1   bouyer 
     59  1.35   bouyer #ifndef DEBUG
     60  1.30   bouyer #undef DEBUG
     61  1.35   bouyer #endif
     62  1.35   bouyer #undef SIOP_DEBUG
     63  1.35   bouyer #undef SIOP_DEBUG_DR
     64  1.35   bouyer #undef SIOP_DEBUG_INTR
     65  1.35   bouyer #undef SIOP_DEBUG_SCHED
     66   1.2   bouyer #undef DUMP_SCRIPT
     67   1.2   bouyer 
     68   1.2   bouyer #define SIOP_STATS
     69   1.2   bouyer 
     70   1.1   bouyer #ifndef SIOP_DEFAULT_TARGET
     71   1.1   bouyer #define SIOP_DEFAULT_TARGET 7
     72   1.1   bouyer #endif
     73   1.1   bouyer 
     74  1.16   bouyer /* number of cmd descriptors per block */
     75  1.37  thorpej #define SIOP_NCMDPB (PAGE_SIZE / sizeof(struct siop_xfer))
     76   1.1   bouyer 
     77  1.35   bouyer /* Number of scheduler slot (needs to match script) */
     78  1.35   bouyer #define SIOP_NSLOTS 40
     79  1.35   bouyer 
     80   1.1   bouyer void	siop_reset __P((struct siop_softc *));
     81   1.2   bouyer void	siop_handle_reset __P((struct siop_softc *));
     82  1.31   bouyer int	siop_handle_qtag_reject __P((struct siop_cmd *));
     83   1.2   bouyer void	siop_scsicmd_end __P((struct siop_cmd *));
     84   1.1   bouyer void	siop_start __P((struct siop_softc *));
     85   1.1   bouyer void 	siop_timeout __P((void *));
     86   1.1   bouyer int	siop_scsicmd __P((struct scsipi_xfer *));
     87   1.2   bouyer void	siop_dump_script __P((struct siop_softc *));
     88  1.16   bouyer int	siop_morecbd __P((struct siop_softc *));
     89  1.31   bouyer struct siop_lunsw *siop_get_lunsw __P((struct siop_softc *));
     90  1.31   bouyer void	siop_add_reselsw __P((struct siop_softc *, int));
     91  1.31   bouyer void	siop_update_scntl3 __P((struct siop_softc *, struct siop_target *));
     92   1.1   bouyer 
     93   1.1   bouyer struct scsipi_adapter siop_adapter = {
     94   1.1   bouyer 	0,
     95   1.1   bouyer 	siop_scsicmd,
     96   1.1   bouyer 	siop_minphys,
     97   1.2   bouyer 	siop_ioctl,
     98  1.19  tsutsui 	NULL,
     99   1.1   bouyer 	NULL,
    100   1.1   bouyer };
    101   1.1   bouyer 
    102   1.1   bouyer struct scsipi_device siop_dev = {
    103   1.1   bouyer 	NULL,
    104   1.1   bouyer 	NULL,
    105   1.1   bouyer 	NULL,
    106   1.1   bouyer 	NULL,
    107   1.1   bouyer };
    108   1.1   bouyer 
    109   1.2   bouyer #ifdef SIOP_STATS
    110   1.2   bouyer static int siop_stat_intr = 0;
    111   1.2   bouyer static int siop_stat_intr_shortxfer = 0;
    112   1.2   bouyer static int siop_stat_intr_sdp = 0;
    113   1.2   bouyer static int siop_stat_intr_done = 0;
    114   1.2   bouyer static int siop_stat_intr_xferdisc = 0;
    115  1.35   bouyer static int siop_stat_intr_lunresel = 0;
    116  1.36   bouyer static int siop_stat_intr_qfull = 0;
    117   1.2   bouyer void siop_printstats __P((void));
    118   1.2   bouyer #define INCSTAT(x) x++
    119   1.2   bouyer #else
    120   1.2   bouyer #define INCSTAT(x)
    121   1.2   bouyer #endif
    122   1.2   bouyer 
    123  1.32   bouyer static __inline__ void siop_script_sync __P((struct siop_softc *, int));
    124  1.32   bouyer static __inline__ void
    125  1.32   bouyer siop_script_sync(sc, ops)
    126  1.32   bouyer 	struct siop_softc *sc;
    127  1.32   bouyer 	int ops;
    128  1.32   bouyer {
    129  1.34   bouyer 	if ((sc->features & SF_CHIP_RAM) == 0)
    130  1.37  thorpej 		bus_dmamap_sync(sc->sc_dmat, sc->sc_scriptdma, 0,
    131  1.37  thorpej 		    PAGE_SIZE, ops);
    132  1.32   bouyer }
    133  1.32   bouyer 
    134  1.35   bouyer static __inline__ u_int32_t siop_script_read __P((struct siop_softc *, u_int));
    135  1.31   bouyer static __inline__ u_int32_t
    136  1.31   bouyer siop_script_read(sc, offset)
    137  1.31   bouyer 	struct siop_softc *sc;
    138  1.35   bouyer 	u_int offset;
    139  1.31   bouyer {
    140  1.31   bouyer 	if (sc->features & SF_CHIP_RAM) {
    141  1.31   bouyer 		return bus_space_read_4(sc->sc_ramt, sc->sc_ramh, offset * 4);
    142  1.31   bouyer 	} else {
    143  1.31   bouyer 		return le32toh(sc->sc_script[offset]);
    144  1.31   bouyer 	}
    145  1.31   bouyer }
    146  1.31   bouyer 
    147  1.35   bouyer static __inline__ void siop_script_write __P((struct siop_softc *, u_int,
    148  1.31   bouyer 	u_int32_t));
    149  1.28   bouyer static __inline__ void
    150  1.31   bouyer siop_script_write(sc, offset, val)
    151  1.28   bouyer 	struct siop_softc *sc;
    152  1.35   bouyer 	u_int offset;
    153  1.31   bouyer 	u_int32_t val;
    154  1.28   bouyer {
    155  1.31   bouyer 	if (sc->features & SF_CHIP_RAM) {
    156  1.31   bouyer 		bus_space_write_4(sc->sc_ramt, sc->sc_ramh, offset * 4, val);
    157  1.31   bouyer 	} else {
    158  1.31   bouyer 		sc->sc_script[offset] = htole32(val);
    159  1.31   bouyer 	}
    160   1.2   bouyer }
    161   1.2   bouyer 
    162   1.1   bouyer void
    163   1.1   bouyer siop_attach(sc)
    164   1.1   bouyer 	struct siop_softc *sc;
    165   1.1   bouyer {
    166   1.1   bouyer 	int error, i;
    167   1.1   bouyer 	bus_dma_segment_t seg;
    168   1.1   bouyer 	int rseg;
    169   1.1   bouyer 
    170   1.1   bouyer 	/*
    171  1.35   bouyer 	 * Allocate DMA-safe memory for the script and map it.
    172   1.1   bouyer 	 */
    173  1.17   bouyer 	if ((sc->features & SF_CHIP_RAM) == 0) {
    174  1.37  thorpej 		error = bus_dmamem_alloc(sc->sc_dmat, PAGE_SIZE,
    175  1.37  thorpej 		    PAGE_SIZE, 0, &seg, 1, &rseg, BUS_DMA_NOWAIT);
    176  1.17   bouyer 		if (error) {
    177  1.17   bouyer 			printf("%s: unable to allocate script DMA memory, "
    178  1.17   bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
    179  1.17   bouyer 			return;
    180  1.17   bouyer 		}
    181  1.37  thorpej 		error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, PAGE_SIZE,
    182  1.17   bouyer 		    (caddr_t *)&sc->sc_script, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
    183  1.17   bouyer 		if (error) {
    184  1.17   bouyer 			printf("%s: unable to map script DMA memory, "
    185  1.17   bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
    186  1.17   bouyer 			return;
    187  1.17   bouyer 		}
    188  1.37  thorpej 		error = bus_dmamap_create(sc->sc_dmat, PAGE_SIZE, 1,
    189  1.37  thorpej 		    PAGE_SIZE, 0, BUS_DMA_NOWAIT, &sc->sc_scriptdma);
    190  1.17   bouyer 		if (error) {
    191  1.17   bouyer 			printf("%s: unable to create script DMA map, "
    192  1.17   bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
    193  1.17   bouyer 			return;
    194  1.17   bouyer 		}
    195  1.17   bouyer 		error = bus_dmamap_load(sc->sc_dmat, sc->sc_scriptdma,
    196  1.37  thorpej 		    sc->sc_script, PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
    197  1.17   bouyer 		if (error) {
    198  1.17   bouyer 			printf("%s: unable to load script DMA map, "
    199  1.17   bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
    200  1.17   bouyer 			return;
    201  1.17   bouyer 		}
    202  1.17   bouyer 		sc->sc_scriptaddr = sc->sc_scriptdma->dm_segs[0].ds_addr;
    203  1.37  thorpej 		sc->ram_size = PAGE_SIZE;
    204   1.1   bouyer 	}
    205   1.1   bouyer 	TAILQ_INIT(&sc->free_list);
    206  1.31   bouyer 	TAILQ_INIT(&sc->ready_list);
    207  1.36   bouyer 	TAILQ_INIT(&sc->urgent_list);
    208  1.16   bouyer 	TAILQ_INIT(&sc->cmds);
    209  1.31   bouyer 	TAILQ_INIT(&sc->lunsw_list);
    210  1.29   bouyer 	sc->sc_currschedslot = 0;
    211  1.35   bouyer #ifdef SIOP_DEBUG
    212  1.35   bouyer 	printf("%s: script size = %d, PHY addr=0x%x, VIRT=%p\n",
    213   1.2   bouyer 	    sc->sc_dev.dv_xname, (int)sizeof(siop_script),
    214  1.35   bouyer 	    (u_int32_t)sc->sc_scriptaddr, sc->sc_script);
    215   1.1   bouyer #endif
    216   1.1   bouyer 
    217   1.1   bouyer 	sc->sc_link.adapter_softc = sc;
    218  1.35   bouyer 	sc->sc_link.openings = 2;
    219   1.1   bouyer 	sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
    220   1.1   bouyer 	sc->sc_link.scsipi_scsi.max_target  =
    221   1.1   bouyer 	    (sc->features & SF_BUS_WIDE) ? 15 : 7;
    222   1.1   bouyer 	sc->sc_link.scsipi_scsi.max_lun = 7;
    223   1.1   bouyer 	sc->sc_link.scsipi_scsi.adapter_target = bus_space_read_1(sc->sc_rt,
    224   1.1   bouyer 	    sc->sc_rh, SIOP_SCID);
    225   1.2   bouyer 	if (sc->sc_link.scsipi_scsi.adapter_target == 0 ||
    226   1.2   bouyer 	    sc->sc_link.scsipi_scsi.adapter_target >
    227   1.1   bouyer 	    sc->sc_link.scsipi_scsi.max_target)
    228   1.1   bouyer 		sc->sc_link.scsipi_scsi.adapter_target = SIOP_DEFAULT_TARGET;
    229   1.1   bouyer 	sc->sc_link.type = BUS_SCSI;
    230   1.1   bouyer 	sc->sc_link.adapter = &siop_adapter;
    231   1.1   bouyer 	sc->sc_link.device = &siop_dev;
    232   1.1   bouyer 	sc->sc_link.flags  = 0;
    233   1.1   bouyer 
    234   1.7   bouyer 	for (i = 0; i < 16; i++)
    235   1.7   bouyer 		sc->targets[i] = NULL;
    236   1.7   bouyer 
    237   1.7   bouyer 	/* find min/max sync period for this chip */
    238   1.7   bouyer 	sc->maxsync = 0;
    239   1.7   bouyer 	sc->minsync = 255;
    240   1.7   bouyer 	for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]); i++) {
    241   1.7   bouyer 		if (sc->clock_period != scf_period[i].clock)
    242   1.7   bouyer 			continue;
    243   1.7   bouyer 		if (sc->maxsync < scf_period[i].period)
    244   1.7   bouyer 			sc->maxsync = scf_period[i].period;
    245   1.7   bouyer 		if (sc->minsync > scf_period[i].period)
    246   1.7   bouyer 			sc->minsync = scf_period[i].period;
    247   1.7   bouyer 	}
    248   1.7   bouyer 	if (sc->maxsync == 255 || sc->minsync == 0)
    249   1.7   bouyer 		panic("siop: can't find my sync parameters\n");
    250  1.26   bouyer 	/* Do a bus reset, so that devices fall back to narrow/async */
    251  1.26   bouyer 	siop_resetbus(sc);
    252  1.26   bouyer 	/*
    253  1.26   bouyer 	 * siop_reset() will reset the chip, thus clearing pending interrupts
    254  1.26   bouyer 	 */
    255   1.1   bouyer 	siop_reset(sc);
    256   1.2   bouyer #ifdef DUMP_SCRIPT
    257   1.2   bouyer 	siop_dump_script(sc);
    258   1.2   bouyer #endif
    259   1.1   bouyer 
    260   1.1   bouyer 	config_found((struct device*)sc, &sc->sc_link, scsiprint);
    261   1.1   bouyer }
    262   1.1   bouyer 
    263   1.1   bouyer void
    264   1.1   bouyer siop_reset(sc)
    265   1.1   bouyer 	struct siop_softc *sc;
    266   1.1   bouyer {
    267   1.4   bouyer 	int i, j;
    268  1.31   bouyer 	struct siop_lunsw *lunsw;
    269   1.4   bouyer 
    270  1.14   bouyer 	siop_common_reset(sc);
    271   1.1   bouyer 
    272   1.1   bouyer 	/* copy and patch the script */
    273  1.17   bouyer 	if (sc->features & SF_CHIP_RAM) {
    274  1.17   bouyer 		bus_space_write_region_4(sc->sc_ramt, sc->sc_ramh, 0,
    275  1.17   bouyer 		    siop_script, sizeof(siop_script) / sizeof(siop_script[0]));
    276  1.17   bouyer 		for (j = 0; j <
    277  1.31   bouyer 		    (sizeof(E_abs_msgin_Used) / sizeof(E_abs_msgin_Used[0]));
    278  1.28   bouyer 		    j++) {
    279  1.28   bouyer 			bus_space_write_4(sc->sc_ramt, sc->sc_ramh,
    280  1.31   bouyer 			    E_abs_msgin_Used[j] * 4,
    281  1.31   bouyer 			    sc->sc_scriptaddr + Ent_msgin_space);
    282  1.28   bouyer 		}
    283  1.17   bouyer 	} else {
    284  1.17   bouyer 		for (j = 0;
    285  1.17   bouyer 		    j < (sizeof(siop_script) / sizeof(siop_script[0])); j++) {
    286  1.17   bouyer 			sc->sc_script[j] = htole32(siop_script[j]);
    287  1.17   bouyer 		}
    288  1.17   bouyer 		for (j = 0; j <
    289  1.31   bouyer 		    (sizeof(E_abs_msgin_Used) / sizeof(E_abs_msgin_Used[0]));
    290  1.28   bouyer 		    j++) {
    291  1.31   bouyer 			sc->sc_script[E_abs_msgin_Used[j]] =
    292  1.31   bouyer 			    htole32(sc->sc_scriptaddr + Ent_msgin_space);
    293  1.17   bouyer 		}
    294   1.4   bouyer 	}
    295  1.35   bouyer 	sc->script_free_lo = sizeof(siop_script) / sizeof(siop_script[0]);
    296  1.35   bouyer 	sc->script_free_hi = sc->ram_size / 4;
    297   1.1   bouyer 
    298  1.31   bouyer 	/* free used and unused lun switches */
    299  1.31   bouyer 	while((lunsw = TAILQ_FIRST(&sc->lunsw_list)) != NULL) {
    300  1.35   bouyer #ifdef SIOP_DEBUG
    301  1.31   bouyer 		printf("%s: free lunsw at offset %d\n",
    302  1.31   bouyer 				sc->sc_dev.dv_xname, lunsw->lunsw_off);
    303  1.31   bouyer #endif
    304  1.31   bouyer 		TAILQ_REMOVE(&sc->lunsw_list, lunsw, next);
    305  1.31   bouyer 		free(lunsw, M_DEVBUF);
    306  1.31   bouyer 	}
    307  1.31   bouyer 	TAILQ_INIT(&sc->lunsw_list);
    308  1.31   bouyer 	/* restore reselect switch */
    309  1.35   bouyer 	for (i = 0; i <= sc->sc_link.scsipi_scsi.max_target; i++) {
    310  1.31   bouyer 		if (sc->targets[i] == NULL)
    311  1.31   bouyer 			continue;
    312  1.35   bouyer #ifdef SIOP_DEBUG
    313  1.31   bouyer 		printf("%s: restore sw for target %d\n",
    314  1.31   bouyer 				sc->sc_dev.dv_xname, i);
    315  1.31   bouyer #endif
    316  1.31   bouyer 		free(sc->targets[i]->lunsw, M_DEVBUF);
    317  1.31   bouyer 		sc->targets[i]->lunsw = siop_get_lunsw(sc);
    318  1.31   bouyer 		if (sc->targets[i]->lunsw == NULL) {
    319  1.31   bouyer 			printf("%s: can't alloc lunsw for target %d\n",
    320  1.31   bouyer 			    sc->sc_dev.dv_xname, i);
    321  1.31   bouyer 			break;
    322  1.28   bouyer 		}
    323  1.31   bouyer 		siop_add_reselsw(sc, i);
    324  1.28   bouyer 	}
    325  1.28   bouyer 
    326   1.2   bouyer 	/* start script */
    327  1.22   bouyer 	if ((sc->features & SF_CHIP_RAM) == 0) {
    328  1.37  thorpej 		bus_dmamap_sync(sc->sc_dmat, sc->sc_scriptdma, 0, PAGE_SIZE,
    329  1.22   bouyer 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    330  1.22   bouyer 	}
    331   1.2   bouyer 	bus_space_write_4(sc->sc_rt, sc->sc_rh, SIOP_DSP,
    332  1.17   bouyer 	    sc->sc_scriptaddr + Ent_reselect);
    333   1.1   bouyer }
    334   1.1   bouyer 
    335   1.1   bouyer #if 0
    336   1.1   bouyer #define CALL_SCRIPT(ent) do {\
    337   1.1   bouyer 	printf ("start script DSA 0x%lx DSP 0x%lx\n", \
    338   1.4   bouyer 	    siop_cmd->dsa, \
    339  1.17   bouyer 	    sc->sc_scriptaddr + ent); \
    340  1.17   bouyer bus_space_write_4(sc->sc_rt, sc->sc_rh, SIOP_DSP, sc->sc_scriptaddr + ent); \
    341   1.1   bouyer } while (0)
    342   1.1   bouyer #else
    343   1.1   bouyer #define CALL_SCRIPT(ent) do {\
    344  1.17   bouyer bus_space_write_4(sc->sc_rt, sc->sc_rh, SIOP_DSP, sc->sc_scriptaddr + ent); \
    345   1.1   bouyer } while (0)
    346   1.1   bouyer #endif
    347   1.1   bouyer 
    348   1.1   bouyer int
    349   1.1   bouyer siop_intr(v)
    350   1.1   bouyer 	void *v;
    351   1.1   bouyer {
    352   1.1   bouyer 	struct siop_softc *sc = v;
    353   1.7   bouyer 	struct siop_target *siop_target;
    354   1.1   bouyer 	struct siop_cmd *siop_cmd;
    355  1.31   bouyer 	struct siop_lun *siop_lun;
    356   1.1   bouyer 	struct scsipi_xfer *xs;
    357  1.35   bouyer 	int istat, sist, sstat1, dstat;
    358   1.1   bouyer 	u_int32_t irqcode;
    359   1.1   bouyer 	int need_reset = 0;
    360  1.35   bouyer 	int offset, target, lun, tag;
    361   1.2   bouyer 	bus_addr_t dsa;
    362  1.16   bouyer 	struct siop_cbd *cbdp;
    363  1.35   bouyer 	int freetarget = 0;
    364   1.1   bouyer 
    365   1.1   bouyer 	istat = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT);
    366   1.2   bouyer 	if ((istat & (ISTAT_INTF | ISTAT_DIP | ISTAT_SIP)) == 0)
    367   1.2   bouyer 		return 0;
    368   1.2   bouyer 	INCSTAT(siop_stat_intr);
    369   1.1   bouyer 	if (istat & ISTAT_INTF) {
    370   1.1   bouyer 		printf("INTRF\n");
    371   1.1   bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, ISTAT_INTF);
    372   1.1   bouyer 	}
    373   1.2   bouyer 	/* use DSA to find the current siop_cmd */
    374   1.2   bouyer 	dsa = bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSA);
    375  1.16   bouyer 	for (cbdp = TAILQ_FIRST(&sc->cmds); cbdp != NULL;
    376  1.16   bouyer 	    cbdp = TAILQ_NEXT(cbdp, next)) {
    377  1.16   bouyer 		if (dsa >= cbdp->xferdma->dm_segs[0].ds_addr &&
    378  1.37  thorpej 	    	    dsa < cbdp->xferdma->dm_segs[0].ds_addr + PAGE_SIZE) {
    379  1.16   bouyer 			dsa -= cbdp->xferdma->dm_segs[0].ds_addr;
    380  1.16   bouyer 			siop_cmd = &cbdp->cmds[dsa / sizeof(struct siop_xfer)];
    381  1.16   bouyer 			siop_table_sync(siop_cmd,
    382  1.16   bouyer 			    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
    383  1.16   bouyer 			break;
    384  1.16   bouyer 		}
    385  1.16   bouyer 	}
    386  1.16   bouyer 	if (cbdp == NULL) {
    387   1.2   bouyer 		siop_cmd = NULL;
    388   1.2   bouyer 	}
    389  1.31   bouyer 	if (siop_cmd) {
    390  1.31   bouyer 		xs = siop_cmd->xs;
    391  1.31   bouyer 		siop_target = siop_cmd->siop_target;
    392  1.35   bouyer 		target = siop_cmd->xs->sc_link->scsipi_scsi.target;
    393  1.31   bouyer 		lun = siop_cmd->xs->sc_link->scsipi_scsi.lun;
    394  1.35   bouyer 		tag = siop_cmd->tag;
    395  1.35   bouyer 		siop_lun = siop_target->siop_lun[lun];
    396  1.31   bouyer #ifdef DIAGNOSTIC
    397  1.31   bouyer 		if (siop_cmd->status != CMDST_ACTIVE &&
    398  1.31   bouyer 		    siop_cmd->status != CMDST_SENSE_ACTIVE) {
    399  1.31   bouyer 			printf("siop_cmd (lun %d) not active (%d)\n",
    400  1.31   bouyer 				lun, siop_cmd->status);
    401  1.31   bouyer 			xs = NULL;
    402  1.31   bouyer 			siop_target = NULL;
    403  1.35   bouyer 			target = -1;
    404  1.31   bouyer 			lun = -1;
    405  1.35   bouyer 			tag = -1;
    406  1.31   bouyer 			siop_lun = NULL;
    407  1.31   bouyer 			siop_cmd = NULL;
    408  1.35   bouyer 		} else if (siop_lun->siop_tag[tag].active != siop_cmd) {
    409  1.35   bouyer 			printf("siop_cmd (lun %d tag %d) not in siop_lun "
    410  1.35   bouyer 			    "active (%p != %p)\n", lun, tag, siop_cmd,
    411  1.35   bouyer 			    siop_lun->siop_tag[tag].active);
    412  1.31   bouyer 		}
    413  1.31   bouyer #endif
    414  1.31   bouyer 	} else {
    415  1.31   bouyer 		xs = NULL;
    416  1.31   bouyer 		siop_target = NULL;
    417  1.35   bouyer 		target = -1;
    418  1.31   bouyer 		lun = -1;
    419  1.35   bouyer 		tag = -1;
    420  1.31   bouyer 		siop_lun = NULL;
    421  1.31   bouyer 	}
    422   1.1   bouyer 	if (istat & ISTAT_DIP) {
    423   1.1   bouyer 		dstat = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_DSTAT);
    424   1.2   bouyer 		if (dstat & DSTAT_SSI) {
    425   1.2   bouyer 			printf("single step dsp 0x%08x dsa 0x08%x\n",
    426   1.7   bouyer 			    (int)(bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSP) -
    427  1.17   bouyer 			    sc->sc_scriptaddr),
    428   1.2   bouyer 			    bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSA));
    429   1.2   bouyer 			if ((dstat & ~(DSTAT_DFE | DSTAT_SSI)) == 0 &&
    430   1.2   bouyer 			    (istat & ISTAT_SIP) == 0) {
    431   1.2   bouyer 				bus_space_write_1(sc->sc_rt, sc->sc_rh,
    432   1.2   bouyer 				    SIOP_DCNTL, bus_space_read_1(sc->sc_rt,
    433   1.2   bouyer 				    sc->sc_rh, SIOP_DCNTL) | DCNTL_STD);
    434   1.2   bouyer 			}
    435   1.2   bouyer 			return 1;
    436   1.2   bouyer 		}
    437   1.2   bouyer 		if (dstat & ~(DSTAT_SIR | DSTAT_DFE | DSTAT_SSI)) {
    438   1.1   bouyer 		printf("DMA IRQ:");
    439   1.1   bouyer 		if (dstat & DSTAT_IID)
    440   1.1   bouyer 			printf(" Illegal instruction");
    441   1.1   bouyer 		if (dstat & DSTAT_ABRT)
    442   1.1   bouyer 			printf(" abort");
    443   1.1   bouyer 		if (dstat & DSTAT_BF)
    444   1.1   bouyer 			printf(" bus fault");
    445   1.1   bouyer 		if (dstat & DSTAT_MDPE)
    446   1.1   bouyer 			printf(" parity");
    447   1.1   bouyer 		if (dstat & DSTAT_DFE)
    448   1.1   bouyer 			printf(" dma fifo empty");
    449   1.1   bouyer 		printf(", DSP=0x%x DSA=0x%x: ",
    450   1.7   bouyer 		    (int)(bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSP) -
    451  1.17   bouyer 		    sc->sc_scriptaddr),
    452   1.1   bouyer 		    bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSA));
    453   1.2   bouyer 		if (siop_cmd)
    454   1.1   bouyer 			printf("last msg_in=0x%x status=0x%x\n",
    455  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[0],
    456  1.31   bouyer 			    le32toh(siop_cmd->siop_tables.status));
    457  1.20   bouyer 		else
    458  1.20   bouyer 			printf("%s: current DSA invalid\n",
    459  1.20   bouyer 			    sc->sc_dev.dv_xname);
    460   1.1   bouyer 		need_reset = 1;
    461   1.1   bouyer 		}
    462   1.1   bouyer 	}
    463   1.1   bouyer 	if (istat & ISTAT_SIP) {
    464   1.1   bouyer 		if (istat & ISTAT_DIP)
    465   1.8   bouyer 			delay(10);
    466  1.35   bouyer 		/*
    467  1.35   bouyer 		 * Can't read sist0 & sist1 independantly, or we have to
    468  1.35   bouyer 		 * insert delay
    469  1.35   bouyer 		 */
    470  1.35   bouyer 		sist = bus_space_read_2(sc->sc_rt, sc->sc_rh, SIOP_SIST0);
    471   1.1   bouyer 		sstat1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SSTAT1);
    472  1.35   bouyer #ifdef SIOP_DEBUG_INTR
    473  1.35   bouyer 		printf("scsi interrupt, sist=0x%x sstat1=0x%x "
    474  1.35   bouyer 		    "DSA=0x%x DSP=0x%lx\n", sist,
    475   1.1   bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SSTAT1),
    476   1.1   bouyer 		    bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSA),
    477   1.8   bouyer 		    (u_long)(bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSP) -
    478  1.17   bouyer 		    sc->sc_scriptaddr));
    479   1.1   bouyer #endif
    480  1.35   bouyer 		if (sist & SIST0_RST) {
    481   1.2   bouyer 			siop_handle_reset(sc);
    482   1.1   bouyer 			siop_start(sc);
    483   1.2   bouyer 			/* no table to flush here */
    484   1.1   bouyer 			return 1;
    485   1.1   bouyer 		}
    486  1.35   bouyer 		if (sist & SIST0_SGE) {
    487   1.1   bouyer 			if (siop_cmd)
    488   1.1   bouyer 				scsi_print_addr(xs->sc_link);
    489   1.1   bouyer 			else
    490   1.1   bouyer 				printf("%s:", sc->sc_dev.dv_xname);
    491   1.1   bouyer 			printf("scsi gross error\n");
    492   1.1   bouyer 			goto reset;
    493   1.1   bouyer 		}
    494  1.35   bouyer 		if ((sist & SIST0_MA) && need_reset == 0) {
    495   1.1   bouyer 			if (siop_cmd) {
    496   1.8   bouyer 				int scratcha0;
    497   1.8   bouyer 				dstat = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    498   1.8   bouyer 				    SIOP_DSTAT);
    499   1.3   bouyer 				/*
    500   1.3   bouyer 				 * first restore DSA, in case we were in a S/G
    501   1.3   bouyer 				 * operation.
    502   1.3   bouyer 				 */
    503   1.3   bouyer 				bus_space_write_4(sc->sc_rt, sc->sc_rh,
    504   1.4   bouyer 				    SIOP_DSA, siop_cmd->dsa);
    505   1.8   bouyer 				scratcha0 = bus_space_read_1(sc->sc_rt,
    506   1.8   bouyer 				    sc->sc_rh, SIOP_SCRATCHA);
    507   1.1   bouyer 				switch (sstat1 & SSTAT1_PHASE_MASK) {
    508   1.1   bouyer 				case SSTAT1_PHASE_STATUS:
    509   1.1   bouyer 				/*
    510   1.1   bouyer 				 * previous phase may be aborted for any reason
    511   1.1   bouyer 				 * ( for example, the target has less data to
    512   1.1   bouyer 				 * transfer than requested). Just go to status
    513   1.1   bouyer 				 * and the command should terminate.
    514   1.1   bouyer 				 */
    515   1.2   bouyer 					INCSTAT(siop_stat_intr_shortxfer);
    516   1.8   bouyer 					if ((dstat & DSTAT_DFE) == 0)
    517   1.8   bouyer 						siop_clearfifo(sc);
    518   1.2   bouyer 					/* no table to flush here */
    519  1.31   bouyer 					CALL_SCRIPT(Ent_status);
    520   1.1   bouyer 					return 1;
    521   1.1   bouyer 				case SSTAT1_PHASE_MSGIN:
    522   1.1   bouyer 					/*
    523   1.1   bouyer 					 * target may be ready to disconnect
    524   1.1   bouyer 					 * Save data pointers just in case.
    525   1.1   bouyer 					 */
    526   1.2   bouyer 					INCSTAT(siop_stat_intr_xferdisc);
    527   1.8   bouyer 					if (scratcha0 & A_flag_data)
    528   1.8   bouyer 						siop_sdp(siop_cmd);
    529   1.8   bouyer 					else if ((dstat & DSTAT_DFE) == 0)
    530   1.8   bouyer 						siop_clearfifo(sc);
    531   1.8   bouyer 					bus_space_write_1(sc->sc_rt, sc->sc_rh,
    532   1.8   bouyer 					    SIOP_SCRATCHA,
    533   1.8   bouyer 					    scratcha0 & ~A_flag_data);
    534   1.2   bouyer 					siop_table_sync(siop_cmd,
    535   1.2   bouyer 					    BUS_DMASYNC_PREREAD |
    536   1.2   bouyer 					    BUS_DMASYNC_PREWRITE);
    537   1.1   bouyer 					CALL_SCRIPT(Ent_msgin);
    538   1.1   bouyer 					return 1;
    539   1.1   bouyer 				}
    540   1.1   bouyer 				printf("%s: unexpected phase mismatch %d\n",
    541   1.1   bouyer 				    sc->sc_dev.dv_xname,
    542   1.1   bouyer 				    sstat1 & SSTAT1_PHASE_MASK);
    543   1.1   bouyer 			} else {
    544   1.1   bouyer 				printf("%s: phase mismatch without command\n",
    545   1.1   bouyer 				    sc->sc_dev.dv_xname);
    546   1.1   bouyer 			}
    547   1.1   bouyer 			need_reset = 1;
    548   1.1   bouyer 		}
    549  1.35   bouyer 		if (sist & SIST0_PAR) {
    550   1.1   bouyer 			/* parity error, reset */
    551   1.1   bouyer 			if (siop_cmd)
    552   1.1   bouyer 				scsi_print_addr(xs->sc_link);
    553   1.1   bouyer 			else
    554   1.1   bouyer 				printf("%s:", sc->sc_dev.dv_xname);
    555   1.1   bouyer 			printf("parity error\n");
    556  1.11   bouyer 			goto reset;
    557   1.1   bouyer 		}
    558  1.35   bouyer 		if ((sist & (SIST1_STO << 8)) && need_reset == 0) {
    559   1.1   bouyer 			/* selection time out, assume there's no device here */
    560   1.1   bouyer 			if (siop_cmd) {
    561   1.1   bouyer 				siop_cmd->status = CMDST_DONE;
    562   1.1   bouyer 				xs->error = XS_SELTIMEOUT;
    563  1.31   bouyer 				freetarget = 1;
    564   1.1   bouyer 				goto end;
    565   1.1   bouyer 			} else {
    566   1.1   bouyer 				printf("%s: selection timeout without "
    567   1.1   bouyer 				    "command\n", sc->sc_dev.dv_xname);
    568   1.1   bouyer 				need_reset = 1;
    569   1.1   bouyer 			}
    570   1.1   bouyer 		}
    571  1.35   bouyer 		if (sist & SIST0_UDC) {
    572   1.1   bouyer 			/*
    573   1.1   bouyer 			 * unexpected disconnect. Usually the target signals
    574   1.1   bouyer 			 * a fatal condition this way. Attempt to get sense.
    575   1.1   bouyer 			 */
    576  1.36   bouyer 			 if (siop_cmd) {
    577  1.36   bouyer 				siop_cmd->siop_tables.status =
    578  1.36   bouyer 				    htole32(SCSI_CHECK);
    579  1.36   bouyer 				goto end;
    580  1.36   bouyer 			}
    581   1.1   bouyer 			printf("%s: unexpected disconnect without "
    582   1.1   bouyer 			    "command\n", sc->sc_dev.dv_xname);
    583   1.2   bouyer 			goto reset;
    584   1.1   bouyer 		}
    585  1.35   bouyer 		if (sist & (SIST1_SBMC << 8)) {
    586  1.20   bouyer 			/* SCSI bus mode change */
    587  1.20   bouyer 			if (siop_modechange(sc) == 0 || need_reset == 1)
    588  1.20   bouyer 				goto reset;
    589  1.20   bouyer 			if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) {
    590  1.20   bouyer 				/*
    591  1.20   bouyer 				 * we have a script interrupt, it will
    592  1.20   bouyer 				 * restart the script.
    593  1.20   bouyer 				 */
    594  1.20   bouyer 				goto scintr;
    595  1.20   bouyer 			}
    596  1.20   bouyer 			/*
    597  1.20   bouyer 			 * else we have to restart it ourselve, at the
    598  1.20   bouyer 			 * interrupted instruction.
    599  1.20   bouyer 			 */
    600  1.20   bouyer 			bus_space_write_4(sc->sc_rt, sc->sc_rh, SIOP_DSP,
    601  1.20   bouyer 			    bus_space_read_4(sc->sc_rt, sc->sc_rh,
    602  1.20   bouyer 			    SIOP_DSP) - 8);
    603  1.20   bouyer 			return 1;
    604  1.20   bouyer 		}
    605   1.1   bouyer 		/* Else it's an unhandled exeption (for now). */
    606  1.35   bouyer 		printf("%s: unhandled scsi interrupt, sist=0x%x sstat1=0x%x "
    607  1.35   bouyer 		    "DSA=0x%x DSP=0x%x\n", sc->sc_dev.dv_xname, sist,
    608   1.1   bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SSTAT1),
    609   1.1   bouyer 		    bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSA),
    610   1.7   bouyer 		    (int)(bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DSP) -
    611  1.17   bouyer 		    sc->sc_scriptaddr));
    612   1.1   bouyer 		if (siop_cmd) {
    613   1.1   bouyer 			siop_cmd->status = CMDST_DONE;
    614   1.1   bouyer 			xs->error = XS_SELTIMEOUT;
    615   1.1   bouyer 			goto end;
    616   1.1   bouyer 		}
    617   1.1   bouyer 		need_reset = 1;
    618   1.1   bouyer 	}
    619   1.1   bouyer 	if (need_reset) {
    620   1.1   bouyer reset:
    621   1.1   bouyer 		/* fatal error, reset the bus */
    622  1.26   bouyer 		siop_resetbus(sc);
    623   1.2   bouyer 		/* no table to flush here */
    624   1.1   bouyer 		return 1;
    625   1.1   bouyer 	}
    626   1.1   bouyer 
    627  1.20   bouyer scintr:
    628   1.1   bouyer 	if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) { /* script interrupt */
    629   1.1   bouyer 		irqcode = bus_space_read_4(sc->sc_rt, sc->sc_rh,
    630   1.1   bouyer 		    SIOP_DSPS);
    631  1.35   bouyer #ifdef SIOP_DEBUG_INTR
    632   1.2   bouyer 		printf("script interrupt 0x%x\n", irqcode);
    633   1.2   bouyer #endif
    634   1.2   bouyer 		/*
    635  1.31   bouyer 		 * no command, or an inactive command is only valid for a
    636  1.31   bouyer 		 * reselect interrupt
    637   1.2   bouyer 		 */
    638  1.31   bouyer 		if ((irqcode & 0x80) == 0) {
    639  1.31   bouyer 			if (siop_cmd == NULL) {
    640  1.31   bouyer 				printf("%s: script interrupt (0x%x) with
    641  1.31   bouyer 				    invalid DSA !!!\n", sc->sc_dev.dv_xname,
    642  1.31   bouyer 				    irqcode);
    643  1.31   bouyer 				goto reset;
    644  1.31   bouyer 			}
    645  1.31   bouyer 			if (siop_cmd->status != CMDST_ACTIVE &&
    646  1.31   bouyer 			    siop_cmd->status != CMDST_SENSE_ACTIVE) {
    647  1.31   bouyer 				printf("%s: command with invalid status "
    648  1.31   bouyer 				    "(IRQ code 0x%x current status %d) !\n",
    649  1.31   bouyer 				    sc->sc_dev.dv_xname,
    650  1.31   bouyer 				    irqcode, siop_cmd->status);
    651  1.31   bouyer 				xs = NULL;
    652  1.31   bouyer 			}
    653   1.7   bouyer 		}
    654   1.1   bouyer 		switch(irqcode) {
    655   1.1   bouyer 		case A_int_err:
    656   1.2   bouyer 			printf("error, DSP=0x%x\n",
    657  1.17   bouyer 			    (int)(bus_space_read_4(sc->sc_rt, sc->sc_rh,
    658  1.17   bouyer 			    SIOP_DSP) - sc->sc_scriptaddr));
    659   1.2   bouyer 			if (xs) {
    660   1.2   bouyer 				xs->error = XS_SELTIMEOUT;
    661   1.2   bouyer 				goto end;
    662   1.2   bouyer 			} else {
    663   1.2   bouyer 				goto reset;
    664   1.2   bouyer 			}
    665  1.31   bouyer 		case A_int_reseltarg:
    666  1.31   bouyer 			printf("%s: reselect with invalid target\n",
    667  1.31   bouyer 				    sc->sc_dev.dv_xname);
    668  1.31   bouyer 			goto reset;
    669  1.35   bouyer 		case A_int_resellun:
    670  1.35   bouyer 			INCSTAT(siop_stat_intr_lunresel);
    671  1.35   bouyer 			target = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    672  1.35   bouyer 			    SIOP_SCRATCHA) & 0xf;
    673  1.35   bouyer 			lun = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    674  1.35   bouyer 			    SIOP_SCRATCHA + 1);
    675  1.35   bouyer 			tag = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    676  1.35   bouyer 			    SIOP_SCRATCHA + 2);
    677  1.35   bouyer 			siop_target = sc->targets[target];
    678  1.35   bouyer 			if (siop_target == NULL) {
    679  1.35   bouyer 				printf("%s: reselect with invalid "
    680  1.35   bouyer 				    "target %d\n", sc->sc_dev.dv_xname, target);
    681  1.35   bouyer 				goto reset;
    682  1.35   bouyer 			}
    683  1.35   bouyer 			siop_lun = siop_target->siop_lun[lun];
    684  1.35   bouyer 			if (siop_lun == NULL) {
    685  1.35   bouyer 				printf("%s: target %d reselect with invalid "
    686  1.35   bouyer 				    "lun %d\n", sc->sc_dev.dv_xname,
    687  1.35   bouyer 				    target, lun);
    688  1.35   bouyer 				goto reset;
    689  1.35   bouyer 			}
    690  1.35   bouyer 			if (siop_lun->siop_tag[tag].active == NULL) {
    691  1.35   bouyer 				printf("%s: target %d lun %d tag %d reselect "
    692  1.35   bouyer 				    "without command\n", sc->sc_dev.dv_xname,
    693  1.35   bouyer 				    target, lun, tag);
    694  1.35   bouyer 				goto reset;
    695  1.35   bouyer 			}
    696  1.35   bouyer 			siop_cmd = siop_lun->siop_tag[tag].active;
    697  1.35   bouyer 			bus_space_write_4(sc->sc_rt, sc->sc_rh, SIOP_DSP,
    698  1.35   bouyer 			    siop_cmd->dsa + sizeof(struct siop_xfer_common) +
    699  1.35   bouyer 			    Ent_ldsa_reload_dsa);
    700  1.38   bouyer 			siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
    701  1.35   bouyer 			return 1;
    702  1.31   bouyer 		case A_int_reseltag:
    703  1.31   bouyer 			printf("%s: reselect with invalid tag\n",
    704  1.31   bouyer 				    sc->sc_dev.dv_xname);
    705  1.31   bouyer 			goto reset;
    706   1.1   bouyer 		case A_int_msgin:
    707  1.31   bouyer 		{
    708  1.31   bouyer 			int msgin = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    709  1.31   bouyer 			    SIOP_SFBR);
    710  1.31   bouyer 			if (msgin == MSG_MESSAGE_REJECT) {
    711   1.8   bouyer 				int msg, extmsg;
    712  1.31   bouyer 				if (siop_cmd->siop_tables.msg_out[0] & 0x80) {
    713   1.8   bouyer 					/*
    714   1.8   bouyer 					 * message was part of a identify +
    715   1.8   bouyer 					 * something else. Identify shoudl't
    716   1.8   bouyer 					 * have been rejected.
    717   1.8   bouyer 					 */
    718  1.31   bouyer 					msg = siop_cmd->siop_tables.msg_out[1];
    719   1.8   bouyer 					extmsg =
    720  1.31   bouyer 					    siop_cmd->siop_tables.msg_out[3];
    721   1.8   bouyer 				} else {
    722  1.31   bouyer 					msg = siop_cmd->siop_tables.msg_out[0];
    723   1.8   bouyer 					extmsg =
    724  1.31   bouyer 					    siop_cmd->siop_tables.msg_out[2];
    725   1.8   bouyer 				}
    726   1.8   bouyer 				if (msg == MSG_MESSAGE_REJECT) {
    727   1.2   bouyer 					/* MSG_REJECT  for a MSG_REJECT  !*/
    728   1.9   bouyer 					if (xs)
    729   1.9   bouyer 						scsi_print_addr(xs->sc_link);
    730   1.9   bouyer 					else
    731   1.9   bouyer 						printf("%s: ",
    732   1.9   bouyer 						   sc->sc_dev.dv_xname);
    733   1.9   bouyer 					printf("our reject message was "
    734   1.9   bouyer 					    "rejected\n");
    735   1.2   bouyer 					goto reset;
    736   1.2   bouyer 				}
    737   1.8   bouyer 				if (msg == MSG_EXTENDED &&
    738   1.8   bouyer 				    extmsg == MSG_EXT_WDTR) {
    739   1.9   bouyer 					/* WDTR rejected, initiate sync */
    740   1.9   bouyer 					printf("%s: target %d using 8bit "
    741   1.9   bouyer 					    "transfers\n", sc->sc_dev.dv_xname,
    742  1.35   bouyer 					    target);
    743  1.31   bouyer 					if ((siop_target->flags & TARF_SYNC)
    744  1.31   bouyer 					    == 0) {
    745  1.31   bouyer 						siop_target->status = TARST_OK;
    746  1.26   bouyer 						/* no table to flush here */
    747  1.26   bouyer 						CALL_SCRIPT(Ent_msgin_ack);
    748  1.26   bouyer 						return 1;
    749  1.26   bouyer 					}
    750   1.9   bouyer 					siop_target->status = TARST_SYNC_NEG;
    751  1.35   bouyer 					siop_sdtr_msg(siop_cmd, 0,
    752  1.35   bouyer 					    sc->minsync, sc->maxoff);
    753   1.9   bouyer 					siop_table_sync(siop_cmd,
    754   1.9   bouyer 					    BUS_DMASYNC_PREREAD |
    755   1.9   bouyer 					    BUS_DMASYNC_PREWRITE);
    756   1.9   bouyer 					CALL_SCRIPT(Ent_send_msgout);
    757   1.9   bouyer 					return 1;
    758   1.8   bouyer 				} else if (msg == MSG_EXTENDED &&
    759   1.8   bouyer 				    extmsg == MSG_EXT_SDTR) {
    760   1.7   bouyer 					/* sync rejected */
    761   1.9   bouyer 					printf("%s: target %d asynchronous\n",
    762   1.9   bouyer 					    sc->sc_dev.dv_xname,
    763  1.35   bouyer 					    target);
    764  1.31   bouyer 					siop_target->status = TARST_OK;
    765   1.9   bouyer 					/* no table to flush here */
    766   1.9   bouyer 					CALL_SCRIPT(Ent_msgin_ack);
    767   1.9   bouyer 					return 1;
    768  1.35   bouyer 				} else if (msg == MSG_SIMPLE_Q_TAG ||
    769  1.35   bouyer 				    msg == MSG_HEAD_OF_Q_TAG ||
    770  1.35   bouyer 				    msg == MSG_ORDERED_Q_TAG) {
    771  1.35   bouyer 					if (siop_handle_qtag_reject(
    772  1.35   bouyer 					    siop_cmd) == -1)
    773  1.35   bouyer 						goto reset;
    774  1.35   bouyer 					CALL_SCRIPT(Ent_msgin_ack);
    775  1.35   bouyer 					return 1;
    776   1.9   bouyer 				}
    777   1.9   bouyer 				if (xs)
    778   1.9   bouyer 					scsi_print_addr(xs->sc_link);
    779   1.9   bouyer 				else
    780   1.9   bouyer 					printf("%s: ", sc->sc_dev.dv_xname);
    781   1.9   bouyer 				if (msg == MSG_EXTENDED) {
    782   1.9   bouyer 					printf("scsi message reject, extended "
    783   1.9   bouyer 					    "message sent was 0x%x\n", extmsg);
    784   1.9   bouyer 				} else {
    785   1.9   bouyer 					printf("scsi message reject, message "
    786   1.9   bouyer 					    "sent was 0x%x\n", msg);
    787   1.7   bouyer 				}
    788   1.2   bouyer 				/* no table to flush here */
    789   1.2   bouyer 				CALL_SCRIPT(Ent_msgin_ack);
    790   1.2   bouyer 				return 1;
    791   1.2   bouyer 			}
    792   1.9   bouyer 			if (xs)
    793   1.9   bouyer 				scsi_print_addr(xs->sc_link);
    794   1.9   bouyer 			else
    795   1.9   bouyer 				printf("%s: ", sc->sc_dev.dv_xname);
    796   1.8   bouyer 			printf("unhandled message 0x%x\n",
    797  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[0]);
    798  1.35   bouyer 			siop_cmd->siop_tables.msg_out[0] = MSG_MESSAGE_REJECT;
    799  1.31   bouyer 			siop_cmd->siop_tables.t_msgout.count= htole32(1);
    800   1.2   bouyer 			siop_table_sync(siop_cmd,
    801   1.2   bouyer 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    802   1.2   bouyer 			CALL_SCRIPT(Ent_send_msgout);
    803   1.2   bouyer 			return 1;
    804  1.31   bouyer 		}
    805   1.2   bouyer 		case A_int_extmsgin:
    806  1.35   bouyer #ifdef SIOP_DEBUG_INTR
    807   1.2   bouyer 			printf("extended message: msg 0x%x len %d\n",
    808  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[2],
    809  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[1]);
    810   1.2   bouyer #endif
    811  1.31   bouyer 			if (siop_cmd->siop_tables.msg_in[1] > 6)
    812   1.8   bouyer 				printf("%s: extended message too big (%d)\n",
    813   1.8   bouyer 				    sc->sc_dev.dv_xname,
    814  1.31   bouyer 				    siop_cmd->siop_tables.msg_in[1]);
    815  1.31   bouyer 			siop_cmd->siop_tables.t_extmsgdata.count =
    816  1.31   bouyer 			    htole32(siop_cmd->siop_tables.msg_in[1] - 1);
    817   1.2   bouyer 			siop_table_sync(siop_cmd,
    818   1.2   bouyer 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    819   1.2   bouyer 			CALL_SCRIPT(Ent_get_extmsgdata);
    820   1.2   bouyer 			return 1;
    821   1.2   bouyer 		case A_int_extmsgdata:
    822  1.35   bouyer #ifdef SIOP_DEBUG_INTR
    823   1.2   bouyer 			{
    824   1.2   bouyer 			int i;
    825   1.2   bouyer 			printf("extended message: 0x%x, data:",
    826  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[2]);
    827  1.31   bouyer 			for (i = 3; i < 2 + siop_cmd->siop_tables.msg_in[1];
    828   1.2   bouyer 			    i++)
    829   1.2   bouyer 				printf(" 0x%x",
    830  1.31   bouyer 				    siop_cmd->siop_tables.msg_in[i]);
    831   1.2   bouyer 			printf("\n");
    832   1.2   bouyer 			}
    833   1.2   bouyer #endif
    834  1.31   bouyer 			if (siop_cmd->siop_tables.msg_in[2] == MSG_EXT_WDTR) {
    835  1.14   bouyer 				switch (siop_wdtr_neg(siop_cmd)) {
    836  1.14   bouyer 				case SIOP_NEG_MSGOUT:
    837  1.31   bouyer 					siop_update_scntl3(sc,
    838  1.31   bouyer 					    siop_cmd->siop_target);
    839  1.14   bouyer 					siop_table_sync(siop_cmd,
    840  1.14   bouyer 					    BUS_DMASYNC_PREREAD |
    841  1.14   bouyer 					    BUS_DMASYNC_PREWRITE);
    842  1.14   bouyer 					CALL_SCRIPT(Ent_send_msgout);
    843  1.31   bouyer 					return(1);
    844  1.26   bouyer 				case SIOP_NEG_ACK:
    845  1.31   bouyer 					siop_update_scntl3(sc,
    846  1.31   bouyer 					    siop_cmd->siop_target);
    847  1.26   bouyer 					CALL_SCRIPT(Ent_msgin_ack);
    848  1.31   bouyer 					return(1);
    849  1.14   bouyer 				default:
    850  1.14   bouyer 					panic("invalid retval from "
    851  1.14   bouyer 					    "siop_wdtr_neg()");
    852  1.14   bouyer 				}
    853   1.7   bouyer 				return(1);
    854   1.7   bouyer 			}
    855  1.31   bouyer 			if (siop_cmd->siop_tables.msg_in[2] == MSG_EXT_SDTR) {
    856  1.14   bouyer 				switch (siop_sdtr_neg(siop_cmd)) {
    857  1.14   bouyer 				case SIOP_NEG_MSGOUT:
    858  1.31   bouyer 					siop_update_scntl3(sc,
    859  1.31   bouyer 					    siop_cmd->siop_target);
    860  1.14   bouyer 					siop_table_sync(siop_cmd,
    861  1.14   bouyer 					    BUS_DMASYNC_PREREAD |
    862  1.14   bouyer 					    BUS_DMASYNC_PREWRITE);
    863  1.14   bouyer 					CALL_SCRIPT(Ent_send_msgout);
    864  1.31   bouyer 					return(1);
    865  1.14   bouyer 				case SIOP_NEG_ACK:
    866  1.31   bouyer 					siop_update_scntl3(sc,
    867  1.31   bouyer 					    siop_cmd->siop_target);
    868  1.14   bouyer 					CALL_SCRIPT(Ent_msgin_ack);
    869  1.31   bouyer 					return(1);
    870  1.14   bouyer 				default:
    871  1.14   bouyer 					panic("invalid retval from "
    872  1.14   bouyer 					    "siop_wdtr_neg()");
    873  1.14   bouyer 				}
    874   1.7   bouyer 				return(1);
    875   1.2   bouyer 			}
    876   1.7   bouyer 			/* send a message reject */
    877  1.35   bouyer 			siop_cmd->siop_tables.msg_out[0] = MSG_MESSAGE_REJECT;
    878  1.31   bouyer 			siop_cmd->siop_tables.t_msgout.count = htole32(1);
    879   1.2   bouyer 			siop_table_sync(siop_cmd,
    880   1.2   bouyer 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    881   1.2   bouyer 			CALL_SCRIPT(Ent_send_msgout);
    882   1.2   bouyer 			return 1;
    883   1.1   bouyer 		case A_int_disc:
    884   1.2   bouyer 			INCSTAT(siop_stat_intr_sdp);
    885   1.1   bouyer 			offset = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    886   1.1   bouyer 			    SIOP_SCRATCHA + 1);
    887  1.35   bouyer #ifdef SIOP_DEBUG_DR
    888   1.1   bouyer 			printf("disconnect offset %d\n", offset);
    889   1.1   bouyer #endif
    890   1.1   bouyer 			if (offset > SIOP_NSG) {
    891   1.1   bouyer 				printf("%s: bad offset for disconnect (%d)\n",
    892   1.1   bouyer 				    sc->sc_dev.dv_xname, offset);
    893   1.1   bouyer 				goto reset;
    894   1.1   bouyer 			}
    895   1.1   bouyer 			/*
    896   1.1   bouyer 			 * offset == SIOP_NSG may be a valid condition if
    897   1.1   bouyer 			 * we get a sdp when the xfer is done.
    898   1.1   bouyer 			 * Don't call memmove in this case.
    899   1.1   bouyer 			 */
    900   1.1   bouyer 			if (offset < SIOP_NSG) {
    901  1.31   bouyer 				memmove(&siop_cmd->siop_tables.data[0],
    902  1.31   bouyer 				    &siop_cmd->siop_tables.data[offset],
    903   1.1   bouyer 				    (SIOP_NSG - offset) * sizeof(scr_table_t));
    904   1.2   bouyer 				siop_table_sync(siop_cmd,
    905   1.2   bouyer 				    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    906   1.1   bouyer 			}
    907  1.31   bouyer 			CALL_SCRIPT(Ent_script_sched);
    908  1.35   bouyer 			/* check if we can put some command in scheduler */
    909  1.35   bouyer 			siop_start(sc);
    910   1.1   bouyer 			return 1;
    911   1.1   bouyer 		case A_int_resfail:
    912   1.1   bouyer 			printf("reselect failed\n");
    913  1.31   bouyer 			CALL_SCRIPT(Ent_script_sched);
    914   1.1   bouyer 			return  1;
    915   1.1   bouyer 		case A_int_done:
    916   1.2   bouyer 			if (xs == NULL) {
    917   1.8   bouyer 				printf("%s: done without command, DSA=0x%lx\n",
    918   1.8   bouyer 				    sc->sc_dev.dv_xname, (u_long)siop_cmd->dsa);
    919   1.8   bouyer 				siop_cmd->status = CMDST_FREE;
    920   1.2   bouyer 				siop_start(sc);
    921  1.31   bouyer 				CALL_SCRIPT(Ent_script_sched);
    922   1.2   bouyer 				return 1;
    923   1.2   bouyer 			}
    924  1.35   bouyer #ifdef SIOP_DEBUG_INTR
    925   1.8   bouyer 			printf("done, DSA=0x%lx target id 0x%x last msg "
    926   1.8   bouyer 			    "in=0x%x status=0x%x\n", (u_long)siop_cmd->dsa,
    927  1.31   bouyer 			    le32toh(siop_cmd->siop_tables.id),
    928  1.31   bouyer 			    siop_cmd->siop_tables.msg_in[0],
    929  1.31   bouyer 			    le32toh(siop_cmd->siop_tables.status));
    930   1.1   bouyer #endif
    931   1.2   bouyer 			INCSTAT(siop_stat_intr_done);
    932   1.2   bouyer 			if (siop_cmd->status == CMDST_SENSE_ACTIVE)
    933   1.1   bouyer 				siop_cmd->status = CMDST_SENSE_DONE;
    934   1.1   bouyer 			else
    935   1.1   bouyer 				siop_cmd->status = CMDST_DONE;
    936   1.1   bouyer 			goto end;
    937   1.1   bouyer 		default:
    938   1.1   bouyer 			printf("unknown irqcode %x\n", irqcode);
    939  1.35   bouyer 			if (xs) {
    940  1.35   bouyer 				xs->error = XS_SELTIMEOUT;
    941  1.35   bouyer 				goto end;
    942  1.35   bouyer 			}
    943  1.35   bouyer 			goto reset;
    944   1.1   bouyer 		}
    945   1.1   bouyer 		return 1;
    946   1.1   bouyer 	}
    947   1.2   bouyer 	/* We just should't get there */
    948   1.2   bouyer 	panic("siop_intr: I shouldn't be there !");
    949   1.2   bouyer 	return 1;
    950   1.1   bouyer end:
    951  1.31   bouyer 	CALL_SCRIPT(Ent_script_sched);
    952   1.2   bouyer 	siop_scsicmd_end(siop_cmd);
    953  1.35   bouyer 	siop_lun->siop_tag[tag].active = NULL;
    954   1.2   bouyer 	if (siop_cmd->status == CMDST_FREE) {
    955   1.2   bouyer 		TAILQ_INSERT_TAIL(&sc->free_list, siop_cmd, next);
    956  1.35   bouyer 		siop_lun->lun_flags &= ~SIOP_LUNF_FULL;
    957  1.35   bouyer 		if (freetarget && siop_target->status == TARST_PROBING)
    958  1.35   bouyer 			siop_del_dev(sc, target, lun);
    959   1.2   bouyer 	}
    960   1.2   bouyer 	siop_start(sc);
    961   1.2   bouyer 	return 1;
    962   1.2   bouyer }
    963   1.2   bouyer 
    964   1.2   bouyer void
    965   1.2   bouyer siop_scsicmd_end(siop_cmd)
    966   1.2   bouyer 	struct siop_cmd *siop_cmd;
    967   1.2   bouyer {
    968   1.2   bouyer 	struct scsipi_xfer *xs = siop_cmd->xs;
    969  1.31   bouyer 	struct siop_softc *sc = siop_cmd->siop_sc;
    970   1.2   bouyer 
    971  1.36   bouyer 	switch(le32toh(siop_cmd->siop_tables.status)) {
    972  1.36   bouyer 	case SCSI_OK:
    973  1.36   bouyer 		xs->error = (siop_cmd->status == CMDST_DONE) ?
    974  1.36   bouyer 		    XS_NOERROR : XS_SENSE;
    975  1.36   bouyer 		break;
    976  1.36   bouyer 	case SCSI_BUSY:
    977  1.36   bouyer 		xs->error = XS_BUSY;
    978  1.36   bouyer 		break;
    979  1.36   bouyer 	case SCSI_CHECK:
    980  1.36   bouyer 		if (siop_cmd->status == CMDST_SENSE_DONE) {
    981  1.36   bouyer 			/* request sense on a request sense ? */
    982  1.36   bouyer 			printf("request sense failed\n");
    983  1.36   bouyer 			xs->error = XS_DRIVER_STUFFUP;
    984  1.36   bouyer 		} else {
    985  1.36   bouyer 			siop_cmd->status = CMDST_SENSE;
    986  1.36   bouyer 		}
    987  1.36   bouyer 		break;
    988  1.36   bouyer 	case SCSI_QUEUE_FULL:
    989  1.36   bouyer 		{
    990  1.36   bouyer 		struct siop_lun *siop_lun = siop_cmd->siop_target->siop_lun[
    991  1.36   bouyer 		    xs->sc_link->scsipi_scsi.lun];
    992  1.36   bouyer 		/*
    993  1.36   bouyer 		 * device didn't queue the command. We have to
    994  1.36   bouyer 		 * retry it.
    995  1.36   bouyer 		 * We insert it in the urgent list, hoping to preserve order.
    996  1.36   bouyer 		 * But unfortunably, commands already in the scheduler may
    997  1.36   bouyer 		 * be accepted before this one.
    998  1.36   bouyer 		 * Also remember the condition, to avoid starting new commands
    999  1.36   bouyer 		 * for this device before one is done.
   1000  1.36   bouyer 		 */
   1001  1.36   bouyer 		INCSTAT(siop_stat_intr_qfull);
   1002  1.36   bouyer #ifdef SIOP_DEBUG
   1003  1.36   bouyer 		printf("%s:%d:%d: queue full (tag %d)\n", sc->sc_dev.dv_xname,
   1004  1.36   bouyer 		    xs->sc_link->scsipi_scsi.target,
   1005  1.36   bouyer 		    xs->sc_link->scsipi_scsi.lun, siop_cmd->tag);
   1006  1.36   bouyer #endif
   1007  1.36   bouyer 		callout_stop(&xs->xs_callout);
   1008  1.36   bouyer 		siop_lun->lun_flags |= SIOP_LUNF_FULL;
   1009  1.36   bouyer 		siop_cmd->status = CMDST_READY;
   1010  1.36   bouyer 		siop_setuptables(siop_cmd);
   1011  1.36   bouyer 		TAILQ_INSERT_TAIL(&sc->urgent_list, siop_cmd, next);
   1012  1.36   bouyer 		return;
   1013  1.36   bouyer 		}
   1014  1.36   bouyer 	case SCSI_SIOP_NOCHECK:
   1015  1.36   bouyer 		/*
   1016  1.36   bouyer 		 * don't check status, xs->error is already valid
   1017  1.36   bouyer 		 */
   1018  1.36   bouyer 		break;
   1019  1.36   bouyer 	case SCSI_SIOP_NOSTATUS:
   1020  1.36   bouyer 		/*
   1021  1.36   bouyer 		 * the status byte was not updated, cmd was
   1022  1.36   bouyer 		 * aborted
   1023  1.36   bouyer 		 */
   1024  1.36   bouyer 		xs->error = XS_SELTIMEOUT;
   1025  1.36   bouyer 		break;
   1026  1.36   bouyer 	default:
   1027  1.36   bouyer 		xs->error = XS_DRIVER_STUFFUP;
   1028  1.36   bouyer 	}
   1029   1.1   bouyer 	if (siop_cmd->status != CMDST_SENSE_DONE &&
   1030   1.1   bouyer 	    xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
   1031   1.1   bouyer 		bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_data, 0,
   1032   1.1   bouyer 		    siop_cmd->dmamap_data->dm_mapsize,
   1033   1.1   bouyer 		    (xs->xs_control & XS_CTL_DATA_IN) ?
   1034   1.1   bouyer 		    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
   1035   1.1   bouyer 		bus_dmamap_unload(sc->sc_dmat, siop_cmd->dmamap_data);
   1036   1.1   bouyer 	}
   1037   1.1   bouyer 	bus_dmamap_unload(sc->sc_dmat, siop_cmd->dmamap_cmd);
   1038   1.1   bouyer 	if (siop_cmd->status == CMDST_SENSE) {
   1039   1.1   bouyer 		/* issue a request sense for this target */
   1040  1.35   bouyer 		int error;
   1041   1.1   bouyer 		siop_cmd->rs_cmd.opcode = REQUEST_SENSE;
   1042   1.1   bouyer 		siop_cmd->rs_cmd.byte2 = xs->sc_link->scsipi_scsi.lun << 5;
   1043   1.1   bouyer 		siop_cmd->rs_cmd.unused[0] = siop_cmd->rs_cmd.unused[1] = 0;
   1044   1.1   bouyer 		siop_cmd->rs_cmd.length = sizeof(struct scsipi_sense_data);
   1045   1.1   bouyer 		siop_cmd->rs_cmd.control = 0;
   1046  1.35   bouyer 		siop_cmd->flags &= ~CMDFL_TAG;
   1047   1.1   bouyer 		error = bus_dmamap_load(sc->sc_dmat, siop_cmd->dmamap_cmd,
   1048   1.1   bouyer 		    &siop_cmd->rs_cmd, sizeof(struct scsipi_sense),
   1049   1.1   bouyer 		    NULL, BUS_DMA_NOWAIT);
   1050   1.1   bouyer 		if (error) {
   1051   1.1   bouyer 			printf("%s: unable to load cmd DMA map: %d",
   1052   1.1   bouyer 			    sc->sc_dev.dv_xname, error);
   1053   1.1   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1054   1.1   bouyer 			goto out;
   1055   1.1   bouyer 		}
   1056   1.1   bouyer 		error = bus_dmamap_load(sc->sc_dmat, siop_cmd->dmamap_data,
   1057   1.1   bouyer 		    &xs->sense.scsi_sense, sizeof(struct  scsipi_sense_data),
   1058   1.1   bouyer 		    NULL, BUS_DMA_NOWAIT);
   1059   1.1   bouyer 		if (error) {
   1060   1.1   bouyer 			printf("%s: unable to load sense DMA map: %d",
   1061   1.1   bouyer 			    sc->sc_dev.dv_xname, error);
   1062   1.1   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1063   1.1   bouyer 			bus_dmamap_unload(sc->sc_dmat, siop_cmd->dmamap_cmd);
   1064   1.1   bouyer 			goto out;
   1065   1.1   bouyer 		}
   1066   1.1   bouyer 		bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_data, 0,
   1067   1.1   bouyer 		    siop_cmd->dmamap_data->dm_mapsize, BUS_DMASYNC_PREREAD);
   1068   1.1   bouyer 		bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_cmd, 0,
   1069   1.1   bouyer 		    siop_cmd->dmamap_cmd->dm_mapsize, BUS_DMASYNC_PREWRITE);
   1070  1.35   bouyer 
   1071  1.35   bouyer 		siop_setuptables(siop_cmd);
   1072  1.31   bouyer 		/* arrange for the cmd to be handled now */
   1073  1.36   bouyer 		TAILQ_INSERT_HEAD(&sc->urgent_list, siop_cmd, next);
   1074   1.2   bouyer 		return;
   1075   1.1   bouyer 	} else if (siop_cmd->status == CMDST_SENSE_DONE) {
   1076   1.1   bouyer 		bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_data, 0,
   1077   1.1   bouyer 		    siop_cmd->dmamap_data->dm_mapsize, BUS_DMASYNC_POSTREAD);
   1078   1.1   bouyer 		bus_dmamap_unload(sc->sc_dmat, siop_cmd->dmamap_data);
   1079   1.1   bouyer 	}
   1080   1.1   bouyer out:
   1081   1.1   bouyer 	callout_stop(&siop_cmd->xs->xs_callout);
   1082   1.1   bouyer 	siop_cmd->status = CMDST_FREE;
   1083   1.1   bouyer 	xs->xs_status |= XS_STS_DONE;
   1084   1.1   bouyer 	xs->resid = 0;
   1085  1.14   bouyer 	if ((xs->xs_control & XS_CTL_POLL) == 0)
   1086  1.14   bouyer 		scsipi_done (xs);
   1087   1.7   bouyer }
   1088   1.7   bouyer 
   1089   1.2   bouyer /*
   1090  1.31   bouyer  * handle a rejected queue tag message: the command will run untagged,
   1091  1.31   bouyer  * has to adjust the reselect script.
   1092  1.31   bouyer  */
   1093  1.31   bouyer int
   1094  1.31   bouyer siop_handle_qtag_reject(siop_cmd)
   1095  1.31   bouyer 	struct siop_cmd *siop_cmd;
   1096  1.31   bouyer {
   1097  1.31   bouyer 	struct siop_softc *sc = siop_cmd->siop_sc;
   1098  1.31   bouyer 	int target = siop_cmd->xs->sc_link->scsipi_scsi.target;
   1099  1.31   bouyer 	int lun = siop_cmd->xs->sc_link->scsipi_scsi.lun;
   1100  1.31   bouyer 	int tag = siop_cmd->siop_tables.msg_out[2];
   1101  1.35   bouyer 	struct siop_lun *siop_lun = sc->targets[target]->siop_lun[lun];
   1102  1.31   bouyer 
   1103  1.36   bouyer #ifdef SIOP_DEBUG
   1104  1.36   bouyer 	printf("%s:%d:%d: tag message %d (%d) rejected (status %d)\n",
   1105  1.36   bouyer 	    sc->sc_dev.dv_xname, target, lun, tag, siop_cmd->tag,
   1106  1.36   bouyer 	    siop_cmd->status);
   1107  1.36   bouyer #endif
   1108  1.36   bouyer 
   1109  1.35   bouyer 	if (siop_lun->siop_tag[0].active != NULL) {
   1110  1.36   bouyer 		printf("%s: untagged command already running for target %d "
   1111  1.36   bouyer 		    "lun %d (status %d)\n", sc->sc_dev.dv_xname, target, lun,
   1112  1.36   bouyer 		    siop_lun->siop_tag[0].active->status);
   1113  1.35   bouyer 		return -1;
   1114  1.35   bouyer 	}
   1115  1.35   bouyer 	/* clear tag slot */
   1116  1.35   bouyer 	siop_lun->siop_tag[tag].active = NULL;
   1117  1.35   bouyer 	/* add command to non-tagged slot */
   1118  1.35   bouyer 	siop_lun->siop_tag[0].active = siop_cmd;
   1119  1.35   bouyer 	siop_cmd->tag = 0;
   1120  1.35   bouyer 	/* adjust reselect script if there is one */
   1121  1.35   bouyer 	if (siop_lun->siop_tag[0].reseloff > 0) {
   1122  1.35   bouyer 		siop_script_write(sc,
   1123  1.35   bouyer 		    siop_lun->siop_tag[0].reseloff + 1,
   1124  1.35   bouyer 		    siop_cmd->dsa + sizeof(struct siop_xfer_common) +
   1125  1.35   bouyer 		    Ent_ldsa_reload_dsa);
   1126  1.38   bouyer 		siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
   1127  1.35   bouyer 	}
   1128  1.31   bouyer 	return 0;
   1129  1.31   bouyer }
   1130  1.31   bouyer 
   1131  1.31   bouyer /*
   1132  1.31   bouyer  * handle a bus reset: reset chip, unqueue all active commands, free all
   1133  1.31   bouyer  * target struct and report loosage to upper layer.
   1134   1.2   bouyer  * As the upper layer may requeue immediatly we have to first store
   1135   1.2   bouyer  * all active commands in a temporary queue.
   1136   1.2   bouyer  */
   1137   1.2   bouyer void
   1138   1.2   bouyer siop_handle_reset(sc)
   1139   1.2   bouyer 	struct siop_softc *sc;
   1140   1.2   bouyer {
   1141   1.2   bouyer 	struct cmd_list reset_list;
   1142   1.2   bouyer 	struct siop_cmd *siop_cmd, *next_siop_cmd;
   1143  1.31   bouyer 	struct siop_lun *siop_lun;
   1144  1.35   bouyer 	int target, lun, tag;
   1145   1.2   bouyer 	/*
   1146   1.2   bouyer 	 * scsi bus reset. reset the chip and restart
   1147   1.2   bouyer 	 * the queue. Need to clean up all active commands
   1148   1.2   bouyer 	 */
   1149   1.2   bouyer 	printf("%s: scsi bus reset\n", sc->sc_dev.dv_xname);
   1150   1.2   bouyer 	/* stop, reset and restart the chip */
   1151   1.2   bouyer 	siop_reset(sc);
   1152   1.2   bouyer 	TAILQ_INIT(&reset_list);
   1153  1.36   bouyer 	/*
   1154  1.36   bouyer 	 * Process all commands: first commmands being executed
   1155  1.36   bouyer 	 */
   1156  1.25       pk 	for (target = 0; target <= sc->sc_link.scsipi_scsi.max_target;
   1157   1.7   bouyer 	    target++) {
   1158   1.7   bouyer 		if (sc->targets[target] == NULL)
   1159   1.7   bouyer 			continue;
   1160   1.7   bouyer 		for (lun = 0; lun < 8; lun++) {
   1161  1.35   bouyer 			siop_lun = sc->targets[target]->siop_lun[lun];
   1162  1.31   bouyer 			if (siop_lun == NULL)
   1163  1.31   bouyer 				continue;
   1164  1.36   bouyer 			siop_lun->lun_flags &= ~SIOP_LUNF_FULL;
   1165  1.35   bouyer 			for (tag = 0; tag <
   1166  1.35   bouyer 			    ((sc->targets[target]->flags & TARF_TAG) ?
   1167  1.36   bouyer 			    SIOP_NTAG : 1);
   1168  1.35   bouyer 			    tag++) {
   1169  1.35   bouyer 				siop_cmd = siop_lun->siop_tag[tag].active;
   1170  1.35   bouyer 				if (siop_cmd == NULL)
   1171  1.35   bouyer 					continue;
   1172  1.35   bouyer 				printf("cmd %p (target %d:%d) in reset list\n",
   1173  1.35   bouyer 				    siop_cmd, target, lun);
   1174  1.35   bouyer 				TAILQ_INSERT_TAIL(&reset_list, siop_cmd, next);
   1175  1.35   bouyer 				siop_lun->siop_tag[tag].active = NULL;
   1176  1.35   bouyer 			}
   1177   1.2   bouyer 		}
   1178   1.7   bouyer 		sc->targets[target]->status = TARST_ASYNC;
   1179  1.31   bouyer 		sc->targets[target]->flags &= ~TARF_ISWIDE;
   1180  1.31   bouyer 	}
   1181  1.36   bouyer 	/* Next commands from the urgent list */
   1182  1.36   bouyer 	for (siop_cmd = TAILQ_FIRST(&sc->urgent_list); siop_cmd != NULL;
   1183  1.36   bouyer 	    siop_cmd = next_siop_cmd) {
   1184  1.36   bouyer 		next_siop_cmd = TAILQ_NEXT(siop_cmd, next);
   1185  1.36   bouyer 		siop_cmd->flags &= ~CMDFL_TAG;
   1186  1.36   bouyer 		printf("cmd %p (target %d:%d) in reset list (wait)\n",
   1187  1.36   bouyer 		    siop_cmd, siop_cmd->xs->sc_link->scsipi_scsi.target,
   1188  1.36   bouyer 		    siop_cmd->xs->sc_link->scsipi_scsi.lun);
   1189  1.36   bouyer 		TAILQ_REMOVE(&sc->urgent_list, siop_cmd, next);
   1190  1.36   bouyer 		TAILQ_INSERT_TAIL(&reset_list, siop_cmd, next);
   1191  1.36   bouyer 	}
   1192  1.36   bouyer 	/* Then command waiting in the input list */
   1193  1.31   bouyer 	for (siop_cmd = TAILQ_FIRST(&sc->ready_list); siop_cmd != NULL;
   1194  1.31   bouyer 	    siop_cmd = next_siop_cmd) {
   1195  1.31   bouyer 		next_siop_cmd = TAILQ_NEXT(siop_cmd, next);
   1196  1.36   bouyer 		siop_cmd->flags &= ~CMDFL_TAG;
   1197  1.36   bouyer 		printf("cmd %p (target %d:%d) in reset list (wait)\n",
   1198  1.31   bouyer 		    siop_cmd, siop_cmd->xs->sc_link->scsipi_scsi.target,
   1199  1.31   bouyer 		    siop_cmd->xs->sc_link->scsipi_scsi.lun);
   1200  1.31   bouyer 		TAILQ_REMOVE(&sc->ready_list, siop_cmd, next);
   1201  1.31   bouyer 		TAILQ_INSERT_TAIL(&reset_list, siop_cmd, next);
   1202   1.2   bouyer 	}
   1203  1.31   bouyer 
   1204   1.2   bouyer 	for (siop_cmd = TAILQ_FIRST(&reset_list); siop_cmd != NULL;
   1205   1.2   bouyer 	    siop_cmd = next_siop_cmd) {
   1206   1.2   bouyer 		next_siop_cmd = TAILQ_NEXT(siop_cmd, next);
   1207   1.2   bouyer 		siop_cmd->xs->error = (siop_cmd->flags & CMDFL_TIMEOUT) ?
   1208   1.2   bouyer 		    XS_TIMEOUT : XS_RESET;
   1209  1.36   bouyer 		siop_cmd->siop_tables.status = htole32(SCSI_SIOP_NOCHECK);
   1210  1.31   bouyer 		printf("cmd %p (status %d) about to be processed\n", siop_cmd,
   1211  1.31   bouyer 		    siop_cmd->status);
   1212  1.16   bouyer 		if (siop_cmd->status == CMDST_SENSE ||
   1213  1.16   bouyer 		    siop_cmd->status == CMDST_SENSE_ACTIVE)
   1214  1.16   bouyer 			siop_cmd->status = CMDST_SENSE_DONE;
   1215  1.16   bouyer 		else
   1216  1.16   bouyer 			siop_cmd->status = CMDST_DONE;
   1217   1.2   bouyer 		TAILQ_REMOVE(&reset_list, siop_cmd, next);
   1218   1.2   bouyer 		siop_scsicmd_end(siop_cmd);
   1219   1.2   bouyer 		TAILQ_INSERT_TAIL(&sc->free_list, siop_cmd, next);
   1220   1.2   bouyer 	}
   1221   1.1   bouyer }
   1222   1.1   bouyer 
   1223   1.2   bouyer int
   1224   1.1   bouyer siop_scsicmd(xs)
   1225   1.1   bouyer 	struct scsipi_xfer *xs;
   1226   1.1   bouyer {
   1227   1.1   bouyer 	struct siop_softc *sc = (struct siop_softc *)xs->sc_link->adapter_softc;
   1228   1.1   bouyer 	struct siop_cmd *siop_cmd;
   1229   1.1   bouyer 	int s, error, i;
   1230  1.31   bouyer 	const int target = xs->sc_link->scsipi_scsi.target;
   1231  1.31   bouyer 	const int lun = xs->sc_link->scsipi_scsi.lun;
   1232   1.1   bouyer 
   1233   1.1   bouyer 	s = splbio();
   1234  1.35   bouyer #ifdef SIOP_DEBUG_SCHED
   1235   1.7   bouyer 	printf("starting cmd for %d:%d\n", target, lun);
   1236   1.1   bouyer #endif
   1237  1.31   bouyer 	siop_cmd = TAILQ_FIRST(&sc->free_list);
   1238   1.1   bouyer 	if (siop_cmd) {
   1239   1.1   bouyer 		TAILQ_REMOVE(&sc->free_list, siop_cmd, next);
   1240  1.16   bouyer 	} else {
   1241  1.16   bouyer 		if (siop_morecbd(sc) == 0) {
   1242  1.31   bouyer 			siop_cmd = TAILQ_FIRST(&sc->free_list);
   1243  1.16   bouyer #ifdef DIAGNOSTIC
   1244  1.16   bouyer 			if (siop_cmd == NULL)
   1245  1.16   bouyer 				panic("siop_morecbd succeed and does nothing");
   1246  1.16   bouyer #endif
   1247  1.16   bouyer 			TAILQ_REMOVE(&sc->free_list, siop_cmd, next);
   1248  1.16   bouyer 		}
   1249   1.1   bouyer 	}
   1250   1.1   bouyer 	if (siop_cmd == NULL) {
   1251   1.1   bouyer 		xs->error = XS_DRIVER_STUFFUP;
   1252  1.31   bouyer 		splx(s);
   1253   1.1   bouyer 		return(TRY_AGAIN_LATER);
   1254   1.1   bouyer 	}
   1255   1.1   bouyer #ifdef DIAGNOSTIC
   1256   1.1   bouyer 	if (siop_cmd->status != CMDST_FREE)
   1257   1.1   bouyer 		panic("siop_scsicmd: new cmd not free");
   1258   1.1   bouyer #endif
   1259   1.7   bouyer 	if (sc->targets[target] == NULL) {
   1260  1.35   bouyer #ifdef SIOP_DEBUG
   1261  1.31   bouyer 		printf("%s: alloc siop_target for target %d\n",
   1262  1.31   bouyer 			sc->sc_dev.dv_xname, target);
   1263  1.31   bouyer #endif
   1264   1.7   bouyer 		sc->targets[target] =
   1265   1.7   bouyer 		    malloc(sizeof(struct siop_target), M_DEVBUF, M_NOWAIT);
   1266   1.7   bouyer 		if (sc->targets[target] == NULL) {
   1267   1.7   bouyer 			printf("%s: can't malloc memory for target %d\n",
   1268   1.7   bouyer 			    sc->sc_dev.dv_xname, target);
   1269   1.7   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1270  1.31   bouyer 			splx(s);
   1271   1.7   bouyer 			return(TRY_AGAIN_LATER);
   1272   1.7   bouyer 		}
   1273   1.7   bouyer 		sc->targets[target]->status = TARST_PROBING;
   1274   1.7   bouyer 		sc->targets[target]->flags = 0;
   1275   1.7   bouyer 		sc->targets[target]->id = sc->clock_div << 24; /* scntl3 */
   1276   1.7   bouyer 		sc->targets[target]->id |=  target << 16; /* id */
   1277  1.14   bouyer 		/* sc->targets[target]->id |= 0x0 << 8; scxfer is 0 */
   1278  1.31   bouyer 
   1279  1.31   bouyer 		/* get a lun switch script */
   1280  1.31   bouyer 		sc->targets[target]->lunsw = siop_get_lunsw(sc);
   1281  1.31   bouyer 		if (sc->targets[target]->lunsw == NULL) {
   1282  1.31   bouyer 			printf("%s: can't alloc lunsw for target %d\n",
   1283  1.31   bouyer 			    sc->sc_dev.dv_xname, target);
   1284  1.31   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1285  1.31   bouyer 			splx(s);
   1286  1.31   bouyer 			return(TRY_AGAIN_LATER);
   1287  1.31   bouyer 		}
   1288  1.35   bouyer 		for (i=0; i < 8; i++)
   1289  1.35   bouyer 			sc->targets[target]->siop_lun[i] = NULL;
   1290  1.31   bouyer 		siop_add_reselsw(sc, target);
   1291  1.35   bouyer 	}
   1292  1.35   bouyer 	if (sc->targets[target]->siop_lun[lun] == NULL) {
   1293  1.35   bouyer 		sc->targets[target]->siop_lun[lun] =
   1294  1.35   bouyer 		    malloc(sizeof(struct siop_lun), M_DEVBUF, M_NOWAIT);
   1295  1.35   bouyer 		if (sc->targets[target]->siop_lun[lun] == NULL) {
   1296  1.35   bouyer 			printf("%s: can't alloc siop_lun for target %d "
   1297  1.35   bouyer 			    "lun %d\n", sc->sc_dev.dv_xname, target, lun);
   1298  1.35   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1299  1.35   bouyer 			splx(s);
   1300  1.35   bouyer 			return(TRY_AGAIN_LATER);
   1301  1.35   bouyer 		}
   1302  1.35   bouyer 		memset(sc->targets[target]->siop_lun[lun], 0,
   1303  1.35   bouyer 		    sizeof(struct siop_lun));
   1304   1.7   bouyer 	}
   1305   1.7   bouyer 	siop_cmd->siop_target = sc->targets[target];
   1306   1.1   bouyer 	siop_cmd->xs = xs;
   1307  1.31   bouyer 	siop_cmd->flags = 0;
   1308  1.35   bouyer 	siop_cmd->status = CMDST_READY;
   1309   1.1   bouyer 
   1310   1.1   bouyer 	/* load the DMA maps */
   1311   1.1   bouyer 	error = bus_dmamap_load(sc->sc_dmat, siop_cmd->dmamap_cmd,
   1312   1.1   bouyer 	    xs->cmd, xs->cmdlen, NULL, BUS_DMA_NOWAIT);
   1313   1.1   bouyer 	if (error) {
   1314   1.1   bouyer 		printf("%s: unable to load cmd DMA map: %d",
   1315   1.1   bouyer 		    sc->sc_dev.dv_xname, error);
   1316   1.1   bouyer 		xs->error = XS_DRIVER_STUFFUP;
   1317  1.31   bouyer 		splx(s);
   1318   1.1   bouyer 		return(TRY_AGAIN_LATER);
   1319   1.1   bouyer 	}
   1320   1.1   bouyer 	if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
   1321   1.1   bouyer 		error = bus_dmamap_load(sc->sc_dmat, siop_cmd->dmamap_data,
   1322   1.1   bouyer 		    xs->data, xs->datalen, NULL, BUS_DMA_NOWAIT);
   1323   1.1   bouyer 		if (error) {
   1324   1.1   bouyer 			printf("%s: unable to load cmd DMA map: %d",
   1325   1.1   bouyer 			    sc->sc_dev.dv_xname, error);
   1326   1.1   bouyer 			xs->error = XS_DRIVER_STUFFUP;
   1327  1.31   bouyer 			bus_dmamap_unload(sc->sc_dmat, siop_cmd->dmamap_cmd);
   1328  1.31   bouyer 			splx(s);
   1329   1.1   bouyer 			return(TRY_AGAIN_LATER);
   1330   1.1   bouyer 		}
   1331   1.1   bouyer 		bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_data, 0,
   1332   1.1   bouyer 		    siop_cmd->dmamap_data->dm_mapsize,
   1333   1.1   bouyer 		    (xs->xs_control & XS_CTL_DATA_IN) ?
   1334   1.1   bouyer 		    BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
   1335   1.1   bouyer 	}
   1336   1.1   bouyer 	bus_dmamap_sync(sc->sc_dmat, siop_cmd->dmamap_cmd, 0,
   1337   1.1   bouyer 	    siop_cmd->dmamap_cmd->dm_mapsize, BUS_DMASYNC_PREWRITE);
   1338   1.1   bouyer 
   1339  1.35   bouyer 	siop_setuptables(siop_cmd);
   1340  1.35   bouyer 
   1341  1.31   bouyer 	TAILQ_INSERT_TAIL(&sc->ready_list, siop_cmd, next);
   1342   1.2   bouyer 	siop_start(sc);
   1343  1.14   bouyer 	if (xs->xs_control & XS_CTL_POLL) {
   1344  1.14   bouyer 		/* poll for command completion */
   1345  1.31   bouyer 		while ((xs->xs_status & XS_STS_DONE) == 0) {
   1346  1.31   bouyer 			delay(1000);
   1347  1.14   bouyer 			siop_intr(sc);
   1348  1.31   bouyer 		}
   1349  1.14   bouyer 		splx(s);
   1350  1.14   bouyer 		return (COMPLETE);
   1351  1.14   bouyer 	}
   1352   1.1   bouyer 	splx(s);
   1353   1.1   bouyer 	return (SUCCESSFULLY_QUEUED);
   1354   1.1   bouyer }
   1355   1.1   bouyer 
   1356   1.1   bouyer void
   1357   1.1   bouyer siop_start(sc)
   1358   1.1   bouyer 	struct siop_softc *sc;
   1359   1.1   bouyer {
   1360  1.31   bouyer 	struct siop_cmd *siop_cmd, *next_siop_cmd;
   1361  1.31   bouyer 	struct siop_lun *siop_lun;
   1362   1.2   bouyer 	u_int32_t dsa;
   1363   1.1   bouyer 	int timeout;
   1364  1.31   bouyer 	int target, lun, tag, slot;
   1365   1.2   bouyer 	int newcmd = 0;
   1366  1.36   bouyer 	int doingready = 0;
   1367   1.2   bouyer 
   1368   1.2   bouyer 	/*
   1369   1.2   bouyer 	 * first make sure to read valid data
   1370   1.2   bouyer 	 */
   1371  1.35   bouyer 	siop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   1372   1.1   bouyer 
   1373   1.2   bouyer 	/*
   1374  1.10   bouyer 	 * The queue management here is a bit tricky: the script always looks
   1375  1.10   bouyer 	 * at the slot from first to last, so if we always use the first
   1376  1.10   bouyer 	 * free slot commands can stay at the tail of the queue ~forever.
   1377  1.10   bouyer 	 * The algorithm used here is to restart from the head when we know
   1378  1.10   bouyer 	 * that the queue is empty, and only add commands after the last one.
   1379  1.10   bouyer 	 * When we're at the end of the queue wait for the script to clear it.
   1380  1.10   bouyer 	 * The best thing to do here would be to implement a circular queue,
   1381  1.10   bouyer 	 * but using only 53c720 features this can be "interesting".
   1382  1.10   bouyer 	 * A mid-way solution could be to implement 2 queues and swap orders.
   1383   1.2   bouyer 	 */
   1384  1.29   bouyer 	slot = sc->sc_currschedslot;
   1385  1.10   bouyer 	/*
   1386  1.35   bouyer 	 * If the instruction is 0x80000000 (JUMP foo, IF FALSE) the slot is
   1387  1.35   bouyer 	 * free. As this is the last used slot, all previous slots are free,
   1388  1.35   bouyer 	 * we can restart from 0.
   1389  1.10   bouyer 	 */
   1390  1.35   bouyer 	if (siop_script_read(sc, (Ent_script_sched_slot0 / 4) + slot * 2) ==
   1391  1.35   bouyer 	    0x80000000) {
   1392  1.29   bouyer 		slot = sc->sc_currschedslot = 0;
   1393  1.10   bouyer 	} else {
   1394  1.10   bouyer 		slot++;
   1395  1.10   bouyer 	}
   1396  1.36   bouyer 	/* first handle commands from the urgent list */
   1397  1.36   bouyer 	siop_cmd = TAILQ_FIRST(&sc->urgent_list);
   1398  1.36   bouyer again:
   1399  1.36   bouyer 	for (; siop_cmd != NULL; siop_cmd = next_siop_cmd) {
   1400  1.31   bouyer 		next_siop_cmd = TAILQ_NEXT(siop_cmd, next);
   1401  1.31   bouyer #ifdef DIAGNOSTIC
   1402  1.31   bouyer 		if (siop_cmd->status != CMDST_READY &&
   1403  1.31   bouyer 		    siop_cmd->status != CMDST_SENSE)
   1404  1.31   bouyer 			panic("siop: non-ready cmd in ready list");
   1405  1.31   bouyer #endif
   1406  1.31   bouyer 		target = siop_cmd->xs->sc_link->scsipi_scsi.target;
   1407  1.31   bouyer 		lun = siop_cmd->xs->sc_link->scsipi_scsi.lun;
   1408  1.35   bouyer 		siop_lun = sc->targets[target]->siop_lun[lun];
   1409  1.35   bouyer 		/* if non-tagged command active, wait */
   1410  1.35   bouyer 		if (siop_lun->siop_tag[0].active != NULL)
   1411  1.35   bouyer 			continue;
   1412  1.35   bouyer 		/*
   1413  1.35   bouyer 		 * if we're in a queue full condition don't start a new
   1414  1.35   bouyer 		 * command, unless it's a request sense
   1415  1.35   bouyer 		 */
   1416  1.35   bouyer 		if ((siop_lun->lun_flags & SIOP_LUNF_FULL) &&
   1417  1.35   bouyer 		    siop_cmd->status == CMDST_READY)
   1418   1.2   bouyer 			continue;
   1419  1.35   bouyer 		/* find a free tag if needed */
   1420  1.35   bouyer 		if (siop_cmd->flags & CMDFL_TAG) {
   1421  1.35   bouyer 			for (tag = 1; tag < SIOP_NTAG; tag++) {
   1422  1.35   bouyer 				if (siop_lun->siop_tag[tag].active == NULL)
   1423  1.35   bouyer 					break;
   1424  1.35   bouyer 			}
   1425  1.35   bouyer 			if (tag == SIOP_NTAG) /* no free tag */
   1426  1.35   bouyer 				continue;
   1427  1.35   bouyer 		} else {
   1428  1.35   bouyer 			tag = 0;
   1429  1.35   bouyer 		}
   1430  1.35   bouyer 		siop_cmd->tag = tag;
   1431  1.31   bouyer 		/* find a free scheduler slot and load it */
   1432  1.35   bouyer 		for (; slot < SIOP_NSLOTS; slot++) {
   1433  1.31   bouyer 			/*
   1434  1.35   bouyer 			 * If cmd if 0x80000000 the slot is free
   1435  1.31   bouyer 			 */
   1436  1.35   bouyer 			if (siop_script_read(sc,
   1437  1.35   bouyer 			    (Ent_script_sched_slot0 / 4) + slot * 2) ==
   1438  1.35   bouyer 			    0x80000000)
   1439  1.31   bouyer 				break;
   1440  1.31   bouyer 		}
   1441  1.31   bouyer 		/* no more free slot, no need to continue */
   1442  1.35   bouyer 		if (slot == SIOP_NSLOTS) {
   1443  1.31   bouyer 			goto end;
   1444  1.31   bouyer 		}
   1445  1.35   bouyer #ifdef SIOP_DEBUG_SCHED
   1446  1.31   bouyer 		printf("using slot %d for DSA 0x%lx\n", slot,
   1447  1.31   bouyer 		    (u_long)siop_cmd->dsa);
   1448  1.31   bouyer #endif
   1449  1.36   bouyer 		/* Ok, we can add the tag message */
   1450  1.36   bouyer 		if (tag > 0) {
   1451  1.36   bouyer #ifdef DIAGNOSTIC
   1452  1.36   bouyer 			int msgcount =
   1453  1.36   bouyer 			    le32toh(siop_cmd->siop_tables.t_msgout.count);
   1454  1.36   bouyer 			if (msgcount != 1)
   1455  1.36   bouyer 				printf("%s:%d:%d: tag %d with msgcount %d\n",
   1456  1.36   bouyer 				    sc->sc_dev.dv_xname, target, lun, tag,
   1457  1.36   bouyer 				    msgcount);
   1458  1.36   bouyer #endif
   1459  1.36   bouyer 			if (siop_cmd->xs->bp != NULL &&
   1460  1.36   bouyer 			    (siop_cmd->xs->bp->b_flags & B_ASYNC))
   1461  1.36   bouyer 				siop_cmd->siop_tables.msg_out[1] =
   1462  1.36   bouyer 				    MSG_SIMPLE_Q_TAG;
   1463  1.36   bouyer 			else
   1464  1.36   bouyer 				siop_cmd->siop_tables.msg_out[1] =
   1465  1.36   bouyer 				    MSG_ORDERED_Q_TAG;
   1466  1.36   bouyer 			siop_cmd->siop_tables.msg_out[2] = tag;
   1467  1.36   bouyer 			siop_cmd->siop_tables.t_msgout.count = htole32(3);
   1468  1.36   bouyer 		}
   1469  1.31   bouyer 		/* note that we started a new command */
   1470  1.31   bouyer 		newcmd = 1;
   1471  1.31   bouyer 		/* mark command as active */
   1472  1.31   bouyer 		if (siop_cmd->status == CMDST_READY) {
   1473  1.31   bouyer 			siop_cmd->status = CMDST_ACTIVE;
   1474  1.31   bouyer 		} else if (siop_cmd->status == CMDST_SENSE) {
   1475  1.31   bouyer 			siop_cmd->status = CMDST_SENSE_ACTIVE;
   1476  1.31   bouyer 		} else
   1477  1.31   bouyer 			panic("siop_start: bad status");
   1478  1.36   bouyer 		if (doingready)
   1479  1.36   bouyer 			TAILQ_REMOVE(&sc->ready_list, siop_cmd, next);
   1480  1.36   bouyer 		else
   1481  1.36   bouyer 			TAILQ_REMOVE(&sc->urgent_list, siop_cmd, next);
   1482  1.35   bouyer 		siop_lun->siop_tag[tag].active = siop_cmd;
   1483  1.31   bouyer 		/* patch scripts with DSA addr */
   1484  1.31   bouyer 		dsa = siop_cmd->dsa;
   1485  1.35   bouyer 		/* first reselect switch, if we have an entry */
   1486  1.35   bouyer 		if (siop_lun->siop_tag[tag].reseloff > 0)
   1487  1.35   bouyer 			siop_script_write(sc,
   1488  1.35   bouyer 			    siop_lun->siop_tag[tag].reseloff + 1,
   1489  1.35   bouyer 			    dsa + sizeof(struct siop_xfer_common) +
   1490  1.35   bouyer 			    Ent_ldsa_reload_dsa);
   1491  1.35   bouyer 		/* CMD script: MOVE MEMORY addr */
   1492  1.35   bouyer 		siop_cmd->siop_xfer->resel[E_ldsa_abs_slot_Used[0]] =
   1493  1.35   bouyer 		   htole32(sc->sc_scriptaddr + Ent_script_sched_slot0 +
   1494  1.35   bouyer 		   slot * 8);
   1495  1.38   bouyer 		siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
   1496  1.35   bouyer 		/* scheduler slot: JUMP ldsa_select */
   1497  1.35   bouyer 		siop_script_write(sc,
   1498  1.35   bouyer 		    (Ent_script_sched_slot0 / 4) + slot * 2 + 1,
   1499  1.35   bouyer 		    dsa + sizeof(struct siop_xfer_common) + Ent_ldsa_select);
   1500  1.31   bouyer 		/* handle timeout */
   1501  1.31   bouyer 		if (siop_cmd->status == CMDST_ACTIVE) {
   1502  1.31   bouyer 			if ((siop_cmd->xs->xs_control &
   1503  1.31   bouyer 			    XS_CTL_POLL) == 0) {
   1504  1.31   bouyer 				/* start exire timer */
   1505  1.31   bouyer 				timeout = (u_int64_t) siop_cmd->xs->timeout *
   1506  1.31   bouyer 				    (u_int64_t)hz / 1000;
   1507  1.31   bouyer 				if (timeout == 0)
   1508  1.31   bouyer 					timeout = 1;
   1509  1.31   bouyer 				callout_reset( &siop_cmd->xs->xs_callout,
   1510  1.31   bouyer 				    timeout, siop_timeout, siop_cmd);
   1511  1.28   bouyer 			}
   1512   1.1   bouyer 		}
   1513  1.31   bouyer 		/*
   1514  1.35   bouyer 		 * Change JUMP cmd so that this slot will be handled
   1515  1.31   bouyer 		 */
   1516  1.35   bouyer 		siop_script_write(sc, (Ent_script_sched_slot0 / 4) + slot * 2,
   1517  1.35   bouyer 		    0x80080000);
   1518  1.31   bouyer 		sc->sc_currschedslot = slot;
   1519  1.31   bouyer 		slot++;
   1520   1.1   bouyer 	}
   1521  1.36   bouyer 	if (doingready == 0) {
   1522  1.36   bouyer 		/* now process ready list */
   1523  1.36   bouyer 		doingready = 1;
   1524  1.36   bouyer 		siop_cmd = TAILQ_FIRST(&sc->ready_list);
   1525  1.36   bouyer 		goto again;
   1526  1.36   bouyer 	}
   1527  1.36   bouyer 
   1528   1.7   bouyer end:
   1529   1.2   bouyer 	/* if nothing changed no need to flush cache and wakeup script */
   1530   1.2   bouyer 	if (newcmd == 0)
   1531   1.1   bouyer 		return;
   1532   1.2   bouyer 	/* make sure SCRIPT processor will read valid data */
   1533  1.35   bouyer 	siop_script_sync(sc,BUS_DMASYNC_PREREAD |  BUS_DMASYNC_PREWRITE);
   1534   1.2   bouyer 	/* Signal script it has some work to do */
   1535   1.2   bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, ISTAT_SIGP);
   1536   1.2   bouyer 	/* and wait for IRQ */
   1537   1.2   bouyer 	return;
   1538   1.1   bouyer }
   1539   1.1   bouyer 
   1540   1.1   bouyer void
   1541   1.1   bouyer siop_timeout(v)
   1542   1.1   bouyer 	void *v;
   1543   1.1   bouyer {
   1544   1.1   bouyer 	struct siop_cmd *siop_cmd = v;
   1545  1.31   bouyer 	struct siop_softc *sc = siop_cmd->siop_sc;
   1546   1.1   bouyer 	int s;
   1547   1.1   bouyer 
   1548   1.1   bouyer 	scsi_print_addr(siop_cmd->xs->sc_link);
   1549   1.1   bouyer 	printf("command timeout\n");
   1550   1.1   bouyer 
   1551   1.1   bouyer 	s = splbio();
   1552   1.1   bouyer 	/* reset the scsi bus */
   1553  1.26   bouyer 	siop_resetbus(sc);
   1554   1.1   bouyer 
   1555  1.12    soren 	/* deactivate callout */
   1556   1.1   bouyer 	callout_stop(&siop_cmd->xs->xs_callout);
   1557  1.31   bouyer 	/* mark command as being timed out; siop_intr will handle it */
   1558   1.1   bouyer 	/*
   1559   1.1   bouyer 	 * mark command has being timed out and just return;
   1560   1.1   bouyer 	 * the bus reset will generate an interrupt,
   1561   1.1   bouyer 	 * it will be handled in siop_intr()
   1562   1.1   bouyer 	 */
   1563   1.1   bouyer 	siop_cmd->flags |= CMDFL_TIMEOUT;
   1564   1.1   bouyer 	splx(s);
   1565   1.1   bouyer 	return;
   1566   1.1   bouyer 
   1567   1.1   bouyer }
   1568   1.2   bouyer 
   1569   1.2   bouyer void
   1570   1.2   bouyer siop_dump_script(sc)
   1571   1.2   bouyer 	struct siop_softc *sc;
   1572   1.2   bouyer {
   1573   1.2   bouyer 	int i;
   1574  1.37  thorpej 	for (i = 0; i < PAGE_SIZE / 4; i += 2) {
   1575   1.4   bouyer 		printf("0x%04x: 0x%08x 0x%08x", i * 4,
   1576   1.4   bouyer 		    le32toh(sc->sc_script[i]), le32toh(sc->sc_script[i+1]));
   1577   1.4   bouyer 		if ((le32toh(sc->sc_script[i]) & 0xe0000000) == 0xc0000000) {
   1578   1.2   bouyer 			i++;
   1579   1.4   bouyer 			printf(" 0x%08x", le32toh(sc->sc_script[i+1]));
   1580   1.2   bouyer 		}
   1581   1.2   bouyer 		printf("\n");
   1582   1.2   bouyer 	}
   1583  1.16   bouyer }
   1584  1.16   bouyer 
   1585  1.16   bouyer int
   1586  1.16   bouyer siop_morecbd(sc)
   1587  1.16   bouyer 	struct siop_softc *sc;
   1588  1.16   bouyer {
   1589  1.31   bouyer 	int error, i, j;
   1590  1.16   bouyer 	bus_dma_segment_t seg;
   1591  1.16   bouyer 	int rseg;
   1592  1.16   bouyer 	struct siop_cbd *newcbd;
   1593  1.31   bouyer 	bus_addr_t dsa;
   1594  1.31   bouyer 	u_int32_t *scr;
   1595  1.16   bouyer 
   1596  1.16   bouyer 	/* allocate a new list head */
   1597  1.16   bouyer 	newcbd = malloc(sizeof(struct siop_cbd), M_DEVBUF, M_NOWAIT);
   1598  1.16   bouyer 	if (newcbd == NULL) {
   1599  1.16   bouyer 		printf("%s: can't allocate memory for command descriptors "
   1600  1.16   bouyer 		    "head\n", sc->sc_dev.dv_xname);
   1601  1.16   bouyer 		return ENOMEM;
   1602  1.16   bouyer 	}
   1603  1.31   bouyer 	memset(newcbd, 0, sizeof(struct siop_cbd));
   1604  1.16   bouyer 
   1605  1.16   bouyer 	/* allocate cmd list */
   1606  1.16   bouyer 	newcbd->cmds =
   1607  1.16   bouyer 	    malloc(sizeof(struct siop_cmd) * SIOP_NCMDPB, M_DEVBUF, M_NOWAIT);
   1608  1.16   bouyer 	if (newcbd->cmds == NULL) {
   1609  1.16   bouyer 		printf("%s: can't allocate memory for command descriptors\n",
   1610  1.16   bouyer 		    sc->sc_dev.dv_xname);
   1611  1.16   bouyer 		error = ENOMEM;
   1612  1.16   bouyer 		goto bad3;
   1613  1.16   bouyer 	}
   1614  1.31   bouyer 	memset(newcbd->cmds, 0, sizeof(struct siop_cmd) * SIOP_NCMDPB);
   1615  1.37  thorpej 	error = bus_dmamem_alloc(sc->sc_dmat, PAGE_SIZE, PAGE_SIZE, 0, &seg,
   1616  1.37  thorpej 	    1, &rseg, BUS_DMA_NOWAIT);
   1617  1.16   bouyer 	if (error) {
   1618  1.16   bouyer 		printf("%s: unable to allocate cbd DMA memory, error = %d\n",
   1619  1.16   bouyer 		    sc->sc_dev.dv_xname, error);
   1620  1.16   bouyer 		goto bad2;
   1621  1.16   bouyer 	}
   1622  1.37  thorpej 	error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, PAGE_SIZE,
   1623  1.16   bouyer 	    (caddr_t *)&newcbd->xfers, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
   1624  1.16   bouyer 	if (error) {
   1625  1.16   bouyer 		printf("%s: unable to map cbd DMA memory, error = %d\n",
   1626  1.16   bouyer 		    sc->sc_dev.dv_xname, error);
   1627  1.16   bouyer 		goto bad2;
   1628  1.16   bouyer 	}
   1629  1.37  thorpej 	error = bus_dmamap_create(sc->sc_dmat, PAGE_SIZE, 1, PAGE_SIZE, 0,
   1630  1.16   bouyer 	    BUS_DMA_NOWAIT, &newcbd->xferdma);
   1631  1.16   bouyer 	if (error) {
   1632  1.16   bouyer 		printf("%s: unable to create cbd DMA map, error = %d\n",
   1633  1.16   bouyer 		    sc->sc_dev.dv_xname, error);
   1634  1.16   bouyer 		goto bad1;
   1635  1.16   bouyer 	}
   1636  1.16   bouyer 	error = bus_dmamap_load(sc->sc_dmat, newcbd->xferdma, newcbd->xfers,
   1637  1.37  thorpej 	    PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
   1638  1.16   bouyer 	if (error) {
   1639  1.17   bouyer 		printf("%s: unable to load cbd DMA map, error = %d\n",
   1640  1.16   bouyer 		    sc->sc_dev.dv_xname, error);
   1641  1.16   bouyer 		goto bad0;
   1642  1.16   bouyer 	}
   1643  1.31   bouyer #ifdef DEBUG
   1644  1.35   bouyer 	printf("%s: alloc newcdb at PHY addr 0x%lx\n", sc->sc_dev.dv_xname,
   1645  1.31   bouyer 	    (unsigned long)newcbd->xferdma->dm_segs[0].ds_addr);
   1646  1.31   bouyer #endif
   1647  1.16   bouyer 
   1648  1.16   bouyer 	for (i = 0; i < SIOP_NCMDPB; i++) {
   1649  1.16   bouyer 		error = bus_dmamap_create(sc->sc_dmat, MAXPHYS, SIOP_NSG,
   1650  1.16   bouyer 		    MAXPHYS, 0, BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
   1651  1.16   bouyer 		    &newcbd->cmds[i].dmamap_data);
   1652  1.16   bouyer 		if (error) {
   1653  1.16   bouyer 			printf("%s: unable to create data DMA map for cbd: "
   1654  1.16   bouyer 			    "error %d\n",
   1655  1.16   bouyer 			    sc->sc_dev.dv_xname, error);
   1656  1.16   bouyer 			goto bad0;
   1657  1.16   bouyer 		}
   1658  1.16   bouyer 		error = bus_dmamap_create(sc->sc_dmat,
   1659  1.16   bouyer 		    sizeof(struct scsipi_generic), 1,
   1660  1.16   bouyer 		    sizeof(struct scsipi_generic), 0,
   1661  1.16   bouyer 		    BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
   1662  1.16   bouyer 		    &newcbd->cmds[i].dmamap_cmd);
   1663  1.16   bouyer 		if (error) {
   1664  1.16   bouyer 			printf("%s: unable to create cmd DMA map for cbd %d\n",
   1665  1.16   bouyer 			    sc->sc_dev.dv_xname, error);
   1666  1.16   bouyer 			goto bad0;
   1667  1.16   bouyer 		}
   1668  1.31   bouyer 		newcbd->cmds[i].siop_sc = sc;
   1669  1.16   bouyer 		newcbd->cmds[i].siop_cbdp = newcbd;
   1670  1.31   bouyer 		newcbd->cmds[i].siop_xfer = &newcbd->xfers[i];
   1671  1.31   bouyer 		memset(newcbd->cmds[i].siop_xfer, 0,
   1672  1.31   bouyer 		    sizeof(struct siop_xfer));
   1673  1.16   bouyer 		newcbd->cmds[i].dsa = newcbd->xferdma->dm_segs[0].ds_addr +
   1674  1.16   bouyer 		    i * sizeof(struct siop_xfer);
   1675  1.31   bouyer 		dsa = newcbd->cmds[i].dsa;
   1676  1.16   bouyer 		newcbd->cmds[i].status = CMDST_FREE;
   1677  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_msgout.count= htole32(1);
   1678  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_msgout.addr = htole32(dsa);
   1679  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_msgin.count= htole32(1);
   1680  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_msgin.addr = htole32(dsa + 8);
   1681  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_extmsgin.count= htole32(2);
   1682  1.35   bouyer 		newcbd->cmds[i].siop_tables.t_extmsgin.addr = htole32(dsa + 9);
   1683  1.35   bouyer 		newcbd->cmds[i].siop_tables.t_extmsgdata.addr =
   1684  1.35   bouyer 		    htole32(dsa + 11);
   1685  1.31   bouyer 		newcbd->cmds[i].siop_tables.t_status.count= htole32(1);
   1686  1.35   bouyer 		newcbd->cmds[i].siop_tables.t_status.addr = htole32(dsa + 16);
   1687  1.31   bouyer 
   1688  1.35   bouyer 		/* The select/reselect script */
   1689  1.31   bouyer 		scr = &newcbd->cmds[i].siop_xfer->resel[0];
   1690  1.31   bouyer 		for (j = 0; j < sizeof(load_dsa) / sizeof(load_dsa[0]); j++)
   1691  1.31   bouyer 			scr[j] = htole32(load_dsa[j]);
   1692  1.31   bouyer 		/*
   1693  1.31   bouyer 		 * 0x78000000 is a 'move data8 to reg'. data8 is the second
   1694  1.31   bouyer 		 * octet, reg offset is the third.
   1695  1.31   bouyer 		 */
   1696  1.31   bouyer 		scr[Ent_rdsa0 / 4] =
   1697  1.31   bouyer 		    htole32(0x78100000 | ((dsa & 0x000000ff) <<  8));
   1698  1.31   bouyer 		scr[Ent_rdsa1 / 4] =
   1699  1.31   bouyer 		    htole32(0x78110000 | ( dsa & 0x0000ff00       ));
   1700  1.31   bouyer 		scr[Ent_rdsa2 / 4] =
   1701  1.31   bouyer 		    htole32(0x78120000 | ((dsa & 0x00ff0000) >>  8));
   1702  1.31   bouyer 		scr[Ent_rdsa3 / 4] =
   1703  1.31   bouyer 		    htole32(0x78130000 | ((dsa & 0xff000000) >> 16));
   1704  1.35   bouyer 		scr[E_ldsa_abs_reselected_Used[0]] =
   1705  1.35   bouyer 		    htole32(sc->sc_scriptaddr + Ent_reselected);
   1706  1.35   bouyer 		scr[E_ldsa_abs_reselect_Used[0]] =
   1707  1.35   bouyer 		    htole32(sc->sc_scriptaddr + Ent_reselect);
   1708  1.35   bouyer 		scr[E_ldsa_abs_selected_Used[0]] =
   1709  1.35   bouyer 		    htole32(sc->sc_scriptaddr + Ent_selected);
   1710  1.35   bouyer 		scr[E_ldsa_abs_data_Used[0]] =
   1711  1.35   bouyer 		    htole32(dsa + sizeof(struct siop_xfer_common) +
   1712  1.35   bouyer 		    Ent_ldsa_data);
   1713  1.35   bouyer 		/* JUMP foo, IF FALSE - used by MOVE MEMORY to clear the slot */
   1714  1.35   bouyer 		scr[Ent_ldsa_data / 4] = htole32(0x80000000);
   1715  1.16   bouyer 		TAILQ_INSERT_TAIL(&sc->free_list, &newcbd->cmds[i], next);
   1716  1.35   bouyer #ifdef SIOP_DEBUG
   1717  1.31   bouyer 		printf("tables[%d]: in=0x%x out=0x%x status=0x%x\n", i,
   1718  1.31   bouyer 		    le32toh(newcbd->cmds[i].siop_tables.t_msgin.addr),
   1719  1.31   bouyer 		    le32toh(newcbd->cmds[i].siop_tables.t_msgout.addr),
   1720  1.31   bouyer 		    le32toh(newcbd->cmds[i].siop_tables.t_status.addr));
   1721  1.16   bouyer #endif
   1722  1.16   bouyer 	}
   1723  1.16   bouyer 	TAILQ_INSERT_TAIL(&sc->cmds, newcbd, next);
   1724  1.16   bouyer 	return 0;
   1725  1.16   bouyer bad0:
   1726  1.16   bouyer 	bus_dmamap_destroy(sc->sc_dmat, newcbd->xferdma);
   1727  1.16   bouyer bad1:
   1728  1.16   bouyer 	bus_dmamem_free(sc->sc_dmat, &seg, rseg);
   1729  1.16   bouyer bad2:
   1730  1.16   bouyer 	free(newcbd->cmds, M_DEVBUF);
   1731  1.16   bouyer bad3:
   1732  1.16   bouyer 	free(newcbd, M_DEVBUF);
   1733  1.16   bouyer 	return error;
   1734   1.2   bouyer }
   1735   1.2   bouyer 
   1736  1.31   bouyer struct siop_lunsw *
   1737  1.31   bouyer siop_get_lunsw(sc)
   1738  1.31   bouyer 	struct siop_softc *sc;
   1739  1.31   bouyer {
   1740  1.31   bouyer 	struct siop_lunsw *lunsw;
   1741  1.31   bouyer 	int i;
   1742  1.31   bouyer 
   1743  1.35   bouyer 	if (sc->script_free_lo + (sizeof(lun_switch) / sizeof(lun_switch[0])) >=
   1744  1.35   bouyer 	    sc->script_free_hi)
   1745  1.35   bouyer 		return NULL;
   1746  1.31   bouyer 	lunsw = TAILQ_FIRST(&sc->lunsw_list);
   1747  1.31   bouyer 	if (lunsw != NULL) {
   1748  1.35   bouyer #ifdef SIOP_DEBUG
   1749  1.31   bouyer 		printf("siop_get_lunsw got lunsw at offset %d\n",
   1750  1.31   bouyer 		    lunsw->lunsw_off);
   1751  1.31   bouyer #endif
   1752  1.31   bouyer 		TAILQ_REMOVE(&sc->lunsw_list, lunsw, next);
   1753  1.31   bouyer 		return lunsw;
   1754  1.31   bouyer 	}
   1755  1.31   bouyer 	lunsw = malloc(sizeof(struct siop_lunsw), M_DEVBUF, M_NOWAIT);
   1756  1.31   bouyer 	if (lunsw == NULL)
   1757  1.31   bouyer 		return NULL;
   1758  1.31   bouyer 	memset(lunsw, 0, sizeof(struct siop_lunsw));
   1759  1.35   bouyer #ifdef SIOP_DEBUG
   1760  1.35   bouyer 	printf("allocating lunsw at offset %d\n", sc->script_free_lo);
   1761  1.31   bouyer #endif
   1762  1.31   bouyer 	if (sc->features & SF_CHIP_RAM) {
   1763  1.31   bouyer 		bus_space_write_region_4(sc->sc_ramt, sc->sc_ramh,
   1764  1.35   bouyer 		    sc->script_free_lo * 4, lun_switch,
   1765  1.31   bouyer 		    sizeof(lun_switch) / sizeof(lun_switch[0]));
   1766  1.31   bouyer 		bus_space_write_4(sc->sc_ramt, sc->sc_ramh,
   1767  1.35   bouyer 		    (sc->script_free_lo + E_abs_lunsw_return_Used[0]) * 4,
   1768  1.31   bouyer 		    sc->sc_scriptaddr + Ent_lunsw_return);
   1769  1.31   bouyer 	} else {
   1770  1.31   bouyer 		for (i = 0; i < sizeof(lun_switch) / sizeof(lun_switch[0]);
   1771  1.31   bouyer 		    i++)
   1772  1.35   bouyer 			sc->sc_script[sc->script_free_lo + i] =
   1773  1.31   bouyer 			    htole32(lun_switch[i]);
   1774  1.35   bouyer 		sc->sc_script[sc->script_free_lo + E_abs_lunsw_return_Used[0]] =
   1775  1.31   bouyer 		    htole32(sc->sc_scriptaddr + Ent_lunsw_return);
   1776  1.31   bouyer 	}
   1777  1.35   bouyer 	lunsw->lunsw_off = sc->script_free_lo;
   1778  1.35   bouyer 	lunsw->lunsw_size = sizeof(lun_switch) / sizeof(lun_switch[0]);
   1779  1.35   bouyer 	sc->script_free_lo += lunsw->lunsw_size;
   1780  1.35   bouyer 	if (sc->script_free_lo > 1024)
   1781  1.35   bouyer 		printf("%s: script_free_lo (%d) > 1024\n", sc->sc_dev.dv_xname,
   1782  1.35   bouyer 		    sc->script_free_lo);
   1783  1.35   bouyer 	siop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1784  1.31   bouyer 	return lunsw;
   1785  1.31   bouyer }
   1786  1.31   bouyer 
   1787  1.31   bouyer void
   1788  1.31   bouyer siop_add_reselsw(sc, target)
   1789  1.31   bouyer 	struct siop_softc *sc;
   1790  1.31   bouyer 	int target;
   1791  1.31   bouyer {
   1792  1.31   bouyer 	int i;
   1793  1.31   bouyer 	struct siop_lun *siop_lun;
   1794  1.32   bouyer 	/*
   1795  1.32   bouyer 	 * add an entry to resel switch
   1796  1.32   bouyer 	 */
   1797  1.32   bouyer 	siop_script_sync(sc, BUS_DMASYNC_POSTWRITE);
   1798  1.31   bouyer 	for (i = 0; i < 15; i++) {
   1799  1.31   bouyer 		sc->targets[target]->reseloff = Ent_resel_targ0 / 4 + i * 2;
   1800  1.31   bouyer 		if ((siop_script_read(sc, sc->targets[target]->reseloff) & 0xff)
   1801  1.31   bouyer 		    == 0xff) { /* it's free */
   1802  1.35   bouyer #ifdef SIOP_DEBUG
   1803  1.31   bouyer 			printf("siop: target %d slot %d offset %d\n",
   1804  1.31   bouyer 			    target, i, sc->targets[target]->reseloff);
   1805  1.31   bouyer #endif
   1806  1.31   bouyer 			/* JUMP abs_foo, IF target | 0x80; */
   1807  1.31   bouyer 			siop_script_write(sc, sc->targets[target]->reseloff,
   1808  1.31   bouyer 			    0x800c0080 | target);
   1809  1.31   bouyer 			siop_script_write(sc, sc->targets[target]->reseloff + 1,
   1810  1.31   bouyer 			    sc->sc_scriptaddr +
   1811  1.33   bouyer 			    sc->targets[target]->lunsw->lunsw_off * 4 +
   1812  1.33   bouyer 			    Ent_lun_switch_entry);
   1813  1.31   bouyer 			break;
   1814  1.31   bouyer 		}
   1815  1.31   bouyer 	}
   1816  1.31   bouyer 	if (i == 15) /* no free slot, shouldn't happen */
   1817  1.31   bouyer 		panic("siop: resel switch full");
   1818  1.31   bouyer 
   1819  1.35   bouyer 	sc->sc_ntargets++;
   1820  1.31   bouyer 	for (i = 0; i < 8; i++) {
   1821  1.35   bouyer 		siop_lun = sc->targets[target]->siop_lun[i];
   1822  1.35   bouyer 		if (siop_lun == NULL)
   1823  1.35   bouyer 			continue;
   1824  1.35   bouyer 		if (siop_lun->reseloff > 0) {
   1825  1.35   bouyer 			siop_lun->reseloff = 0;
   1826  1.35   bouyer 			siop_add_dev(sc, target, i);
   1827  1.35   bouyer 		}
   1828  1.31   bouyer 	}
   1829  1.31   bouyer 	siop_update_scntl3(sc, sc->targets[target]);
   1830  1.32   bouyer 	siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
   1831  1.31   bouyer }
   1832  1.31   bouyer 
   1833  1.31   bouyer void
   1834  1.31   bouyer siop_update_scntl3(sc, siop_target)
   1835  1.31   bouyer 	struct siop_softc *sc;
   1836  1.31   bouyer 	struct siop_target *siop_target;
   1837  1.31   bouyer {
   1838  1.31   bouyer 	/* MOVE target->id >> 24 TO SCNTL3 */
   1839  1.31   bouyer 	siop_script_write(sc,
   1840  1.31   bouyer 	    siop_target->lunsw->lunsw_off + (Ent_restore_scntl3 / 4),
   1841  1.31   bouyer 	    0x78030000 | ((siop_target->id >> 16) & 0x0000ff00));
   1842  1.31   bouyer 	/* MOVE target->id >> 8 TO SXFER */
   1843  1.31   bouyer 	siop_script_write(sc,
   1844  1.31   bouyer 	    siop_target->lunsw->lunsw_off + (Ent_restore_scntl3 / 4) + 2,
   1845  1.31   bouyer 	    0x78050000 | (siop_target->id & 0x0000ff00));
   1846  1.32   bouyer 	siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
   1847  1.31   bouyer }
   1848  1.31   bouyer 
   1849  1.35   bouyer void
   1850  1.35   bouyer siop_add_dev(sc, target, lun)
   1851  1.35   bouyer 	struct siop_softc *sc;
   1852  1.35   bouyer 	int target;
   1853  1.35   bouyer 	int lun;
   1854  1.35   bouyer {
   1855  1.35   bouyer 	struct siop_lunsw *lunsw;
   1856  1.35   bouyer 	struct siop_lun *siop_lun = sc->targets[target]->siop_lun[lun];
   1857  1.35   bouyer 	int i, ntargets;
   1858  1.35   bouyer 
   1859  1.35   bouyer 	if (siop_lun->reseloff > 0)
   1860  1.35   bouyer 		return;
   1861  1.35   bouyer 	lunsw = sc->targets[target]->lunsw;
   1862  1.35   bouyer 	if ((lunsw->lunsw_off + lunsw->lunsw_size) < sc->script_free_lo) {
   1863  1.35   bouyer 		/*
   1864  1.35   bouyer 		 * can't extend this slot. Probably not worth trying to deal
   1865  1.35   bouyer 		 * with this case
   1866  1.35   bouyer 		 */
   1867  1.35   bouyer #ifdef DEBUG
   1868  1.35   bouyer 		printf("%s:%d:%d: can't allocate a lun sw slot\n",
   1869  1.35   bouyer 		    sc->sc_dev.dv_xname, target, lun);
   1870  1.35   bouyer #endif
   1871  1.35   bouyer 		return;
   1872  1.35   bouyer 	}
   1873  1.35   bouyer 	/* count how many free targets we still have to probe */
   1874  1.35   bouyer 	ntargets =  sc->sc_link.scsipi_scsi.max_target - 1 - sc->sc_ntargets;
   1875  1.35   bouyer 
   1876  1.35   bouyer 	/*
   1877  1.35   bouyer 	 * we need 8 bytes for the lun sw additionnal entry, and
   1878  1.35   bouyer 	 * eventually sizeof(tag_switch) for the tag switch entry.
   1879  1.35   bouyer 	 * Keep enouth free space for the free targets that could be
   1880  1.35   bouyer 	 * probed later.
   1881  1.35   bouyer 	 */
   1882  1.35   bouyer 	if (sc->script_free_lo + 2 +
   1883  1.35   bouyer 	    (ntargets * sizeof(lun_switch) / sizeof(lun_switch[0])) >=
   1884  1.35   bouyer 	    ((sc->targets[target]->flags & TARF_TAG) ?
   1885  1.35   bouyer 	    sc->script_free_hi - (sizeof(tag_switch) / sizeof(tag_switch[0])) :
   1886  1.35   bouyer 	    sc->script_free_hi)) {
   1887  1.35   bouyer 		/*
   1888  1.35   bouyer 		 * not enouth space, probably not worth dealing with it.
   1889  1.35   bouyer 		 * We can hold 13 tagged-queuing capable devices in the 4k RAM.
   1890  1.35   bouyer 		 */
   1891  1.35   bouyer #ifdef DEBUG
   1892  1.35   bouyer 		printf("%s:%d:%d: not enouth memory for a lun sw slot\n",
   1893  1.35   bouyer 		    sc->sc_dev.dv_xname, target, lun);
   1894  1.35   bouyer #endif
   1895  1.35   bouyer 		return;
   1896  1.35   bouyer 	}
   1897  1.35   bouyer #ifdef SIOP_DEBUG
   1898  1.35   bouyer 	printf("%s:%d:%d: allocate lun sw entry\n",
   1899  1.35   bouyer 	    sc->sc_dev.dv_xname, target, lun);
   1900  1.35   bouyer #endif
   1901  1.35   bouyer 	/* INT int_resellun */
   1902  1.35   bouyer 	siop_script_write(sc, sc->script_free_lo, 0x98080000);
   1903  1.35   bouyer 	siop_script_write(sc, sc->script_free_lo + 1, A_int_resellun);
   1904  1.35   bouyer 	/* Now the slot entry: JUMP abs_foo, IF lun */
   1905  1.35   bouyer 	siop_script_write(sc, sc->script_free_lo - 2,
   1906  1.35   bouyer 	    0x800c0000 | lun);
   1907  1.35   bouyer 	siop_script_write(sc, sc->script_free_lo - 1, 0);
   1908  1.35   bouyer 	siop_lun->reseloff = sc->script_free_lo - 2;
   1909  1.35   bouyer 	lunsw->lunsw_size += 2;
   1910  1.35   bouyer 	sc->script_free_lo += 2;
   1911  1.35   bouyer 	if (sc->targets[target]->flags & TARF_TAG) {
   1912  1.35   bouyer 		/* we need a tag switch */
   1913  1.35   bouyer 		sc->script_free_hi -=
   1914  1.35   bouyer 		    sizeof(tag_switch) / sizeof(tag_switch[0]);
   1915  1.35   bouyer 		if (sc->features & SF_CHIP_RAM) {
   1916  1.35   bouyer 			bus_space_write_region_4(sc->sc_ramt, sc->sc_ramh,
   1917  1.35   bouyer 			    sc->script_free_hi * 4, tag_switch,
   1918  1.35   bouyer 			    sizeof(tag_switch) / sizeof(tag_switch[0]));
   1919  1.35   bouyer 		} else {
   1920  1.35   bouyer 			for(i = 0;
   1921  1.35   bouyer 			    i < sizeof(tag_switch) / sizeof(tag_switch[0]);
   1922  1.35   bouyer 			    i++) {
   1923  1.35   bouyer 				sc->sc_script[sc->script_free_hi + i] =
   1924  1.35   bouyer 				    htole32(tag_switch[i]);
   1925  1.35   bouyer 			}
   1926  1.35   bouyer 		}
   1927  1.35   bouyer 		siop_script_write(sc,
   1928  1.35   bouyer 		    siop_lun->reseloff + 1,
   1929  1.35   bouyer 		    sc->sc_scriptaddr + sc->script_free_hi * 4 +
   1930  1.35   bouyer 		    Ent_tag_switch_entry);
   1931  1.35   bouyer 
   1932  1.35   bouyer 		for (i = 0; i < SIOP_NTAG; i++) {
   1933  1.35   bouyer 			siop_lun->siop_tag[i].reseloff =
   1934  1.35   bouyer 			    sc->script_free_hi + (Ent_resel_tag0 / 4) + i * 2;
   1935  1.35   bouyer 		}
   1936  1.35   bouyer 	} else {
   1937  1.35   bouyer 		/* non-tag case; just work with the lun switch */
   1938  1.35   bouyer 		siop_lun->siop_tag[0].reseloff =
   1939  1.35   bouyer 		    sc->targets[target]->siop_lun[lun]->reseloff;
   1940  1.35   bouyer 	}
   1941  1.35   bouyer 	siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
   1942  1.35   bouyer }
   1943  1.35   bouyer 
   1944  1.35   bouyer void
   1945  1.35   bouyer siop_del_dev(sc, target, lun)
   1946  1.35   bouyer 	struct siop_softc *sc;
   1947  1.35   bouyer 	int target;
   1948  1.35   bouyer 	int lun;
   1949  1.35   bouyer {
   1950  1.35   bouyer 	int i;
   1951  1.35   bouyer #ifdef SIOP_DEBUG
   1952  1.35   bouyer 		printf("%s:%d:%d: free lun sw entry\n",
   1953  1.35   bouyer 		    sc->sc_dev.dv_xname, target, lun);
   1954  1.35   bouyer #endif
   1955  1.35   bouyer 	if (sc->targets[target] == NULL)
   1956  1.35   bouyer 		return;
   1957  1.35   bouyer 	free(sc->targets[target]->siop_lun[lun], M_DEVBUF);
   1958  1.35   bouyer 	sc->targets[target]->siop_lun[lun] = NULL;
   1959  1.35   bouyer 	/* XXX compact sw entry too ? */
   1960  1.35   bouyer 	/* check if we can free the whole target */
   1961  1.35   bouyer 	for (i = 0; i < 8; i++) {
   1962  1.35   bouyer 		if (sc->targets[target]->siop_lun[i] != NULL)
   1963  1.35   bouyer 			return;
   1964  1.35   bouyer 	}
   1965  1.35   bouyer #ifdef SIOP_DEBUG
   1966  1.35   bouyer 	printf("%s: free siop_target for target %d lun %d lunsw offset %d\n",
   1967  1.35   bouyer 	    sc->sc_dev.dv_xname, target, lun,
   1968  1.35   bouyer 	    sc->targets[target]->lunsw->lunsw_off);
   1969  1.35   bouyer #endif
   1970  1.35   bouyer 	/*
   1971  1.35   bouyer 	 * nothing here, free the target struct and resel
   1972  1.35   bouyer 	 * switch entry
   1973  1.35   bouyer 	 */
   1974  1.35   bouyer 	siop_script_write(sc, sc->targets[target]->reseloff, 0x800c00ff);
   1975  1.35   bouyer 	siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
   1976  1.35   bouyer 	TAILQ_INSERT_TAIL(&sc->lunsw_list, sc->targets[target]->lunsw, next);
   1977  1.35   bouyer 	free(sc->targets[target], M_DEVBUF);
   1978  1.35   bouyer 	sc->targets[target] = NULL;
   1979  1.35   bouyer 	sc->sc_ntargets--;
   1980  1.35   bouyer }
   1981  1.35   bouyer 
   1982   1.2   bouyer #ifdef SIOP_STATS
   1983   1.2   bouyer void
   1984   1.2   bouyer siop_printstats()
   1985   1.2   bouyer {
   1986   1.2   bouyer 	printf("siop_stat_intr %d\n", siop_stat_intr);
   1987   1.2   bouyer 	printf("siop_stat_intr_shortxfer %d\n", siop_stat_intr_shortxfer);
   1988   1.2   bouyer 	printf("siop_stat_intr_xferdisc %d\n", siop_stat_intr_xferdisc);
   1989   1.2   bouyer 	printf("siop_stat_intr_sdp %d\n", siop_stat_intr_sdp);
   1990   1.2   bouyer 	printf("siop_stat_intr_done %d\n", siop_stat_intr_done);
   1991  1.35   bouyer 	printf("siop_stat_intr_lunresel %d\n", siop_stat_intr_lunresel);
   1992  1.36   bouyer 	printf("siop_stat_intr_qfull %d\n", siop_stat_intr_qfull);
   1993   1.2   bouyer }
   1994   1.2   bouyer #endif
   1995