Home | History | Annotate | Line # | Download | only in ic
aic6360.c revision 1.70.6.5
      1  1.70.6.5   nathanw /*	$NetBSD: aic6360.c,v 1.70.6.5 2002/04/17 00:05:31 nathanw Exp $	*/
      2       1.9       cgd 
      3       1.1   mycroft /*
      4      1.40   mycroft  * Copyright (c) 1994, 1995, 1996 Charles M. Hannum.  All rights reserved.
      5      1.14   mycroft  *
      6      1.14   mycroft  * Redistribution and use in source and binary forms, with or without
      7      1.14   mycroft  * modification, are permitted provided that the following conditions
      8      1.14   mycroft  * are met:
      9      1.14   mycroft  * 1. Redistributions of source code must retain the above copyright
     10      1.14   mycroft  *    notice, this list of conditions and the following disclaimer.
     11      1.14   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.14   mycroft  *    notice, this list of conditions and the following disclaimer in the
     13      1.14   mycroft  *    documentation and/or other materials provided with the distribution.
     14      1.14   mycroft  * 3. All advertising materials mentioning features or use of this software
     15      1.14   mycroft  *    must display the following acknowledgement:
     16      1.40   mycroft  *	This product includes software developed by Charles M. Hannum.
     17      1.14   mycroft  * 4. The name of the author may not be used to endorse or promote products
     18      1.14   mycroft  *    derived from this software without specific prior written permission.
     19      1.14   mycroft  *
     20       1.1   mycroft  * Copyright (c) 1994 Jarle Greipsland
     21       1.1   mycroft  * All rights reserved.
     22       1.1   mycroft  *
     23       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     24       1.1   mycroft  * modification, are permitted provided that the following conditions
     25       1.1   mycroft  * are met:
     26       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     27       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     28       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     29       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     30       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     31      1.33   mycroft  * 3. The name of the author may not be used to endorse or promote products
     32       1.1   mycroft  *    derived from this software without specific prior written permission.
     33       1.1   mycroft  *
     34       1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     35       1.1   mycroft  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     36       1.1   mycroft  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     37       1.1   mycroft  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     38       1.1   mycroft  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     39       1.1   mycroft  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     40       1.1   mycroft  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     41       1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     42       1.1   mycroft  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     43       1.1   mycroft  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     44       1.1   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     45       1.1   mycroft  */
     46       1.1   mycroft 
     47       1.1   mycroft /*
     48       1.1   mycroft  * Acknowledgements: Many of the algorithms used in this driver are
     49       1.1   mycroft  * inspired by the work of Julian Elischer (julian (at) tfs.com) and
     50       1.1   mycroft  * Charles Hannum (mycroft (at) duality.gnu.ai.mit.edu).  Thanks a million!
     51       1.1   mycroft  */
     52       1.1   mycroft 
     53       1.1   mycroft /* TODO list:
     54       1.1   mycroft  * 1) Get the DMA stuff working.
     55       1.1   mycroft  * 2) Get the iov/uio stuff working. Is this a good thing ???
     56      1.33   mycroft  * 3) Get the synch stuff working.
     57       1.1   mycroft  * 4) Rewrite it to use malloc for the acb structs instead of static alloc.?
     58       1.1   mycroft  */
     59       1.1   mycroft 
     60  1.70.6.3   nathanw #include <sys/cdefs.h>
     61  1.70.6.5   nathanw __KERNEL_RCSID(0, "$NetBSD: aic6360.c,v 1.70.6.5 2002/04/17 00:05:31 nathanw Exp $");
     62  1.70.6.3   nathanw 
     63  1.70.6.3   nathanw #include "opt_ddb.h"
     64  1.70.6.3   nathanw #ifdef DDB
     65  1.70.6.3   nathanw #define	integrate
     66  1.70.6.3   nathanw #else
     67  1.70.6.3   nathanw #define	integrate	static inline
     68  1.70.6.3   nathanw #endif
     69  1.70.6.3   nathanw 
     70       1.1   mycroft /*
     71       1.1   mycroft  * A few customizable items:
     72       1.1   mycroft  */
     73       1.1   mycroft 
     74      1.33   mycroft /* Use doubleword transfers to/from SCSI chip.  Note: This requires
     75       1.1   mycroft  * motherboard support.  Basicly, some motherboard chipsets are able to
     76       1.1   mycroft  * split a 32 bit I/O operation into two 16 bit I/O operations,
     77       1.1   mycroft  * transparently to the processor.  This speeds up some things, notably long
     78       1.1   mycroft  * data transfers.
     79       1.1   mycroft  */
     80      1.14   mycroft #define AIC_USE_DWORDS		0
     81       1.1   mycroft 
     82      1.14   mycroft /* Synchronous data transfers? */
     83      1.47   mycroft #define AIC_USE_SYNCHRONOUS	0
     84      1.29   mycroft #define AIC_SYNC_REQ_ACK_OFS 	8
     85       1.1   mycroft 
     86      1.14   mycroft /* Wide data transfers? */
     87      1.14   mycroft #define	AIC_USE_WIDE		0
     88      1.14   mycroft #define	AIC_MAX_WIDTH		0
     89      1.14   mycroft 
     90       1.1   mycroft /* Max attempts made to transmit a message */
     91       1.1   mycroft #define AIC_MSG_MAX_ATTEMPT	3 /* Not used now XXX */
     92       1.1   mycroft 
     93       1.1   mycroft /* Use DMA (else we do programmed I/O using string instructions) (not yet!)*/
     94       1.1   mycroft #define AIC_USE_EISA_DMA	0
     95       1.1   mycroft #define AIC_USE_ISA_DMA		0
     96       1.1   mycroft 
     97       1.1   mycroft /* How to behave on the (E)ISA bus when/if DMAing (on<<4) + off in us */
     98       1.1   mycroft #define EISA_BRST_TIM ((15<<4) + 1)	/* 15us on, 1us off */
     99       1.1   mycroft 
    100       1.1   mycroft /* Some spin loop parameters (essentially how long to wait some places)
    101       1.1   mycroft  * The problem(?) is that sometimes we expect either to be able to transmit a
    102       1.1   mycroft  * byte or to get a new one from the SCSI bus pretty soon.  In order to avoid
    103       1.1   mycroft  * returning from the interrupt just to get yanked back for the next byte we
    104       1.1   mycroft  * may spin in the interrupt routine waiting for this byte to come.  How long?
    105       1.1   mycroft  * This is really (SCSI) device and processor dependent.  Tuneable, I guess.
    106       1.1   mycroft  */
    107      1.21   mycroft #define AIC_MSGIN_SPIN		1 	/* Will spinwait upto ?ms for a new msg byte */
    108      1.21   mycroft #define AIC_MSGOUT_SPIN		1
    109       1.1   mycroft 
    110      1.33   mycroft /* Include debug functions?  At the end of this file there are a bunch of
    111      1.33   mycroft  * functions that will print out various information regarding queued SCSI
    112      1.33   mycroft  * commands, driver state and chip contents.  You can call them from the
    113       1.1   mycroft  * kernel debugger.  If you set AIC_DEBUG to 0 they are not included (the
    114       1.1   mycroft  * kernel uses less memory) but you lose the debugging facilities.
    115       1.1   mycroft  */
    116      1.21   mycroft #define AIC_DEBUG		1
    117       1.1   mycroft 
    118      1.42   mycroft #define	AIC_ABORT_TIMEOUT	2000	/* time to wait for abort */
    119      1.42   mycroft 
    120       1.1   mycroft /* End of customizable parameters */
    121       1.1   mycroft 
    122       1.1   mycroft #if AIC_USE_EISA_DMA || AIC_USE_ISA_DMA
    123       1.1   mycroft #error "I said not yet! Start paying attention... grumble"
    124       1.1   mycroft #endif
    125       1.1   mycroft 
    126       1.1   mycroft #include <sys/param.h>
    127       1.1   mycroft #include <sys/systm.h>
    128      1.67   thorpej #include <sys/callout.h>
    129       1.1   mycroft #include <sys/kernel.h>
    130       1.1   mycroft #include <sys/errno.h>
    131       1.1   mycroft #include <sys/ioctl.h>
    132       1.1   mycroft #include <sys/device.h>
    133       1.1   mycroft #include <sys/buf.h>
    134       1.1   mycroft #include <sys/proc.h>
    135       1.1   mycroft #include <sys/user.h>
    136       1.1   mycroft #include <sys/queue.h>
    137       1.1   mycroft 
    138      1.56     enami #include <machine/bus.h>
    139      1.46   mycroft #include <machine/intr.h>
    140       1.1   mycroft 
    141      1.53    bouyer #include <dev/scsipi/scsi_all.h>
    142      1.53    bouyer #include <dev/scsipi/scsipi_all.h>
    143      1.53    bouyer #include <dev/scsipi/scsi_message.h>
    144      1.53    bouyer #include <dev/scsipi/scsiconf.h>
    145       1.1   mycroft 
    146      1.54  christos #include <dev/ic/aic6360reg.h>
    147      1.54  christos #include <dev/ic/aic6360var.h>
    148       1.1   mycroft 
    149      1.35   thorpej #ifndef DDB
    150       1.1   mycroft #define	Debugger() panic("should call debugger here (aic6360.c)")
    151      1.35   thorpej #endif /* ! DDB */
    152       1.1   mycroft 
    153       1.1   mycroft #if AIC_DEBUG
    154      1.45  christos int aic_debug = 0x00; /* AIC_SHOWSTART|AIC_SHOWMISC|AIC_SHOWTRACE; */
    155       1.1   mycroft #endif
    156       1.1   mycroft 
    157  1.70.6.1   nathanw void	aic_minphys(struct buf *);
    158  1.70.6.1   nathanw void	aic_done(struct aic_softc *, struct aic_acb *);
    159  1.70.6.1   nathanw void	aic_dequeue(struct aic_softc *, struct aic_acb *);
    160  1.70.6.1   nathanw void	aic_scsipi_request(struct scsipi_channel *, scsipi_adapter_req_t,
    161  1.70.6.1   nathanw 			    void *);
    162  1.70.6.1   nathanw int	aic_poll(struct aic_softc *, struct scsipi_xfer *, int);
    163  1.70.6.1   nathanw integrate void	aic_sched_msgout(struct aic_softc *, u_char);
    164  1.70.6.1   nathanw integrate void	aic_setsync(struct aic_softc *, struct aic_tinfo *);
    165  1.70.6.1   nathanw void	aic_select(struct aic_softc *, struct aic_acb *);
    166  1.70.6.1   nathanw void	aic_timeout(void *);
    167  1.70.6.1   nathanw void	aic_sched(struct aic_softc *);
    168  1.70.6.1   nathanw void	aic_scsi_reset(struct aic_softc *);
    169  1.70.6.1   nathanw void	aic_reset(struct aic_softc *);
    170  1.70.6.1   nathanw void	aic_free_acb(struct aic_softc *, struct aic_acb *);
    171  1.70.6.1   nathanw struct aic_acb* aic_get_acb(struct aic_softc *);
    172  1.70.6.1   nathanw int	aic_reselect(struct aic_softc *, int);
    173  1.70.6.1   nathanw void	aic_sense(struct aic_softc *, struct aic_acb *);
    174  1.70.6.1   nathanw void	aic_msgin(struct aic_softc *);
    175  1.70.6.1   nathanw void	aic_abort(struct aic_softc *, struct aic_acb *);
    176  1.70.6.1   nathanw void	aic_msgout(struct aic_softc *);
    177  1.70.6.1   nathanw int	aic_dataout_pio(struct aic_softc *, u_char *, int);
    178  1.70.6.1   nathanw int	aic_datain_pio(struct aic_softc *, u_char *, int);
    179  1.70.6.1   nathanw void	aic_update_xfer_mode(struct aic_softc *, int);
    180       1.1   mycroft #if AIC_DEBUG
    181  1.70.6.1   nathanw void	aic_print_acb(struct aic_acb *);
    182  1.70.6.1   nathanw void	aic_dump_driver(struct aic_softc *);
    183  1.70.6.1   nathanw void	aic_dump6360(struct aic_softc *);
    184  1.70.6.1   nathanw void	aic_show_scsi_cmd(struct aic_acb *);
    185  1.70.6.1   nathanw void	aic_print_active_acb(void);
    186       1.1   mycroft #endif
    187       1.1   mycroft 
    188      1.33   mycroft /*
    189       1.1   mycroft  * INITIALIZATION ROUTINES (probe, attach ++)
    190       1.1   mycroft  */
    191       1.1   mycroft 
    192      1.33   mycroft /* Do the real search-for-device.
    193      1.24   mycroft  * Prerequisite: sc->sc_iobase should be set to the proper value
    194       1.1   mycroft  */
    195       1.1   mycroft int
    196  1.70.6.1   nathanw aic_find(bus_space_tag_t iot, bus_space_handle_t ioh)
    197      1.33   mycroft {
    198       1.1   mycroft 	char chip_id[sizeof(IDSTRING)];	/* For chips that support it */
    199       1.1   mycroft 	int i;
    200      1.33   mycroft 
    201       1.1   mycroft 	/* Remove aic6360 from possible powerdown mode */
    202      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, 0);
    203       1.1   mycroft 
    204      1.33   mycroft 	/* Thanks to mark (at) aggregate.com for the new method for detecting
    205      1.33   mycroft 	 * whether the chip is present or not.  Bonus: may also work for
    206       1.1   mycroft 	 * the AIC-6260!
    207       1.1   mycroft  	 */
    208      1.54  christos 	AIC_TRACE(("aic: probing for aic-chip\n"));
    209      1.33   mycroft  	/*
    210       1.1   mycroft  	 * Linux also init's the stack to 1-16 and then clears it,
    211      1.33   mycroft      	 *  6260's don't appear to have an ID reg - mpg
    212       1.1   mycroft  	 */
    213       1.1   mycroft 	/* Push the sequence 0,1,..,15 on the stack */
    214       1.1   mycroft #define STSIZE 16
    215      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL1, 0); /* Reset stack pointer */
    216       1.2   mycroft 	for (i = 0; i < STSIZE; i++)
    217      1.54  christos 		bus_space_write_1(iot, ioh, STACK, i);
    218       1.1   mycroft 
    219       1.1   mycroft 	/* See if we can pull out the same sequence */
    220      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL1, 0);
    221      1.54  christos  	for (i = 0; i < STSIZE && bus_space_read_1(iot, ioh, STACK) == i; i++)
    222       1.1   mycroft 		;
    223       1.1   mycroft 	if (i != STSIZE) {
    224       1.1   mycroft 		AIC_START(("STACK futzed at %d.\n", i));
    225      1.54  christos 		return 0;
    226       1.1   mycroft 	}
    227       1.1   mycroft 
    228       1.1   mycroft 	/* See if we can pull the id string out of the ID register,
    229       1.1   mycroft 	 * now only used for informational purposes.
    230       1.1   mycroft 	 */
    231  1.70.6.2   nathanw 	memset(chip_id, 0, sizeof(chip_id));
    232      1.54  christos 	bus_space_read_multi_1(iot, ioh, ID, chip_id, sizeof(IDSTRING) - 1);
    233      1.54  christos 	AIC_START(("AIC found ID: %s ",chip_id));
    234      1.54  christos 	AIC_START(("chip revision %d\n",
    235      1.54  christos 	    (int)bus_space_read_1(iot, ioh, REV)));
    236      1.54  christos 
    237      1.54  christos 	return 1;
    238      1.54  christos }
    239      1.54  christos 
    240      1.54  christos /*
    241      1.54  christos  * Attach the AIC6360, fill out some high and low level data structures
    242      1.54  christos  */
    243      1.54  christos void
    244  1.70.6.1   nathanw aicattach(struct aic_softc *sc)
    245      1.54  christos {
    246  1.70.6.1   nathanw 	struct scsipi_adapter *adapt = &sc->sc_adapter;
    247  1.70.6.1   nathanw 	struct scsipi_channel *chan = &sc->sc_channel;
    248      1.54  christos 
    249      1.54  christos 	AIC_TRACE(("aicattach  "));
    250      1.54  christos 	sc->sc_state = AIC_INIT;
    251      1.27   mycroft 
    252      1.27   mycroft 	sc->sc_initiator = 7;
    253      1.27   mycroft 	sc->sc_freq = 20;	/* XXXX Assume 20 MHz. */
    254      1.27   mycroft 
    255      1.27   mycroft 	/*
    256      1.27   mycroft 	 * These are the bounds of the sync period, based on the frequency of
    257      1.27   mycroft 	 * the chip's clock input and the size and offset of the sync period
    258      1.27   mycroft 	 * register.
    259      1.27   mycroft 	 *
    260      1.27   mycroft 	 * For a 20Mhz clock, this gives us 25, or 100nS, or 10MB/s, as a
    261      1.27   mycroft 	 * maximum transfer rate, and 112.5, or 450nS, or 2.22MB/s, as a
    262      1.27   mycroft 	 * minimum transfer rate.
    263      1.27   mycroft 	 */
    264      1.27   mycroft 	sc->sc_minsync = (2 * 250) / sc->sc_freq;
    265      1.27   mycroft 	sc->sc_maxsync = (9 * 250) / sc->sc_freq;
    266      1.27   mycroft 
    267       1.1   mycroft 	/*
    268  1.70.6.1   nathanw 	 * Fill in the scsipi_adapter.
    269      1.60   thorpej 	 */
    270  1.70.6.1   nathanw 	adapt->adapt_dev = &sc->sc_dev;
    271  1.70.6.1   nathanw 	adapt->adapt_nchannels = 1;
    272  1.70.6.1   nathanw 	adapt->adapt_openings = 8;
    273  1.70.6.1   nathanw 	adapt->adapt_max_periph = 1;
    274  1.70.6.1   nathanw 	adapt->adapt_request = aic_scsipi_request;
    275  1.70.6.1   nathanw 	adapt->adapt_minphys = aic_minphys;
    276      1.60   thorpej 
    277      1.60   thorpej 	/*
    278  1.70.6.1   nathanw 	 * Fill in the scsipi_channel.
    279       1.1   mycroft 	 */
    280  1.70.6.1   nathanw 	chan->chan_adapter = adapt;
    281  1.70.6.1   nathanw 	chan->chan_bustype = &scsi_bustype;
    282  1.70.6.1   nathanw 	chan->chan_channel = 0;
    283  1.70.6.1   nathanw 	chan->chan_ntargets = 8;
    284  1.70.6.1   nathanw 	chan->chan_nluns = 8;
    285  1.70.6.1   nathanw 	chan->chan_id = sc->sc_initiator;
    286      1.21   mycroft 
    287      1.54  christos 	/*
    288      1.65     enami 	 * Add reference to adapter so that we drop the reference after
    289      1.65     enami 	 * config_found() to make sure the adatper is disabled.
    290      1.65     enami 	 */
    291  1.70.6.1   nathanw 	if (scsipi_adapter_addref(adapt) != 0) {
    292      1.65     enami 		printf("%s: unable to enable controller\n",
    293      1.65     enami 		    sc->sc_dev.dv_xname);
    294      1.65     enami 		return;
    295      1.65     enami 	}
    296      1.65     enami 
    297      1.65     enami 	aic_init(sc, 1);	/* Init chip and driver */
    298      1.65     enami 
    299      1.65     enami 	/*
    300      1.65     enami 	 * Ask the adapter what subunits are present
    301      1.54  christos 	 */
    302  1.70.6.1   nathanw 	sc->sc_child = config_found(&sc->sc_dev, &sc->sc_channel, scsiprint);
    303  1.70.6.1   nathanw 	scsipi_adapter_delref(adapt);
    304       1.1   mycroft }
    305       1.1   mycroft 
    306      1.62     enami int
    307  1.70.6.1   nathanw aic_activate(struct device *self, enum devact act)
    308      1.62     enami {
    309      1.62     enami 	struct aic_softc *sc = (struct aic_softc *) self;
    310      1.62     enami 	int s, rv = 0;
    311      1.62     enami 
    312      1.62     enami 	s = splhigh();
    313      1.62     enami 	switch (act) {
    314      1.62     enami 	case DVACT_ACTIVATE:
    315      1.62     enami 		rv = EOPNOTSUPP;
    316      1.62     enami 		break;
    317      1.62     enami 
    318      1.62     enami 	case DVACT_DEACTIVATE:
    319      1.66     enami 		if (sc->sc_child != NULL)
    320      1.62     enami 			rv = config_deactivate(sc->sc_child);
    321      1.62     enami 		break;
    322      1.62     enami 	}
    323      1.62     enami 	splx(s);
    324      1.62     enami 
    325      1.62     enami 	return (rv);
    326      1.62     enami }
    327      1.62     enami 
    328      1.62     enami int
    329  1.70.6.1   nathanw aic_detach(struct device *self, int flags)
    330      1.62     enami {
    331      1.62     enami 	struct aic_softc *sc = (struct aic_softc *) self;
    332      1.62     enami 	int rv = 0;
    333      1.62     enami 
    334      1.62     enami 	if (sc->sc_child != NULL)
    335      1.62     enami 		rv = config_detach(sc->sc_child, flags);
    336      1.62     enami 
    337      1.62     enami 	return (rv);
    338      1.62     enami }
    339       1.1   mycroft 
    340       1.1   mycroft /* Initialize AIC6360 chip itself
    341       1.1   mycroft  * The following conditions should hold:
    342      1.54  christos  * aic_isa_probe should have succeeded, i.e. the iobase address in aic_softc
    343      1.54  christos  * must be valid.
    344       1.1   mycroft  */
    345      1.27   mycroft void
    346  1.70.6.1   nathanw aic_reset(struct aic_softc *sc)
    347       1.1   mycroft {
    348      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    349      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    350       1.1   mycroft 
    351      1.54  christos 	/*
    352      1.54  christos 	 * Doc. recommends to clear these two registers before
    353      1.54  christos 	 * operations commence
    354      1.54  christos 	 */
    355      1.54  christos 	bus_space_write_1(iot, ioh, SCSITEST, 0);
    356      1.54  christos 	bus_space_write_1(iot, ioh, TEST, 0);
    357       1.1   mycroft 
    358       1.1   mycroft 	/* Reset SCSI-FIFO and abort any transfers */
    359      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | CLRCH | CLRSTCNT);
    360      1.33   mycroft 
    361       1.1   mycroft 	/* Reset DMA-FIFO */
    362      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, RSTFIFO);
    363      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL1, 0);
    364       1.1   mycroft 
    365      1.54  christos 	/* Disable all selection features */
    366      1.54  christos 	bus_space_write_1(iot, ioh, SCSISEQ, 0);
    367      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL1, 0);
    368      1.54  christos 
    369      1.54  christos 	/* Disable some interrupts */
    370      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE0, 0x00);
    371      1.54  christos 	/* Clear a slew of interrupts */
    372      1.54  christos 	bus_space_write_1(iot, ioh, CLRSINT0, 0x7f);
    373      1.54  christos 
    374      1.54  christos 	/* Disable some more interrupts */
    375      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1, 0x00);
    376      1.54  christos 	/* Clear another slew of interrupts */
    377      1.54  christos 	bus_space_write_1(iot, ioh, CLRSINT1, 0xef);
    378      1.54  christos 
    379      1.54  christos 	/* Disable synchronous transfers */
    380      1.54  christos 	bus_space_write_1(iot, ioh, SCSIRATE, 0);
    381      1.54  christos 
    382      1.54  christos 	/* Haven't seen ant errors (yet) */
    383      1.54  christos 	bus_space_write_1(iot, ioh, CLRSERR, 0x07);
    384      1.54  christos 
    385      1.54  christos 	/* Set our SCSI-ID */
    386      1.54  christos 	bus_space_write_1(iot, ioh, SCSIID, sc->sc_initiator << OID_S);
    387      1.54  christos 	bus_space_write_1(iot, ioh, BRSTCNTRL, EISA_BRST_TIM);
    388       1.1   mycroft }
    389       1.1   mycroft 
    390       1.1   mycroft /* Pull the SCSI RST line for 500 us */
    391       1.1   mycroft void
    392  1.70.6.1   nathanw aic_scsi_reset(struct aic_softc *sc)
    393       1.1   mycroft {
    394      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    395      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    396       1.1   mycroft 
    397      1.54  christos 	bus_space_write_1(iot, ioh, SCSISEQ, SCSIRSTO);
    398       1.1   mycroft 	delay(500);
    399      1.54  christos 	bus_space_write_1(iot, ioh, SCSISEQ, 0);
    400       1.1   mycroft 	delay(50);
    401       1.1   mycroft }
    402       1.1   mycroft 
    403       1.1   mycroft /*
    404      1.27   mycroft  * Initialize aic SCSI driver.
    405       1.1   mycroft  */
    406       1.1   mycroft void
    407  1.70.6.1   nathanw aic_init(struct aic_softc *sc, int bus_reset)
    408       1.1   mycroft {
    409      1.21   mycroft 	struct aic_acb *acb;
    410       1.1   mycroft 	int r;
    411      1.33   mycroft 
    412      1.62     enami 	if (bus_reset) {
    413      1.62     enami 		aic_reset(sc);
    414      1.62     enami 		aic_scsi_reset(sc);
    415      1.62     enami 	}
    416      1.27   mycroft 	aic_reset(sc);
    417       1.1   mycroft 
    418      1.42   mycroft 	if (sc->sc_state == AIC_INIT) {
    419      1.27   mycroft 		/* First time through; initialize. */
    420      1.24   mycroft 		TAILQ_INIT(&sc->ready_list);
    421      1.24   mycroft 		TAILQ_INIT(&sc->nexus_list);
    422      1.24   mycroft 		TAILQ_INIT(&sc->free_list);
    423      1.24   mycroft 		sc->sc_nexus = NULL;
    424      1.24   mycroft 		acb = sc->sc_acb;
    425  1.70.6.2   nathanw 		memset(acb, 0, sizeof(sc->sc_acb));
    426      1.24   mycroft 		for (r = 0; r < sizeof(sc->sc_acb) / sizeof(*acb); r++) {
    427      1.24   mycroft 			TAILQ_INSERT_TAIL(&sc->free_list, acb, chain);
    428       1.1   mycroft 			acb++;
    429       1.1   mycroft 		}
    430  1.70.6.2   nathanw 		memset(&sc->sc_tinfo, 0, sizeof(sc->sc_tinfo));
    431       1.2   mycroft 	} else {
    432      1.27   mycroft 		/* Cancel any active commands. */
    433      1.24   mycroft 		sc->sc_state = AIC_CLEANING;
    434      1.24   mycroft 		if ((acb = sc->sc_nexus) != NULL) {
    435      1.14   mycroft 			acb->xs->error = XS_DRIVER_STUFFUP;
    436      1.67   thorpej 			callout_stop(&acb->xs->xs_callout);
    437      1.24   mycroft 			aic_done(sc, acb);
    438       1.1   mycroft 		}
    439      1.45  christos 		while ((acb = sc->nexus_list.tqh_first) != NULL) {
    440       1.1   mycroft 			acb->xs->error = XS_DRIVER_STUFFUP;
    441      1.67   thorpej 			callout_stop(&acb->xs->xs_callout);
    442      1.24   mycroft 			aic_done(sc, acb);
    443       1.1   mycroft 		}
    444       1.1   mycroft 	}
    445      1.33   mycroft 
    446      1.24   mycroft 	sc->sc_prevphase = PH_INVALID;
    447      1.14   mycroft 	for (r = 0; r < 8; r++) {
    448      1.24   mycroft 		struct aic_tinfo *ti = &sc->sc_tinfo[r];
    449      1.14   mycroft 
    450      1.14   mycroft 		ti->flags = 0;
    451      1.27   mycroft 		ti->period = ti->offset = 0;
    452      1.27   mycroft 		ti->width = 0;
    453       1.1   mycroft 	}
    454      1.14   mycroft 
    455      1.24   mycroft 	sc->sc_state = AIC_IDLE;
    456      1.54  christos 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, DMACNTRL0, INTEN);
    457      1.14   mycroft }
    458      1.14   mycroft 
    459      1.14   mycroft void
    460  1.70.6.1   nathanw aic_free_acb(struct aic_softc *sc, struct aic_acb *acb)
    461      1.14   mycroft {
    462      1.14   mycroft 	int s;
    463      1.14   mycroft 
    464      1.21   mycroft 	s = splbio();
    465      1.41   mycroft 	acb->flags = 0;
    466      1.24   mycroft 	TAILQ_INSERT_HEAD(&sc->free_list, acb, chain);
    467      1.21   mycroft 	splx(s);
    468      1.14   mycroft }
    469      1.14   mycroft 
    470      1.21   mycroft struct aic_acb *
    471  1.70.6.1   nathanw aic_get_acb(struct aic_softc *sc)
    472      1.14   mycroft {
    473      1.36   mycroft 	struct aic_acb *acb;
    474      1.14   mycroft 	int s;
    475      1.14   mycroft 
    476      1.21   mycroft 	s = splbio();
    477  1.70.6.1   nathanw 	acb = TAILQ_FIRST(&sc->free_list);
    478  1.70.6.1   nathanw 	if (acb != NULL) {
    479      1.24   mycroft 		TAILQ_REMOVE(&sc->free_list, acb, chain);
    480      1.41   mycroft 		acb->flags |= ACB_ALLOC;
    481      1.14   mycroft 	}
    482      1.21   mycroft 	splx(s);
    483  1.70.6.1   nathanw 	return (acb);
    484       1.1   mycroft }
    485  1.70.6.1   nathanw 
    486       1.1   mycroft /*
    487       1.1   mycroft  * DRIVER FUNCTIONS CALLABLE FROM HIGHER LEVEL DRIVERS
    488       1.1   mycroft  */
    489       1.1   mycroft 
    490       1.1   mycroft /*
    491       1.1   mycroft  * Expected sequence:
    492       1.1   mycroft  * 1) Command inserted into ready list
    493       1.1   mycroft  * 2) Command selected for execution
    494       1.1   mycroft  * 3) Command won arbitration and has selected target device
    495       1.1   mycroft  * 4) Send message out (identify message, eventually also sync.negotiations)
    496       1.1   mycroft  * 5) Send command
    497       1.1   mycroft  * 5a) Receive disconnect message, disconnect.
    498       1.1   mycroft  * 5b) Reselected by target
    499       1.1   mycroft  * 5c) Receive identify message from target.
    500       1.1   mycroft  * 6) Send or receive data
    501       1.1   mycroft  * 7) Receive status
    502       1.1   mycroft  * 8) Receive message (command complete etc.)
    503       1.1   mycroft  * 9) If status == SCSI_CHECK construct a synthetic request sense SCSI cmd.
    504       1.1   mycroft  *    Repeat 2-8 (no disconnects please...)
    505       1.1   mycroft  */
    506       1.1   mycroft 
    507       1.1   mycroft /*
    508  1.70.6.1   nathanw  * Perform a request from the SCSIPI midlayer.
    509       1.1   mycroft  */
    510  1.70.6.1   nathanw void
    511  1.70.6.1   nathanw aic_scsipi_request(struct scsipi_channel *chan, scsipi_adapter_req_t req,
    512  1.70.6.1   nathanw     void *arg)
    513       1.1   mycroft {
    514  1.70.6.1   nathanw 	struct scsipi_xfer *xs;
    515  1.70.6.1   nathanw 	struct scsipi_periph *periph;
    516  1.70.6.1   nathanw 	struct aic_softc *sc = (void *)chan->chan_adapter->adapt_dev;
    517      1.21   mycroft 	struct aic_acb *acb;
    518       1.1   mycroft 	int s, flags;
    519      1.33   mycroft 
    520  1.70.6.1   nathanw 	AIC_TRACE(("aic_request  "));
    521      1.64     enami 
    522  1.70.6.1   nathanw 	switch (req) {
    523  1.70.6.1   nathanw 	case ADAPTER_REQ_RUN_XFER:
    524  1.70.6.1   nathanw 		xs = arg;
    525  1.70.6.1   nathanw 		periph = xs->xs_periph;
    526       1.1   mycroft 
    527  1.70.6.1   nathanw 		AIC_CMDS(("[0x%x, %d]->%d ", (int)xs->cmd->opcode, xs->cmdlen,
    528  1.70.6.1   nathanw 		    periph->periph_target));
    529      1.42   mycroft 
    530  1.70.6.1   nathanw 		if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0) {
    531  1.70.6.1   nathanw 			xs->error = XS_DRIVER_STUFFUP;
    532  1.70.6.1   nathanw 			scsipi_done(xs);
    533  1.70.6.1   nathanw 			return;
    534  1.70.6.1   nathanw 		}
    535      1.33   mycroft 
    536  1.70.6.1   nathanw 		flags = xs->xs_control;
    537  1.70.6.1   nathanw 		acb = aic_get_acb(sc);
    538  1.70.6.1   nathanw #ifdef DIAGNOSTIC
    539  1.70.6.1   nathanw 		/*
    540  1.70.6.1   nathanw 		 * This should never happen as we track the resources
    541  1.70.6.1   nathanw 		 * in the mid-layer.
    542  1.70.6.1   nathanw 		 */
    543  1.70.6.1   nathanw 		if (acb == NULL) {
    544  1.70.6.1   nathanw 			scsipi_printaddr(periph);
    545  1.70.6.1   nathanw 			printf("unable to allocate acb\n");
    546  1.70.6.1   nathanw 			panic("aic_scsipi_request");
    547  1.70.6.1   nathanw 		}
    548  1.70.6.1   nathanw #endif
    549       1.1   mycroft 
    550  1.70.6.1   nathanw 		/* Initialize acb */
    551  1.70.6.1   nathanw 		acb->xs = xs;
    552  1.70.6.1   nathanw 		acb->timeout = xs->timeout;
    553       1.1   mycroft 
    554  1.70.6.1   nathanw 		if (xs->xs_control & XS_CTL_RESET) {
    555  1.70.6.1   nathanw 			acb->flags |= ACB_RESET;
    556  1.70.6.1   nathanw 			acb->scsipi_cmd_length = 0;
    557  1.70.6.1   nathanw 			acb->data_length = 0;
    558  1.70.6.1   nathanw 		} else {
    559  1.70.6.2   nathanw 			memcpy(&acb->scsipi_cmd, xs->cmd, xs->cmdlen);
    560  1.70.6.1   nathanw 			acb->scsipi_cmd_length = xs->cmdlen;
    561  1.70.6.1   nathanw 			acb->data_addr = xs->data;
    562  1.70.6.1   nathanw 			acb->data_length = xs->datalen;
    563  1.70.6.1   nathanw 		}
    564  1.70.6.1   nathanw 		acb->target_stat = 0;
    565  1.70.6.1   nathanw 
    566  1.70.6.1   nathanw 		s = splbio();
    567  1.70.6.1   nathanw 
    568  1.70.6.1   nathanw 		TAILQ_INSERT_TAIL(&sc->ready_list, acb, chain);
    569  1.70.6.1   nathanw 		if (sc->sc_state == AIC_IDLE)
    570  1.70.6.1   nathanw 			aic_sched(sc);
    571      1.42   mycroft 
    572  1.70.6.1   nathanw 		splx(s);
    573      1.21   mycroft 
    574  1.70.6.1   nathanw 		if ((flags & XS_CTL_POLL) == 0)
    575  1.70.6.1   nathanw 			return;
    576  1.70.6.1   nathanw 
    577  1.70.6.1   nathanw 		/* Not allowed to use interrupts, use polling instead */
    578  1.70.6.1   nathanw 		if (aic_poll(sc, xs, acb->timeout)) {
    579      1.21   mycroft 			aic_timeout(acb);
    580  1.70.6.1   nathanw 			if (aic_poll(sc, xs, acb->timeout))
    581  1.70.6.1   nathanw 				aic_timeout(acb);
    582  1.70.6.1   nathanw 		}
    583  1.70.6.1   nathanw 		return;
    584  1.70.6.1   nathanw 
    585  1.70.6.1   nathanw 	case ADAPTER_REQ_GROW_RESOURCES:
    586  1.70.6.1   nathanw 		/* XXX Not supported. */
    587  1.70.6.1   nathanw 		return;
    588  1.70.6.1   nathanw 
    589  1.70.6.1   nathanw 	case ADAPTER_REQ_SET_XFER_MODE:
    590  1.70.6.1   nathanw 	    {
    591  1.70.6.1   nathanw 		struct aic_tinfo *ti;
    592  1.70.6.1   nathanw 		struct scsipi_xfer_mode *xm = arg;
    593  1.70.6.1   nathanw 
    594  1.70.6.1   nathanw 		ti = &sc->sc_tinfo[xm->xm_target];
    595  1.70.6.1   nathanw 		ti->flags &= ~(DO_SYNC|DO_WIDE);
    596  1.70.6.1   nathanw 		ti->period = 0;
    597  1.70.6.1   nathanw 		ti->offset = 0;
    598  1.70.6.1   nathanw 
    599  1.70.6.1   nathanw #if AIC_USE_SYNCHRONOUS
    600  1.70.6.1   nathanw 		if (xm->xm_mode & PERIPH_CAP_SYNC) {
    601  1.70.6.1   nathanw 			ti->flags |= DO_SYNC;
    602  1.70.6.1   nathanw 			ti->period = sc->sc_minsync;
    603  1.70.6.1   nathanw 			ti->offset = AIC_SYNC_REQ_ACK_OFS;
    604  1.70.6.1   nathanw 		}
    605  1.70.6.1   nathanw #endif
    606  1.70.6.1   nathanw #if AIC_USE_WIDE
    607  1.70.6.1   nathanw 		if (xm->xm_mode & PERIPH_CAP_WIDE16) {
    608  1.70.6.1   nathanw 			ti->flags |= DO_WIDE;
    609  1.70.6.1   nathanw 			ti->width = AIC_MAX_WIDTH;
    610  1.70.6.1   nathanw 		}
    611  1.70.6.1   nathanw #endif
    612  1.70.6.1   nathanw 		/*
    613  1.70.6.1   nathanw 		 * If we're not going to negotiate, send the notification
    614  1.70.6.1   nathanw 		 * now, since it won't happen later.
    615  1.70.6.1   nathanw 		 */
    616  1.70.6.1   nathanw 		if ((ti->flags & (DO_SYNC|DO_WIDE)) == 0)
    617  1.70.6.1   nathanw 			aic_update_xfer_mode(sc, xm->xm_target);
    618  1.70.6.1   nathanw 		return;
    619  1.70.6.1   nathanw 	    }
    620      1.21   mycroft 	}
    621  1.70.6.1   nathanw }
    622  1.70.6.1   nathanw 
    623  1.70.6.1   nathanw void
    624  1.70.6.1   nathanw aic_update_xfer_mode(struct aic_softc *sc, int target)
    625  1.70.6.1   nathanw {
    626  1.70.6.1   nathanw 	struct scsipi_xfer_mode xm;
    627  1.70.6.1   nathanw 	struct aic_tinfo *ti = &sc->sc_tinfo[target];
    628  1.70.6.1   nathanw 
    629  1.70.6.1   nathanw 	xm.xm_target = target;
    630  1.70.6.1   nathanw 	xm.xm_mode = 0;
    631  1.70.6.1   nathanw 	xm.xm_period = 0;
    632  1.70.6.1   nathanw 	xm.xm_offset = 0;
    633  1.70.6.1   nathanw 
    634  1.70.6.1   nathanw 	if (ti->offset != 0) {
    635  1.70.6.1   nathanw 		xm.xm_mode |= PERIPH_CAP_SYNC;
    636  1.70.6.1   nathanw 		xm.xm_period = ti->period;
    637  1.70.6.1   nathanw 		xm.xm_offset = ti->offset;
    638  1.70.6.1   nathanw 	}
    639  1.70.6.1   nathanw 	switch (ti->width) {
    640  1.70.6.1   nathanw 	case 2:
    641  1.70.6.1   nathanw 		xm.xm_mode |= PERIPH_CAP_WIDE32;
    642  1.70.6.1   nathanw 		break;
    643  1.70.6.1   nathanw 	case 1:
    644  1.70.6.1   nathanw 		xm.xm_mode |= PERIPH_CAP_WIDE16;
    645  1.70.6.1   nathanw 		break;
    646  1.70.6.1   nathanw 	}
    647  1.70.6.1   nathanw 
    648  1.70.6.1   nathanw 	scsipi_async_event(&sc->sc_channel, ASYNC_EVENT_XFER_MODE, &xm);
    649       1.1   mycroft }
    650       1.1   mycroft 
    651       1.1   mycroft /*
    652       1.1   mycroft  * Adjust transfer size in buffer structure
    653       1.1   mycroft  */
    654      1.33   mycroft void
    655  1.70.6.1   nathanw aic_minphys(struct buf *bp)
    656       1.1   mycroft {
    657       1.2   mycroft 
    658      1.14   mycroft 	AIC_TRACE(("aic_minphys  "));
    659       1.2   mycroft 	if (bp->b_bcount > (AIC_NSEG << PGSHIFT))
    660       1.2   mycroft 		bp->b_bcount = (AIC_NSEG << PGSHIFT);
    661      1.33   mycroft 	minphys(bp);
    662       1.1   mycroft }
    663       1.1   mycroft 
    664       1.1   mycroft /*
    665       1.1   mycroft  * Used when interrupt driven I/O isn't allowed, e.g. during boot.
    666       1.1   mycroft  */
    667       1.1   mycroft int
    668  1.70.6.1   nathanw aic_poll(struct aic_softc *sc, struct scsipi_xfer *xs, int count)
    669       1.1   mycroft {
    670      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    671      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    672       1.1   mycroft 
    673      1.14   mycroft 	AIC_TRACE(("aic_poll  "));
    674       1.1   mycroft 	while (count) {
    675      1.21   mycroft 		/*
    676      1.21   mycroft 		 * If we had interrupts enabled, would we
    677      1.21   mycroft 		 * have got an interrupt?
    678      1.21   mycroft 		 */
    679      1.54  christos 		if ((bus_space_read_1(iot, ioh, DMASTAT) & INTSTAT) != 0)
    680      1.24   mycroft 			aicintr(sc);
    681      1.63   thorpej 		if ((xs->xs_status & XS_STS_DONE) != 0)
    682      1.21   mycroft 			return 0;
    683      1.21   mycroft 		delay(1000);
    684       1.1   mycroft 		count--;
    685       1.1   mycroft 	}
    686      1.21   mycroft 	return 1;
    687       1.1   mycroft }
    688  1.70.6.1   nathanw 
    689      1.14   mycroft /*
    690      1.27   mycroft  * LOW LEVEL SCSI UTILITIES
    691      1.27   mycroft  */
    692      1.27   mycroft 
    693      1.40   mycroft integrate void
    694  1.70.6.1   nathanw aic_sched_msgout(struct aic_softc *sc, u_char m)
    695      1.40   mycroft {
    696      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    697      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    698      1.40   mycroft 
    699      1.40   mycroft 	if (sc->sc_msgpriq == 0)
    700      1.54  christos 		bus_space_write_1(iot, ioh, SCSISIG, sc->sc_phase | ATNO);
    701      1.40   mycroft 	sc->sc_msgpriq |= m;
    702      1.40   mycroft }
    703      1.27   mycroft 
    704      1.28   mycroft /*
    705      1.28   mycroft  * Set synchronous transfer offset and period.
    706      1.28   mycroft  */
    707  1.70.6.1   nathanw #if !AIC_USE_SYNCHRONOUS
    708  1.70.6.1   nathanw /* ARGSUSED */
    709  1.70.6.1   nathanw #endif
    710      1.40   mycroft integrate void
    711  1.70.6.1   nathanw aic_setsync(struct aic_softc *sc, struct aic_tinfo *ti)
    712      1.28   mycroft {
    713      1.40   mycroft #if AIC_USE_SYNCHRONOUS
    714      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    715      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    716      1.28   mycroft 
    717      1.28   mycroft 	if (ti->offset != 0)
    718      1.54  christos 		bus_space_write_1(iot, ioh, SCSIRATE,
    719      1.28   mycroft 		    ((ti->period * sc->sc_freq) / 250 - 2) << 4 | ti->offset);
    720      1.28   mycroft 	else
    721      1.54  christos 		bus_space_write_1(iot, ioh, SCSIRATE, 0);
    722      1.40   mycroft #endif
    723      1.28   mycroft }
    724      1.28   mycroft 
    725      1.27   mycroft /*
    726      1.14   mycroft  * Start a selection.  This is used by aic_sched() to select an idle target,
    727      1.14   mycroft  * and by aic_done() to immediately reselect a target to get sense information.
    728      1.14   mycroft  */
    729      1.14   mycroft void
    730  1.70.6.1   nathanw aic_select(struct aic_softc *sc, struct aic_acb *acb)
    731      1.14   mycroft {
    732  1.70.6.1   nathanw 	struct scsipi_periph *periph = acb->xs->xs_periph;
    733  1.70.6.1   nathanw 	int target = periph->periph_target;
    734      1.24   mycroft 	struct aic_tinfo *ti = &sc->sc_tinfo[target];
    735      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    736      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    737       1.1   mycroft 
    738      1.54  christos 	bus_space_write_1(iot, ioh, SCSIID,
    739      1.54  christos 	    sc->sc_initiator << OID_S | target);
    740      1.28   mycroft 	aic_setsync(sc, ti);
    741      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL1, STIMO_256ms | ENSTIMER);
    742      1.27   mycroft 
    743      1.14   mycroft 	/* Always enable reselections. */
    744      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE0, ENSELDI | ENSELDO);
    745      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1, ENSCSIRST | ENSELTIMO);
    746      1.54  christos 	bus_space_write_1(iot, ioh, SCSISEQ, ENRESELI | ENSELO | ENAUTOATNO);
    747      1.14   mycroft 
    748      1.24   mycroft 	sc->sc_state = AIC_SELECTING;
    749      1.14   mycroft }
    750      1.27   mycroft 
    751      1.27   mycroft int
    752  1.70.6.1   nathanw aic_reselect(struct aic_softc *sc, int message)
    753      1.27   mycroft {
    754      1.27   mycroft 	u_char selid, target, lun;
    755      1.27   mycroft 	struct aic_acb *acb;
    756  1.70.6.1   nathanw 	struct scsipi_periph *periph;
    757      1.27   mycroft 	struct aic_tinfo *ti;
    758      1.27   mycroft 
    759      1.27   mycroft 	/*
    760      1.27   mycroft 	 * The SCSI chip made a snapshot of the data bus while the reselection
    761      1.27   mycroft 	 * was being negotiated.  This enables us to determine which target did
    762      1.27   mycroft 	 * the reselect.
    763      1.27   mycroft 	 */
    764      1.27   mycroft 	selid = sc->sc_selid & ~(1 << sc->sc_initiator);
    765      1.27   mycroft 	if (selid & (selid - 1)) {
    766      1.54  christos 		printf("%s: reselect with invalid selid %02x; "
    767      1.54  christos 		    "sending DEVICE RESET\n", sc->sc_dev.dv_xname, selid);
    768      1.27   mycroft 		AIC_BREAK();
    769      1.27   mycroft 		goto reset;
    770      1.27   mycroft 	}
    771      1.27   mycroft 
    772      1.27   mycroft 	/* Search wait queue for disconnected cmd
    773      1.27   mycroft 	 * The list should be short, so I haven't bothered with
    774      1.27   mycroft 	 * any more sophisticated structures than a simple
    775      1.33   mycroft 	 * singly linked list.
    776      1.27   mycroft 	 */
    777      1.27   mycroft 	target = ffs(selid) - 1;
    778      1.27   mycroft 	lun = message & 0x07;
    779      1.27   mycroft 	for (acb = sc->nexus_list.tqh_first; acb != NULL;
    780      1.27   mycroft 	     acb = acb->chain.tqe_next) {
    781  1.70.6.1   nathanw 		periph = acb->xs->xs_periph;
    782  1.70.6.1   nathanw 		if (periph->periph_target == target &&
    783  1.70.6.1   nathanw 		    periph->periph_lun == lun)
    784      1.27   mycroft 			break;
    785      1.27   mycroft 	}
    786      1.27   mycroft 	if (acb == NULL) {
    787      1.54  christos 		printf("%s: reselect from target %d lun %d with no nexus; "
    788      1.54  christos 		    "sending ABORT\n", sc->sc_dev.dv_xname, target, lun);
    789      1.27   mycroft 		AIC_BREAK();
    790      1.27   mycroft 		goto abort;
    791      1.27   mycroft 	}
    792      1.27   mycroft 
    793      1.27   mycroft 	/* Make this nexus active again. */
    794      1.27   mycroft 	TAILQ_REMOVE(&sc->nexus_list, acb, chain);
    795      1.27   mycroft 	sc->sc_state = AIC_CONNECTED;
    796      1.27   mycroft 	sc->sc_nexus = acb;
    797      1.27   mycroft 	ti = &sc->sc_tinfo[target];
    798      1.27   mycroft 	ti->lubusy |= (1 << lun);
    799      1.28   mycroft 	aic_setsync(sc, ti);
    800      1.27   mycroft 
    801      1.42   mycroft 	if (acb->flags & ACB_RESET)
    802      1.42   mycroft 		aic_sched_msgout(sc, SEND_DEV_RESET);
    803      1.42   mycroft 	else if (acb->flags & ACB_ABORT)
    804      1.42   mycroft 		aic_sched_msgout(sc, SEND_ABORT);
    805      1.42   mycroft 
    806      1.27   mycroft 	/* Do an implicit RESTORE POINTERS. */
    807      1.27   mycroft 	sc->sc_dp = acb->data_addr;
    808      1.27   mycroft 	sc->sc_dleft = acb->data_length;
    809      1.53    bouyer 	sc->sc_cp = (u_char *)&acb->scsipi_cmd;
    810      1.53    bouyer 	sc->sc_cleft = acb->scsipi_cmd_length;
    811      1.27   mycroft 
    812      1.27   mycroft 	return (0);
    813      1.27   mycroft 
    814      1.27   mycroft reset:
    815      1.40   mycroft 	aic_sched_msgout(sc, SEND_DEV_RESET);
    816      1.27   mycroft 	return (1);
    817      1.27   mycroft 
    818      1.27   mycroft abort:
    819      1.40   mycroft 	aic_sched_msgout(sc, SEND_ABORT);
    820      1.27   mycroft 	return (1);
    821      1.27   mycroft }
    822  1.70.6.1   nathanw 
    823      1.14   mycroft /*
    824      1.14   mycroft  * Schedule a SCSI operation.  This has now been pulled out of the interrupt
    825  1.70.6.1   nathanw  * handler so that we may call it from aic_scsipi_request and aic_done.  This
    826  1.70.6.1   nathanw  * may save us an unecessary interrupt just to get things going.  Should only
    827  1.70.6.1   nathanw  * be called when state == AIC_IDLE and at bio pl.
    828       1.1   mycroft  */
    829       1.1   mycroft void
    830  1.70.6.1   nathanw aic_sched(struct aic_softc *sc)
    831       1.1   mycroft {
    832      1.21   mycroft 	struct aic_acb *acb;
    833  1.70.6.1   nathanw 	struct scsipi_periph *periph;
    834      1.14   mycroft 	struct aic_tinfo *ti;
    835      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    836      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    837      1.33   mycroft 
    838      1.66     enami 	if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
    839      1.64     enami 		return;
    840      1.64     enami 
    841       1.1   mycroft 	/*
    842      1.14   mycroft 	 * Find first acb in ready queue that is for a target/lunit pair that
    843      1.14   mycroft 	 * is not busy.
    844       1.1   mycroft 	 */
    845      1.54  christos 	bus_space_write_1(iot, ioh, CLRSINT1,
    846      1.54  christos 	    CLRSELTIMO | CLRBUSFREE | CLRSCSIPERR);
    847      1.24   mycroft 	for (acb = sc->ready_list.tqh_first; acb != NULL;
    848      1.18   mycroft 	    acb = acb->chain.tqe_next) {
    849  1.70.6.1   nathanw 		periph = acb->xs->xs_periph;
    850  1.70.6.1   nathanw 		ti = &sc->sc_tinfo[periph->periph_target];
    851  1.70.6.1   nathanw 		if ((ti->lubusy & (1 << periph->periph_lun)) == 0) {
    852      1.24   mycroft 			AIC_MISC(("selecting %d:%d  ",
    853  1.70.6.1   nathanw 			    periph->periph_target, periph->periph_lun));
    854      1.24   mycroft 			TAILQ_REMOVE(&sc->ready_list, acb, chain);
    855      1.24   mycroft 			sc->sc_nexus = acb;
    856      1.24   mycroft 			aic_select(sc, acb);
    857      1.14   mycroft 			return;
    858       1.1   mycroft 		} else
    859      1.24   mycroft 			AIC_MISC(("%d:%d busy\n",
    860  1.70.6.1   nathanw 			    periph->periph_target, periph->periph_lun));
    861       1.1   mycroft 	}
    862      1.14   mycroft 	AIC_MISC(("idle  "));
    863      1.14   mycroft 	/* Nothing to start; just enable reselections and wait. */
    864      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE0, ENSELDI);
    865      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1, ENSCSIRST);
    866      1.54  christos 	bus_space_write_1(iot, ioh, SCSISEQ, ENRESELI);
    867       1.1   mycroft }
    868  1.70.6.1   nathanw 
    869      1.41   mycroft void
    870  1.70.6.1   nathanw aic_sense(struct aic_softc *sc, struct aic_acb *acb)
    871      1.41   mycroft {
    872      1.53    bouyer 	struct scsipi_xfer *xs = acb->xs;
    873  1.70.6.1   nathanw 	struct scsipi_periph *periph = xs->xs_periph;
    874  1.70.6.1   nathanw 	struct aic_tinfo *ti = &sc->sc_tinfo[periph->periph_target];
    875      1.53    bouyer 	struct scsipi_sense *ss = (void *)&acb->scsipi_cmd;
    876      1.41   mycroft 
    877      1.41   mycroft 	AIC_MISC(("requesting sense  "));
    878      1.41   mycroft 	/* Next, setup a request sense command block */
    879  1.70.6.2   nathanw 	memset(ss, 0, sizeof(*ss));
    880      1.41   mycroft 	ss->opcode = REQUEST_SENSE;
    881  1.70.6.1   nathanw 	ss->byte2 = periph->periph_lun << 5;
    882      1.53    bouyer 	ss->length = sizeof(struct scsipi_sense_data);
    883      1.53    bouyer 	acb->scsipi_cmd_length = sizeof(*ss);
    884      1.53    bouyer 	acb->data_addr = (char *)&xs->sense.scsi_sense;
    885      1.53    bouyer 	acb->data_length = sizeof(struct scsipi_sense_data);
    886      1.41   mycroft 	acb->flags |= ACB_SENSE;
    887      1.41   mycroft 	ti->senses++;
    888      1.41   mycroft 	if (acb->flags & ACB_NEXUS)
    889  1.70.6.1   nathanw 		ti->lubusy &= ~(1 << periph->periph_lun);
    890      1.41   mycroft 	if (acb == sc->sc_nexus) {
    891      1.41   mycroft 		aic_select(sc, acb);
    892      1.41   mycroft 	} else {
    893      1.41   mycroft 		aic_dequeue(sc, acb);
    894      1.41   mycroft 		TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
    895      1.41   mycroft 		if (sc->sc_state == AIC_IDLE)
    896      1.41   mycroft 			aic_sched(sc);
    897      1.41   mycroft 	}
    898      1.41   mycroft }
    899      1.41   mycroft 
    900       1.1   mycroft /*
    901       1.1   mycroft  * POST PROCESSING OF SCSI_CMD (usually current)
    902       1.1   mycroft  */
    903       1.1   mycroft void
    904  1.70.6.1   nathanw aic_done(struct aic_softc *sc, struct aic_acb *acb)
    905       1.1   mycroft {
    906      1.53    bouyer 	struct scsipi_xfer *xs = acb->xs;
    907  1.70.6.1   nathanw 	struct scsipi_periph *periph = xs->xs_periph;
    908  1.70.6.1   nathanw 	struct aic_tinfo *ti = &sc->sc_tinfo[periph->periph_target];
    909       1.1   mycroft 
    910      1.14   mycroft 	AIC_TRACE(("aic_done  "));
    911       1.1   mycroft 
    912       1.1   mycroft 	/*
    913      1.33   mycroft 	 * Now, if we've come here with no error code, i.e. we've kept the
    914       1.1   mycroft 	 * initial XS_NOERROR, and the status code signals that we should
    915      1.33   mycroft 	 * check sense, we'll need to set up a request sense cmd block and
    916      1.33   mycroft 	 * push the command back into the ready queue *before* any other
    917       1.1   mycroft 	 * commands for this target/lunit, else we lose the sense info.
    918       1.1   mycroft 	 * We don't support chk sense conditions for the request sense cmd.
    919       1.1   mycroft 	 */
    920      1.21   mycroft 	if (xs->error == XS_NOERROR) {
    921      1.41   mycroft 		if (acb->flags & ACB_ABORT) {
    922      1.21   mycroft 			xs->error = XS_DRIVER_STUFFUP;
    923      1.41   mycroft 		} else if (acb->flags & ACB_SENSE) {
    924      1.21   mycroft 			xs->error = XS_SENSE;
    925      1.21   mycroft 		} else if (acb->target_stat == SCSI_CHECK) {
    926       1.1   mycroft 			/* First, save the return values */
    927      1.21   mycroft 			xs->resid = acb->data_length;
    928      1.21   mycroft 			xs->status = acb->target_stat;
    929      1.41   mycroft 			aic_sense(sc, acb);
    930       1.1   mycroft 			return;
    931      1.21   mycroft 		} else {
    932      1.21   mycroft 			xs->resid = acb->data_length;
    933       1.1   mycroft 		}
    934       1.1   mycroft 	}
    935      1.33   mycroft 
    936       1.1   mycroft #if AIC_DEBUG
    937      1.14   mycroft 	if ((aic_debug & AIC_SHOWMISC) != 0) {
    938      1.14   mycroft 		if (xs->resid != 0)
    939      1.51  christos 			printf("resid=%d ", xs->resid);
    940       1.1   mycroft 		if (xs->error == XS_SENSE)
    941      1.53    bouyer 			printf("sense=0x%02x\n", xs->sense.scsi_sense.error_code);
    942      1.14   mycroft 		else
    943      1.51  christos 			printf("error=%d\n", xs->error);
    944       1.1   mycroft 	}
    945       1.1   mycroft #endif
    946       1.1   mycroft 
    947       1.1   mycroft 	/*
    948      1.41   mycroft 	 * Remove the ACB from whatever queue it happens to be on.
    949       1.1   mycroft 	 */
    950      1.41   mycroft 	if (acb->flags & ACB_NEXUS)
    951  1.70.6.1   nathanw 		ti->lubusy &= ~(1 << periph->periph_lun);
    952      1.24   mycroft 	if (acb == sc->sc_nexus) {
    953      1.42   mycroft 		sc->sc_nexus = NULL;
    954      1.24   mycroft 		sc->sc_state = AIC_IDLE;
    955      1.24   mycroft 		aic_sched(sc);
    956      1.21   mycroft 	} else
    957      1.24   mycroft 		aic_dequeue(sc, acb);
    958      1.21   mycroft 
    959  1.70.6.1   nathanw 	aic_free_acb(sc, acb);
    960      1.21   mycroft 	ti->cmds++;
    961      1.53    bouyer 	scsipi_done(xs);
    962      1.21   mycroft }
    963      1.21   mycroft 
    964      1.21   mycroft void
    965  1.70.6.1   nathanw aic_dequeue(struct aic_softc *sc, struct aic_acb *acb)
    966      1.21   mycroft {
    967      1.21   mycroft 
    968      1.41   mycroft 	if (acb->flags & ACB_NEXUS) {
    969      1.41   mycroft 		TAILQ_REMOVE(&sc->nexus_list, acb, chain);
    970      1.41   mycroft 	} else {
    971      1.24   mycroft 		TAILQ_REMOVE(&sc->ready_list, acb, chain);
    972       1.1   mycroft 	}
    973       1.1   mycroft }
    974  1.70.6.1   nathanw 
    975       1.1   mycroft /*
    976       1.1   mycroft  * INTERRUPT/PROTOCOL ENGINE
    977       1.1   mycroft  */
    978       1.1   mycroft 
    979      1.14   mycroft /*
    980      1.14   mycroft  * Precondition:
    981       1.1   mycroft  * The SCSI bus is already in the MSGI phase and there is a message byte
    982       1.1   mycroft  * on the bus, along with an asserted REQ signal.
    983       1.1   mycroft  */
    984      1.41   mycroft void
    985  1.70.6.1   nathanw aic_msgin(struct aic_softc *sc)
    986       1.1   mycroft {
    987      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
    988      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
    989      1.27   mycroft 	u_char sstat1;
    990      1.14   mycroft 	int n;
    991      1.14   mycroft 
    992      1.14   mycroft 	AIC_TRACE(("aic_msgin  "));
    993      1.14   mycroft 
    994      1.24   mycroft 	if (sc->sc_prevphase == PH_MSGIN) {
    995      1.14   mycroft 		/* This is a continuation of the previous message. */
    996      1.24   mycroft 		n = sc->sc_imp - sc->sc_imess;
    997      1.14   mycroft 		goto nextbyte;
    998       1.1   mycroft 	}
    999      1.14   mycroft 
   1000      1.14   mycroft 	/* This is a new MESSAGE IN phase.  Clean up our state. */
   1001      1.24   mycroft 	sc->sc_flags &= ~AIC_DROP_MSGIN;
   1002      1.14   mycroft 
   1003      1.14   mycroft nextmsg:
   1004      1.14   mycroft 	n = 0;
   1005      1.24   mycroft 	sc->sc_imp = &sc->sc_imess[n];
   1006      1.14   mycroft 
   1007      1.14   mycroft nextbyte:
   1008      1.33   mycroft 	/*
   1009      1.33   mycroft 	 * Read a whole message, but don't ack the last byte.  If we reject the
   1010      1.14   mycroft 	 * message, we have to assert ATN during the message transfer phase
   1011      1.14   mycroft 	 * itself.
   1012       1.1   mycroft 	 */
   1013       1.2   mycroft 	for (;;) {
   1014      1.16   mycroft 		for (;;) {
   1015      1.54  christos 			sstat1 = bus_space_read_1(iot, ioh, SSTAT1);
   1016      1.43   mycroft 			if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0)
   1017      1.27   mycroft 				break;
   1018      1.27   mycroft 			/* Wait for REQINIT.  XXX Need timeout. */
   1019      1.27   mycroft 		}
   1020      1.40   mycroft 		if ((sstat1 & (PHASECHG | BUSFREE)) != 0) {
   1021      1.27   mycroft 			/*
   1022      1.27   mycroft 			 * Target left MESSAGE IN, probably because it
   1023      1.27   mycroft 			 * a) noticed our ATN signal, or
   1024      1.27   mycroft 			 * b) ran out of messages.
   1025      1.27   mycroft 			 */
   1026      1.41   mycroft 			goto out;
   1027      1.27   mycroft 		}
   1028      1.27   mycroft 
   1029      1.27   mycroft 		/* If parity error, just dump everything on the floor. */
   1030      1.27   mycroft 		if ((sstat1 & SCSIPERR) != 0) {
   1031      1.27   mycroft 			sc->sc_flags |= AIC_DROP_MSGIN;
   1032      1.40   mycroft 			aic_sched_msgout(sc, SEND_PARITY_ERROR);
   1033       1.1   mycroft 		}
   1034      1.14   mycroft 
   1035      1.14   mycroft 		/* Gather incoming message bytes if needed. */
   1036      1.24   mycroft 		if ((sc->sc_flags & AIC_DROP_MSGIN) == 0) {
   1037      1.14   mycroft 			if (n >= AIC_MAX_MSG_LEN) {
   1038      1.54  christos 				(void) bus_space_read_1(iot, ioh, SCSIDAT);
   1039      1.24   mycroft 				sc->sc_flags |= AIC_DROP_MSGIN;
   1040      1.40   mycroft 				aic_sched_msgout(sc, SEND_REJECT);
   1041      1.14   mycroft 			} else {
   1042      1.54  christos 				*sc->sc_imp++ = bus_space_read_1(iot, ioh,
   1043      1.54  christos 				    SCSIDAT);
   1044      1.14   mycroft 				n++;
   1045      1.14   mycroft 				/*
   1046      1.14   mycroft 				 * This testing is suboptimal, but most
   1047      1.14   mycroft 				 * messages will be of the one byte variety, so
   1048      1.14   mycroft 				 * it should not affect performance
   1049      1.14   mycroft 				 * significantly.
   1050      1.14   mycroft 				 */
   1051  1.70.6.3   nathanw 				if (n == 1 && MSG_IS1BYTE(sc->sc_imess[0]))
   1052      1.14   mycroft 					break;
   1053  1.70.6.3   nathanw 				if (n == 2 && MSG_IS2BYTE(sc->sc_imess[0]))
   1054      1.14   mycroft 					break;
   1055  1.70.6.3   nathanw 				if (n >= 3 && MSG_ISEXTENDED(sc->sc_imess[0]) &&
   1056      1.24   mycroft 				    n == sc->sc_imess[1] + 2)
   1057      1.14   mycroft 					break;
   1058       1.1   mycroft 			}
   1059      1.27   mycroft 		} else
   1060      1.54  christos 			(void) bus_space_read_1(iot, ioh, SCSIDAT);
   1061      1.14   mycroft 
   1062      1.14   mycroft 		/*
   1063      1.14   mycroft 		 * If we reach this spot we're either:
   1064      1.14   mycroft 		 * a) in the middle of a multi-byte message, or
   1065      1.14   mycroft 		 * b) dropping bytes.
   1066       1.1   mycroft 		 */
   1067      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | SPIOEN);
   1068      1.14   mycroft 		/* Ack the last byte read. */
   1069      1.54  christos 		(void) bus_space_read_1(iot, ioh, SCSIDAT);
   1070      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   1071      1.54  christos 		while ((bus_space_read_1(iot, ioh, SCSISIG) & ACKI) != 0)
   1072      1.21   mycroft 			;
   1073      1.14   mycroft 	}
   1074      1.14   mycroft 
   1075      1.24   mycroft 	AIC_MISC(("n=%d imess=0x%02x  ", n, sc->sc_imess[0]));
   1076      1.14   mycroft 
   1077      1.14   mycroft 	/* We now have a complete message.  Parse it. */
   1078      1.24   mycroft 	switch (sc->sc_state) {
   1079      1.21   mycroft 		struct aic_acb *acb;
   1080  1.70.6.1   nathanw 		struct scsipi_periph *periph;
   1081      1.14   mycroft 		struct aic_tinfo *ti;
   1082       1.1   mycroft 
   1083      1.14   mycroft 	case AIC_CONNECTED:
   1084      1.24   mycroft 		AIC_ASSERT(sc->sc_nexus != NULL);
   1085      1.24   mycroft 		acb = sc->sc_nexus;
   1086  1.70.6.1   nathanw 		ti = &sc->sc_tinfo[acb->xs->xs_periph->periph_target];
   1087       1.1   mycroft 
   1088      1.24   mycroft 		switch (sc->sc_imess[0]) {
   1089       1.1   mycroft 		case MSG_CMDCOMPLETE:
   1090      1.24   mycroft 			if (sc->sc_dleft < 0) {
   1091  1.70.6.1   nathanw 				periph = acb->xs->xs_periph;
   1092      1.70      matt 				printf("%s: %ld extra bytes from %d:%d\n",
   1093  1.70.6.1   nathanw 				    sc->sc_dev.dv_xname, (long)-sc->sc_dleft,
   1094  1.70.6.1   nathanw 				    periph->periph_target,
   1095  1.70.6.1   nathanw 				    periph->periph_lun);
   1096      1.21   mycroft 				acb->data_length = 0;
   1097       1.1   mycroft 			}
   1098      1.24   mycroft 			acb->xs->resid = acb->data_length = sc->sc_dleft;
   1099      1.24   mycroft 			sc->sc_state = AIC_CMDCOMPLETE;
   1100       1.1   mycroft 			break;
   1101      1.14   mycroft 
   1102      1.14   mycroft 		case MSG_PARITY_ERROR:
   1103      1.14   mycroft 			/* Resend the last message. */
   1104      1.40   mycroft 			aic_sched_msgout(sc, sc->sc_lastmsg);
   1105      1.14   mycroft 			break;
   1106      1.14   mycroft 
   1107       1.1   mycroft 		case MSG_MESSAGE_REJECT:
   1108      1.29   mycroft 			AIC_MISC(("message rejected %02x  ", sc->sc_lastmsg));
   1109      1.29   mycroft 			switch (sc->sc_lastmsg) {
   1110      1.28   mycroft #if AIC_USE_SYNCHRONOUS + AIC_USE_WIDE
   1111      1.14   mycroft 			case SEND_IDENTIFY:
   1112      1.40   mycroft 				ti->flags &= ~(DO_SYNC | DO_WIDE);
   1113      1.27   mycroft 				ti->period = ti->offset = 0;
   1114      1.29   mycroft 				aic_setsync(sc, ti);
   1115      1.27   mycroft 				ti->width = 0;
   1116      1.14   mycroft 				break;
   1117      1.28   mycroft #endif
   1118      1.28   mycroft #if AIC_USE_SYNCHRONOUS
   1119      1.14   mycroft 			case SEND_SDTR:
   1120      1.14   mycroft 				ti->flags &= ~DO_SYNC;
   1121      1.27   mycroft 				ti->period = ti->offset = 0;
   1122      1.29   mycroft 				aic_setsync(sc, ti);
   1123  1.70.6.1   nathanw 				aic_update_xfer_mode(sc,
   1124  1.70.6.1   nathanw 				    acb->xs->xs_periph->periph_target);
   1125      1.14   mycroft 				break;
   1126      1.28   mycroft #endif
   1127      1.28   mycroft #if AIC_USE_WIDE
   1128      1.14   mycroft 			case SEND_WDTR:
   1129      1.14   mycroft 				ti->flags &= ~DO_WIDE;
   1130      1.27   mycroft 				ti->width = 0;
   1131  1.70.6.1   nathanw 				aic_update_xfer_mode(sc,
   1132  1.70.6.1   nathanw 				    acb->xs->xs_periph->periph_target);
   1133      1.14   mycroft 				break;
   1134      1.28   mycroft #endif
   1135      1.14   mycroft 			case SEND_INIT_DET_ERR:
   1136      1.40   mycroft 				aic_sched_msgout(sc, SEND_ABORT);
   1137      1.14   mycroft 				break;
   1138       1.1   mycroft 			}
   1139       1.1   mycroft 			break;
   1140      1.14   mycroft 
   1141      1.14   mycroft 		case MSG_NOOP:
   1142      1.14   mycroft 			break;
   1143      1.14   mycroft 
   1144       1.1   mycroft 		case MSG_DISCONNECT:
   1145       1.1   mycroft 			ti->dconns++;
   1146      1.24   mycroft 			sc->sc_state = AIC_DISCONNECT;
   1147       1.1   mycroft 			break;
   1148      1.14   mycroft 
   1149       1.1   mycroft 		case MSG_SAVEDATAPOINTER:
   1150      1.24   mycroft 			acb->data_addr = sc->sc_dp;
   1151      1.24   mycroft 			acb->data_length = sc->sc_dleft;
   1152       1.1   mycroft 			break;
   1153      1.14   mycroft 
   1154       1.1   mycroft 		case MSG_RESTOREPOINTERS:
   1155      1.24   mycroft 			sc->sc_dp = acb->data_addr;
   1156      1.24   mycroft 			sc->sc_dleft = acb->data_length;
   1157      1.53    bouyer 			sc->sc_cp = (u_char *)&acb->scsipi_cmd;
   1158      1.53    bouyer 			sc->sc_cleft = acb->scsipi_cmd_length;
   1159       1.1   mycroft 			break;
   1160      1.14   mycroft 
   1161       1.1   mycroft 		case MSG_EXTENDED:
   1162      1.24   mycroft 			switch (sc->sc_imess[2]) {
   1163      1.28   mycroft #if AIC_USE_SYNCHRONOUS
   1164       1.1   mycroft 			case MSG_EXT_SDTR:
   1165      1.24   mycroft 				if (sc->sc_imess[1] != 3)
   1166      1.14   mycroft 					goto reject;
   1167      1.27   mycroft 				ti->period = sc->sc_imess[3];
   1168      1.27   mycroft 				ti->offset = sc->sc_imess[4];
   1169      1.28   mycroft 				ti->flags &= ~DO_SYNC;
   1170      1.27   mycroft 				if (ti->offset == 0) {
   1171      1.27   mycroft 				} else if (ti->period < sc->sc_minsync ||
   1172      1.27   mycroft 					   ti->period > sc->sc_maxsync ||
   1173      1.29   mycroft 					   ti->offset > 8) {
   1174      1.27   mycroft 					ti->period = ti->offset = 0;
   1175      1.40   mycroft 					aic_sched_msgout(sc, SEND_SDTR);
   1176       1.2   mycroft 				} else {
   1177  1.70.6.1   nathanw 					aic_update_xfer_mode(sc,
   1178  1.70.6.1   nathanw 					    acb->xs->xs_periph->periph_target);
   1179       1.1   mycroft 				}
   1180      1.28   mycroft 				aic_setsync(sc, ti);
   1181       1.1   mycroft 				break;
   1182      1.28   mycroft #endif
   1183      1.14   mycroft 
   1184      1.28   mycroft #if AIC_USE_WIDE
   1185      1.14   mycroft 			case MSG_EXT_WDTR:
   1186      1.24   mycroft 				if (sc->sc_imess[1] != 2)
   1187      1.14   mycroft 					goto reject;
   1188      1.27   mycroft 				ti->width = sc->sc_imess[3];
   1189      1.28   mycroft 				ti->flags &= ~DO_WIDE;
   1190      1.27   mycroft 				if (ti->width == 0) {
   1191      1.27   mycroft 				} else if (ti->width > AIC_MAX_WIDTH) {
   1192      1.14   mycroft 					ti->width = 0;
   1193      1.40   mycroft 					aic_sched_msgout(sc, SEND_WDTR);
   1194      1.14   mycroft 				} else {
   1195  1.70.6.1   nathanw 					aic_update_xfer_mode(sc,
   1196  1.70.6.1   nathanw 					    acb->xs->xs_periph->periph_target);
   1197      1.14   mycroft 				}
   1198       1.1   mycroft 				break;
   1199      1.28   mycroft #endif
   1200      1.14   mycroft 
   1201      1.14   mycroft 			default:
   1202      1.54  christos 				printf("%s: unrecognized MESSAGE EXTENDED; "
   1203      1.54  christos 				    "sending REJECT\n", sc->sc_dev.dv_xname);
   1204      1.15   mycroft 				AIC_BREAK();
   1205      1.14   mycroft 				goto reject;
   1206       1.1   mycroft 			}
   1207       1.1   mycroft 			break;
   1208      1.14   mycroft 
   1209       1.1   mycroft 		default:
   1210      1.51  christos 			printf("%s: unrecognized MESSAGE; sending REJECT\n",
   1211      1.25   mycroft 			    sc->sc_dev.dv_xname);
   1212      1.15   mycroft 			AIC_BREAK();
   1213      1.14   mycroft 		reject:
   1214      1.40   mycroft 			aic_sched_msgout(sc, SEND_REJECT);
   1215       1.1   mycroft 			break;
   1216       1.1   mycroft 		}
   1217      1.14   mycroft 		break;
   1218      1.14   mycroft 
   1219      1.14   mycroft 	case AIC_RESELECTED:
   1220      1.24   mycroft 		if (!MSG_ISIDENTIFY(sc->sc_imess[0])) {
   1221      1.54  christos 			printf("%s: reselect without IDENTIFY; "
   1222      1.54  christos 			    "sending DEVICE RESET\n", sc->sc_dev.dv_xname);
   1223      1.15   mycroft 			AIC_BREAK();
   1224      1.14   mycroft 			goto reset;
   1225      1.14   mycroft 		}
   1226      1.14   mycroft 
   1227      1.27   mycroft 		(void) aic_reselect(sc, sc->sc_imess[0]);
   1228      1.14   mycroft 		break;
   1229      1.14   mycroft 
   1230      1.14   mycroft 	default:
   1231      1.51  christos 		printf("%s: unexpected MESSAGE IN; sending DEVICE RESET\n",
   1232      1.25   mycroft 		    sc->sc_dev.dv_xname);
   1233      1.15   mycroft 		AIC_BREAK();
   1234      1.14   mycroft 	reset:
   1235      1.40   mycroft 		aic_sched_msgout(sc, SEND_DEV_RESET);
   1236      1.14   mycroft 		break;
   1237      1.21   mycroft 
   1238      1.45  christos #ifdef notdef
   1239      1.21   mycroft 	abort:
   1240      1.40   mycroft 		aic_sched_msgout(sc, SEND_ABORT);
   1241      1.21   mycroft 		break;
   1242      1.45  christos #endif
   1243       1.1   mycroft 	}
   1244      1.14   mycroft 
   1245      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | SPIOEN);
   1246      1.14   mycroft 	/* Ack the last message byte. */
   1247      1.54  christos 	(void) bus_space_read_1(iot, ioh, SCSIDAT);
   1248      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   1249      1.54  christos 	while ((bus_space_read_1(iot, ioh, SCSISIG) & ACKI) != 0)
   1250      1.21   mycroft 		;
   1251      1.14   mycroft 
   1252      1.14   mycroft 	/* Go get the next message, if any. */
   1253      1.14   mycroft 	goto nextmsg;
   1254      1.14   mycroft 
   1255      1.14   mycroft out:
   1256      1.24   mycroft 	AIC_MISC(("n=%d imess=0x%02x  ", n, sc->sc_imess[0]));
   1257       1.1   mycroft }
   1258       1.1   mycroft 
   1259      1.27   mycroft /*
   1260      1.27   mycroft  * Send the highest priority, scheduled message.
   1261       1.1   mycroft  */
   1262      1.14   mycroft void
   1263  1.70.6.1   nathanw aic_msgout(struct aic_softc *sc)
   1264       1.1   mycroft {
   1265      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
   1266      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
   1267      1.45  christos #if AIC_USE_SYNCHRONOUS
   1268       1.1   mycroft 	struct aic_tinfo *ti;
   1269      1.45  christos #endif
   1270      1.29   mycroft 	u_char sstat1;
   1271      1.14   mycroft 	int n;
   1272      1.14   mycroft 
   1273      1.14   mycroft 	AIC_TRACE(("aic_msgout  "));
   1274       1.1   mycroft 
   1275      1.14   mycroft 	/* Reset the FIFO. */
   1276      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, RSTFIFO);
   1277      1.14   mycroft 	/* Enable REQ/ACK protocol. */
   1278      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | SPIOEN);
   1279      1.14   mycroft 
   1280      1.24   mycroft 	if (sc->sc_prevphase == PH_MSGOUT) {
   1281      1.24   mycroft 		if (sc->sc_omp == sc->sc_omess) {
   1282      1.14   mycroft 			/*
   1283      1.14   mycroft 			 * This is a retransmission.
   1284      1.14   mycroft 			 *
   1285      1.14   mycroft 			 * We get here if the target stayed in MESSAGE OUT
   1286      1.14   mycroft 			 * phase.  Section 5.1.9.2 of the SCSI 2 spec indicates
   1287      1.14   mycroft 			 * that all of the previously transmitted messages must
   1288      1.14   mycroft 			 * be sent again, in the same order.  Therefore, we
   1289      1.14   mycroft 			 * requeue all the previously transmitted messages, and
   1290      1.14   mycroft 			 * start again from the top.  Our simple priority
   1291      1.14   mycroft 			 * scheme keeps the messages in the right order.
   1292      1.14   mycroft 			 */
   1293      1.14   mycroft 			AIC_MISC(("retransmitting  "));
   1294      1.24   mycroft 			sc->sc_msgpriq |= sc->sc_msgoutq;
   1295      1.43   mycroft 			/*
   1296      1.43   mycroft 			 * Set ATN.  If we're just sending a trivial 1-byte
   1297      1.43   mycroft 			 * message, we'll clear ATN later on anyway.
   1298      1.43   mycroft 			 */
   1299      1.54  christos 			bus_space_write_1(iot, ioh, SCSISIG, PH_MSGOUT | ATNO);
   1300      1.14   mycroft 		} else {
   1301      1.14   mycroft 			/* This is a continuation of the previous message. */
   1302      1.24   mycroft 			n = sc->sc_omp - sc->sc_omess;
   1303      1.14   mycroft 			goto nextbyte;
   1304      1.14   mycroft 		}
   1305      1.14   mycroft 	}
   1306      1.14   mycroft 
   1307      1.14   mycroft 	/* No messages transmitted so far. */
   1308      1.24   mycroft 	sc->sc_msgoutq = 0;
   1309      1.29   mycroft 	sc->sc_lastmsg = 0;
   1310      1.14   mycroft 
   1311      1.14   mycroft nextmsg:
   1312      1.14   mycroft 	/* Pick up highest priority message. */
   1313      1.29   mycroft 	sc->sc_currmsg = sc->sc_msgpriq & -sc->sc_msgpriq;
   1314      1.29   mycroft 	sc->sc_msgpriq &= ~sc->sc_currmsg;
   1315      1.29   mycroft 	sc->sc_msgoutq |= sc->sc_currmsg;
   1316      1.14   mycroft 
   1317      1.14   mycroft 	/* Build the outgoing message data. */
   1318      1.29   mycroft 	switch (sc->sc_currmsg) {
   1319      1.14   mycroft 	case SEND_IDENTIFY:
   1320      1.24   mycroft 		AIC_ASSERT(sc->sc_nexus != NULL);
   1321      1.41   mycroft 		sc->sc_omess[0] =
   1322  1.70.6.1   nathanw 		    MSG_IDENTIFY(sc->sc_nexus->xs->xs_periph->periph_lun, 1);
   1323      1.14   mycroft 		n = 1;
   1324      1.14   mycroft 		break;
   1325      1.14   mycroft 
   1326      1.28   mycroft #if AIC_USE_SYNCHRONOUS
   1327      1.14   mycroft 	case SEND_SDTR:
   1328      1.24   mycroft 		AIC_ASSERT(sc->sc_nexus != NULL);
   1329  1.70.6.1   nathanw 		ti = &sc->sc_tinfo[sc->sc_nexus->xs->xs_periph->periph_target];
   1330      1.24   mycroft 		sc->sc_omess[4] = MSG_EXTENDED;
   1331      1.24   mycroft 		sc->sc_omess[3] = 3;
   1332      1.24   mycroft 		sc->sc_omess[2] = MSG_EXT_SDTR;
   1333      1.24   mycroft 		sc->sc_omess[1] = ti->period >> 2;
   1334      1.24   mycroft 		sc->sc_omess[0] = ti->offset;
   1335      1.14   mycroft 		n = 5;
   1336      1.14   mycroft 		break;
   1337      1.28   mycroft #endif
   1338      1.14   mycroft 
   1339      1.28   mycroft #if AIC_USE_WIDE
   1340      1.14   mycroft 	case SEND_WDTR:
   1341      1.24   mycroft 		AIC_ASSERT(sc->sc_nexus != NULL);
   1342  1.70.6.1   nathanw 		ti = &sc->sc_tinfo[sc->sc_nexus->xs->xs_periph->periph_target];
   1343      1.24   mycroft 		sc->sc_omess[3] = MSG_EXTENDED;
   1344      1.24   mycroft 		sc->sc_omess[2] = 2;
   1345      1.24   mycroft 		sc->sc_omess[1] = MSG_EXT_WDTR;
   1346      1.24   mycroft 		sc->sc_omess[0] = ti->width;
   1347      1.14   mycroft 		n = 4;
   1348      1.14   mycroft 		break;
   1349      1.28   mycroft #endif
   1350      1.14   mycroft 
   1351      1.14   mycroft 	case SEND_DEV_RESET:
   1352      1.41   mycroft 		sc->sc_flags |= AIC_ABORTING;
   1353      1.24   mycroft 		sc->sc_omess[0] = MSG_BUS_DEV_RESET;
   1354      1.14   mycroft 		n = 1;
   1355      1.14   mycroft 		break;
   1356      1.14   mycroft 
   1357      1.14   mycroft 	case SEND_REJECT:
   1358      1.24   mycroft 		sc->sc_omess[0] = MSG_MESSAGE_REJECT;
   1359      1.14   mycroft 		n = 1;
   1360      1.14   mycroft 		break;
   1361      1.14   mycroft 
   1362      1.14   mycroft 	case SEND_PARITY_ERROR:
   1363      1.24   mycroft 		sc->sc_omess[0] = MSG_PARITY_ERROR;
   1364      1.14   mycroft 		n = 1;
   1365      1.14   mycroft 		break;
   1366      1.14   mycroft 
   1367      1.14   mycroft 	case SEND_INIT_DET_ERR:
   1368      1.24   mycroft 		sc->sc_omess[0] = MSG_INITIATOR_DET_ERR;
   1369      1.14   mycroft 		n = 1;
   1370      1.14   mycroft 		break;
   1371      1.14   mycroft 
   1372      1.14   mycroft 	case SEND_ABORT:
   1373      1.41   mycroft 		sc->sc_flags |= AIC_ABORTING;
   1374      1.24   mycroft 		sc->sc_omess[0] = MSG_ABORT;
   1375      1.14   mycroft 		n = 1;
   1376      1.14   mycroft 		break;
   1377      1.14   mycroft 
   1378      1.41   mycroft 	default:
   1379      1.51  christos 		printf("%s: unexpected MESSAGE OUT; sending NOOP\n",
   1380      1.25   mycroft 		    sc->sc_dev.dv_xname);
   1381      1.21   mycroft 		AIC_BREAK();
   1382      1.24   mycroft 		sc->sc_omess[0] = MSG_NOOP;
   1383      1.14   mycroft 		n = 1;
   1384      1.14   mycroft 		break;
   1385       1.1   mycroft 	}
   1386      1.24   mycroft 	sc->sc_omp = &sc->sc_omess[n];
   1387      1.14   mycroft 
   1388      1.14   mycroft nextbyte:
   1389      1.14   mycroft 	/* Send message bytes. */
   1390      1.16   mycroft 	for (;;) {
   1391      1.16   mycroft 		for (;;) {
   1392      1.54  christos 			sstat1 = bus_space_read_1(iot, ioh, SSTAT1);
   1393      1.43   mycroft 			if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0)
   1394      1.29   mycroft 				break;
   1395      1.29   mycroft 			/* Wait for REQINIT.  XXX Need timeout. */
   1396      1.29   mycroft 		}
   1397      1.40   mycroft 		if ((sstat1 & (PHASECHG | BUSFREE)) != 0) {
   1398      1.29   mycroft 			/*
   1399      1.29   mycroft 			 * Target left MESSAGE OUT, possibly to reject
   1400      1.29   mycroft 			 * our message.
   1401      1.41   mycroft 			 *
   1402      1.41   mycroft 			 * If this is the last message being sent, then we
   1403      1.41   mycroft 			 * deassert ATN, since either the target is going to
   1404      1.41   mycroft 			 * ignore this message, or it's going to ask for a
   1405      1.41   mycroft 			 * retransmission via MESSAGE PARITY ERROR (in which
   1406      1.41   mycroft 			 * case we reassert ATN anyway).
   1407      1.29   mycroft 			 */
   1408      1.41   mycroft 			if (sc->sc_msgpriq == 0)
   1409      1.54  christos 				bus_space_write_1(iot, ioh, CLRSINT1, CLRATNO);
   1410      1.29   mycroft 			goto out;
   1411      1.14   mycroft 		}
   1412      1.14   mycroft 
   1413      1.14   mycroft 		/* Clear ATN before last byte if this is the last message. */
   1414      1.29   mycroft 		if (n == 1 && sc->sc_msgpriq == 0)
   1415      1.54  christos 			bus_space_write_1(iot, ioh, CLRSINT1, CLRATNO);
   1416      1.14   mycroft 		/* Send message byte. */
   1417      1.54  christos 		bus_space_write_1(iot, ioh, SCSIDAT, *--sc->sc_omp);
   1418      1.29   mycroft 		--n;
   1419      1.29   mycroft 		/* Keep track of the last message we've sent any bytes of. */
   1420      1.29   mycroft 		sc->sc_lastmsg = sc->sc_currmsg;
   1421      1.16   mycroft 		/* Wait for ACK to be negated.  XXX Need timeout. */
   1422      1.54  christos 		while ((bus_space_read_1(iot, ioh, SCSISIG) & ACKI) != 0)
   1423       1.1   mycroft 			;
   1424      1.16   mycroft 
   1425      1.16   mycroft 		if (n == 0)
   1426      1.16   mycroft 			break;
   1427       1.1   mycroft 	}
   1428      1.14   mycroft 
   1429      1.14   mycroft 	/* We get here only if the entire message has been transmitted. */
   1430      1.24   mycroft 	if (sc->sc_msgpriq != 0) {
   1431      1.14   mycroft 		/* There are more outgoing messages. */
   1432      1.14   mycroft 		goto nextmsg;
   1433      1.14   mycroft 	}
   1434      1.14   mycroft 
   1435      1.14   mycroft 	/*
   1436      1.14   mycroft 	 * The last message has been transmitted.  We need to remember the last
   1437      1.14   mycroft 	 * message transmitted (in case the target switches to MESSAGE IN phase
   1438      1.14   mycroft 	 * and sends a MESSAGE REJECT), and the list of messages transmitted
   1439      1.14   mycroft 	 * this time around (in case the target stays in MESSAGE OUT phase to
   1440      1.14   mycroft 	 * request a retransmit).
   1441       1.1   mycroft 	 */
   1442      1.14   mycroft 
   1443      1.14   mycroft out:
   1444      1.14   mycroft 	/* Disable REQ/ACK protocol. */
   1445      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   1446       1.1   mycroft }
   1447  1.70.6.1   nathanw 
   1448      1.54  christos /* aic_dataout_pio: perform a data transfer using the FIFO datapath in the
   1449      1.54  christos  * aic6360
   1450       1.1   mycroft  * Precondition: The SCSI bus should be in the DOUT phase, with REQ asserted
   1451       1.1   mycroft  * and ACK deasserted (i.e. waiting for a data byte)
   1452       1.1   mycroft  * This new revision has been optimized (I tried) to make the common case fast,
   1453       1.1   mycroft  * and the rarer cases (as a result) somewhat more comlex
   1454       1.1   mycroft  */
   1455      1.14   mycroft int
   1456  1.70.6.1   nathanw aic_dataout_pio(struct aic_softc *sc, u_char *p, int n)
   1457       1.1   mycroft {
   1458      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
   1459      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
   1460      1.69  augustss 	u_char dmastat = 0;
   1461      1.14   mycroft 	int out = 0;
   1462       1.6   mycroft #define DOUTAMOUNT 128		/* Full FIFO */
   1463       1.1   mycroft 
   1464      1.54  christos 	AIC_MISC(("%02x%02x  ", bus_space_read_1(iot, ioh, FIFOSTAT),
   1465      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT2)));
   1466      1.47   mycroft 
   1467      1.29   mycroft 	/* Clear host FIFO and counter. */
   1468      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, RSTFIFO | WRITE);
   1469      1.14   mycroft 	/* Enable FIFOs. */
   1470      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, ENDMA | DWORDPIO | WRITE);
   1471      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, SCSIEN | DMAEN | CHEN);
   1472       1.1   mycroft 
   1473      1.21   mycroft 	/* Turn off ENREQINIT for now. */
   1474      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1,
   1475      1.40   mycroft 	    ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENPHASECHG);
   1476       1.1   mycroft 
   1477       1.1   mycroft 	/* I have tried to make the main loop as tight as possible.  This
   1478      1.33   mycroft 	 * means that some of the code following the loop is a bit more
   1479       1.1   mycroft 	 * complex than otherwise.
   1480       1.1   mycroft 	 */
   1481      1.14   mycroft 	while (n > 0) {
   1482       1.6   mycroft 		for (;;) {
   1483      1.54  christos 			dmastat = bus_space_read_1(iot, ioh, DMASTAT);
   1484      1.42   mycroft 			if ((dmastat & (DFIFOEMP | INTSTAT)) != 0)
   1485       1.6   mycroft 				break;
   1486       1.6   mycroft 		}
   1487       1.6   mycroft 
   1488      1.42   mycroft 		if ((dmastat & INTSTAT) != 0)
   1489      1.42   mycroft 			goto phasechange;
   1490      1.14   mycroft 
   1491      1.42   mycroft 		if (n >= DOUTAMOUNT) {
   1492      1.42   mycroft 			n -= DOUTAMOUNT;
   1493      1.42   mycroft 			out += DOUTAMOUNT;
   1494      1.29   mycroft 
   1495      1.42   mycroft #if AIC_USE_DWORDS
   1496      1.57      matt 			bus_space_write_multi_4(iot, ioh, DMADATALONG,
   1497      1.57      matt 			    (u_int32_t *) p, DOUTAMOUNT >> 2);
   1498      1.42   mycroft #else
   1499      1.57      matt 			bus_space_write_multi_2(iot, ioh, DMADATA,
   1500      1.57      matt 			    (u_int16_t *) p, DOUTAMOUNT >> 1);
   1501      1.42   mycroft #endif
   1502      1.42   mycroft 
   1503      1.42   mycroft 			p += DOUTAMOUNT;
   1504      1.42   mycroft 		} else {
   1505      1.69  augustss 			int xfer;
   1506      1.42   mycroft 
   1507      1.42   mycroft 			xfer = n;
   1508      1.42   mycroft 			AIC_MISC(("%d> ", xfer));
   1509      1.42   mycroft 
   1510      1.42   mycroft 			n -= xfer;
   1511      1.42   mycroft 			out += xfer;
   1512       1.1   mycroft 
   1513       1.1   mycroft #if AIC_USE_DWORDS
   1514      1.42   mycroft 			if (xfer >= 12) {
   1515      1.54  christos 				bus_space_write_multi_4(iot, ioh, DMADATALONG,
   1516      1.57      matt 				    (u_int32_t *) p, xfer >> 2);
   1517      1.42   mycroft 				p += xfer & ~3;
   1518      1.42   mycroft 				xfer &= 3;
   1519      1.42   mycroft 			}
   1520       1.1   mycroft #else
   1521      1.42   mycroft 			if (xfer >= 8) {
   1522      1.54  christos 				bus_space_write_multi_2(iot, ioh, DMADATA,
   1523      1.57      matt 				    (u_int16_t *) p, xfer >> 1);
   1524      1.42   mycroft 				p += xfer & ~1;
   1525      1.42   mycroft 				xfer &= 1;
   1526      1.42   mycroft 			}
   1527       1.1   mycroft #endif
   1528       1.1   mycroft 
   1529      1.42   mycroft 			if (xfer > 0) {
   1530      1.54  christos 				bus_space_write_1(iot, ioh, DMACNTRL0,
   1531      1.54  christos 				    ENDMA | B8MODE | WRITE);
   1532      1.54  christos 				bus_space_write_multi_1(iot, ioh, DMADATA,
   1533      1.54  christos 				    p, xfer);
   1534      1.42   mycroft 				p += xfer;
   1535      1.54  christos 				bus_space_write_1(iot, ioh, DMACNTRL0,
   1536      1.54  christos 				    ENDMA | DWORDPIO | WRITE);
   1537      1.42   mycroft 			}
   1538       1.6   mycroft 		}
   1539       1.1   mycroft 	}
   1540       1.6   mycroft 
   1541      1.29   mycroft 	if (out == 0) {
   1542      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL1, BITBUCKET);
   1543      1.29   mycroft 		for (;;) {
   1544      1.54  christos 			if ((bus_space_read_1(iot, ioh, DMASTAT) & INTSTAT)
   1545      1.54  christos 			    != 0)
   1546      1.29   mycroft 				break;
   1547      1.29   mycroft 		}
   1548      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL1, 0);
   1549      1.29   mycroft 		AIC_MISC(("extra data  "));
   1550      1.29   mycroft 	} else {
   1551      1.29   mycroft 		/* See the bytes off chip */
   1552      1.29   mycroft 		for (;;) {
   1553      1.54  christos 			dmastat = bus_space_read_1(iot, ioh, DMASTAT);
   1554      1.42   mycroft 			if ((dmastat & INTSTAT) != 0)
   1555      1.42   mycroft 				goto phasechange;
   1556      1.29   mycroft 			if ((dmastat & DFIFOEMP) != 0 &&
   1557      1.54  christos 			    (bus_space_read_1(iot, ioh, SSTAT2) & SEMPTY) != 0)
   1558      1.29   mycroft 				break;
   1559      1.29   mycroft 		}
   1560       1.6   mycroft 	}
   1561       1.1   mycroft 
   1562       1.6   mycroft phasechange:
   1563      1.14   mycroft 	if ((dmastat & INTSTAT) != 0) {
   1564      1.14   mycroft 		/* Some sort of phase change. */
   1565      1.14   mycroft 		int amount;
   1566      1.14   mycroft 
   1567       1.1   mycroft 		/* Stop transfers, do some accounting */
   1568      1.54  christos 		amount = bus_space_read_1(iot, ioh, FIFOSTAT)
   1569      1.54  christos 		    + (bus_space_read_1(iot, ioh, SSTAT2) & 15);
   1570      1.29   mycroft 		if (amount > 0) {
   1571      1.29   mycroft 			out -= amount;
   1572      1.54  christos 			bus_space_write_1(iot, ioh, DMACNTRL0,
   1573      1.54  christos 			    RSTFIFO | WRITE);
   1574      1.54  christos 			bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | CLRCH);
   1575      1.29   mycroft 			AIC_MISC(("+%d ", amount));
   1576      1.29   mycroft 		}
   1577       1.1   mycroft 	}
   1578      1.14   mycroft 
   1579      1.21   mycroft 	/* Turn on ENREQINIT again. */
   1580      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1,
   1581      1.40   mycroft 	    ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT | ENPHASECHG);
   1582      1.21   mycroft 
   1583      1.47   mycroft 	/* Stop the FIFO data path. */
   1584      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   1585      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, 0);
   1586      1.47   mycroft 
   1587      1.14   mycroft 	return out;
   1588       1.1   mycroft }
   1589  1.70.6.1   nathanw 
   1590      1.54  christos /* aic_datain_pio: perform data transfers using the FIFO datapath in the
   1591      1.54  christos  * aic6360
   1592       1.1   mycroft  * Precondition: The SCSI bus should be in the DIN phase, with REQ asserted
   1593       1.1   mycroft  * and ACK deasserted (i.e. at least one byte is ready).
   1594       1.1   mycroft  * For now, uses a pretty dumb algorithm, hangs around until all data has been
   1595      1.33   mycroft  * transferred.  This, is OK for fast targets, but not so smart for slow
   1596       1.1   mycroft  * targets which don't disconnect or for huge transfers.
   1597       1.1   mycroft  */
   1598      1.14   mycroft int
   1599  1.70.6.1   nathanw aic_datain_pio(struct aic_softc *sc, u_char *p, int n)
   1600       1.1   mycroft {
   1601      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
   1602      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
   1603      1.69  augustss 	u_char dmastat;
   1604      1.14   mycroft 	int in = 0;
   1605      1.14   mycroft #define DINAMOUNT 128		/* Full FIFO */
   1606      1.33   mycroft 
   1607      1.54  christos 	AIC_MISC(("%02x%02x  ", bus_space_read_1(iot, ioh, FIFOSTAT),
   1608      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT2)));
   1609      1.47   mycroft 
   1610      1.29   mycroft 	/* Clear host FIFO and counter. */
   1611      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, RSTFIFO);
   1612      1.41   mycroft 	/* Enable FIFOs. */
   1613      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, ENDMA | DWORDPIO);
   1614      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, SCSIEN | DMAEN | CHEN);
   1615       1.1   mycroft 
   1616      1.21   mycroft 	/* Turn off ENREQINIT for now. */
   1617      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1,
   1618      1.40   mycroft 	    ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENPHASECHG);
   1619       1.6   mycroft 
   1620       1.1   mycroft 	/* We leave this loop if one or more of the following is true:
   1621      1.21   mycroft 	 * a) phase != PH_DATAIN && FIFOs are empty
   1622       1.1   mycroft 	 * b) SCSIRSTI is set (a reset has occurred) or busfree is detected.
   1623       1.1   mycroft 	 */
   1624      1.14   mycroft 	while (n > 0) {
   1625       1.6   mycroft 		/* Wait for fifo half full or phase mismatch */
   1626       1.6   mycroft 		for (;;) {
   1627      1.54  christos 			dmastat = bus_space_read_1(iot, ioh, DMASTAT);
   1628      1.40   mycroft 			if ((dmastat & (DFIFOFULL | INTSTAT)) != 0)
   1629       1.6   mycroft 				break;
   1630       1.6   mycroft 		}
   1631       1.6   mycroft 
   1632      1.42   mycroft 		if ((dmastat & DFIFOFULL) != 0) {
   1633      1.42   mycroft 			n -= DINAMOUNT;
   1634      1.42   mycroft 			in += DINAMOUNT;
   1635      1.42   mycroft 
   1636      1.42   mycroft #if AIC_USE_DWORDS
   1637      1.57      matt 			bus_space_read_multi_4(iot, ioh, DMADATALONG,
   1638      1.57      matt 			    (u_int32_t *) p, DINAMOUNT >> 2);
   1639      1.42   mycroft #else
   1640      1.57      matt 			bus_space_read_multi_2(iot, ioh, DMADATA,
   1641      1.57      matt 			    (u_int16_t *) p, DINAMOUNT >> 1);
   1642      1.42   mycroft #endif
   1643      1.42   mycroft 
   1644      1.42   mycroft 			p += DINAMOUNT;
   1645      1.42   mycroft 		} else {
   1646      1.69  augustss 			int xfer;
   1647      1.42   mycroft 
   1648      1.54  christos 			xfer = min(bus_space_read_1(iot, ioh, FIFOSTAT), n);
   1649      1.42   mycroft 			AIC_MISC((">%d ", xfer));
   1650       1.6   mycroft 
   1651      1.42   mycroft 			n -= xfer;
   1652      1.42   mycroft 			in += xfer;
   1653       1.1   mycroft 
   1654       1.1   mycroft #if AIC_USE_DWORDS
   1655      1.42   mycroft 			if (xfer >= 12) {
   1656      1.54  christos 				bus_space_read_multi_4(iot, ioh, DMADATALONG,
   1657      1.57      matt 				    (u_int32_t *) p, xfer >> 2);
   1658      1.42   mycroft 				p += xfer & ~3;
   1659      1.42   mycroft 				xfer &= 3;
   1660      1.42   mycroft 			}
   1661       1.1   mycroft #else
   1662      1.42   mycroft 			if (xfer >= 8) {
   1663      1.57      matt 				bus_space_read_multi_2(iot, ioh, DMADATA,
   1664      1.57      matt 				    (u_int16_t *) p, xfer >> 1);
   1665      1.42   mycroft 				p += xfer & ~1;
   1666      1.42   mycroft 				xfer &= 1;
   1667      1.42   mycroft 			}
   1668       1.1   mycroft #endif
   1669       1.6   mycroft 
   1670      1.42   mycroft 			if (xfer > 0) {
   1671      1.54  christos 				bus_space_write_1(iot, ioh, DMACNTRL0,
   1672      1.54  christos 				    ENDMA | B8MODE);
   1673      1.54  christos 				bus_space_read_multi_1(iot, ioh, DMADATA,
   1674      1.54  christos 				    p, xfer);
   1675      1.42   mycroft 				p += xfer;
   1676      1.54  christos 				bus_space_write_1(iot, ioh, DMACNTRL0,
   1677      1.54  christos 				    ENDMA | DWORDPIO);
   1678      1.42   mycroft 			}
   1679       1.6   mycroft 		}
   1680       1.6   mycroft 
   1681      1.14   mycroft 		if ((dmastat & INTSTAT) != 0)
   1682      1.29   mycroft 			goto phasechange;
   1683       1.1   mycroft 	}
   1684       1.6   mycroft 
   1685       1.1   mycroft 	/* Some SCSI-devices are rude enough to transfer more data than what
   1686      1.33   mycroft 	 * was requested, e.g. 2048 bytes from a CD-ROM instead of the
   1687       1.1   mycroft 	 * requested 512.  Test for progress, i.e. real transfers.  If no real
   1688      1.14   mycroft 	 * transfers have been performed (n is probably already zero) and the
   1689      1.14   mycroft 	 * FIFO is not empty, waste some bytes....
   1690       1.1   mycroft 	 */
   1691      1.14   mycroft 	if (in == 0) {
   1692      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL1, BITBUCKET);
   1693       1.6   mycroft 		for (;;) {
   1694      1.54  christos 			if ((bus_space_read_1(iot, ioh, DMASTAT) & INTSTAT)
   1695      1.54  christos 			    != 0)
   1696       1.6   mycroft 				break;
   1697       1.1   mycroft 		}
   1698      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL1, 0);
   1699      1.29   mycroft 		AIC_MISC(("extra data  "));
   1700      1.27   mycroft 	}
   1701       1.6   mycroft 
   1702      1.29   mycroft phasechange:
   1703      1.21   mycroft 	/* Turn on ENREQINIT again. */
   1704      1.54  christos 	bus_space_write_1(iot, ioh, SIMODE1,
   1705      1.40   mycroft 	    ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT | ENPHASECHG);
   1706      1.14   mycroft 
   1707      1.47   mycroft 	/* Stop the FIFO data path. */
   1708      1.54  christos 	bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   1709      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, 0);
   1710      1.47   mycroft 
   1711      1.14   mycroft 	return in;
   1712       1.1   mycroft }
   1713  1.70.6.1   nathanw 
   1714       1.1   mycroft /*
   1715       1.1   mycroft  * This is the workhorse routine of the driver.
   1716       1.1   mycroft  * Deficiencies (for now):
   1717       1.1   mycroft  * 1) always uses programmed I/O
   1718       1.1   mycroft  */
   1719      1.33   mycroft int
   1720  1.70.6.1   nathanw aicintr(void *arg)
   1721       1.1   mycroft {
   1722      1.69  augustss 	struct aic_softc *sc = arg;
   1723      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
   1724      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
   1725      1.14   mycroft 	u_char sstat0, sstat1;
   1726      1.69  augustss 	struct aic_acb *acb;
   1727  1.70.6.1   nathanw 	struct scsipi_periph *periph;
   1728       1.1   mycroft 	struct aic_tinfo *ti;
   1729      1.14   mycroft 	int n;
   1730      1.64     enami 
   1731      1.66     enami 	if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
   1732      1.64     enami 		return (0);
   1733      1.14   mycroft 
   1734      1.14   mycroft 	/*
   1735      1.27   mycroft 	 * Clear INTEN.  We enable it again before returning.  This makes the
   1736      1.27   mycroft 	 * interrupt esssentially level-triggered.
   1737       1.1   mycroft 	 */
   1738      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, 0);
   1739      1.27   mycroft 
   1740      1.14   mycroft 	AIC_TRACE(("aicintr  "));
   1741      1.33   mycroft 
   1742      1.29   mycroft loop:
   1743       1.1   mycroft 	/*
   1744      1.14   mycroft 	 * First check for abnormal conditions, such as reset.
   1745       1.1   mycroft 	 */
   1746      1.54  christos 	sstat1 = bus_space_read_1(iot, ioh, SSTAT1);
   1747      1.14   mycroft 	AIC_MISC(("sstat1:0x%02x ", sstat1));
   1748      1.21   mycroft 
   1749      1.14   mycroft 	if ((sstat1 & SCSIRSTI) != 0) {
   1750      1.51  christos 		printf("%s: SCSI bus reset\n", sc->sc_dev.dv_xname);
   1751      1.14   mycroft 		goto reset;
   1752      1.14   mycroft 	}
   1753      1.27   mycroft 
   1754      1.27   mycroft 	/*
   1755      1.27   mycroft 	 * Check for less serious errors.
   1756      1.27   mycroft 	 */
   1757      1.14   mycroft 	if ((sstat1 & SCSIPERR) != 0) {
   1758      1.51  christos 		printf("%s: SCSI bus parity error\n", sc->sc_dev.dv_xname);
   1759      1.54  christos 		bus_space_write_1(iot, ioh, CLRSINT1, CLRSCSIPERR);
   1760      1.24   mycroft 		if (sc->sc_prevphase == PH_MSGIN) {
   1761      1.24   mycroft 			sc->sc_flags |= AIC_DROP_MSGIN;
   1762      1.40   mycroft 			aic_sched_msgout(sc, SEND_PARITY_ERROR);
   1763      1.33   mycroft 		} else
   1764      1.40   mycroft 			aic_sched_msgout(sc, SEND_INIT_DET_ERR);
   1765       1.1   mycroft 	}
   1766       1.1   mycroft 
   1767      1.33   mycroft 	/*
   1768       1.1   mycroft 	 * If we're not already busy doing something test for the following
   1769       1.1   mycroft 	 * conditions:
   1770       1.1   mycroft 	 * 1) We have been reselected by something
   1771       1.1   mycroft 	 * 2) We have selected something successfully
   1772       1.1   mycroft 	 * 3) Our selection process has timed out
   1773      1.33   mycroft 	 * 4) This is really a bus free interrupt just to get a new command
   1774       1.1   mycroft 	 *    going?
   1775       1.1   mycroft 	 * 5) Spurious interrupt?
   1776       1.1   mycroft 	 */
   1777      1.24   mycroft 	switch (sc->sc_state) {
   1778      1.14   mycroft 	case AIC_IDLE:
   1779      1.14   mycroft 	case AIC_SELECTING:
   1780      1.54  christos 		sstat0 = bus_space_read_1(iot, ioh, SSTAT0);
   1781      1.21   mycroft 		AIC_MISC(("sstat0:0x%02x ", sstat0));
   1782      1.21   mycroft 
   1783      1.21   mycroft 		if ((sstat0 & TARGET) != 0) {
   1784      1.21   mycroft 			/*
   1785      1.21   mycroft 			 * We don't currently support target mode.
   1786      1.21   mycroft 			 */
   1787      1.51  christos 			printf("%s: target mode selected; going to BUS FREE\n",
   1788      1.25   mycroft 			    sc->sc_dev.dv_xname);
   1789      1.54  christos 			bus_space_write_1(iot, ioh, SCSISIG, 0);
   1790      1.21   mycroft 
   1791      1.42   mycroft 			goto sched;
   1792      1.21   mycroft 		} else if ((sstat0 & SELDI) != 0) {
   1793      1.14   mycroft 			AIC_MISC(("reselected  "));
   1794      1.14   mycroft 
   1795      1.14   mycroft 			/*
   1796      1.33   mycroft 			 * If we're trying to select a target ourselves,
   1797      1.14   mycroft 			 * push our command back into the ready list.
   1798       1.1   mycroft 			 */
   1799      1.24   mycroft 			if (sc->sc_state == AIC_SELECTING) {
   1800      1.14   mycroft 				AIC_MISC(("backoff selector  "));
   1801      1.24   mycroft 				AIC_ASSERT(sc->sc_nexus != NULL);
   1802      1.24   mycroft 				acb = sc->sc_nexus;
   1803      1.24   mycroft 				sc->sc_nexus = NULL;
   1804      1.24   mycroft 				TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
   1805       1.1   mycroft 			}
   1806      1.14   mycroft 
   1807      1.27   mycroft 			/* Save reselection ID. */
   1808      1.54  christos 			sc->sc_selid = bus_space_read_1(iot, ioh, SELID);
   1809      1.27   mycroft 
   1810      1.24   mycroft 			sc->sc_state = AIC_RESELECTED;
   1811      1.14   mycroft 		} else if ((sstat0 & SELDO) != 0) {
   1812      1.14   mycroft 			AIC_MISC(("selected  "));
   1813      1.14   mycroft 
   1814       1.1   mycroft 			/* We have selected a target. Things to do:
   1815       1.1   mycroft 			 * a) Determine what message(s) to send.
   1816       1.1   mycroft 			 * b) Verify that we're still selecting the target.
   1817       1.1   mycroft 			 * c) Mark device as busy.
   1818       1.1   mycroft 			 */
   1819      1.24   mycroft 			if (sc->sc_state != AIC_SELECTING) {
   1820      1.54  christos 				printf("%s: selection out while idle; "
   1821      1.54  christos 				    "resetting\n", sc->sc_dev.dv_xname);
   1822      1.15   mycroft 				AIC_BREAK();
   1823      1.14   mycroft 				goto reset;
   1824       1.1   mycroft 			}
   1825      1.24   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   1826      1.24   mycroft 			acb = sc->sc_nexus;
   1827  1.70.6.1   nathanw 			periph = acb->xs->xs_periph;
   1828  1.70.6.1   nathanw 			ti = &sc->sc_tinfo[periph->periph_target];
   1829      1.42   mycroft 
   1830      1.42   mycroft 			sc->sc_msgpriq = SEND_IDENTIFY;
   1831      1.42   mycroft 			if (acb->flags & ACB_RESET)
   1832      1.42   mycroft 				sc->sc_msgpriq |= SEND_DEV_RESET;
   1833      1.42   mycroft 			else if (acb->flags & ACB_ABORT)
   1834      1.42   mycroft 				sc->sc_msgpriq |= SEND_ABORT;
   1835      1.42   mycroft 			else {
   1836      1.28   mycroft #if AIC_USE_SYNCHRONOUS
   1837      1.42   mycroft 				if ((ti->flags & DO_SYNC) != 0)
   1838      1.42   mycroft 					sc->sc_msgpriq |= SEND_SDTR;
   1839      1.28   mycroft #endif
   1840      1.28   mycroft #if AIC_USE_WIDE
   1841      1.42   mycroft 				if ((ti->flags & DO_WIDE) != 0)
   1842      1.42   mycroft 					sc->sc_msgpriq |= SEND_WDTR;
   1843      1.28   mycroft #endif
   1844      1.42   mycroft 			}
   1845      1.14   mycroft 
   1846      1.41   mycroft 			acb->flags |= ACB_NEXUS;
   1847  1.70.6.1   nathanw 			ti->lubusy |= (1 << periph->periph_lun);
   1848      1.14   mycroft 
   1849      1.14   mycroft 			/* Do an implicit RESTORE POINTERS. */
   1850      1.24   mycroft 			sc->sc_dp = acb->data_addr;
   1851      1.24   mycroft 			sc->sc_dleft = acb->data_length;
   1852      1.53    bouyer 			sc->sc_cp = (u_char *)&acb->scsipi_cmd;
   1853      1.53    bouyer 			sc->sc_cleft = acb->scsipi_cmd_length;
   1854      1.14   mycroft 
   1855      1.42   mycroft 			/* On our first connection, schedule a timeout. */
   1856      1.63   thorpej 			if ((acb->xs->xs_control & XS_CTL_POLL) == 0)
   1857      1.67   thorpej 				callout_reset(&acb->xs->xs_callout,
   1858  1.70.6.5   nathanw 				    mstohz(acb->timeout), aic_timeout, acb);
   1859      1.42   mycroft 
   1860      1.24   mycroft 			sc->sc_state = AIC_CONNECTED;
   1861      1.14   mycroft 		} else if ((sstat1 & SELTO) != 0) {
   1862      1.14   mycroft 			AIC_MISC(("selection timeout  "));
   1863      1.14   mycroft 
   1864      1.24   mycroft 			if (sc->sc_state != AIC_SELECTING) {
   1865      1.54  christos 				printf("%s: selection timeout while idle; "
   1866      1.54  christos 				    "resetting\n", sc->sc_dev.dv_xname);
   1867      1.15   mycroft 				AIC_BREAK();
   1868      1.14   mycroft 				goto reset;
   1869       1.1   mycroft 			}
   1870      1.24   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   1871      1.24   mycroft 			acb = sc->sc_nexus;
   1872      1.14   mycroft 
   1873      1.54  christos 			bus_space_write_1(iot, ioh, SXFRCTL1, 0);
   1874      1.54  christos 			bus_space_write_1(iot, ioh, SCSISEQ, ENRESELI);
   1875      1.54  christos 			bus_space_write_1(iot, ioh, CLRSINT1, CLRSELTIMO);
   1876      1.42   mycroft 			delay(250);
   1877      1.14   mycroft 
   1878      1.21   mycroft 			acb->xs->error = XS_SELTIMEOUT;
   1879      1.42   mycroft 			goto finish;
   1880       1.2   mycroft 		} else {
   1881      1.24   mycroft 			if (sc->sc_state != AIC_IDLE) {
   1882      1.54  christos 				printf("%s: BUS FREE while not idle; "
   1883      1.54  christos 				    "state=%d\n",
   1884      1.25   mycroft 				    sc->sc_dev.dv_xname, sc->sc_state);
   1885      1.15   mycroft 				AIC_BREAK();
   1886      1.16   mycroft 				goto out;
   1887      1.14   mycroft 			}
   1888      1.14   mycroft 
   1889      1.42   mycroft 			goto sched;
   1890       1.1   mycroft 		}
   1891      1.16   mycroft 
   1892      1.21   mycroft 		/*
   1893      1.21   mycroft 		 * Turn off selection stuff, and prepare to catch bus free
   1894      1.21   mycroft 		 * interrupts, parity errors, and phase changes.
   1895      1.21   mycroft 		 */
   1896      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | CLRSTCNT | CLRCH);
   1897      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL1, 0);
   1898      1.54  christos 		bus_space_write_1(iot, ioh, SCSISEQ, ENAUTOATNP);
   1899      1.54  christos 		bus_space_write_1(iot, ioh, CLRSINT0, CLRSELDI | CLRSELDO);
   1900      1.54  christos 		bus_space_write_1(iot, ioh, CLRSINT1,
   1901      1.54  christos 		    CLRBUSFREE | CLRPHASECHG);
   1902      1.54  christos 		bus_space_write_1(iot, ioh, SIMODE0, 0);
   1903      1.54  christos 		bus_space_write_1(iot, ioh, SIMODE1,
   1904      1.54  christos 		    ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT |
   1905      1.54  christos 		    ENPHASECHG);
   1906      1.21   mycroft 
   1907      1.24   mycroft 		sc->sc_flags = 0;
   1908      1.24   mycroft 		sc->sc_prevphase = PH_INVALID;
   1909      1.21   mycroft 		goto dophase;
   1910      1.16   mycroft 	}
   1911       1.1   mycroft 
   1912      1.21   mycroft 	if ((sstat1 & BUSFREE) != 0) {
   1913      1.21   mycroft 		/* We've gone to BUS FREE phase. */
   1914      1.54  christos 		bus_space_write_1(iot, ioh, CLRSINT1,
   1915      1.54  christos 		    CLRBUSFREE | CLRPHASECHG);
   1916      1.16   mycroft 
   1917      1.24   mycroft 		switch (sc->sc_state) {
   1918      1.16   mycroft 		case AIC_RESELECTED:
   1919      1.42   mycroft 			goto sched;
   1920      1.14   mycroft 
   1921      1.16   mycroft 		case AIC_CONNECTED:
   1922      1.41   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   1923      1.41   mycroft 			acb = sc->sc_nexus;
   1924      1.42   mycroft 
   1925      1.41   mycroft #if AIC_USE_SYNCHRONOUS + AIC_USE_WIDE
   1926      1.41   mycroft 			if (sc->sc_prevphase == PH_MSGOUT) {
   1927      1.41   mycroft 				/*
   1928      1.41   mycroft 				 * If the target went to BUS FREE phase during
   1929      1.41   mycroft 				 * or immediately after sending a SDTR or WDTR
   1930      1.41   mycroft 				 * message, disable negotiation.
   1931      1.41   mycroft 				 */
   1932  1.70.6.1   nathanw 				periph = acb->xs->xs_periph;
   1933  1.70.6.1   nathanw 				ti = &sc->sc_tinfo[periph->periph_target];
   1934      1.41   mycroft 				switch (sc->sc_lastmsg) {
   1935      1.41   mycroft #if AIC_USE_SYNCHRONOUS
   1936      1.41   mycroft 				case SEND_SDTR:
   1937      1.41   mycroft 					ti->flags &= ~DO_SYNC;
   1938      1.41   mycroft 					ti->period = ti->offset = 0;
   1939      1.41   mycroft 					break;
   1940      1.41   mycroft #endif
   1941      1.41   mycroft #if AIC_USE_WIDE
   1942      1.41   mycroft 				case SEND_WDTR:
   1943      1.41   mycroft 					ti->flags &= ~DO_WIDE;
   1944      1.41   mycroft 					ti->width = 0;
   1945      1.41   mycroft 					break;
   1946      1.41   mycroft #endif
   1947      1.41   mycroft 				}
   1948      1.41   mycroft 			}
   1949      1.41   mycroft #endif
   1950      1.42   mycroft 
   1951      1.24   mycroft 			if ((sc->sc_flags & AIC_ABORTING) == 0) {
   1952      1.41   mycroft 				/*
   1953      1.41   mycroft 				 * Section 5.1.1 of the SCSI 2 spec suggests
   1954      1.41   mycroft 				 * issuing a REQUEST SENSE following an
   1955      1.41   mycroft 				 * unexpected disconnect.  Some devices go into
   1956      1.41   mycroft 				 * a contingent allegiance condition when
   1957      1.41   mycroft 				 * disconnecting, and this is necessary to
   1958      1.41   mycroft 				 * clean up their state.
   1959      1.41   mycroft 				 */
   1960      1.54  christos 				printf("%s: unexpected disconnect; "
   1961      1.54  christos 				    "sending REQUEST SENSE\n",
   1962      1.25   mycroft 				    sc->sc_dev.dv_xname);
   1963      1.16   mycroft 				AIC_BREAK();
   1964      1.41   mycroft 				aic_sense(sc, acb);
   1965      1.41   mycroft 				goto out;
   1966      1.16   mycroft 			}
   1967      1.42   mycroft 
   1968      1.16   mycroft 			acb->xs->error = XS_DRIVER_STUFFUP;
   1969      1.16   mycroft 			goto finish;
   1970      1.14   mycroft 
   1971      1.16   mycroft 		case AIC_DISCONNECT:
   1972      1.24   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   1973      1.24   mycroft 			acb = sc->sc_nexus;
   1974      1.47   mycroft #if 1 /* XXXX */
   1975      1.47   mycroft 			acb->data_addr = sc->sc_dp;
   1976      1.47   mycroft 			acb->data_length = sc->sc_dleft;
   1977      1.47   mycroft #endif
   1978      1.41   mycroft 			TAILQ_INSERT_HEAD(&sc->nexus_list, acb, chain);
   1979      1.24   mycroft 			sc->sc_nexus = NULL;
   1980      1.42   mycroft 			goto sched;
   1981      1.16   mycroft 
   1982      1.16   mycroft 		case AIC_CMDCOMPLETE:
   1983      1.24   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   1984      1.24   mycroft 			acb = sc->sc_nexus;
   1985      1.42   mycroft 			goto finish;
   1986      1.16   mycroft 		}
   1987      1.21   mycroft 	}
   1988      1.16   mycroft 
   1989      1.54  christos 	bus_space_write_1(iot, ioh, CLRSINT1, CLRPHASECHG);
   1990      1.42   mycroft 
   1991      1.21   mycroft dophase:
   1992      1.21   mycroft 	if ((sstat1 & REQINIT) == 0) {
   1993      1.16   mycroft 		/* Wait for REQINIT. */
   1994      1.16   mycroft 		goto out;
   1995      1.21   mycroft 	}
   1996      1.21   mycroft 
   1997      1.54  christos 	sc->sc_phase = bus_space_read_1(iot, ioh, SCSISIG) & PH_MASK;
   1998      1.54  christos 	bus_space_write_1(iot, ioh, SCSISIG, sc->sc_phase);
   1999      1.16   mycroft 
   2000      1.27   mycroft 	switch (sc->sc_phase) {
   2001      1.21   mycroft 	case PH_MSGOUT:
   2002      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED &&
   2003      1.42   mycroft 		    sc->sc_state != AIC_RESELECTED)
   2004      1.14   mycroft 			break;
   2005      1.24   mycroft 		aic_msgout(sc);
   2006      1.29   mycroft 		sc->sc_prevphase = PH_MSGOUT;
   2007      1.29   mycroft 		goto loop;
   2008      1.14   mycroft 
   2009      1.21   mycroft 	case PH_MSGIN:
   2010      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED &&
   2011      1.42   mycroft 		    sc->sc_state != AIC_RESELECTED)
   2012      1.21   mycroft 			break;
   2013      1.41   mycroft 		aic_msgin(sc);
   2014      1.29   mycroft 		sc->sc_prevphase = PH_MSGIN;
   2015      1.29   mycroft 		goto loop;
   2016      1.14   mycroft 
   2017      1.27   mycroft 	case PH_CMD:
   2018      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED)
   2019      1.21   mycroft 			break;
   2020      1.16   mycroft #if AIC_DEBUG
   2021      1.21   mycroft 		if ((aic_debug & AIC_SHOWMISC) != 0) {
   2022      1.24   mycroft 			AIC_ASSERT(sc->sc_nexus != NULL);
   2023      1.24   mycroft 			acb = sc->sc_nexus;
   2024      1.51  christos 			printf("cmd=0x%02x+%d ",
   2025      1.53    bouyer 			    acb->scsipi_cmd.opcode, acb->scsipi_cmd_length-1);
   2026       1.1   mycroft 		}
   2027      1.21   mycroft #endif
   2028      1.24   mycroft 		n = aic_dataout_pio(sc, sc->sc_cp, sc->sc_cleft);
   2029      1.24   mycroft 		sc->sc_cp += n;
   2030      1.24   mycroft 		sc->sc_cleft -= n;
   2031      1.29   mycroft 		sc->sc_prevphase = PH_CMD;
   2032      1.29   mycroft 		goto loop;
   2033      1.21   mycroft 
   2034      1.21   mycroft 	case PH_DATAOUT:
   2035      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED)
   2036      1.21   mycroft 			break;
   2037  1.70.6.1   nathanw 		AIC_MISC(("dataout %ld ", (long)sc->sc_dleft));
   2038      1.24   mycroft 		n = aic_dataout_pio(sc, sc->sc_dp, sc->sc_dleft);
   2039      1.24   mycroft 		sc->sc_dp += n;
   2040      1.24   mycroft 		sc->sc_dleft -= n;
   2041      1.29   mycroft 		sc->sc_prevphase = PH_DATAOUT;
   2042      1.29   mycroft 		goto loop;
   2043      1.21   mycroft 
   2044      1.21   mycroft 	case PH_DATAIN:
   2045      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED)
   2046      1.21   mycroft 			break;
   2047  1.70.6.1   nathanw 		AIC_MISC(("datain %ld ", (long)sc->sc_dleft));
   2048      1.24   mycroft 		n = aic_datain_pio(sc, sc->sc_dp, sc->sc_dleft);
   2049      1.24   mycroft 		sc->sc_dp += n;
   2050      1.24   mycroft 		sc->sc_dleft -= n;
   2051      1.29   mycroft 		sc->sc_prevphase = PH_DATAIN;
   2052      1.29   mycroft 		goto loop;
   2053      1.21   mycroft 
   2054      1.21   mycroft 	case PH_STAT:
   2055      1.42   mycroft 		if (sc->sc_state != AIC_CONNECTED)
   2056      1.21   mycroft 			break;
   2057      1.24   mycroft 		AIC_ASSERT(sc->sc_nexus != NULL);
   2058      1.24   mycroft 		acb = sc->sc_nexus;
   2059      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL0, CHEN | SPIOEN);
   2060      1.54  christos 		acb->target_stat = bus_space_read_1(iot, ioh, SCSIDAT);
   2061      1.54  christos 		bus_space_write_1(iot, ioh, SXFRCTL0, CHEN);
   2062      1.21   mycroft 		AIC_MISC(("target_stat=0x%02x  ", acb->target_stat));
   2063      1.29   mycroft 		sc->sc_prevphase = PH_STAT;
   2064      1.29   mycroft 		goto loop;
   2065       1.1   mycroft 	}
   2066      1.14   mycroft 
   2067      1.51  christos 	printf("%s: unexpected bus phase; resetting\n", sc->sc_dev.dv_xname);
   2068      1.16   mycroft 	AIC_BREAK();
   2069      1.16   mycroft reset:
   2070      1.62     enami 	aic_init(sc, 1);
   2071      1.16   mycroft 	return 1;
   2072      1.16   mycroft 
   2073      1.42   mycroft finish:
   2074      1.67   thorpej 	callout_stop(&acb->xs->xs_callout);
   2075      1.42   mycroft 	aic_done(sc, acb);
   2076      1.42   mycroft 	goto out;
   2077      1.42   mycroft 
   2078      1.42   mycroft sched:
   2079      1.42   mycroft 	sc->sc_state = AIC_IDLE;
   2080      1.42   mycroft 	aic_sched(sc);
   2081      1.42   mycroft 	goto out;
   2082      1.42   mycroft 
   2083      1.14   mycroft out:
   2084      1.54  christos 	bus_space_write_1(iot, ioh, DMACNTRL0, INTEN);
   2085       1.1   mycroft 	return 1;
   2086       1.1   mycroft }
   2087       1.1   mycroft 
   2088       1.1   mycroft void
   2089  1.70.6.1   nathanw aic_abort(struct aic_softc *sc, struct aic_acb *acb)
   2090      1.21   mycroft {
   2091      1.21   mycroft 
   2092      1.42   mycroft 	/* 2 secs for the abort */
   2093      1.42   mycroft 	acb->timeout = AIC_ABORT_TIMEOUT;
   2094      1.42   mycroft 	acb->flags |= ACB_ABORT;
   2095      1.42   mycroft 
   2096      1.41   mycroft 	if (acb == sc->sc_nexus) {
   2097      1.41   mycroft 		/*
   2098      1.41   mycroft 		 * If we're still selecting, the message will be scheduled
   2099      1.41   mycroft 		 * after selection is complete.
   2100      1.41   mycroft 		 */
   2101      1.41   mycroft 		if (sc->sc_state == AIC_CONNECTED)
   2102      1.40   mycroft 			aic_sched_msgout(sc, SEND_ABORT);
   2103      1.21   mycroft 	} else {
   2104      1.24   mycroft 		aic_dequeue(sc, acb);
   2105      1.24   mycroft 		TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
   2106      1.24   mycroft 		if (sc->sc_state == AIC_IDLE)
   2107      1.24   mycroft 			aic_sched(sc);
   2108      1.21   mycroft 	}
   2109      1.21   mycroft }
   2110      1.21   mycroft 
   2111      1.21   mycroft void
   2112  1.70.6.1   nathanw aic_timeout(void *arg)
   2113       1.1   mycroft {
   2114      1.21   mycroft 	struct aic_acb *acb = arg;
   2115      1.53    bouyer 	struct scsipi_xfer *xs = acb->xs;
   2116  1.70.6.1   nathanw 	struct scsipi_periph *periph = xs->xs_periph;
   2117  1.70.6.1   nathanw 	struct aic_softc *sc =
   2118  1.70.6.1   nathanw 	    (void *)periph->periph_channel->chan_adapter->adapt_dev;
   2119      1.14   mycroft 	int s;
   2120      1.14   mycroft 
   2121  1.70.6.1   nathanw 	scsipi_printaddr(periph);
   2122      1.51  christos 	printf("timed out");
   2123      1.21   mycroft 
   2124      1.14   mycroft 	s = splbio();
   2125       1.1   mycroft 
   2126      1.41   mycroft 	if (acb->flags & ACB_ABORT) {
   2127      1.21   mycroft 		/* abort timed out */
   2128      1.51  christos 		printf(" AGAIN\n");
   2129      1.42   mycroft 		/* XXX Must reset! */
   2130      1.21   mycroft 	} else {
   2131      1.21   mycroft 		/* abort the operation that has timed out */
   2132      1.51  christos 		printf("\n");
   2133      1.21   mycroft 		acb->xs->error = XS_TIMEOUT;
   2134      1.24   mycroft 		aic_abort(sc, acb);
   2135      1.21   mycroft 	}
   2136      1.14   mycroft 
   2137       1.1   mycroft 	splx(s);
   2138       1.1   mycroft }
   2139  1.70.6.1   nathanw 
   2140       1.1   mycroft #ifdef AIC_DEBUG
   2141       1.1   mycroft /*
   2142       1.1   mycroft  * The following functions are mostly used for debugging purposes, either
   2143       1.1   mycroft  * directly called from the driver or from the kernel debugger.
   2144       1.1   mycroft  */
   2145       1.1   mycroft 
   2146       1.1   mycroft void
   2147  1.70.6.1   nathanw aic_show_scsi_cmd(struct aic_acb *acb)
   2148       1.1   mycroft {
   2149      1.53    bouyer 	u_char  *b = (u_char *)&acb->scsipi_cmd;
   2150  1.70.6.1   nathanw 	struct scsipi_periph *periph = acb->xs->xs_periph;
   2151       1.1   mycroft 	int i;
   2152       1.1   mycroft 
   2153  1.70.6.1   nathanw 	scsipi_printaddr(periph);
   2154      1.63   thorpej 	if ((acb->xs->xs_control & XS_CTL_RESET) == 0) {
   2155      1.53    bouyer 		for (i = 0; i < acb->scsipi_cmd_length; i++) {
   2156       1.2   mycroft 			if (i)
   2157      1.51  christos 				printf(",");
   2158      1.51  christos 			printf("%x", b[i]);
   2159       1.1   mycroft 		}
   2160      1.51  christos 		printf("\n");
   2161       1.2   mycroft 	} else
   2162      1.51  christos 		printf("RESET\n");
   2163       1.1   mycroft }
   2164       1.1   mycroft 
   2165       1.1   mycroft void
   2166  1.70.6.1   nathanw aic_print_acb(struct aic_acb *acb)
   2167       1.1   mycroft {
   2168       1.2   mycroft 
   2169      1.51  christos 	printf("acb@%p xs=%p flags=%x", acb, acb->xs, acb->flags);
   2170      1.51  christos 	printf(" dp=%p dleft=%d target_stat=%x\n",
   2171      1.45  christos 	       acb->data_addr, acb->data_length, acb->target_stat);
   2172       1.1   mycroft 	aic_show_scsi_cmd(acb);
   2173       1.1   mycroft }
   2174       1.1   mycroft 
   2175       1.1   mycroft void
   2176  1.70.6.1   nathanw aic_print_active_acb(void)
   2177       1.1   mycroft {
   2178      1.55   thorpej 	extern struct cfdriver aic_cd;
   2179      1.21   mycroft 	struct aic_acb *acb;
   2180      1.39   thorpej 	struct aic_softc *sc = aic_cd.cd_devs[0];
   2181       1.1   mycroft 
   2182      1.51  christos 	printf("ready list:\n");
   2183      1.24   mycroft 	for (acb = sc->ready_list.tqh_first; acb != NULL;
   2184      1.18   mycroft 	    acb = acb->chain.tqe_next)
   2185       1.1   mycroft 		aic_print_acb(acb);
   2186      1.51  christos 	printf("nexus:\n");
   2187      1.24   mycroft 	if (sc->sc_nexus != NULL)
   2188      1.24   mycroft 		aic_print_acb(sc->sc_nexus);
   2189      1.51  christos 	printf("nexus list:\n");
   2190      1.24   mycroft 	for (acb = sc->nexus_list.tqh_first; acb != NULL;
   2191      1.18   mycroft 	    acb = acb->chain.tqe_next)
   2192       1.1   mycroft 		aic_print_acb(acb);
   2193       1.1   mycroft }
   2194       1.1   mycroft 
   2195       1.1   mycroft void
   2196  1.70.6.1   nathanw aic_dump6360(struct aic_softc *sc)
   2197       1.1   mycroft {
   2198      1.54  christos 	bus_space_tag_t iot = sc->sc_iot;
   2199      1.54  christos 	bus_space_handle_t ioh = sc->sc_ioh;
   2200       1.1   mycroft 
   2201      1.51  christos 	printf("aic6360: SCSISEQ=%x SXFRCTL0=%x SXFRCTL1=%x SCSISIG=%x\n",
   2202      1.54  christos 	    bus_space_read_1(iot, ioh, SCSISEQ),
   2203      1.54  christos 	    bus_space_read_1(iot, ioh, SXFRCTL0),
   2204      1.54  christos 	    bus_space_read_1(iot, ioh, SXFRCTL1),
   2205      1.54  christos 	    bus_space_read_1(iot, ioh, SCSISIG));
   2206      1.51  christos 	printf("         SSTAT0=%x SSTAT1=%x SSTAT2=%x SSTAT3=%x SSTAT4=%x\n",
   2207      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT0),
   2208      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT1),
   2209      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT2),
   2210      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT3),
   2211      1.54  christos 	    bus_space_read_1(iot, ioh, SSTAT4));
   2212      1.54  christos 	printf("         SIMODE0=%x SIMODE1=%x DMACNTRL0=%x DMACNTRL1=%x "
   2213      1.54  christos 	    "DMASTAT=%x\n",
   2214      1.54  christos 	    bus_space_read_1(iot, ioh, SIMODE0),
   2215      1.54  christos 	    bus_space_read_1(iot, ioh, SIMODE1),
   2216      1.54  christos 	    bus_space_read_1(iot, ioh, DMACNTRL0),
   2217      1.54  christos 	    bus_space_read_1(iot, ioh, DMACNTRL1),
   2218      1.54  christos 	    bus_space_read_1(iot, ioh, DMASTAT));
   2219      1.51  christos 	printf("         FIFOSTAT=%d SCSIBUS=0x%x\n",
   2220      1.54  christos 	    bus_space_read_1(iot, ioh, FIFOSTAT),
   2221      1.54  christos 	    bus_space_read_1(iot, ioh, SCSIBUS));
   2222       1.1   mycroft }
   2223       1.1   mycroft 
   2224       1.1   mycroft void
   2225  1.70.6.1   nathanw aic_dump_driver(struct aic_softc *sc)
   2226       1.1   mycroft {
   2227       1.1   mycroft 	struct aic_tinfo *ti;
   2228       1.1   mycroft 	int i;
   2229      1.33   mycroft 
   2230      1.51  christos 	printf("nexus=%p prevphase=%x\n", sc->sc_nexus, sc->sc_prevphase);
   2231      1.54  christos 	printf("state=%x msgin=%x msgpriq=%x msgoutq=%x lastmsg=%x "
   2232      1.54  christos 	    "currmsg=%x\n",
   2233      1.24   mycroft 	    sc->sc_state, sc->sc_imess[0],
   2234      1.29   mycroft 	    sc->sc_msgpriq, sc->sc_msgoutq, sc->sc_lastmsg, sc->sc_currmsg);
   2235       1.2   mycroft 	for (i = 0; i < 7; i++) {
   2236      1.24   mycroft 		ti = &sc->sc_tinfo[i];
   2237      1.51  christos 		printf("tinfo%d: %d cmds %d disconnects %d timeouts",
   2238       1.2   mycroft 		    i, ti->cmds, ti->dconns, ti->touts);
   2239      1.51  christos 		printf(" %d senses flags=%x\n", ti->senses, ti->flags);
   2240       1.1   mycroft 	}
   2241       1.1   mycroft }
   2242       1.1   mycroft #endif
   2243