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