Home | History | Annotate | Line # | Download | only in ic
siop_common.c revision 1.26
      1  1.26  bouyer /*	$NetBSD: siop_common.c,v 1.26 2002/05/04 18:11:06 bouyer Exp $	*/
      2   1.1  bouyer 
      3   1.1  bouyer /*
      4  1.22  bouyer  * Copyright (c) 2000, 2002 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.23  bouyer  *	This product includes software developed by Manuel Bouyer.
     17   1.1  bouyer  * 4. The name of the author may not be used to endorse or promote products
     18   1.1  bouyer  *    derived from this software without specific prior written permission.
     19   1.1  bouyer  *
     20   1.1  bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21   1.1  bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22   1.1  bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23   1.1  bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24   1.1  bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25   1.1  bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26   1.1  bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27   1.1  bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28   1.1  bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29   1.1  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.15   lukem 
     35  1.15   lukem #include <sys/cdefs.h>
     36  1.26  bouyer __KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.26 2002/05/04 18:11:06 bouyer Exp $");
     37   1.1  bouyer 
     38   1.1  bouyer #include <sys/param.h>
     39   1.1  bouyer #include <sys/systm.h>
     40   1.1  bouyer #include <sys/device.h>
     41   1.1  bouyer #include <sys/malloc.h>
     42   1.1  bouyer #include <sys/buf.h>
     43   1.1  bouyer #include <sys/kernel.h>
     44   1.1  bouyer #include <sys/scsiio.h>
     45   1.1  bouyer 
     46  1.22  bouyer #include <uvm/uvm_extern.h>
     47  1.22  bouyer 
     48   1.1  bouyer #include <machine/endian.h>
     49   1.1  bouyer #include <machine/bus.h>
     50   1.1  bouyer 
     51   1.1  bouyer #include <dev/scsipi/scsi_all.h>
     52   1.1  bouyer #include <dev/scsipi/scsi_message.h>
     53   1.1  bouyer #include <dev/scsipi/scsipi_all.h>
     54   1.1  bouyer 
     55   1.1  bouyer #include <dev/scsipi/scsiconf.h>
     56   1.1  bouyer 
     57   1.1  bouyer #include <dev/ic/siopreg.h>
     58   1.1  bouyer #include <dev/ic/siopvar_common.h>
     59   1.1  bouyer 
     60  1.16  bouyer #include "opt_siop.h"
     61  1.16  bouyer 
     62   1.2  bouyer #undef DEBUG
     63   1.2  bouyer #undef DEBUG_DR
     64  1.22  bouyer #undef DEBUG_NEG
     65  1.22  bouyer 
     66  1.22  bouyer int
     67  1.22  bouyer siop_common_attach(sc)
     68  1.22  bouyer 	struct siop_common_softc *sc;
     69  1.22  bouyer {
     70  1.22  bouyer 	int error, i;
     71  1.22  bouyer 	bus_dma_segment_t seg;
     72  1.22  bouyer 	int rseg;
     73  1.22  bouyer 
     74  1.22  bouyer 	/*
     75  1.22  bouyer 	 * Allocate DMA-safe memory for the script and map it.
     76  1.22  bouyer 	 */
     77  1.22  bouyer 	if ((sc->features & SF_CHIP_RAM) == 0) {
     78  1.22  bouyer 		error = bus_dmamem_alloc(sc->sc_dmat, PAGE_SIZE,
     79  1.22  bouyer 		    PAGE_SIZE, 0, &seg, 1, &rseg, BUS_DMA_NOWAIT);
     80  1.22  bouyer 		if (error) {
     81  1.22  bouyer 			printf("%s: unable to allocate script DMA memory, "
     82  1.22  bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
     83  1.22  bouyer 			return error;
     84  1.22  bouyer 		}
     85  1.22  bouyer 		error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, PAGE_SIZE,
     86  1.22  bouyer 		    (caddr_t *)&sc->sc_script,
     87  1.22  bouyer 		    BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
     88  1.22  bouyer 		if (error) {
     89  1.22  bouyer 			printf("%s: unable to map script DMA memory, "
     90  1.22  bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
     91  1.22  bouyer 			return error;
     92  1.22  bouyer 		}
     93  1.22  bouyer 		error = bus_dmamap_create(sc->sc_dmat, PAGE_SIZE, 1,
     94  1.22  bouyer 		    PAGE_SIZE, 0, BUS_DMA_NOWAIT, &sc->sc_scriptdma);
     95  1.22  bouyer 		if (error) {
     96  1.22  bouyer 			printf("%s: unable to create script DMA map, "
     97  1.22  bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
     98  1.22  bouyer 			return error;
     99  1.22  bouyer 		}
    100  1.22  bouyer 		error = bus_dmamap_load(sc->sc_dmat, sc->sc_scriptdma,
    101  1.22  bouyer 		    sc->sc_script, PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
    102  1.22  bouyer 		if (error) {
    103  1.22  bouyer 			printf("%s: unable to load script DMA map, "
    104  1.22  bouyer 			    "error = %d\n", sc->sc_dev.dv_xname, error);
    105  1.22  bouyer 			return error;
    106  1.22  bouyer 		}
    107  1.22  bouyer 		sc->sc_scriptaddr =
    108  1.22  bouyer 		    sc->sc_scriptdma->dm_segs[0].ds_addr;
    109  1.22  bouyer 		sc->ram_size = PAGE_SIZE;
    110  1.22  bouyer 	}
    111  1.22  bouyer 
    112  1.22  bouyer 	sc->sc_adapt.adapt_dev = &sc->sc_dev;
    113  1.22  bouyer 	sc->sc_adapt.adapt_nchannels = 1;
    114  1.22  bouyer 	sc->sc_adapt.adapt_openings = 0;
    115  1.22  bouyer 	sc->sc_adapt.adapt_ioctl = siop_ioctl;
    116  1.22  bouyer 	sc->sc_adapt.adapt_minphys = minphys;
    117  1.22  bouyer 
    118  1.22  bouyer 	memset(&sc->sc_chan, 0, sizeof(sc->sc_chan));
    119  1.22  bouyer 	sc->sc_chan.chan_adapter = &sc->sc_adapt;
    120  1.22  bouyer 	sc->sc_chan.chan_bustype = &scsi_bustype;
    121  1.22  bouyer 	sc->sc_chan.chan_channel = 0;
    122  1.22  bouyer 	sc->sc_chan.chan_flags = SCSIPI_CHAN_CANGROW;
    123  1.22  bouyer 	sc->sc_chan.chan_ntargets =
    124  1.22  bouyer 	    (sc->features & SF_BUS_WIDE) ? 16 : 8;
    125  1.22  bouyer 	sc->sc_chan.chan_nluns = 8;
    126  1.22  bouyer 	sc->sc_chan.chan_id =
    127  1.22  bouyer 	    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCID);
    128  1.22  bouyer 	if (sc->sc_chan.chan_id == 0 ||
    129  1.22  bouyer 	    sc->sc_chan.chan_id >= sc->sc_chan.chan_ntargets)
    130  1.22  bouyer 		sc->sc_chan.chan_id = SIOP_DEFAULT_TARGET;
    131  1.22  bouyer 
    132  1.22  bouyer 	for (i = 0; i < 16; i++)
    133  1.22  bouyer 		sc->targets[i] = NULL;
    134  1.22  bouyer 
    135  1.22  bouyer 	/* find min/max sync period for this chip */
    136  1.22  bouyer 	sc->st_maxsync = 0;
    137  1.22  bouyer 	sc->dt_maxsync = 0;
    138  1.22  bouyer 	sc->st_minsync = 255;
    139  1.22  bouyer 	sc->dt_minsync = 255;
    140  1.22  bouyer 	for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]); i++) {
    141  1.22  bouyer 		if (sc->clock_period != scf_period[i].clock)
    142  1.22  bouyer 			continue;
    143  1.22  bouyer 		if (sc->st_maxsync < scf_period[i].period)
    144  1.22  bouyer 			sc->st_maxsync = scf_period[i].period;
    145  1.22  bouyer 		if (sc->st_minsync > scf_period[i].period)
    146  1.22  bouyer 			sc->st_minsync = scf_period[i].period;
    147  1.22  bouyer 	}
    148  1.22  bouyer 	if (sc->st_maxsync == 255 || sc->st_minsync == 0)
    149  1.22  bouyer 		panic("siop: can't find my sync parameters\n");
    150  1.22  bouyer 	for (i = 0; i < sizeof(dt_scf_period) / sizeof(dt_scf_period[0]); i++) {
    151  1.22  bouyer 		if (sc->clock_period != dt_scf_period[i].clock)
    152  1.22  bouyer 			continue;
    153  1.22  bouyer 		if (sc->dt_maxsync < dt_scf_period[i].period)
    154  1.22  bouyer 			sc->dt_maxsync = dt_scf_period[i].period;
    155  1.22  bouyer 		if (sc->dt_minsync > dt_scf_period[i].period)
    156  1.22  bouyer 			sc->dt_minsync = dt_scf_period[i].period;
    157  1.22  bouyer 	}
    158  1.22  bouyer 	if (sc->dt_maxsync == 255 || sc->dt_minsync == 0)
    159  1.22  bouyer 		panic("siop: can't find my sync parameters\n");
    160  1.22  bouyer 	return 0;
    161  1.22  bouyer }
    162   1.1  bouyer 
    163   1.1  bouyer void
    164   1.1  bouyer siop_common_reset(sc)
    165  1.17  bouyer 	struct siop_common_softc *sc;
    166   1.1  bouyer {
    167   1.1  bouyer 	u_int32_t stest3;
    168   1.1  bouyer 
    169   1.1  bouyer 	/* reset the chip */
    170   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, ISTAT_SRST);
    171   1.1  bouyer 	delay(1000);
    172   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, 0);
    173   1.1  bouyer 
    174   1.1  bouyer 	/* init registers */
    175   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL0,
    176   1.1  bouyer 	    SCNTL0_ARB_MASK | SCNTL0_EPC | SCNTL0_AAP);
    177   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1, 0);
    178   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3, sc->clock_div);
    179   1.7  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SXFER, 0);
    180   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DIEN, 0xff);
    181   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SIEN0,
    182   1.1  bouyer 	    0xff & ~(SIEN0_CMP | SIEN0_SEL | SIEN0_RSL));
    183   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SIEN1,
    184   1.1  bouyer 	    0xff & ~(SIEN1_HTH | SIEN1_GEN));
    185   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2, 0);
    186   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3, STEST3_TE);
    187   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STIME0,
    188   1.1  bouyer 	    (0xb << STIME0_SEL_SHIFT));
    189   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCID,
    190  1.14  bouyer 	    sc->sc_chan.chan_id | SCID_RRE);
    191   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_RESPID0,
    192  1.14  bouyer 	    1 << sc->sc_chan.chan_id);
    193   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DCNTL,
    194   1.1  bouyer 	    (sc->features & SF_CHIP_PF) ? DCNTL_COM | DCNTL_PFEN : DCNTL_COM);
    195   1.1  bouyer 
    196   1.1  bouyer 	/* enable clock doubler or quadruler if appropriate */
    197   1.1  bouyer 	if (sc->features & (SF_CHIP_DBLR | SF_CHIP_QUAD)) {
    198   1.1  bouyer 		stest3 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3);
    199   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1,
    200   1.1  bouyer 		    STEST1_DBLEN);
    201   1.1  bouyer 		if (sc->features & SF_CHIP_QUAD) {
    202   1.1  bouyer 			/* wait for PPL to lock */
    203   1.1  bouyer 			while ((bus_space_read_1(sc->sc_rt, sc->sc_rh,
    204   1.1  bouyer 			    SIOP_STEST4) & STEST4_LOCK) == 0)
    205   1.1  bouyer 				delay(10);
    206   1.1  bouyer 		} else {
    207   1.1  bouyer 			/* data sheet says 20us - more won't hurt */
    208   1.1  bouyer 			delay(100);
    209   1.1  bouyer 		}
    210   1.1  bouyer 		/* halt scsi clock, select doubler/quad, restart clock */
    211   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3,
    212   1.1  bouyer 		    stest3 | STEST3_HSC);
    213   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1,
    214   1.1  bouyer 		    STEST1_DBLEN | STEST1_DBLSEL);
    215   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3, stest3);
    216   1.1  bouyer 	} else {
    217   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1, 0);
    218   1.1  bouyer 	}
    219   1.1  bouyer 	if (sc->features & SF_CHIP_FIFO)
    220   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST5,
    221   1.1  bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST5) |
    222   1.1  bouyer 		    CTEST5_DFS);
    223  1.21  bouyer 	if (sc->features & SF_CHIP_LED0) {
    224  1.21  bouyer 		/* Set GPIO0 as output if software LED control is required */
    225  1.21  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_GPCNTL,
    226  1.21  bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_GPCNTL) & 0xfe);
    227  1.21  bouyer 	}
    228  1.22  bouyer 	if (sc->features & SF_BUS_ULTRA3) {
    229  1.22  bouyer 		/* reset SCNTL4 */
    230  1.22  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL4, 0);
    231  1.22  bouyer 	}
    232   1.1  bouyer 	sc->sc_reset(sc);
    233   1.1  bouyer }
    234   1.1  bouyer 
    235  1.10  bouyer /* prepare tables before sending a cmd */
    236  1.10  bouyer void
    237  1.10  bouyer siop_setuptables(siop_cmd)
    238  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    239  1.10  bouyer {
    240  1.10  bouyer 	int i;
    241  1.17  bouyer 	struct siop_common_softc *sc = siop_cmd->siop_sc;
    242  1.10  bouyer 	struct scsipi_xfer *xs = siop_cmd->xs;
    243  1.14  bouyer 	int target = xs->xs_periph->periph_target;
    244  1.14  bouyer 	int lun = xs->xs_periph->periph_lun;
    245  1.14  bouyer 	int msgoffset = 1;
    246  1.10  bouyer 
    247  1.17  bouyer 	siop_cmd->siop_tables->id = htole32(sc->targets[target]->id);
    248  1.22  bouyer 	memset(siop_cmd->siop_tables->msg_out, 0,
    249  1.22  bouyer 	    sizeof(siop_cmd->siop_tables->msg_out));
    250  1.14  bouyer 	/* request sense doesn't disconnect */
    251  1.14  bouyer 	if (xs->xs_control & XS_CTL_REQSENSE)
    252  1.17  bouyer 		siop_cmd->siop_tables->msg_out[0] = MSG_IDENTIFY(lun, 0);
    253  1.26  bouyer 	else if ((sc->features & SF_CHIP_GEBUG) &&
    254  1.26  bouyer 	    (sc->targets[target]->flags & TARF_ISWIDE) == 0)
    255  1.26  bouyer 		/*
    256  1.26  bouyer 		 * 1010 bug: it seems that the 1010 has problems with reselect
    257  1.26  bouyer 		 * when not in wide mode (generate false SCSI gross error).
    258  1.26  bouyer 		 * The FreeBSD sym driver has comments about it but their
    259  1.26  bouyer 		 * workaround (disable SCSI gross error reporting) doesn't
    260  1.26  bouyer 		 * work with my adapter. So disable disconnect when not
    261  1.26  bouyer 		 * wide.
    262  1.26  bouyer 		 */
    263  1.26  bouyer 		siop_cmd->siop_tables->msg_out[0] = MSG_IDENTIFY(lun, 0);
    264  1.14  bouyer 	else
    265  1.17  bouyer 		siop_cmd->siop_tables->msg_out[0] = MSG_IDENTIFY(lun, 1);
    266  1.14  bouyer 	if (xs->xs_tag_type != 0) {
    267  1.14  bouyer 		if ((sc->targets[target]->flags & TARF_TAG) == 0) {
    268  1.14  bouyer 			scsipi_printaddr(xs->xs_periph);
    269  1.14  bouyer 			printf(": tagged command type %d id %d\n",
    270  1.14  bouyer 			    siop_cmd->xs->xs_tag_type, siop_cmd->xs->xs_tag_id);
    271  1.14  bouyer 			panic("tagged command for non-tagging device\n");
    272  1.14  bouyer 		}
    273  1.14  bouyer 		siop_cmd->flags |= CMDFL_TAG;
    274  1.17  bouyer 		siop_cmd->siop_tables->msg_out[1] = siop_cmd->xs->xs_tag_type;
    275  1.19  bouyer 		/*
    276  1.19  bouyer 		 * use siop_cmd->tag not xs->xs_tag_id, caller may want a
    277  1.19  bouyer 		 * different one
    278  1.19  bouyer 		 */
    279  1.19  bouyer 		siop_cmd->siop_tables->msg_out[2] = siop_cmd->tag;
    280  1.14  bouyer 		msgoffset = 3;
    281  1.20  bouyer 	}
    282  1.25  bouyer 	siop_cmd->siop_tables->t_msgout.count= htole32(msgoffset);
    283  1.10  bouyer 	if (sc->targets[target]->status == TARST_ASYNC) {
    284  1.22  bouyer 		if (sc->targets[target]->flags & TARF_DT) {
    285  1.22  bouyer 			sc->targets[target]->status = TARST_PPR_NEG;
    286  1.22  bouyer 			 siop_ppr_msg(siop_cmd, msgoffset, sc->dt_minsync,
    287  1.22  bouyer 			    sc->maxoff);
    288  1.22  bouyer 		} else if (sc->targets[target]->flags & TARF_WIDE) {
    289  1.10  bouyer 			sc->targets[target]->status = TARST_WIDE_NEG;
    290  1.14  bouyer 			siop_wdtr_msg(siop_cmd, msgoffset,
    291  1.14  bouyer 			    MSG_EXT_WDTR_BUS_16_BIT);
    292  1.10  bouyer 		} else if (sc->targets[target]->flags & TARF_SYNC) {
    293  1.10  bouyer 			sc->targets[target]->status = TARST_SYNC_NEG;
    294  1.22  bouyer 			siop_sdtr_msg(siop_cmd, msgoffset, sc->st_minsync,
    295  1.22  bouyer 			(sc->maxoff > 31) ? 31 :  sc->maxoff);
    296  1.10  bouyer 		} else {
    297  1.10  bouyer 			sc->targets[target]->status = TARST_OK;
    298  1.14  bouyer 			siop_update_xfer_mode(sc, target);
    299  1.10  bouyer 		}
    300  1.10  bouyer 	}
    301  1.17  bouyer 	siop_cmd->siop_tables->status =
    302  1.11  bouyer 	    htole32(SCSI_SIOP_NOSTATUS); /* set invalid status */
    303  1.10  bouyer 
    304  1.17  bouyer 	siop_cmd->siop_tables->cmd.count =
    305  1.10  bouyer 	    htole32(siop_cmd->dmamap_cmd->dm_segs[0].ds_len);
    306  1.17  bouyer 	siop_cmd->siop_tables->cmd.addr =
    307  1.10  bouyer 	    htole32(siop_cmd->dmamap_cmd->dm_segs[0].ds_addr);
    308  1.14  bouyer 	if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
    309  1.10  bouyer 		for (i = 0; i < siop_cmd->dmamap_data->dm_nsegs; i++) {
    310  1.17  bouyer 			siop_cmd->siop_tables->data[i].count =
    311  1.10  bouyer 			    htole32(siop_cmd->dmamap_data->dm_segs[i].ds_len);
    312  1.17  bouyer 			siop_cmd->siop_tables->data[i].addr =
    313  1.10  bouyer 			    htole32(siop_cmd->dmamap_data->dm_segs[i].ds_addr);
    314  1.10  bouyer 		}
    315  1.10  bouyer 	}
    316  1.10  bouyer }
    317  1.10  bouyer 
    318   1.1  bouyer int
    319   1.1  bouyer siop_wdtr_neg(siop_cmd)
    320  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    321   1.1  bouyer {
    322  1.17  bouyer 	struct siop_common_softc *sc = siop_cmd->siop_sc;
    323  1.17  bouyer 	struct siop_common_target *siop_target = siop_cmd->siop_target;
    324  1.14  bouyer 	int target = siop_cmd->xs->xs_periph->periph_target;
    325  1.17  bouyer 	struct siop_common_xfer *tables = siop_cmd->siop_tables;
    326   1.1  bouyer 
    327   1.1  bouyer 	if (siop_target->status == TARST_WIDE_NEG) {
    328   1.1  bouyer 		/* we initiated wide negotiation */
    329   1.9  bouyer 		switch (tables->msg_in[3]) {
    330   1.1  bouyer 		case MSG_EXT_WDTR_BUS_8_BIT:
    331   1.9  bouyer 			siop_target->flags &= ~TARF_ISWIDE;
    332   1.1  bouyer 			sc->targets[target]->id &= ~(SCNTL3_EWS << 24);
    333   1.1  bouyer 			break;
    334   1.1  bouyer 		case MSG_EXT_WDTR_BUS_16_BIT:
    335   1.9  bouyer 			if (siop_target->flags & TARF_WIDE) {
    336   1.9  bouyer 				siop_target->flags |= TARF_ISWIDE;
    337   1.1  bouyer 				sc->targets[target]->id |= (SCNTL3_EWS << 24);
    338   1.1  bouyer 				break;
    339   1.1  bouyer 			}
    340   1.1  bouyer 		/* FALLTHROUH */
    341   1.1  bouyer 		default:
    342   1.1  bouyer 			/*
    343   1.1  bouyer  			 * hum, we got more than what we can handle, shoudn't
    344   1.1  bouyer 			 * happen. Reject, and stay async
    345   1.1  bouyer 			 */
    346   1.9  bouyer 			siop_target->flags &= ~TARF_ISWIDE;
    347   1.1  bouyer 			siop_target->status = TARST_OK;
    348  1.14  bouyer 			siop_target->offset = siop_target->period = 0;
    349  1.14  bouyer 			siop_update_xfer_mode(sc, target);
    350   1.1  bouyer 			printf("%s: rejecting invalid wide negotiation from "
    351   1.1  bouyer 			    "target %d (%d)\n", sc->sc_dev.dv_xname, target,
    352   1.9  bouyer 			    tables->msg_in[3]);
    353   1.9  bouyer 			tables->t_msgout.count= htole32(1);
    354   1.9  bouyer 			tables->msg_out[0] = MSG_MESSAGE_REJECT;
    355   1.1  bouyer 			return SIOP_NEG_MSGOUT;
    356   1.1  bouyer 		}
    357   1.9  bouyer 		tables->id = htole32(sc->targets[target]->id);
    358   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh,
    359   1.1  bouyer 		    SIOP_SCNTL3,
    360   1.1  bouyer 		    (sc->targets[target]->id >> 24) & 0xff);
    361   1.1  bouyer 		/* we now need to do sync */
    362   1.9  bouyer 		if (siop_target->flags & TARF_SYNC) {
    363   1.6  bouyer 			siop_target->status = TARST_SYNC_NEG;
    364  1.22  bouyer 			siop_sdtr_msg(siop_cmd, 0, sc->st_minsync,
    365  1.22  bouyer 			    (sc->maxoff > 31) ? 31 : sc->maxoff);
    366   1.6  bouyer 			return SIOP_NEG_MSGOUT;
    367   1.6  bouyer 		} else {
    368   1.6  bouyer 			siop_target->status = TARST_OK;
    369  1.14  bouyer 			siop_update_xfer_mode(sc, target);
    370   1.6  bouyer 			return SIOP_NEG_ACK;
    371   1.6  bouyer 		}
    372   1.1  bouyer 	} else {
    373   1.1  bouyer 		/* target initiated wide negotiation */
    374   1.9  bouyer 		if (tables->msg_in[3] >= MSG_EXT_WDTR_BUS_16_BIT
    375   1.9  bouyer 		    && (siop_target->flags & TARF_WIDE)) {
    376   1.9  bouyer 			siop_target->flags |= TARF_ISWIDE;
    377   1.1  bouyer 			sc->targets[target]->id |= SCNTL3_EWS << 24;
    378   1.1  bouyer 		} else {
    379   1.9  bouyer 			siop_target->flags &= ~TARF_ISWIDE;
    380   1.1  bouyer 			sc->targets[target]->id &= ~(SCNTL3_EWS << 24);
    381   1.1  bouyer 		}
    382   1.9  bouyer 		tables->id = htole32(sc->targets[target]->id);
    383   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3,
    384   1.1  bouyer 		    (sc->targets[target]->id >> 24) & 0xff);
    385   1.1  bouyer 		/*
    386   1.1  bouyer 		 * we did reset wide parameters, so fall back to async,
    387   1.8  bouyer 		 * but don't schedule a sync neg, target should initiate it
    388   1.1  bouyer 		 */
    389   1.1  bouyer 		siop_target->status = TARST_OK;
    390  1.14  bouyer 		siop_target->offset = siop_target->period = 0;
    391  1.14  bouyer 		siop_update_xfer_mode(sc, target);
    392  1.10  bouyer 		siop_wdtr_msg(siop_cmd, 0, (siop_target->flags & TARF_ISWIDE) ?
    393  1.10  bouyer 		    MSG_EXT_WDTR_BUS_16_BIT : MSG_EXT_WDTR_BUS_8_BIT);
    394   1.1  bouyer 		return SIOP_NEG_MSGOUT;
    395   1.1  bouyer 	}
    396   1.1  bouyer }
    397   1.1  bouyer 
    398   1.1  bouyer int
    399  1.22  bouyer siop_ppr_neg(siop_cmd)
    400  1.22  bouyer 	struct siop_common_cmd *siop_cmd;
    401  1.22  bouyer {
    402  1.22  bouyer 	struct siop_common_softc *sc = siop_cmd->siop_sc;
    403  1.22  bouyer 	struct siop_common_target *siop_target = siop_cmd->siop_target;
    404  1.22  bouyer 	int target = siop_cmd->xs->xs_periph->periph_target;
    405  1.22  bouyer 	struct siop_common_xfer *tables = siop_cmd->siop_tables;
    406  1.22  bouyer 	int sync, offset, options, scf = 0;
    407  1.22  bouyer 	int i;
    408  1.22  bouyer 
    409  1.22  bouyer #ifdef DEBUG_NEG
    410  1.22  bouyer 	printf("%s: anserw on ppr negotiation:", sc->sc_dev.dv_xname);
    411  1.22  bouyer 	for (i = 0; i < 8; i++)
    412  1.22  bouyer 		printf(" 0x%x", tables->msg_in[i]);
    413  1.22  bouyer 	printf("\n");
    414  1.22  bouyer #endif
    415  1.22  bouyer 
    416  1.22  bouyer 	if (siop_target->status == TARST_PPR_NEG) {
    417  1.22  bouyer 		/* we initiated PPR negotiation */
    418  1.22  bouyer 		sync = tables->msg_in[3];
    419  1.22  bouyer 		offset = tables->msg_in[5];
    420  1.22  bouyer 		options = tables->msg_in[7];
    421  1.22  bouyer 		if (options != MSG_EXT_PPR_DT) {
    422  1.22  bouyer 			/* should't happen */
    423  1.22  bouyer 			printf("%s: ppr negotiation for target %d: "
    424  1.22  bouyer 			    "no DT option\n", sc->sc_dev.dv_xname, target);
    425  1.22  bouyer 			siop_target->status = TARST_ASYNC;
    426  1.22  bouyer 			siop_target->flags &= ~(TARF_DT | TARF_ISDT);
    427  1.22  bouyer 			siop_target->offset = 0;
    428  1.22  bouyer 			siop_target->period = 0;
    429  1.22  bouyer 			goto reject;
    430  1.22  bouyer 		}
    431  1.22  bouyer 
    432  1.22  bouyer 		if (offset > sc->maxoff || sync < sc->dt_minsync ||
    433  1.22  bouyer 		    sync > sc->dt_maxsync) {
    434  1.22  bouyer 			printf("%s: ppr negotiation for target %d: "
    435  1.22  bouyer 			    "offset (%d) or sync (%d) out of range\n",
    436  1.22  bouyer 			    sc->sc_dev.dv_xname, target, offset, sync);
    437  1.22  bouyer 			/* should not happen */
    438  1.22  bouyer 			siop_target->offset = 0;
    439  1.22  bouyer 			siop_target->period = 0;
    440  1.22  bouyer 			goto reject;
    441  1.22  bouyer 		} else {
    442  1.22  bouyer 			for (i = 0; i <
    443  1.22  bouyer 			    sizeof(dt_scf_period) / sizeof(dt_scf_period[0]);
    444  1.22  bouyer 			    i++) {
    445  1.22  bouyer 				if (sc->clock_period != dt_scf_period[i].clock)
    446  1.22  bouyer 					continue;
    447  1.22  bouyer 				if (dt_scf_period[i].period == sync) {
    448  1.22  bouyer 					/* ok, found it. we now are sync. */
    449  1.22  bouyer 					siop_target->offset = offset;
    450  1.22  bouyer 					siop_target->period = sync;
    451  1.22  bouyer 					scf = dt_scf_period[i].scf;
    452  1.22  bouyer 					siop_target->flags |= TARF_ISDT;
    453  1.22  bouyer 				}
    454  1.22  bouyer 			}
    455  1.22  bouyer 			if ((siop_target->flags & TARF_ISDT) == 0) {
    456  1.22  bouyer 				printf("%s: ppr negotiation for target %d: "
    457  1.22  bouyer 				    "sync (%d) incompatible with adapter\n",
    458  1.22  bouyer 				    sc->sc_dev.dv_xname, target, sync);
    459  1.22  bouyer 				/*
    460  1.22  bouyer 				 * we didn't find it in our table, do async
    461  1.22  bouyer 				 * send reject msg, start SDTR/WDTR neg
    462  1.22  bouyer 				 */
    463  1.22  bouyer 				siop_target->status = TARST_ASYNC;
    464  1.22  bouyer 				siop_target->flags &= ~(TARF_DT | TARF_ISDT);
    465  1.22  bouyer 				siop_target->offset = 0;
    466  1.22  bouyer 				siop_target->period = 0;
    467  1.22  bouyer 				goto reject;
    468  1.22  bouyer 			}
    469  1.22  bouyer 		}
    470  1.22  bouyer 		if (tables->msg_in[6] != 1) {
    471  1.22  bouyer 			printf("%s: ppr negotiation for target %d: "
    472  1.22  bouyer 			    "transfer width (%d) incompatible with dt\n",
    473  1.22  bouyer 			    sc->sc_dev.dv_xname, target, tables->msg_in[6]);
    474  1.22  bouyer 			/* DT mode can only be done with wide transfers */
    475  1.22  bouyer 			siop_target->status = TARST_ASYNC;
    476  1.22  bouyer 			goto reject;
    477  1.22  bouyer 		}
    478  1.22  bouyer 		siop_target->flags |= TARF_ISWIDE;
    479  1.22  bouyer 		sc->targets[target]->id |= (SCNTL3_EWS << 24);
    480  1.22  bouyer 		sc->targets[target]->id &= ~(SCNTL3_SCF_MASK << 24);
    481  1.22  bouyer 		sc->targets[target]->id |= scf << (24 + SCNTL3_SCF_SHIFT);
    482  1.22  bouyer 		sc->targets[target]->id &= ~(SXFER_MO_MASK << 8);
    483  1.22  bouyer 		sc->targets[target]->id |=
    484  1.22  bouyer 		    (siop_target->offset & SXFER_MO_MASK) << 8;
    485  1.22  bouyer 		sc->targets[target]->id &= ~0xff;
    486  1.22  bouyer 		sc->targets[target]->id |= SCNTL4_U3EN;
    487  1.22  bouyer 		siop_target->status = TARST_OK;
    488  1.22  bouyer 		siop_update_xfer_mode(sc, target);
    489  1.22  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3,
    490  1.22  bouyer 		    (sc->targets[target]->id >> 24) & 0xff);
    491  1.22  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SXFER,
    492  1.22  bouyer 		    (sc->targets[target]->id >> 8) & 0xff);
    493  1.22  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL4,
    494  1.22  bouyer 		    sc->targets[target]->id & 0xff);
    495  1.22  bouyer 		return SIOP_NEG_ACK;
    496  1.22  bouyer 	} else {
    497  1.22  bouyer 		/* target initiated PPR negotiation, shouldn't happen */
    498  1.22  bouyer 		printf("%s: rejecting invalid PPR negotiation from "
    499  1.22  bouyer 		    "target %d\n", sc->sc_dev.dv_xname, target);
    500  1.22  bouyer reject:
    501  1.22  bouyer 		tables->t_msgout.count= htole32(1);
    502  1.22  bouyer 		tables->msg_out[0] = MSG_MESSAGE_REJECT;
    503  1.22  bouyer 		return SIOP_NEG_MSGOUT;
    504  1.22  bouyer 	}
    505  1.22  bouyer }
    506  1.22  bouyer 
    507  1.22  bouyer int
    508   1.1  bouyer siop_sdtr_neg(siop_cmd)
    509  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    510   1.1  bouyer {
    511  1.17  bouyer 	struct siop_common_softc *sc = siop_cmd->siop_sc;
    512  1.17  bouyer 	struct siop_common_target *siop_target = siop_cmd->siop_target;
    513  1.14  bouyer 	int target = siop_cmd->xs->xs_periph->periph_target;
    514  1.22  bouyer 	int sync, maxoffset, offset, i;
    515   1.1  bouyer 	int send_msgout = 0;
    516  1.17  bouyer 	struct siop_common_xfer *tables = siop_cmd->siop_tables;
    517   1.1  bouyer 
    518  1.22  bouyer 	/* limit to Ultra/2 parameters, need PPR for Ultra/3 */
    519  1.22  bouyer 	maxoffset = (sc->maxoff > 31) ? 31 : sc->maxoff;
    520  1.22  bouyer 
    521   1.9  bouyer 	sync = tables->msg_in[3];
    522   1.9  bouyer 	offset = tables->msg_in[4];
    523   1.1  bouyer 
    524   1.1  bouyer 	if (siop_target->status == TARST_SYNC_NEG) {
    525   1.1  bouyer 		/* we initiated sync negotiation */
    526   1.1  bouyer 		siop_target->status = TARST_OK;
    527   1.1  bouyer #ifdef DEBUG
    528   1.1  bouyer 		printf("sdtr: sync %d offset %d\n", sync, offset);
    529   1.1  bouyer #endif
    530  1.22  bouyer 		if (offset > maxoffset || sync < sc->st_minsync ||
    531  1.22  bouyer 			sync > sc->st_maxsync)
    532   1.1  bouyer 			goto reject;
    533   1.1  bouyer 		for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]);
    534   1.1  bouyer 		    i++) {
    535   1.1  bouyer 			if (sc->clock_period != scf_period[i].clock)
    536   1.1  bouyer 				continue;
    537   1.1  bouyer 			if (scf_period[i].period == sync) {
    538   1.1  bouyer 				/* ok, found it. we now are sync. */
    539  1.14  bouyer 				siop_target->offset = offset;
    540  1.14  bouyer 				siop_target->period = sync;
    541   1.1  bouyer 				sc->targets[target]->id &=
    542   1.1  bouyer 				    ~(SCNTL3_SCF_MASK << 24);
    543   1.1  bouyer 				sc->targets[target]->id |= scf_period[i].scf
    544   1.1  bouyer 				    << (24 + SCNTL3_SCF_SHIFT);
    545  1.22  bouyer 				if (sync < 25 && /* Ultra */
    546  1.22  bouyer 				    (sc->features & SF_BUS_ULTRA3) == 0)
    547   1.1  bouyer 					sc->targets[target]->id |=
    548   1.1  bouyer 					    SCNTL3_ULTRA << 24;
    549   1.1  bouyer 				else
    550   1.1  bouyer 					sc->targets[target]->id &=
    551   1.1  bouyer 					    ~(SCNTL3_ULTRA << 24);
    552   1.1  bouyer 				sc->targets[target]->id &=
    553   1.7  bouyer 				    ~(SXFER_MO_MASK << 8);
    554   1.1  bouyer 				sc->targets[target]->id |=
    555   1.7  bouyer 				    (offset & SXFER_MO_MASK) << 8;
    556  1.25  bouyer 				sc->targets[target]->id &= ~0xff; /* scntl4 */
    557   1.1  bouyer 				goto end;
    558   1.1  bouyer 			}
    559   1.1  bouyer 		}
    560   1.1  bouyer 		/*
    561   1.1  bouyer 		 * we didn't find it in our table, do async and send reject
    562   1.1  bouyer 		 * msg
    563   1.1  bouyer 		 */
    564   1.1  bouyer reject:
    565   1.1  bouyer 		send_msgout = 1;
    566   1.9  bouyer 		tables->t_msgout.count= htole32(1);
    567   1.9  bouyer 		tables->msg_out[0] = MSG_MESSAGE_REJECT;
    568   1.1  bouyer 		sc->targets[target]->id &= ~(SCNTL3_SCF_MASK << 24);
    569   1.1  bouyer 		sc->targets[target]->id &= ~(SCNTL3_ULTRA << 24);
    570   1.7  bouyer 		sc->targets[target]->id &= ~(SXFER_MO_MASK << 8);
    571  1.25  bouyer 		sc->targets[target]->id &= ~0xff; /* scntl4 */
    572  1.14  bouyer 		siop_target->offset = siop_target->period = 0;
    573   1.1  bouyer 	} else { /* target initiated sync neg */
    574   1.1  bouyer #ifdef DEBUG
    575   1.1  bouyer 		printf("sdtr (target): sync %d offset %d\n", sync, offset);
    576   1.1  bouyer #endif
    577  1.22  bouyer 		if (offset == 0 || sync > sc->st_maxsync) { /* async */
    578   1.1  bouyer 			goto async;
    579   1.1  bouyer 		}
    580  1.22  bouyer 		if (offset > maxoffset)
    581  1.22  bouyer 			offset = maxoffset;
    582  1.22  bouyer 		if (sync < sc->st_minsync)
    583  1.22  bouyer 			sync = sc->st_minsync;
    584   1.1  bouyer 		/* look for sync period */
    585   1.1  bouyer 		for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]);
    586   1.1  bouyer 		    i++) {
    587   1.1  bouyer 			if (sc->clock_period != scf_period[i].clock)
    588   1.1  bouyer 				continue;
    589   1.1  bouyer 			if (scf_period[i].period == sync) {
    590   1.1  bouyer 				/* ok, found it. we now are sync. */
    591  1.14  bouyer 				siop_target->offset = offset;
    592  1.14  bouyer 				siop_target->period = sync;
    593   1.1  bouyer 				sc->targets[target]->id &=
    594   1.1  bouyer 				    ~(SCNTL3_SCF_MASK << 24);
    595   1.1  bouyer 				sc->targets[target]->id |= scf_period[i].scf
    596   1.1  bouyer 				    << (24 + SCNTL3_SCF_SHIFT);
    597  1.22  bouyer 				if (sync < 25 && /* Ultra */
    598  1.22  bouyer 				    (sc->features & SF_BUS_ULTRA3) == 0)
    599   1.1  bouyer 					sc->targets[target]->id |=
    600   1.1  bouyer 					    SCNTL3_ULTRA << 24;
    601   1.1  bouyer 				else
    602   1.1  bouyer 					sc->targets[target]->id &=
    603   1.1  bouyer 					    ~(SCNTL3_ULTRA << 24);
    604   1.1  bouyer 				sc->targets[target]->id &=
    605   1.7  bouyer 				    ~(SXFER_MO_MASK << 8);
    606   1.1  bouyer 				sc->targets[target]->id |=
    607   1.7  bouyer 				    (offset & SXFER_MO_MASK) << 8;
    608  1.25  bouyer 				sc->targets[target]->id &= ~0xff; /* scntl4 */
    609  1.10  bouyer 				siop_sdtr_msg(siop_cmd, 0, sync, offset);
    610   1.1  bouyer 				send_msgout = 1;
    611   1.1  bouyer 				goto end;
    612   1.1  bouyer 			}
    613   1.1  bouyer 		}
    614   1.1  bouyer async:
    615  1.14  bouyer 		siop_target->offset = siop_target->period = 0;
    616   1.1  bouyer 		sc->targets[target]->id &= ~(SCNTL3_SCF_MASK << 24);
    617   1.1  bouyer 		sc->targets[target]->id &= ~(SCNTL3_ULTRA << 24);
    618   1.7  bouyer 		sc->targets[target]->id &= ~(SXFER_MO_MASK << 8);
    619  1.25  bouyer 		sc->targets[target]->id &= ~0xff; /* scntl4 */
    620  1.10  bouyer 		siop_sdtr_msg(siop_cmd, 0, 0, 0);
    621   1.1  bouyer 		send_msgout = 1;
    622   1.1  bouyer 	}
    623   1.1  bouyer end:
    624  1.14  bouyer 	if (siop_target->status == TARST_OK)
    625  1.14  bouyer 		siop_update_xfer_mode(sc, target);
    626   1.1  bouyer #ifdef DEBUG
    627   1.1  bouyer 	printf("id now 0x%x\n", sc->targets[target]->id);
    628   1.1  bouyer #endif
    629   1.9  bouyer 	tables->id = htole32(sc->targets[target]->id);
    630   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3,
    631   1.1  bouyer 	    (sc->targets[target]->id >> 24) & 0xff);
    632   1.7  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SXFER,
    633   1.1  bouyer 	    (sc->targets[target]->id >> 8) & 0xff);
    634   1.1  bouyer 	if (send_msgout) {
    635   1.1  bouyer 		return SIOP_NEG_MSGOUT;
    636   1.1  bouyer 	} else {
    637   1.1  bouyer 		return SIOP_NEG_ACK;
    638   1.1  bouyer 	}
    639   1.1  bouyer }
    640   1.1  bouyer 
    641   1.1  bouyer void
    642  1.10  bouyer siop_sdtr_msg(siop_cmd, offset, ssync, soff)
    643  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    644  1.10  bouyer 	int offset;
    645  1.10  bouyer 	int ssync, soff;
    646  1.10  bouyer {
    647  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 0] = MSG_EXTENDED;
    648  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 1] = MSG_EXT_SDTR_LEN;
    649  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 2] = MSG_EXT_SDTR;
    650  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 3] = ssync;
    651  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 4] = soff;
    652  1.17  bouyer 	siop_cmd->siop_tables->t_msgout.count =
    653  1.10  bouyer 	    htole32(offset + MSG_EXT_SDTR_LEN + 2);
    654  1.10  bouyer }
    655  1.10  bouyer 
    656  1.10  bouyer void
    657  1.10  bouyer siop_wdtr_msg(siop_cmd, offset, wide)
    658  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    659  1.10  bouyer 	int offset;
    660  1.10  bouyer {
    661  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 0] = MSG_EXTENDED;
    662  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 1] = MSG_EXT_WDTR_LEN;
    663  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 2] = MSG_EXT_WDTR;
    664  1.17  bouyer 	siop_cmd->siop_tables->msg_out[offset + 3] = wide;
    665  1.17  bouyer 	siop_cmd->siop_tables->t_msgout.count =
    666  1.10  bouyer 	    htole32(offset + MSG_EXT_WDTR_LEN + 2);
    667  1.22  bouyer }
    668  1.22  bouyer 
    669  1.22  bouyer void
    670  1.22  bouyer siop_ppr_msg(siop_cmd, offset, ssync, soff)
    671  1.22  bouyer 	struct siop_common_cmd *siop_cmd;
    672  1.22  bouyer 	int offset;
    673  1.22  bouyer 	int ssync, soff;
    674  1.22  bouyer {
    675  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 0] = MSG_EXTENDED;
    676  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 1] = MSG_EXT_PPR_LEN;
    677  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 2] = MSG_EXT_PPR;
    678  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 3] = ssync;
    679  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 4] = 0; /* reserved */
    680  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 5] = soff;
    681  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 6] = 1; /* wide */
    682  1.22  bouyer 	siop_cmd->siop_tables->msg_out[offset + 7] = MSG_EXT_PPR_DT;
    683  1.22  bouyer 	siop_cmd->siop_tables->t_msgout.count =
    684  1.22  bouyer 	    htole32(offset + MSG_EXT_PPR_LEN + 2);
    685  1.10  bouyer }
    686  1.10  bouyer 
    687  1.10  bouyer void
    688   1.1  bouyer siop_minphys(bp)
    689   1.1  bouyer 	struct buf *bp;
    690   1.1  bouyer {
    691   1.1  bouyer 	minphys(bp);
    692   1.1  bouyer }
    693   1.1  bouyer 
    694   1.1  bouyer int
    695  1.14  bouyer siop_ioctl(chan, cmd, arg, flag, p)
    696  1.14  bouyer 	struct scsipi_channel *chan;
    697   1.1  bouyer 	u_long cmd;
    698   1.1  bouyer 	caddr_t arg;
    699   1.1  bouyer 	int flag;
    700   1.1  bouyer 	struct proc *p;
    701   1.1  bouyer {
    702  1.17  bouyer 	struct siop_common_softc *sc = (void *)chan->chan_adapter->adapt_dev;
    703   1.1  bouyer 
    704   1.1  bouyer 	switch (cmd) {
    705   1.1  bouyer 	case SCBUSIORESET:
    706  1.24  bouyer 		/*
    707  1.24  bouyer 		 * abort the script. This will trigger an interrupt, which will
    708  1.24  bouyer 		 * trigger a bus reset.
    709  1.24  bouyer 		 * We can't safely trigger the reset here as we can't access
    710  1.24  bouyer 		 * the required register while the script is running.
    711  1.24  bouyer 		 */
    712  1.24  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, ISTAT_ABRT);
    713   1.1  bouyer 		return (0);
    714   1.1  bouyer 	default:
    715   1.1  bouyer 		return (ENOTTY);
    716   1.1  bouyer 	}
    717   1.1  bouyer }
    718   1.1  bouyer 
    719   1.1  bouyer void
    720   1.1  bouyer siop_sdp(siop_cmd)
    721  1.17  bouyer 	struct siop_common_cmd *siop_cmd;
    722   1.1  bouyer {
    723   1.1  bouyer 	/* save data pointer. Handle async only for now */
    724   1.1  bouyer 	int offset, dbc, sstat;
    725  1.17  bouyer 	struct siop_common_softc *sc = siop_cmd->siop_sc;
    726   1.1  bouyer 	scr_table_t *table; /* table to patch */
    727   1.1  bouyer 
    728   1.1  bouyer 	if ((siop_cmd->xs->xs_control & (XS_CTL_DATA_OUT | XS_CTL_DATA_IN))
    729   1.1  bouyer 	    == 0)
    730   1.1  bouyer 	    return; /* no data pointers to save */
    731   1.1  bouyer 	offset = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCRATCHA + 1);
    732   1.1  bouyer 	if (offset >= SIOP_NSG) {
    733   1.1  bouyer 		printf("%s: bad offset in siop_sdp (%d)\n",
    734   1.1  bouyer 		    sc->sc_dev.dv_xname, offset);
    735   1.1  bouyer 		return;
    736   1.1  bouyer 	}
    737  1.17  bouyer 	table = &siop_cmd->siop_tables->data[offset];
    738   1.1  bouyer #ifdef DEBUG_DR
    739   1.1  bouyer 	printf("sdp: offset %d count=%d addr=0x%x ", offset,
    740   1.1  bouyer 	    table->count, table->addr);
    741   1.1  bouyer #endif
    742   1.1  bouyer 	dbc = bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DBC) & 0x00ffffff;
    743   1.1  bouyer 	if (siop_cmd->xs->xs_control & XS_CTL_DATA_OUT) {
    744  1.13  bouyer 		if (sc->features & SF_CHIP_DFBC) {
    745  1.13  bouyer 			dbc +=
    746  1.13  bouyer 			    bus_space_read_2(sc->sc_rt, sc->sc_rh, SIOP_DFBC);
    747   1.1  bouyer 		} else {
    748  1.13  bouyer 			/* need to account stale data in FIFO */
    749  1.13  bouyer 			int dfifo =
    750  1.13  bouyer 			    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_DFIFO);
    751  1.13  bouyer 			if (sc->features & SF_CHIP_FIFO) {
    752  1.13  bouyer 				dfifo |= (bus_space_read_1(sc->sc_rt, sc->sc_rh,
    753  1.13  bouyer 				    SIOP_CTEST5) & CTEST5_BOMASK) << 8;
    754  1.13  bouyer 				dbc += (dfifo - (dbc & 0x3ff)) & 0x3ff;
    755  1.13  bouyer 			} else {
    756  1.13  bouyer 				dbc += (dfifo - (dbc & 0x7f)) & 0x7f;
    757  1.13  bouyer 			}
    758   1.1  bouyer 		}
    759   1.1  bouyer 		sstat = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SSTAT0);
    760   1.1  bouyer 		if (sstat & SSTAT0_OLF)
    761   1.1  bouyer 			dbc++;
    762  1.13  bouyer 		if ((sstat & SSTAT0_ORF) && (sc->features & SF_CHIP_DFBC) == 0)
    763   1.1  bouyer 			dbc++;
    764   1.9  bouyer 		if (siop_cmd->siop_target->flags & TARF_ISWIDE) {
    765   1.1  bouyer 			sstat = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    766   1.1  bouyer 			    SIOP_SSTAT2);
    767   1.1  bouyer 			if (sstat & SSTAT2_OLF1)
    768   1.1  bouyer 				dbc++;
    769  1.13  bouyer 			if ((sstat & SSTAT2_ORF1) &&
    770  1.13  bouyer 			    (sc->features & SF_CHIP_DFBC) == 0)
    771   1.1  bouyer 				dbc++;
    772   1.1  bouyer 		}
    773   1.1  bouyer 		/* clear the FIFO */
    774   1.1  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
    775   1.1  bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3) |
    776   1.1  bouyer 		    CTEST3_CLF);
    777   1.1  bouyer 	}
    778   1.1  bouyer 	table->addr =
    779   1.1  bouyer 	    htole32(le32toh(table->addr) + le32toh(table->count) - dbc);
    780   1.1  bouyer 	table->count = htole32(dbc);
    781   1.1  bouyer #ifdef DEBUG_DR
    782   1.1  bouyer 	printf("now count=%d addr=0x%x\n", table->count, table->addr);
    783   1.1  bouyer #endif
    784   1.1  bouyer }
    785   1.1  bouyer 
    786   1.1  bouyer void
    787   1.1  bouyer siop_clearfifo(sc)
    788  1.17  bouyer 	struct siop_common_softc *sc;
    789   1.1  bouyer {
    790   1.1  bouyer 	int timeout = 0;
    791   1.1  bouyer 	int ctest3 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3);
    792   1.1  bouyer 
    793   1.1  bouyer #ifdef DEBUG_INTR
    794   1.1  bouyer 	printf("DMA fifo not empty !\n");
    795   1.1  bouyer #endif
    796   1.1  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
    797   1.1  bouyer 	    ctest3 | CTEST3_CLF);
    798   1.1  bouyer 	while ((bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3) &
    799   1.1  bouyer 	    CTEST3_CLF) != 0) {
    800   1.1  bouyer 		delay(1);
    801   1.1  bouyer 		if (++timeout > 1000) {
    802   1.1  bouyer 			printf("clear fifo failed\n");
    803   1.1  bouyer 			bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
    804   1.1  bouyer 			    bus_space_read_1(sc->sc_rt, sc->sc_rh,
    805   1.1  bouyer 			    SIOP_CTEST3) & ~CTEST3_CLF);
    806   1.1  bouyer 			return;
    807   1.1  bouyer 		}
    808   1.1  bouyer 	}
    809   1.3  bouyer }
    810   1.3  bouyer 
    811   1.3  bouyer int
    812   1.3  bouyer siop_modechange(sc)
    813  1.17  bouyer 	struct siop_common_softc *sc;
    814   1.3  bouyer {
    815   1.3  bouyer 	int retry;
    816   1.3  bouyer 	int sist0, sist1, stest2, stest4;
    817   1.3  bouyer 	for (retry = 0; retry < 5; retry++) {
    818   1.3  bouyer 		/*
    819   1.3  bouyer 		 * datasheet says to wait 100ms and re-read SIST1,
    820  1.14  bouyer 		 * to check that DIFFSENSE is stable.
    821   1.3  bouyer 		 * We may delay() 5 times for  100ms at interrupt time;
    822   1.3  bouyer 		 * hopefully this will not happen often.
    823   1.3  bouyer 		 */
    824   1.3  bouyer 		delay(100000);
    825   1.3  bouyer 		sist0 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SIST0);
    826   1.3  bouyer 		sist1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SIST1);
    827   1.3  bouyer 		if (sist1 & SIEN1_SBMC)
    828   1.3  bouyer 			continue; /* we got an irq again */
    829   1.3  bouyer 		stest4 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST4) &
    830   1.3  bouyer 		    STEST4_MODE_MASK;
    831   1.3  bouyer 		stest2 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2);
    832   1.3  bouyer 		switch(stest4) {
    833   1.3  bouyer 		case STEST4_MODE_DIF:
    834   1.3  bouyer 			printf("%s: switching to differential mode\n",
    835   1.3  bouyer 			    sc->sc_dev.dv_xname);
    836   1.3  bouyer 			bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
    837   1.3  bouyer 			    stest2 | STEST2_DIF);
    838   1.3  bouyer 			break;
    839   1.3  bouyer 		case STEST4_MODE_SE:
    840   1.3  bouyer 			printf("%s: switching to single-ended mode\n",
    841   1.3  bouyer 			    sc->sc_dev.dv_xname);
    842   1.3  bouyer 			bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
    843   1.3  bouyer 			    stest2 & ~STEST2_DIF);
    844   1.3  bouyer 			break;
    845   1.3  bouyer 		case STEST4_MODE_LVD:
    846   1.3  bouyer 			printf("%s: switching to LVD mode\n",
    847   1.3  bouyer 			    sc->sc_dev.dv_xname);
    848   1.3  bouyer 			bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
    849   1.3  bouyer 			    stest2 & ~STEST2_DIF);
    850   1.3  bouyer 			break;
    851   1.3  bouyer 		default:
    852   1.3  bouyer 			printf("%s: invalid SCSI mode 0x%x\n",
    853   1.3  bouyer 			    sc->sc_dev.dv_xname, stest4);
    854   1.3  bouyer 			return 0;
    855   1.3  bouyer 		}
    856   1.3  bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST0,
    857   1.3  bouyer 		    stest4 >> 2);
    858   1.3  bouyer 		return 1;
    859   1.3  bouyer 	}
    860   1.3  bouyer 	printf("%s: timeout waiting for DIFFSENSE to stabilise\n",
    861   1.3  bouyer 	    sc->sc_dev.dv_xname);
    862   1.3  bouyer 	return 0;
    863   1.6  bouyer }
    864   1.6  bouyer 
    865   1.6  bouyer void
    866   1.6  bouyer siop_resetbus(sc)
    867  1.17  bouyer 	struct siop_common_softc *sc;
    868   1.6  bouyer {
    869   1.6  bouyer 	int scntl1;
    870   1.6  bouyer 	scntl1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1);
    871   1.6  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1,
    872   1.6  bouyer 	    scntl1 | SCNTL1_RST);
    873   1.6  bouyer 	/* minimum 25 us, more time won't hurt */
    874   1.6  bouyer 	delay(100);
    875   1.6  bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1, scntl1);
    876  1.17  bouyer }
    877  1.17  bouyer 
    878  1.17  bouyer void
    879  1.17  bouyer siop_update_xfer_mode(sc, target)
    880  1.17  bouyer 	struct siop_common_softc *sc;
    881  1.17  bouyer 	int target;
    882  1.17  bouyer {
    883  1.17  bouyer 	struct siop_common_target *siop_target = sc->targets[target];
    884  1.17  bouyer 	struct scsipi_xfer_mode xm;
    885  1.17  bouyer 
    886  1.17  bouyer 	xm.xm_target = target;
    887  1.17  bouyer 	xm.xm_mode = 0;
    888  1.17  bouyer 	xm.xm_period = 0;
    889  1.17  bouyer 	xm.xm_offset = 0;
    890  1.26  bouyer 
    891  1.26  bouyer 	/* 1010 workaround: can't do disconnect if not wide, so can't do tag */
    892  1.26  bouyer 	if ((sc->features & SF_CHIP_GEBUG) &&
    893  1.26  bouyer 	    (sc->targets[target]->flags & TARF_ISWIDE) == 0)
    894  1.26  bouyer 		siop_target->flags &= ~TARF_TAG;
    895  1.17  bouyer 
    896  1.17  bouyer 	if (siop_target->flags & TARF_ISWIDE)
    897  1.17  bouyer 		xm.xm_mode |= PERIPH_CAP_WIDE16;
    898  1.17  bouyer 	if (siop_target->period) {
    899  1.17  bouyer 		xm.xm_period = siop_target->period;
    900  1.17  bouyer 		xm.xm_offset = siop_target->offset;
    901  1.17  bouyer 		xm.xm_mode |= PERIPH_CAP_SYNC;
    902  1.17  bouyer 	}
    903  1.17  bouyer 	if (siop_target->flags & TARF_TAG)
    904  1.17  bouyer 		xm.xm_mode |= PERIPH_CAP_TQING;
    905  1.17  bouyer 	scsipi_async_event(&sc->sc_chan, ASYNC_EVENT_XFER_MODE, &xm);
    906   1.1  bouyer }
    907