Home | History | Annotate | Line # | Download | only in isa
seagate.c revision 1.45
      1  1.45   thorpej /*	$NetBSD: seagate.c,v 1.45 2002/01/07 21:47:13 thorpej Exp $	*/
      2  1.24     perry 
      3   1.1   mycroft /*
      4   1.1   mycroft  * ST01/02, Future Domain TMC-885, TMC-950 SCSI driver
      5   1.1   mycroft  *
      6  1.28   mycroft  * Copyright 1994, Charles M. Hannum (mycroft (at) ai.mit.edu)
      7   1.1   mycroft  * Copyright 1994, Kent Palmkvist (kentp (at) isy.liu.se)
      8   1.1   mycroft  * Copyright 1994, Robert Knier (rknier (at) qgraph.com)
      9   1.1   mycroft  * Copyright 1992, 1994 Drew Eckhardt (drew (at) colorado.edu)
     10   1.1   mycroft  * Copyright 1994, Julian Elischer (julian (at) tfs.com)
     11   1.1   mycroft  *
     12   1.1   mycroft  * Others that has contributed by example code is
     13   1.1   mycroft  * 		Glen Overby (overby (at) cray.com)
     14   1.1   mycroft  *		Tatu Yllnen
     15   1.1   mycroft  *		Brian E Litzinger
     16   1.1   mycroft  *
     17   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     18   1.1   mycroft  * modification, are permitted provided that the following conditions
     19   1.1   mycroft  * are met:
     20   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     21   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     22   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     23   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     24   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     25   1.1   mycroft  *
     26   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND
     27   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPERS BE LIABLE
     30   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1   mycroft  * SUCH DAMAGE.
     37   1.1   mycroft  */
     38   1.1   mycroft 
     39   1.1   mycroft /*
     40   1.1   mycroft  * kentp  940307 alpha version based on newscsi-03 version of Julians SCSI-code
     41   1.1   mycroft  * kentp  940314 Added possibility to not use messages
     42   1.1   mycroft  * rknier 940331 Added fast transfer code
     43   1.1   mycroft  * rknier 940407 Added assembler coded data transfers
     44   1.1   mycroft  */
     45   1.1   mycroft 
     46   1.1   mycroft /*
     47   1.1   mycroft  * What should really be done:
     48   1.1   mycroft  *
     49   1.1   mycroft  * Add missing tests for timeouts
     50   1.1   mycroft  * Restructure interrupt enable/disable code (runs to long with int disabled)
     51   1.1   mycroft  * Find bug? giving problem with tape status
     52   1.1   mycroft  * Add code to handle Future Domain 840, 841, 880 and 881
     53   1.1   mycroft  * adjust timeouts (startup is very slow)
     54   1.1   mycroft  * add code to use tagged commands in SCSI2
     55   1.1   mycroft  * Add code to handle slow devices better (sleep if device not disconnecting)
     56   1.1   mycroft  * Fix unnecessary interrupts
     57   1.1   mycroft  */
     58   1.1   mycroft 
     59   1.1   mycroft /*
     60   1.1   mycroft  * Note to users trying to share a disk between DOS and unix:
     61   1.1   mycroft  * The ST01/02 is a translating host-adapter. It is not giving DOS
     62   1.1   mycroft  * the same number of heads/tracks/sectors as specified by the disk.
     63   1.1   mycroft  * It is therefore important to look at what numbers DOS thinks the
     64   1.1   mycroft  * disk has. Use these to disklabel your disk in an appropriate manner
     65   1.1   mycroft  */
     66   1.1   mycroft 
     67  1.43     lukem #include <sys/cdefs.h>
     68  1.45   thorpej __KERNEL_RCSID(0, "$NetBSD: seagate.c,v 1.45 2002/01/07 21:47:13 thorpej Exp $");
     69  1.43     lukem 
     70   1.1   mycroft #include <sys/param.h>
     71   1.1   mycroft #include <sys/systm.h>
     72   1.1   mycroft #include <sys/kernel.h>
     73   1.1   mycroft #include <sys/errno.h>
     74   1.1   mycroft #include <sys/ioctl.h>
     75   1.3   mycroft #include <sys/device.h>
     76   1.1   mycroft #include <sys/buf.h>
     77   1.1   mycroft #include <sys/proc.h>
     78   1.1   mycroft #include <sys/user.h>
     79   1.3   mycroft #include <sys/queue.h>
     80   1.3   mycroft #include <sys/malloc.h>
     81   1.1   mycroft 
     82  1.17   mycroft #include <machine/intr.h>
     83   1.1   mycroft #include <machine/pio.h>
     84   1.1   mycroft 
     85  1.23    bouyer #include <dev/scsipi/scsi_all.h>
     86  1.23    bouyer #include <dev/scsipi/scsipi_all.h>
     87  1.23    bouyer #include <dev/scsipi/scsi_message.h>
     88  1.23    bouyer #include <dev/scsipi/scsiconf.h>
     89   1.1   mycroft 
     90   1.8       cgd #include <dev/isa/isareg.h>
     91  1.33       cgd #include <dev/isa/isavar.h>	/* XXX USES ISA HOLE DIRECTLY */
     92   1.3   mycroft 
     93   1.1   mycroft #define	SEA_SCB_MAX	32	/* allow maximally 8 scsi control blocks */
     94   1.1   mycroft #define SCB_TABLE_SIZE	8	/* start with 8 scb entries in table */
     95   1.1   mycroft #define BLOCK_SIZE	512	/* size of READ/WRITE areas on SCSI card */
     96   1.1   mycroft 
     97   1.1   mycroft /*
     98   1.1   mycroft  * defining SEA_BLINDTRANSFER will make DATA IN and DATA OUT to be done with
     99   1.1   mycroft  * blind transfers, i.e. no check is done for scsi phase changes. This will
    100   1.1   mycroft  * result in data loss if the scsi device does not send its data using
    101   1.1   mycroft  * BLOCK_SIZE bytes at a time.
    102   1.1   mycroft  * If SEA_BLINDTRANSFER defined and SEA_ASSEMBLER also defined will result in
    103   1.1   mycroft  * the use of blind transfers coded in assembler. SEA_ASSEMBLER is no good
    104   1.1   mycroft  * without SEA_BLINDTRANSFER defined.
    105   1.1   mycroft  */
    106   1.1   mycroft #define	SEA_BLINDTRANSFER	/* do blind transfers */
    107   1.1   mycroft #define	SEA_ASSEMBLER		/* Use assembly code for fast transfers */
    108   1.1   mycroft 
    109   1.1   mycroft /*
    110   1.1   mycroft  * defining SEA_NOMSGS causes messages not to be used (thereby disabling
    111   1.1   mycroft  * disconnects)
    112   1.1   mycroft  */
    113   1.1   mycroft #undef	SEA_NOMSGS
    114   1.1   mycroft 
    115   1.1   mycroft /*
    116   1.1   mycroft  * defining SEA_NODATAOUT makes dataout phase being aborted
    117   1.1   mycroft  */
    118   1.1   mycroft #undef	SEA_NODATAOUT
    119   1.1   mycroft 
    120   1.1   mycroft /* Debugging definitions. Should not be used unless you want a lot of
    121   1.1   mycroft    printouts even under normal conditions */
    122   1.1   mycroft 
    123   1.1   mycroft #undef	SEA_DEBUGQUEUE		/* Display info about queue-lengths */
    124   1.1   mycroft 
    125   1.1   mycroft /******************************* board definitions **************************/
    126   1.1   mycroft /*
    127   1.1   mycroft  * CONTROL defines
    128   1.1   mycroft  */
    129   1.1   mycroft #define CMD_RST		0x01		/* scsi reset */
    130   1.1   mycroft #define CMD_SEL		0x02		/* scsi select */
    131   1.1   mycroft #define CMD_BSY		0x04		/* scsi busy */
    132   1.1   mycroft #define	CMD_ATTN	0x08		/* scsi attention */
    133   1.1   mycroft #define CMD_START_ARB	0x10		/* start arbitration bit */
    134   1.1   mycroft #define	CMD_EN_PARITY	0x20		/* enable scsi parity generation */
    135   1.1   mycroft #define CMD_INTR	0x40		/* enable scsi interrupts */
    136   1.1   mycroft #define CMD_DRVR_ENABLE	0x80		/* scsi enable */
    137   1.1   mycroft 
    138   1.1   mycroft /*
    139   1.1   mycroft  * STATUS
    140   1.1   mycroft  */
    141   1.1   mycroft #define STAT_BSY	0x01		/* scsi busy */
    142   1.1   mycroft #define STAT_MSG	0x02		/* scsi msg */
    143   1.1   mycroft #define STAT_IO		0x04		/* scsi I/O */
    144   1.1   mycroft #define STAT_CD		0x08		/* scsi C/D */
    145   1.1   mycroft #define STAT_REQ	0x10		/* scsi req */
    146   1.1   mycroft #define STAT_SEL	0x20		/* scsi select */
    147   1.1   mycroft #define STAT_PARITY	0x40		/* parity error bit */
    148   1.1   mycroft #define STAT_ARB_CMPL	0x80		/* arbitration complete bit */
    149   1.1   mycroft 
    150   1.1   mycroft /*
    151   1.1   mycroft  * REQUESTS
    152   1.1   mycroft  */
    153   1.3   mycroft #define PH_DATAOUT	(0)
    154   1.3   mycroft #define PH_DATAIN	(STAT_IO)
    155   1.3   mycroft #define PH_CMD		(STAT_CD)
    156   1.3   mycroft #define PH_STAT		(STAT_CD | STAT_IO)
    157   1.3   mycroft #define PH_MSGOUT	(STAT_MSG | STAT_CD)
    158   1.3   mycroft #define PH_MSGIN	(STAT_MSG | STAT_CD | STAT_IO)
    159   1.3   mycroft 
    160   1.3   mycroft #define PH_MASK		(STAT_MSG | STAT_CD | STAT_IO)
    161   1.1   mycroft 
    162   1.3   mycroft #define PH_INVALID	0xff
    163   1.1   mycroft 
    164   1.1   mycroft #define SEA_RAMOFFSET	0x00001800
    165   1.1   mycroft 
    166   1.1   mycroft #define BASE_CMD	(CMD_INTR | CMD_EN_PARITY)
    167   1.1   mycroft 
    168   1.3   mycroft #define	SEAGATE		1	/* Seagate ST0[12] */
    169   1.3   mycroft #define	FDOMAIN		2	/* Future Domain TMC-{885,950} */
    170   1.3   mycroft #define	FDOMAIN840	3	/* Future Domain TMC-{84[01],88[01]} */
    171   1.1   mycroft 
    172   1.1   mycroft /******************************************************************************/
    173   1.1   mycroft 
    174   1.1   mycroft /* scsi control block used to keep info about a scsi command */
    175   1.1   mycroft struct sea_scb {
    176   1.1   mycroft         u_char *data;			/* position in data buffer so far */
    177   1.3   mycroft 	int datalen;			/* bytes remaining to transfer */
    178   1.1   mycroft 	TAILQ_ENTRY(sea_scb) chain;
    179  1.23    bouyer 	struct scsipi_xfer *xs;		/* the scsipi_xfer for this cmd */
    180   1.1   mycroft 	int flags;			/* status of the instruction */
    181   1.1   mycroft #define	SCB_FREE	0
    182   1.1   mycroft #define	SCB_ACTIVE	1
    183   1.1   mycroft #define SCB_ABORTED	2
    184   1.1   mycroft #define SCB_TIMEOUT	4
    185   1.1   mycroft #define SCB_ERROR	8
    186   1.1   mycroft };
    187   1.1   mycroft 
    188   1.1   mycroft /*
    189   1.1   mycroft  * data structure describing current status of the scsi bus. One for each
    190   1.1   mycroft  * controller card.
    191   1.1   mycroft  */
    192   1.1   mycroft struct sea_softc {
    193   1.1   mycroft 	struct device sc_dev;
    194   1.8       cgd 	void *sc_ih;
    195   1.1   mycroft 
    196   1.3   mycroft 	int type;			/* board type */
    197   1.1   mycroft 	caddr_t	maddr;			/* Base address for card */
    198   1.1   mycroft 	caddr_t	maddr_cr_sr;		/* Address of control and status reg */
    199   1.1   mycroft 	caddr_t	maddr_dr;		/* Address of data register */
    200   1.3   mycroft 
    201  1.30   thorpej 	struct scsipi_adapter sc_adapter;
    202  1.40    bouyer 	struct scsipi_channel sc_channel;
    203  1.40    bouyer 
    204   1.3   mycroft 	TAILQ_HEAD(, sea_scb) free_list, ready_list, nexus_list;
    205   1.3   mycroft 	struct sea_scb *nexus;		/* currently connected command */
    206   1.3   mycroft 	int numscbs;			/* number of scsi control blocks */
    207   1.3   mycroft 	struct sea_scb scb[SCB_TABLE_SIZE];
    208   1.3   mycroft 
    209   1.1   mycroft 	int our_id;			/* our scsi id */
    210   1.1   mycroft 	u_char our_id_mask;
    211   1.1   mycroft 	volatile u_char busy[8];	/* index=target, bit=lun, Keep track of
    212   1.1   mycroft 					   busy luns at device target */
    213   1.1   mycroft };
    214   1.1   mycroft 
    215   1.1   mycroft /* flag showing if main routine is running. */
    216   1.1   mycroft static volatile int main_running = 0;
    217   1.1   mycroft 
    218   1.1   mycroft #define	STATUS	(*(volatile u_char *)sea->maddr_cr_sr)
    219   1.1   mycroft #define CONTROL	STATUS
    220   1.1   mycroft #define DATA	(*(volatile u_char *)sea->maddr_dr)
    221   1.1   mycroft 
    222   1.1   mycroft /*
    223   1.1   mycroft  * These are "special" values for the tag parameter passed to sea_select
    224   1.1   mycroft  * Not implemented right now.
    225   1.1   mycroft  */
    226   1.1   mycroft #define TAG_NEXT	-1	/* Use next free tag */
    227   1.1   mycroft #define TAG_NONE	-2	/*
    228   1.1   mycroft 				 * Establish I_T_L nexus instead of I_T_L_Q
    229   1.1   mycroft 				 * even on SCSI-II devices.
    230   1.1   mycroft 				 */
    231   1.1   mycroft 
    232   1.1   mycroft typedef struct {
    233   1.1   mycroft 	char *signature;
    234   1.1   mycroft 	int offset, length;
    235   1.1   mycroft 	int type;
    236   1.1   mycroft } BiosSignature;
    237   1.1   mycroft 
    238   1.1   mycroft /*
    239   1.1   mycroft  * Signatures for automatic recognition of board type
    240   1.1   mycroft  */
    241   1.1   mycroft static const BiosSignature signatures[] = {
    242   1.1   mycroft {"ST01 v1.7  (C) Copyright 1987 Seagate", 15, 37, SEAGATE},
    243   1.1   mycroft {"SCSI BIOS 2.00  (C) Copyright 1987 Seagate", 15, 40, SEAGATE},
    244   1.1   mycroft 
    245   1.1   mycroft /*
    246   1.1   mycroft  * The following two lines are NOT mistakes. One detects ROM revision
    247   1.1   mycroft  * 3.0.0, the other 3.2. Since seagate has only one type of SCSI adapter,
    248   1.1   mycroft  * and this is not going to change, the "SEAGATE" and "SCSI" together
    249   1.1   mycroft  * are probably "good enough"
    250   1.1   mycroft  */
    251   1.1   mycroft {"SEAGATE SCSI BIOS ", 16, 17, SEAGATE},
    252   1.1   mycroft {"SEAGATE SCSI BIOS ", 17, 17, SEAGATE},
    253   1.1   mycroft 
    254   1.1   mycroft /*
    255   1.1   mycroft  * However, future domain makes several incompatible SCSI boards, so specific
    256   1.1   mycroft  * signatures must be used.
    257   1.1   mycroft  */
    258   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1986-1989 V5.0C2/14/89", 5, 45, FDOMAIN},
    259   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1986-1989 V6.0A7/28/89", 5, 46, FDOMAIN},
    260   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1986-1990 V6.0105/31/90",5, 47, FDOMAIN},
    261   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1986-1990 V6.0209/18/90",5, 47, FDOMAIN},
    262   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1986-1990 V7.009/18/90", 5, 46, FDOMAIN},
    263   1.1   mycroft {"FUTURE DOMAIN CORP. (C) 1992 V8.00.004/02/92",   5, 44, FDOMAIN},
    264   1.1   mycroft {"FUTURE DOMAIN TMC-950",			   5, 21, FDOMAIN},
    265   1.1   mycroft };
    266   1.1   mycroft 
    267   1.1   mycroft #define	nsignatures	(sizeof(signatures) / sizeof(signatures[0]))
    268   1.1   mycroft 
    269  1.16  christos #ifdef notdef
    270   1.1   mycroft static const char *bases[] = {
    271   1.1   mycroft 	(char *) 0xc8000, (char *) 0xca000, (char *) 0xcc000,
    272   1.1   mycroft 	(char *) 0xce000, (char *) 0xdc000, (char *) 0xde000
    273   1.1   mycroft };
    274   1.1   mycroft 
    275   1.1   mycroft #define	nbases		(sizeof(bases) / sizeof(bases[0]))
    276  1.16  christos #endif
    277   1.1   mycroft 
    278   1.8       cgd int seaintr __P((void *));
    279  1.40    bouyer void sea_scsipi_request __P((struct scsipi_channel *,
    280  1.40    bouyer 	scsipi_adapter_req_t, void *));
    281   1.1   mycroft void sea_timeout __P((void *));
    282   1.1   mycroft void sea_done __P((struct sea_softc *, struct sea_scb *));
    283   1.1   mycroft struct sea_scb *sea_get_scb __P((struct sea_softc *, int));
    284   1.1   mycroft void sea_free_scb __P((struct sea_softc *, struct sea_scb *, int));
    285   1.1   mycroft static void sea_main __P((void));
    286   1.1   mycroft static void sea_information_transfer __P((struct sea_softc *));
    287  1.23    bouyer int sea_poll __P((struct sea_softc *, struct scsipi_xfer *, int));
    288   1.1   mycroft void sea_init __P((struct sea_softc *));
    289   1.1   mycroft void sea_send_scb __P((struct sea_softc *sea, struct sea_scb *scb));
    290   1.1   mycroft void sea_reselect __P((struct sea_softc *sea));
    291   1.1   mycroft int sea_select __P((struct sea_softc *sea, struct sea_scb *scb));
    292   1.1   mycroft int sea_transfer_pio __P((struct sea_softc *sea, u_char *phase,
    293   1.3   mycroft     int *count, u_char **data));
    294   1.1   mycroft int sea_abort __P((struct sea_softc *, struct sea_scb *scb));
    295   1.1   mycroft 
    296  1.40    bouyer void	sea_grow_scb __P((struct sea_softc *));
    297   1.1   mycroft 
    298  1.26  drochner int	seaprobe __P((struct device *, struct cfdata *, void *));
    299  1.11        pk void	seaattach __P((struct device *, struct device *, void *));
    300   1.1   mycroft 
    301  1.14   thorpej struct cfattach sea_ca = {
    302  1.14   thorpej 	sizeof(struct sea_softc), seaprobe, seaattach
    303  1.14   thorpej };
    304  1.14   thorpej 
    305  1.25   thorpej extern struct cfdriver sea_cd;
    306   1.1   mycroft 
    307   1.1   mycroft #ifdef SEA_DEBUGQUEUE
    308   1.1   mycroft void
    309   1.1   mycroft sea_queue_length(sea)
    310   1.1   mycroft 	struct sea_softc *sea;
    311   1.1   mycroft {
    312   1.1   mycroft 	struct sea_scb *scb;
    313   1.1   mycroft 	int connected, issued, disconnected;
    314   1.1   mycroft 
    315   1.3   mycroft 	connected = sea->nexus ? 1 : 0;
    316   1.3   mycroft 	for (scb = sea->ready_list.tqh_first, issued = 0; scb;
    317   1.1   mycroft 	    scb = scb->chain.tqe_next, issued++);
    318   1.3   mycroft 	for (scb = sea->nexus_list.tqh_first, disconnected = 0; scb;
    319   1.1   mycroft 	    scb = scb->chain.tqe_next, disconnected++);
    320  1.21  christos 	printf("%s: length: %d/%d/%d\n", sea->sc_dev.dv_xname, connected,
    321   1.1   mycroft 	    issued, disconnected);
    322   1.1   mycroft }
    323   1.1   mycroft #endif
    324   1.1   mycroft 
    325   1.1   mycroft /*
    326   1.1   mycroft  * Check if the device can be found at the port given and if so, detect the
    327   1.1   mycroft  * type the type of board.  Set it up ready for further work. Takes the isa_dev
    328   1.1   mycroft  * structure from autoconf as an argument.
    329   1.1   mycroft  * Returns 1 if card recognized, 0 if errors.
    330   1.1   mycroft  */
    331   1.1   mycroft int
    332   1.2   mycroft seaprobe(parent, match, aux)
    333   1.2   mycroft 	struct device *parent;
    334  1.26  drochner 	struct cfdata *match;
    335  1.26  drochner 	void *aux;
    336   1.1   mycroft {
    337   1.1   mycroft 	struct isa_attach_args *ia = aux;
    338  1.26  drochner 	int i, type = 0;
    339  1.26  drochner 	caddr_t maddr;
    340   1.1   mycroft 
    341  1.45   thorpej 	if (ia->ia_niomem < 1)
    342  1.45   thorpej 		return (0);
    343  1.45   thorpej 	if (ia->ia_nirq < 1)
    344  1.45   thorpej 		return (0);
    345  1.45   thorpej 
    346  1.45   thorpej 	if (ISA_DIRECT_CONFIG(ia))
    347  1.45   thorpej 		return (0);
    348  1.45   thorpej 
    349  1.45   thorpej 	if (ia->ia_iomem[0].ir_addr == ISACF_IOMEM_DEFAULT)
    350  1.45   thorpej 		return (0);
    351  1.45   thorpej 	if (ia->ia_irq[0].ir_irq == ISACF_IRQ_DEFAULT)
    352  1.45   thorpej 		return (0);
    353  1.45   thorpej 
    354  1.45   thorpej 	/* XXX XXX XXX */
    355  1.45   thorpej 	maddr = ISA_HOLE_VADDR(ia->ia_iomem[0].ir_addr);
    356   1.1   mycroft 
    357  1.26  drochner 	/* check board type */	/* No way to define this through config */
    358  1.26  drochner 	for (i = 0; i < nsignatures; i++)
    359  1.42   thorpej 		if (!memcmp(maddr + signatures[i].offset,
    360  1.26  drochner 		    signatures[i].signature, signatures[i].length)) {
    361  1.26  drochner 			type = signatures[i].type;
    362  1.26  drochner 			break;
    363  1.26  drochner 		}
    364  1.26  drochner 
    365  1.26  drochner 	/* Find controller and data memory addresses */
    366  1.26  drochner 	switch (type) {
    367  1.26  drochner 	case SEAGATE:
    368  1.26  drochner 	case FDOMAIN840:
    369  1.26  drochner 	case FDOMAIN:
    370  1.26  drochner 		break;
    371  1.26  drochner 	default:
    372  1.26  drochner #ifdef DEBUG
    373  1.26  drochner 		printf("seaprobe: board type unknown at address 0x%x\n",
    374  1.26  drochner 		    ia->ia_maddr);
    375  1.26  drochner #endif
    376  1.26  drochner 		return 0;
    377  1.26  drochner 	}
    378  1.26  drochner 
    379  1.45   thorpej 	ia->ia_niomem = 1;
    380  1.45   thorpej 	ia->ia_iomem[0].ir_size = 0x2000;
    381  1.45   thorpej 
    382  1.45   thorpej 	ia->ia_nirq = 1;
    383  1.45   thorpej 
    384  1.45   thorpej 	ia->ia_nio = 0;
    385  1.45   thorpej 	ia->ia_ndrq = 0;
    386  1.45   thorpej 
    387  1.26  drochner 	return 1;
    388  1.26  drochner }
    389  1.26  drochner 
    390  1.26  drochner /*
    391  1.26  drochner  * Attach all sub-devices we can find
    392  1.26  drochner  */
    393  1.26  drochner void
    394  1.26  drochner seaattach(parent, self, aux)
    395  1.26  drochner 	struct device *parent, *self;
    396  1.26  drochner 	void *aux;
    397  1.26  drochner {
    398  1.26  drochner 	struct isa_attach_args *ia = aux;
    399  1.26  drochner 	struct sea_softc *sea = (void *)self;
    400  1.40    bouyer 	struct scsipi_adapter *adapt = &sea->sc_adapter;
    401  1.40    bouyer 	struct scsipi_channel *chan = &sea->sc_channel;
    402  1.26  drochner 	int i;
    403  1.26  drochner 
    404  1.45   thorpej 	/* XXX XXX XXX */
    405  1.45   thorpej 	sea->maddr = ISA_HOLE_VADDR(ia->ia_iomem[0].ir_addr);
    406   1.1   mycroft 
    407   1.1   mycroft 	/* check board type */	/* No way to define this through config */
    408   1.1   mycroft 	for (i = 0; i < nsignatures; i++)
    409  1.42   thorpej 		if (!memcmp(sea->maddr + signatures[i].offset,
    410   1.1   mycroft 		    signatures[i].signature, signatures[i].length)) {
    411   1.1   mycroft 			sea->type = signatures[i].type;
    412   1.1   mycroft 			break;
    413   1.1   mycroft 		}
    414   1.1   mycroft 
    415   1.1   mycroft 	/* Find controller and data memory addresses */
    416   1.1   mycroft 	switch (sea->type) {
    417   1.1   mycroft 	case SEAGATE:
    418   1.3   mycroft 	case FDOMAIN840:
    419   1.1   mycroft 		sea->maddr_cr_sr =
    420   1.1   mycroft 		    (void *) (((u_char *)sea->maddr) + 0x1a00);
    421   1.1   mycroft 		sea->maddr_dr =
    422   1.1   mycroft 		    (void *) (((u_char *)sea->maddr) + 0x1c00);
    423   1.1   mycroft 		break;
    424   1.1   mycroft 	case FDOMAIN:
    425   1.1   mycroft 		sea->maddr_cr_sr =
    426   1.1   mycroft 		    (void *) (((u_char *)sea->maddr) + 0x1c00);
    427   1.1   mycroft 		sea->maddr_dr =
    428   1.1   mycroft 		    (void *) (((u_char *)sea->maddr) + 0x1e00);
    429   1.1   mycroft 		break;
    430   1.1   mycroft 	default:
    431  1.22     mikel #ifdef DEBUG
    432  1.22     mikel 		printf("%s: board type unknown at address 0x%x\n",
    433  1.22     mikel 		    sea->sc_dev.dv_xname, ia->ia_maddr);
    434  1.10   mycroft #endif
    435  1.26  drochner 		return;
    436   1.1   mycroft 	}
    437   1.1   mycroft 
    438   1.1   mycroft 	/* Test controller RAM (works the same way on future domain cards?) */
    439   1.1   mycroft 	*((u_char *)sea->maddr + SEA_RAMOFFSET) = 0xa5;
    440   1.1   mycroft 	*((u_char *)sea->maddr + SEA_RAMOFFSET + 1) = 0x5a;
    441   1.1   mycroft 
    442   1.1   mycroft 	if ((*((u_char *)sea->maddr + SEA_RAMOFFSET) != 0xa5) ||
    443   1.1   mycroft 	    (*((u_char *)sea->maddr + SEA_RAMOFFSET + 1) != 0x5a)) {
    444  1.21  christos 		printf("%s: board RAM failure\n", sea->sc_dev.dv_xname);
    445  1.26  drochner 		return;
    446   1.1   mycroft 	}
    447   1.1   mycroft 
    448   1.1   mycroft 	sea_init(sea);
    449   1.1   mycroft 
    450   1.1   mycroft 	/*
    451  1.40    bouyer 	 * Fill in the scsipi_adapter.
    452  1.30   thorpej 	 */
    453  1.40    bouyer 	memset(adapt, 0, sizeof(*adapt));
    454  1.40    bouyer 	adapt->adapt_dev = &sea->sc_dev;
    455  1.40    bouyer 	adapt->adapt_nchannels = 1;
    456  1.40    bouyer 	adapt->adapt_openings = sea->numscbs;
    457  1.40    bouyer 	adapt->adapt_max_periph = 1;
    458  1.40    bouyer 	adapt->adapt_request = sea_scsipi_request;
    459  1.40    bouyer 	adapt->adapt_minphys = minphys;
    460  1.30   thorpej 
    461  1.30   thorpej 	/*
    462  1.40    bouyer 	 * Fill in the scsipi_channel.
    463   1.1   mycroft 	 */
    464  1.40    bouyer 	memset(chan, 0, sizeof(*chan));
    465  1.40    bouyer 	chan->chan_adapter = adapt;
    466  1.40    bouyer 	chan->chan_bustype = &scsi_bustype;
    467  1.40    bouyer 	chan->chan_channel = 0;
    468  1.40    bouyer 	chan->chan_ntargets = 8;
    469  1.40    bouyer 	chan->chan_nluns = 8;
    470  1.40    bouyer 	chan->chan_id = sea->our_id;
    471  1.40    bouyer 	chan->chan_flags = SCSIPI_CHAN_CANGROW;
    472   1.1   mycroft 
    473  1.21  christos 	printf("\n");
    474   1.1   mycroft 
    475  1.45   thorpej 	sea->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
    476  1.45   thorpej 	    IST_EDGE, IPL_BIO, seaintr, sea);
    477   1.1   mycroft 
    478   1.1   mycroft 	/*
    479   1.1   mycroft 	 * ask the adapter what subunits are present
    480   1.1   mycroft 	 */
    481  1.40    bouyer 	config_found(self, &sea->sc_channel, scsiprint);
    482   1.1   mycroft }
    483   1.1   mycroft 
    484   1.1   mycroft /*
    485   1.1   mycroft  * Catch an interrupt from the adaptor
    486   1.1   mycroft  */
    487   1.1   mycroft int
    488   1.8       cgd seaintr(arg)
    489   1.8       cgd 	void *arg;
    490   1.1   mycroft {
    491   1.8       cgd 	struct sea_softc *sea = arg;
    492   1.1   mycroft 
    493   1.1   mycroft #ifdef DEBUG	/* extra overhead, and only needed for intr debugging */
    494   1.1   mycroft 	if ((STATUS & STAT_PARITY) == 0 &&
    495   1.1   mycroft 	    (STATUS & (STAT_SEL | STAT_IO)) != (STAT_SEL | STAT_IO))
    496   1.1   mycroft 		return 0;
    497   1.1   mycroft #endif
    498   1.1   mycroft 
    499   1.1   mycroft loop:
    500   1.1   mycroft 	/* dispatch to appropriate routine if found and done=0 */
    501   1.1   mycroft 	/* should check to see that this card really caused the interrupt */
    502   1.1   mycroft 
    503   1.1   mycroft 	if (STATUS & STAT_PARITY) {
    504   1.1   mycroft 		/* Parity error interrupt */
    505  1.21  christos 		printf("%s: parity error\n", sea->sc_dev.dv_xname);
    506   1.1   mycroft 		return 1;
    507   1.1   mycroft 	}
    508   1.1   mycroft 
    509   1.1   mycroft 	if ((STATUS & (STAT_SEL | STAT_IO)) == (STAT_SEL | STAT_IO)) {
    510   1.1   mycroft 		/* Reselect interrupt */
    511   1.1   mycroft 		sea_reselect(sea);
    512   1.1   mycroft 		if (!main_running)
    513   1.1   mycroft 			sea_main();
    514   1.1   mycroft 		goto loop;
    515   1.1   mycroft 	}
    516   1.1   mycroft 
    517   1.1   mycroft 	return 1;
    518   1.1   mycroft }
    519   1.1   mycroft 
    520   1.1   mycroft /*
    521   1.1   mycroft  * Setup data structures, and reset the board and the SCSI bus.
    522   1.1   mycroft  */
    523   1.1   mycroft void
    524   1.1   mycroft sea_init(sea)
    525   1.1   mycroft 	struct sea_softc *sea;
    526   1.1   mycroft {
    527   1.1   mycroft 	int i;
    528   1.1   mycroft 
    529   1.1   mycroft 	/* Reset the scsi bus (I don't know if this is needed */
    530   1.1   mycroft 	CONTROL = BASE_CMD | CMD_DRVR_ENABLE | CMD_RST;
    531   1.1   mycroft 	delay(25);	/* hold reset for at least 25 microseconds */
    532   1.1   mycroft 	CONTROL = BASE_CMD;
    533   1.1   mycroft 	delay(10); 	/* wait a Bus Clear Delay (800 ns + bus free delay (800 ns) */
    534   1.1   mycroft 
    535   1.1   mycroft 	/* Set our id (don't know anything about this) */
    536   1.1   mycroft 	switch (sea->type) {
    537   1.1   mycroft 	case SEAGATE:
    538   1.1   mycroft 		sea->our_id = 7;
    539   1.1   mycroft 		break;
    540   1.1   mycroft 	case FDOMAIN:
    541   1.3   mycroft 	case FDOMAIN840:
    542   1.1   mycroft 		sea->our_id = 6;
    543   1.1   mycroft 		break;
    544   1.1   mycroft 	}
    545   1.1   mycroft 	sea->our_id_mask = 1 << sea->our_id;
    546   1.1   mycroft 
    547   1.1   mycroft 	/* init fields used by our routines */
    548   1.3   mycroft 	sea->nexus = 0;
    549   1.3   mycroft 	TAILQ_INIT(&sea->ready_list);
    550   1.3   mycroft 	TAILQ_INIT(&sea->nexus_list);
    551   1.3   mycroft 	TAILQ_INIT(&sea->free_list);
    552   1.1   mycroft 	for (i = 0; i < 8; i++)
    553   1.1   mycroft 		sea->busy[i] = 0x00;
    554   1.1   mycroft 
    555   1.1   mycroft 	/* link up the free list of scbs */
    556   1.1   mycroft 	sea->numscbs = SCB_TABLE_SIZE;
    557   1.1   mycroft 	for (i = 0; i < SCB_TABLE_SIZE; i++) {
    558   1.3   mycroft 		TAILQ_INSERT_TAIL(&sea->free_list, &sea->scb[i], chain);
    559   1.1   mycroft 	}
    560   1.1   mycroft }
    561   1.1   mycroft 
    562   1.1   mycroft /*
    563   1.1   mycroft  * start a scsi operation given the command and the data address. Also needs
    564   1.1   mycroft  * the unit, target and lu.
    565   1.1   mycroft  */
    566  1.40    bouyer void
    567  1.40    bouyer sea_scsipi_request(chan, req, arg)
    568  1.40    bouyer 	struct scsipi_channel *chan;
    569  1.40    bouyer 	scsipi_adapter_req_t req;
    570  1.40    bouyer 	void *arg;
    571  1.40    bouyer {
    572  1.23    bouyer 	struct scsipi_xfer *xs;
    573  1.40    bouyer 	struct scsipi_periph *periph;
    574  1.40    bouyer 	struct sea_softc *sea = (void *)chan->chan_adapter->adapt_dev;
    575   1.1   mycroft 	struct sea_scb *scb;
    576   1.1   mycroft 	int flags;
    577   1.3   mycroft 	int s;
    578   1.1   mycroft 
    579  1.40    bouyer 	switch (req) {
    580  1.40    bouyer 	case ADAPTER_REQ_RUN_XFER:
    581  1.40    bouyer 		xs = arg;
    582  1.40    bouyer 		periph = xs->xs_periph;
    583  1.40    bouyer 		flags = xs->xs_control;
    584  1.40    bouyer 
    585  1.40    bouyer 		SC_DEBUG(periph, SCSIPI_DB2, ("sea_scsipi_requeset\n"));
    586  1.40    bouyer 
    587  1.40    bouyer 		/* XXX Reset not implemented. */
    588  1.40    bouyer 		if (flags & XS_CTL_RESET) {
    589  1.40    bouyer 			printf("%s: resetting\n", sea->sc_dev.dv_xname);
    590  1.40    bouyer 			xs->error = XS_DRIVER_STUFFUP;
    591  1.40    bouyer 			scsipi_done(xs);
    592  1.40    bouyer 			return;
    593  1.40    bouyer 		}
    594   1.1   mycroft 
    595  1.40    bouyer 		/* Get an SCB to use. */
    596  1.40    bouyer 		scb = sea_get_scb(sea, flags);
    597  1.40    bouyer #ifdef DIAGNOSTIC
    598  1.40    bouyer 		/*
    599  1.40    bouyer 		 * This should never happen as we track the resources
    600  1.40    bouyer 		 * in the mid-layer.
    601  1.40    bouyer 		 */
    602  1.40    bouyer 		if (scb == NULL) {
    603  1.40    bouyer 			scsipi_printaddr(periph);
    604  1.40    bouyer 			printf("unable to allocate scb\n");
    605  1.40    bouyer 			panic("sea_scsipi_request");
    606  1.40    bouyer 		}
    607  1.40    bouyer #endif
    608  1.40    bouyer 
    609  1.40    bouyer 		scb->flags = SCB_ACTIVE;
    610  1.40    bouyer 		scb->xs = xs;
    611   1.1   mycroft 
    612   1.1   mycroft 		/*
    613  1.40    bouyer 		 * Put all the arguments for the xfer in the scb
    614   1.1   mycroft 		 */
    615  1.40    bouyer 		scb->datalen = xs->datalen;
    616  1.40    bouyer 		scb->data = xs->data;
    617   1.1   mycroft 
    618   1.1   mycroft #ifdef SEA_DEBUGQUEUE
    619  1.40    bouyer 		sea_queue_length(sea);
    620   1.1   mycroft #endif
    621   1.1   mycroft 
    622  1.40    bouyer 		s = splbio();
    623   1.3   mycroft 
    624  1.40    bouyer 		sea_send_scb(sea, scb);
    625  1.40    bouyer 
    626  1.40    bouyer 		if ((flags & XS_CTL_POLL) == 0) {
    627  1.40    bouyer 			callout_reset(&scb->xs->xs_callout,
    628  1.40    bouyer 			    (xs->timeout * hz) / 1000, sea_timeout, scb);
    629  1.40    bouyer 			splx(s);
    630  1.40    bouyer 			return;
    631  1.40    bouyer 		}
    632   1.3   mycroft 
    633   1.1   mycroft 		splx(s);
    634   1.1   mycroft 
    635  1.40    bouyer 		/*
    636  1.40    bouyer 		 * If we can't use interrupts, poll on completion
    637  1.40    bouyer 		 */
    638  1.40    bouyer 		if (sea_poll(sea, xs, xs->timeout)) {
    639  1.40    bouyer 			sea_timeout(scb);
    640  1.40    bouyer 			if (sea_poll(sea, xs, 2000))
    641  1.40    bouyer 				sea_timeout(scb);
    642  1.40    bouyer 		}
    643  1.40    bouyer 		return;
    644  1.40    bouyer 
    645  1.40    bouyer 	case ADAPTER_REQ_GROW_RESOURCES:
    646  1.40    bouyer 		sea_grow_scb(sea);
    647  1.40    bouyer 		return;
    648  1.40    bouyer 
    649  1.40    bouyer 	case ADAPTER_REQ_SET_XFER_MODE:
    650  1.40    bouyer 	    {
    651  1.40    bouyer 		struct scsipi_xfer_mode *xm = arg;
    652   1.3   mycroft 
    653  1.40    bouyer 		/*
    654  1.40    bouyer 		 * We don't support sync or wide or tagged queueing,
    655  1.40    bouyer 		 * so announce that now.
    656  1.40    bouyer 		 */
    657  1.40    bouyer 		xm->xm_mode = 0;
    658  1.40    bouyer 		xm->xm_period = 0;
    659  1.40    bouyer 		xm->xm_offset = 0;
    660  1.40    bouyer 		scsipi_async_event(chan, ASYNC_EVENT_XFER_MODE, xm);
    661  1.40    bouyer 		return;
    662  1.40    bouyer 	    }
    663   1.3   mycroft 	}
    664   1.1   mycroft }
    665   1.1   mycroft 
    666   1.1   mycroft /*
    667   1.1   mycroft  * Get a free scb. If there are none, see if we can allocate a new one.  If so,
    668   1.1   mycroft  * put it in the hash table too; otherwise return an error or sleep.
    669   1.1   mycroft  */
    670   1.1   mycroft struct sea_scb *
    671   1.1   mycroft sea_get_scb(sea, flags)
    672   1.1   mycroft 	struct sea_softc *sea;
    673   1.1   mycroft 	int flags;
    674   1.1   mycroft {
    675   1.1   mycroft 	int s;
    676   1.1   mycroft 	struct sea_scb *scb;
    677   1.1   mycroft 
    678   1.3   mycroft 	s = splbio();
    679  1.40    bouyer 	if ((scb = TAILQ_FIRST(&sea->free_list)) != NULL)
    680  1.40    bouyer 		TAILQ_REMOVE(&sea->free_list, scb, chain);
    681  1.40    bouyer 	splx(s);
    682   1.1   mycroft 
    683  1.40    bouyer 	return (scb);
    684   1.1   mycroft }
    685   1.1   mycroft 
    686   1.1   mycroft /*
    687   1.1   mycroft  * Try to send this command to the board. Because this board does not use any
    688   1.1   mycroft  * mailboxes, this routine simply adds the command to the queue held by the
    689   1.1   mycroft  * sea_softc structure.
    690   1.1   mycroft  * A check is done to see if the command contains a REQUEST_SENSE command, and
    691   1.1   mycroft  * if so the command is put first in the queue, otherwise the command is added
    692   1.1   mycroft  * to the end of the queue. ?? Not correct ??
    693   1.1   mycroft  */
    694   1.1   mycroft void
    695   1.1   mycroft sea_send_scb(sea, scb)
    696   1.1   mycroft 	struct sea_softc *sea;
    697   1.1   mycroft 	struct sea_scb *scb;
    698   1.1   mycroft {
    699   1.1   mycroft 
    700   1.3   mycroft 	TAILQ_INSERT_TAIL(&sea->ready_list, scb, chain);
    701   1.3   mycroft 	/* Try to do some work on the card. */
    702   1.1   mycroft 	if (!main_running)
    703   1.1   mycroft 		sea_main();
    704   1.1   mycroft }
    705   1.1   mycroft 
    706   1.1   mycroft /*
    707   1.1   mycroft  * Coroutine that runs as long as more work can be done on the seagate host
    708   1.1   mycroft  * adapter in a system.  Both sea_scsi_cmd and sea_intr will try to start it in
    709   1.1   mycroft  * case it is not running.
    710   1.1   mycroft  */
    711  1.40    bouyer 
    712   1.1   mycroft void
    713   1.1   mycroft sea_main()
    714   1.1   mycroft {
    715   1.1   mycroft 	struct sea_softc *sea;
    716   1.1   mycroft 	struct sea_scb *scb;
    717   1.1   mycroft 	int done;
    718   1.1   mycroft 	int unit;
    719   1.1   mycroft 	int s;
    720   1.1   mycroft 
    721   1.1   mycroft 	main_running = 1;
    722   1.1   mycroft 
    723   1.1   mycroft 	/*
    724   1.1   mycroft 	 * This should not be run with interrupts disabled, but use the splx
    725   1.1   mycroft 	 * code instead.
    726   1.1   mycroft 	 */
    727   1.1   mycroft loop:
    728   1.1   mycroft 	done = 1;
    729  1.14   thorpej 	for (unit = 0; unit < sea_cd.cd_ndevs; unit++) {
    730  1.38   thorpej 		sea = device_lookup(&sea_cd, unit);
    731   1.1   mycroft 		if (!sea)
    732   1.1   mycroft 			continue;
    733   1.1   mycroft 		s = splbio();
    734   1.3   mycroft 		if (!sea->nexus) {
    735   1.1   mycroft 			/*
    736   1.3   mycroft 			 * Search through the ready_list for a command
    737   1.1   mycroft 			 * destined for a target that's not busy.
    738   1.1   mycroft 			 */
    739   1.3   mycroft 			for (scb = sea->ready_list.tqh_first; scb;
    740   1.1   mycroft 			    scb = scb->chain.tqe_next) {
    741  1.40    bouyer 				if (!(sea->busy[scb->xs->xs_periph->periph_target] &
    742  1.40    bouyer 				    (1 << scb->xs->xs_periph->periph_lun))) {
    743   1.3   mycroft 					TAILQ_REMOVE(&sea->ready_list, scb,
    744   1.1   mycroft 					    chain);
    745   1.1   mycroft 
    746   1.1   mycroft 					/* Re-enable interrupts. */
    747   1.1   mycroft 					splx(s);
    748   1.1   mycroft 
    749   1.1   mycroft 					/*
    750   1.1   mycroft 					 * Attempt to establish an I_T_L nexus.
    751   1.3   mycroft 					 * On success, sea->nexus is set.
    752   1.1   mycroft 					 * On failure, we must add the command
    753   1.1   mycroft 					 * back to the issue queue so we can
    754   1.1   mycroft 					 * keep trying.
    755   1.1   mycroft 					 */
    756   1.1   mycroft 
    757   1.1   mycroft 					/*
    758   1.1   mycroft 					 * REQUEST_SENSE commands are issued
    759   1.1   mycroft 					 * without tagged queueing, even on
    760   1.1   mycroft 					 * SCSI-II devices because the
    761   1.1   mycroft 					 * contingent alligence condition
    762   1.1   mycroft 					 * exists for the entire unit.
    763   1.1   mycroft 					 */
    764   1.1   mycroft 
    765   1.1   mycroft 					/*
    766   1.1   mycroft 					 * First check that if any device has
    767   1.1   mycroft 					 * tried a reconnect while we have done
    768   1.1   mycroft 					 * other things with interrupts
    769   1.1   mycroft 					 * disabled.
    770   1.1   mycroft 					 */
    771   1.1   mycroft 
    772   1.1   mycroft 					if ((STATUS & (STAT_SEL | STAT_IO)) ==
    773   1.1   mycroft 					    (STAT_SEL | STAT_IO)) {
    774   1.1   mycroft 						sea_reselect(sea);
    775   1.1   mycroft 						break;
    776   1.1   mycroft 					}
    777   1.1   mycroft 					if (sea_select(sea, scb)) {
    778   1.1   mycroft 						s = splbio();
    779   1.3   mycroft 						TAILQ_INSERT_HEAD(&sea->ready_list,
    780   1.1   mycroft 						    scb, chain);
    781   1.1   mycroft 						splx(s);
    782   1.1   mycroft 					} else
    783   1.1   mycroft 						break;
    784   1.1   mycroft 				} /* if target/lun is not busy */
    785   1.1   mycroft 			} /* for scb */
    786   1.3   mycroft 			if (!sea->nexus) {
    787   1.3   mycroft 				/* check for reselection phase */
    788   1.3   mycroft 				if ((STATUS & (STAT_SEL | STAT_IO)) ==
    789   1.3   mycroft 				    (STAT_SEL | STAT_IO)) {
    790   1.3   mycroft 					sea_reselect(sea);
    791   1.3   mycroft 				}
    792   1.3   mycroft 			}
    793   1.3   mycroft 		} /* if (!sea->nexus) */
    794   1.1   mycroft 
    795   1.1   mycroft 		splx(s);
    796   1.3   mycroft 		if (sea->nexus) {	/* we are connected. Do the task */
    797   1.1   mycroft 			sea_information_transfer(sea);
    798   1.1   mycroft 			done = 0;
    799   1.1   mycroft 		} else
    800   1.1   mycroft 			break;
    801   1.1   mycroft 	} /* for instance */
    802   1.1   mycroft 
    803   1.1   mycroft 	if (!done)
    804   1.1   mycroft 		goto loop;
    805   1.1   mycroft 
    806   1.1   mycroft 	main_running = 0;
    807   1.1   mycroft }
    808   1.1   mycroft 
    809  1.40    bouyer /*
    810  1.40    bouyer  * Allocate an scb and add it to the free list.
    811  1.40    bouyer  * We are called at splbio.
    812  1.40    bouyer  */
    813  1.40    bouyer void
    814  1.40    bouyer sea_grow_scb(sea)
    815  1.40    bouyer 	struct sea_softc *sea;
    816  1.40    bouyer {
    817  1.40    bouyer 	struct sea_scb *scb;
    818  1.40    bouyer 
    819  1.40    bouyer 	if (sea->numscbs == SEA_SCB_MAX) {
    820  1.40    bouyer 		sea->sc_channel.chan_flags &= ~SCSIPI_CHAN_CANGROW;
    821  1.40    bouyer 		return;
    822  1.40    bouyer 	}
    823  1.40    bouyer 
    824  1.40    bouyer 	scb = malloc(sizeof(struct sea_scb), M_DEVBUF, M_NOWAIT);
    825  1.40    bouyer 	if (scb == NULL)
    826  1.40    bouyer 		return;
    827  1.40    bouyer 
    828  1.40    bouyer 	memset(scb, 0, sizeof(struct sea_scb));
    829  1.40    bouyer 
    830  1.40    bouyer 	TAILQ_INSERT_TAIL(&sea->free_list, scb, chain);
    831  1.40    bouyer 	sea->numscbs++;
    832  1.40    bouyer 	sea->sc_adapter.adapt_openings++;
    833  1.40    bouyer }
    834   1.1   mycroft void
    835   1.1   mycroft sea_free_scb(sea, scb, flags)
    836   1.1   mycroft 	struct sea_softc *sea;
    837   1.1   mycroft 	struct sea_scb *scb;
    838   1.1   mycroft 	int flags;
    839   1.1   mycroft {
    840   1.1   mycroft 	int s;
    841   1.1   mycroft 
    842   1.3   mycroft 	s = splbio();
    843   1.1   mycroft 	scb->flags = SCB_FREE;
    844   1.3   mycroft 	TAILQ_INSERT_HEAD(&sea->free_list, scb, chain);
    845   1.3   mycroft 	splx(s);
    846   1.1   mycroft }
    847   1.1   mycroft 
    848   1.1   mycroft void
    849   1.1   mycroft sea_timeout(arg)
    850   1.1   mycroft 	void *arg;
    851   1.1   mycroft {
    852   1.1   mycroft 	struct sea_scb *scb = arg;
    853  1.23    bouyer 	struct scsipi_xfer *xs = scb->xs;
    854  1.40    bouyer 	struct scsipi_periph *periph = xs->xs_periph;
    855  1.40    bouyer 	struct sea_softc *sea =
    856  1.40    bouyer 	    (void *)periph->periph_channel->chan_adapter->adapt_dev;
    857   1.3   mycroft 	int s;
    858   1.1   mycroft 
    859  1.40    bouyer 	scsipi_printaddr(periph);
    860  1.21  christos 	printf("timed out");
    861   1.1   mycroft 
    862   1.3   mycroft 	s = splbio();
    863   1.3   mycroft 
    864   1.1   mycroft 	/*
    865   1.1   mycroft 	 * If it has been through before, then
    866   1.1   mycroft 	 * a previous abort has failed, don't
    867   1.1   mycroft 	 * try abort again
    868   1.1   mycroft 	 */
    869   1.1   mycroft 	if (scb->flags & SCB_ABORTED) {
    870   1.3   mycroft 		/* abort timed out */
    871  1.21  christos 		printf(" AGAIN\n");
    872  1.40    bouyer 	 	scb->xs->xs_retries = 0;
    873   1.1   mycroft 		scb->flags |= SCB_ABORTED;
    874   1.1   mycroft 		sea_done(sea, scb);
    875   1.1   mycroft 	} else {
    876   1.3   mycroft 		/* abort the operation that has timed out */
    877  1.21  christos 		printf("\n");
    878   1.3   mycroft 		scb->flags |= SCB_ABORTED;
    879   1.1   mycroft 		sea_abort(sea, scb);
    880   1.3   mycroft 		/* 2 secs for the abort */
    881  1.34   thorpej 		if ((xs->xs_control & XS_CTL_POLL) == 0)
    882  1.35   thorpej 			callout_reset(&scb->xs->xs_callout, 2 * hz,
    883  1.35   thorpej 			    sea_timeout, scb);
    884   1.1   mycroft 	}
    885   1.3   mycroft 
    886   1.1   mycroft 	splx(s);
    887   1.1   mycroft }
    888   1.1   mycroft 
    889   1.1   mycroft void
    890   1.1   mycroft sea_reselect(sea)
    891   1.1   mycroft 	struct sea_softc *sea;
    892   1.1   mycroft {
    893   1.1   mycroft 	u_char target_mask;
    894   1.1   mycroft 	int i;
    895   1.1   mycroft 	u_char lun, phase;
    896   1.1   mycroft 	u_char msg[3];
    897   1.3   mycroft 	int len;
    898   1.1   mycroft 	u_char *data;
    899   1.1   mycroft 	struct sea_scb *scb;
    900   1.1   mycroft 	int abort = 0;
    901   1.1   mycroft 
    902   1.1   mycroft 	if (!((target_mask = STATUS) & STAT_SEL)) {
    903  1.21  christos 		printf("%s: wrong state 0x%x\n", sea->sc_dev.dv_xname,
    904   1.1   mycroft 		    target_mask);
    905   1.1   mycroft 		return;
    906   1.1   mycroft 	}
    907   1.1   mycroft 
    908   1.1   mycroft 	/* wait for a device to win the reselection phase */
    909   1.1   mycroft 	/* signals this by asserting the I/O signal */
    910   1.1   mycroft 	for (i = 10; i && (STATUS & (STAT_SEL | STAT_IO | STAT_BSY)) !=
    911   1.1   mycroft 	    (STAT_SEL | STAT_IO | 0); i--);
    912   1.1   mycroft 	/* !! Check for timeout here */
    913   1.1   mycroft 	/* the data bus contains original initiator id ORed with target id */
    914   1.1   mycroft 	target_mask = DATA;
    915   1.1   mycroft 	/* see that we really are the initiator */
    916   1.1   mycroft 	if (!(target_mask & sea->our_id_mask)) {
    917  1.21  christos 		printf("%s: polled reselection was not for me: 0x%x\n",
    918   1.1   mycroft 		    sea->sc_dev.dv_xname, target_mask);
    919   1.1   mycroft 		return;
    920   1.1   mycroft 	}
    921   1.1   mycroft 	/* find target who won */
    922   1.1   mycroft 	target_mask &= ~sea->our_id_mask;
    923   1.1   mycroft 	/* host responds by asserting the BSY signal */
    924   1.1   mycroft 	CONTROL = BASE_CMD | CMD_DRVR_ENABLE | CMD_BSY;
    925   1.1   mycroft 	/* target should respond by deasserting the SEL signal */
    926   1.1   mycroft 	for (i = 50000; i && (STATUS & STAT_SEL); i++);
    927   1.1   mycroft 	/* remove the busy status */
    928   1.1   mycroft 	CONTROL = BASE_CMD | CMD_DRVR_ENABLE;
    929   1.1   mycroft 	/* we are connected. Now we wait for the MSGIN condition */
    930   1.1   mycroft 	for (i = 50000; i && !(STATUS & STAT_REQ); i--);
    931   1.1   mycroft 	/* !! Add timeout check here */
    932   1.1   mycroft 	/* hope we get an IDENTIFY message */
    933   1.1   mycroft 	len = 3;
    934   1.1   mycroft 	data = msg;
    935   1.3   mycroft 	phase = PH_MSGIN;
    936   1.1   mycroft 	sea_transfer_pio(sea, &phase, &len, &data);
    937   1.1   mycroft 
    938  1.39    bouyer 	if (!MSG_ISIDENTIFY(msg[0])) {
    939  1.21  christos 		printf("%s: expecting IDENTIFY message, got 0x%x\n",
    940   1.1   mycroft 		    sea->sc_dev.dv_xname, msg[0]);
    941   1.1   mycroft 		abort = 1;
    942  1.16  christos 		scb = NULL;
    943   1.1   mycroft 	} else {
    944   1.1   mycroft 		lun = msg[0] & 0x07;
    945   1.1   mycroft 
    946   1.1   mycroft 		/*
    947   1.1   mycroft 		 * Find the command corresponding to the I_T_L or I_T_L_Q nexus
    948   1.1   mycroft 		 * we just reestablished, and remove it from the disconnected
    949   1.1   mycroft 		 * queue.
    950   1.1   mycroft 		 */
    951   1.3   mycroft 		for (scb = sea->nexus_list.tqh_first; scb;
    952   1.1   mycroft 		    scb = scb->chain.tqe_next)
    953  1.40    bouyer 			if (target_mask == (1 << scb->xs->xs_periph->periph_target) &&
    954  1.40    bouyer 			    lun == scb->xs->xs_periph->periph_lun) {
    955   1.3   mycroft 				TAILQ_REMOVE(&sea->nexus_list, scb,
    956   1.1   mycroft 				    chain);
    957   1.1   mycroft 				break;
    958   1.1   mycroft 			}
    959   1.1   mycroft 		if (!scb) {
    960  1.21  christos 			printf("%s: target %02x lun %d not disconnected\n",
    961   1.1   mycroft 			    sea->sc_dev.dv_xname, target_mask, lun);
    962   1.1   mycroft 			/*
    963   1.1   mycroft 			 * Since we have an established nexus that we can't do
    964   1.1   mycroft 			 * anything with, we must abort it.
    965   1.1   mycroft 			 */
    966   1.1   mycroft 			abort = 1;
    967   1.1   mycroft 		}
    968   1.1   mycroft 	}
    969   1.1   mycroft 
    970   1.1   mycroft 	if (abort) {
    971   1.1   mycroft 		msg[0] = MSG_ABORT;
    972   1.1   mycroft 		len = 1;
    973   1.1   mycroft 		data = msg;
    974   1.3   mycroft 		phase = PH_MSGOUT;
    975   1.1   mycroft 		CONTROL = BASE_CMD | CMD_ATTN;
    976   1.1   mycroft 		sea_transfer_pio(sea, &phase, &len, &data);
    977   1.1   mycroft 	} else
    978   1.3   mycroft 		sea->nexus = scb;
    979   1.1   mycroft 
    980   1.1   mycroft 	return;
    981   1.1   mycroft }
    982   1.1   mycroft 
    983   1.1   mycroft /*
    984   1.1   mycroft  * Transfer data in given phase using polled I/O.
    985   1.1   mycroft  */
    986   1.1   mycroft int
    987   1.1   mycroft sea_transfer_pio(sea, phase, count, data)
    988   1.1   mycroft 	struct sea_softc *sea;
    989   1.1   mycroft 	u_char *phase;
    990   1.3   mycroft 	int *count;
    991   1.1   mycroft 	u_char **data;
    992   1.1   mycroft {
    993  1.36  augustss 	u_char p = *phase, tmp;
    994  1.36  augustss 	int c = *count;
    995  1.36  augustss 	u_char *d = *data;
    996   1.1   mycroft 	int timeout;
    997   1.1   mycroft 
    998   1.1   mycroft 	do {
    999   1.1   mycroft 		/*
   1000   1.1   mycroft 		 * Wait for assertion of REQ, after which the phase bits will
   1001   1.1   mycroft 		 * be valid.
   1002   1.1   mycroft 		 */
   1003   1.3   mycroft 		for (timeout = 0; timeout < 50000; timeout++)
   1004   1.1   mycroft 			if ((tmp = STATUS) & STAT_REQ)
   1005   1.1   mycroft 				break;
   1006   1.1   mycroft 		if (!(tmp & STAT_REQ)) {
   1007  1.21  christos 			printf("%s: timeout waiting for STAT_REQ\n",
   1008   1.1   mycroft 			    sea->sc_dev.dv_xname);
   1009   1.1   mycroft 			break;
   1010   1.1   mycroft 		}
   1011   1.1   mycroft 
   1012   1.1   mycroft 		/*
   1013   1.1   mycroft 		 * Check for phase mismatch.  Reached if the target decides
   1014   1.1   mycroft 		 * that it has finished the transfer.
   1015   1.1   mycroft 		 */
   1016   1.3   mycroft 		if (sea->type == FDOMAIN840)
   1017   1.3   mycroft 			tmp = ((tmp & 0x08) >> 2) |
   1018   1.3   mycroft 			      ((tmp & 0x02) << 2) |
   1019   1.3   mycroft 			       (tmp & 0xf5);
   1020   1.3   mycroft 		if ((tmp & PH_MASK) != p)
   1021   1.1   mycroft 			break;
   1022   1.1   mycroft 
   1023   1.1   mycroft 		/* Do actual transfer from SCSI bus to/from memory. */
   1024   1.1   mycroft 		if (!(p & STAT_IO))
   1025   1.1   mycroft 			DATA = *d;
   1026   1.1   mycroft 		else
   1027   1.1   mycroft 			*d = DATA;
   1028   1.1   mycroft 		++d;
   1029   1.1   mycroft 
   1030   1.1   mycroft 		/*
   1031   1.1   mycroft 		 * The SCSI standard suggests that in MSGOUT phase, the
   1032   1.1   mycroft 		 * initiator should drop ATN on the last byte of the message
   1033   1.1   mycroft 		 * phase after REQ has been asserted for the handshake but
   1034   1.1   mycroft 		 * before the initiator raises ACK.
   1035   1.1   mycroft 		 * Don't know how to accomplish this on the ST01/02.
   1036   1.1   mycroft 		 */
   1037   1.1   mycroft 
   1038   1.1   mycroft #if 0
   1039   1.1   mycroft 		/*
   1040   1.1   mycroft 		 * XXX
   1041   1.1   mycroft 		 * The st01 code doesn't wait for STAT_REQ to be deasserted.
   1042   1.1   mycroft 		 * Is this ok?
   1043   1.1   mycroft 		 */
   1044   1.1   mycroft 		for (timeout = 0; timeout < 200000L; timeout++)
   1045   1.1   mycroft 			if (!(STATUS & STAT_REQ))
   1046   1.1   mycroft 				break;
   1047   1.1   mycroft 		if (STATUS & STAT_REQ)
   1048  1.21  christos 			printf("%s: timeout on wait for !STAT_REQ",
   1049   1.1   mycroft 			    sea->sc_dev.dv_xname);
   1050   1.1   mycroft #endif
   1051   1.1   mycroft 	} while (--c);
   1052   1.1   mycroft 
   1053   1.1   mycroft 	*count = c;
   1054   1.1   mycroft 	*data = d;
   1055   1.1   mycroft 	tmp = STATUS;
   1056   1.1   mycroft 	if (tmp & STAT_REQ)
   1057   1.3   mycroft 		*phase = tmp & PH_MASK;
   1058   1.1   mycroft 	else
   1059   1.3   mycroft 		*phase = PH_INVALID;
   1060   1.1   mycroft 
   1061   1.1   mycroft 	if (c && (*phase != p))
   1062   1.1   mycroft 		return -1;
   1063   1.1   mycroft 	return 0;
   1064   1.1   mycroft }
   1065   1.1   mycroft 
   1066   1.1   mycroft /*
   1067   1.1   mycroft  * Establish I_T_L or I_T_L_Q nexus for new or existing command including
   1068   1.1   mycroft  * ARBITRATION, SELECTION, and initial message out for IDENTIFY and queue
   1069   1.1   mycroft  * messages.  Return -1 if selection could not execute for some reason, 0 if
   1070   1.1   mycroft  * selection succeded or failed because the target did not respond.
   1071   1.1   mycroft  */
   1072   1.1   mycroft int
   1073   1.1   mycroft sea_select(sea, scb)
   1074   1.1   mycroft 	struct sea_softc *sea;
   1075   1.1   mycroft 	struct sea_scb *scb;
   1076   1.1   mycroft {
   1077   1.1   mycroft 	u_char msg[3], phase;
   1078   1.1   mycroft 	u_char *data;
   1079   1.3   mycroft 	int len;
   1080   1.1   mycroft 	int timeout;
   1081   1.1   mycroft 
   1082   1.1   mycroft 	CONTROL = BASE_CMD;
   1083   1.1   mycroft 	DATA = sea->our_id_mask;
   1084   1.1   mycroft 	CONTROL = (BASE_CMD & ~CMD_INTR) | CMD_START_ARB;
   1085   1.1   mycroft 
   1086   1.1   mycroft 	/* wait for arbitration to complete */
   1087   1.1   mycroft 	for (timeout = 0; timeout < 3000000L; timeout++)
   1088   1.1   mycroft 		if (STATUS & STAT_ARB_CMPL)
   1089   1.1   mycroft 			break;
   1090   1.1   mycroft 	if (!(STATUS & STAT_ARB_CMPL)) {
   1091   1.1   mycroft 		if (STATUS & STAT_SEL) {
   1092  1.21  christos 			printf("%s: arbitration lost\n", sea->sc_dev.dv_xname);
   1093   1.1   mycroft 			scb->flags |= SCB_ERROR;
   1094   1.1   mycroft 		} else {
   1095  1.21  christos 			printf("%s: arbitration timeout\n",
   1096   1.1   mycroft 			    sea->sc_dev.dv_xname);
   1097   1.1   mycroft 			scb->flags |= SCB_TIMEOUT;
   1098   1.1   mycroft 		}
   1099   1.1   mycroft 		CONTROL = BASE_CMD;
   1100   1.1   mycroft 		return -1;
   1101   1.1   mycroft 	}
   1102   1.1   mycroft 
   1103   1.1   mycroft 	delay(2);
   1104  1.40    bouyer 	DATA = (u_char)((1 << scb->xs->xs_periph->periph_target) |
   1105  1.23    bouyer 		sea->our_id_mask);
   1106   1.1   mycroft 	CONTROL =
   1107   1.1   mycroft #ifdef SEA_NOMSGS
   1108   1.1   mycroft 	    (BASE_CMD & ~CMD_INTR) | CMD_DRVR_ENABLE | CMD_SEL;
   1109   1.1   mycroft #else
   1110   1.1   mycroft 	    (BASE_CMD & ~CMD_INTR) | CMD_DRVR_ENABLE | CMD_SEL | CMD_ATTN;
   1111   1.1   mycroft #endif
   1112   1.1   mycroft 	delay(1);
   1113   1.1   mycroft 
   1114   1.1   mycroft 	/* wait for a bsy from target */
   1115   1.1   mycroft 	for (timeout = 0; timeout < 2000000L; timeout++)
   1116   1.1   mycroft 		if (STATUS & STAT_BSY)
   1117   1.1   mycroft 			break;
   1118   1.1   mycroft 	if (!(STATUS & STAT_BSY)) {
   1119   1.1   mycroft 		/* should return some error to the higher level driver */
   1120   1.1   mycroft 		CONTROL = BASE_CMD;
   1121   1.1   mycroft 		scb->flags |= SCB_TIMEOUT;
   1122   1.1   mycroft 		return 0;
   1123   1.1   mycroft 	}
   1124   1.1   mycroft 
   1125   1.1   mycroft 	/* Try to make the target to take a message from us */
   1126   1.1   mycroft #ifdef SEA_NOMSGS
   1127   1.1   mycroft 	CONTROL = (BASE_CMD & ~CMD_INTR) | CMD_DRVR_ENABLE;
   1128   1.1   mycroft #else
   1129   1.1   mycroft 	CONTROL = (BASE_CMD & ~CMD_INTR) | CMD_DRVR_ENABLE | CMD_ATTN;
   1130   1.1   mycroft #endif
   1131   1.1   mycroft 	delay(1);
   1132   1.1   mycroft 
   1133   1.1   mycroft 	/* should start a msg_out phase */
   1134   1.1   mycroft 	for (timeout = 0; timeout < 2000000L; timeout++)
   1135   1.1   mycroft 		if (STATUS & STAT_REQ)
   1136   1.1   mycroft 			break;
   1137   1.3   mycroft 	/* Remove ATN. */
   1138   1.1   mycroft 	CONTROL = BASE_CMD | CMD_DRVR_ENABLE;
   1139   1.1   mycroft 	if (!(STATUS & STAT_REQ)) {
   1140   1.1   mycroft 		/*
   1141   1.1   mycroft 		 * This should not be taken as an error, but more like an
   1142   1.1   mycroft 		 * unsupported feature!  Should set a flag indicating that the
   1143   1.1   mycroft 		 * target don't support messages, and continue without failure.
   1144   1.1   mycroft 		 * (THIS IS NOT AN ERROR!)
   1145   1.1   mycroft 		 */
   1146   1.1   mycroft 	} else {
   1147  1.40    bouyer 		msg[0] = MSG_IDENTIFY(scb->xs->xs_periph->periph_lun, 1);
   1148   1.1   mycroft 		len = 1;
   1149   1.1   mycroft 		data = msg;
   1150   1.3   mycroft 		phase = PH_MSGOUT;
   1151   1.1   mycroft 		/* Should do test on result of sea_transfer_pio(). */
   1152   1.1   mycroft 		sea_transfer_pio(sea, &phase, &len, &data);
   1153   1.1   mycroft 	}
   1154   1.1   mycroft 	if (!(STATUS & STAT_BSY))
   1155  1.21  christos 		printf("%s: after successful arbitrate: no STAT_BSY!\n",
   1156   1.1   mycroft 		    sea->sc_dev.dv_xname);
   1157   1.1   mycroft 
   1158   1.3   mycroft 	sea->nexus = scb;
   1159  1.40    bouyer 	sea->busy[scb->xs->xs_periph->periph_target] |=
   1160  1.40    bouyer 	    1 << scb->xs->xs_periph->periph_lun;
   1161   1.1   mycroft 	/* This assignment should depend on possibility to send a message to target. */
   1162   1.1   mycroft 	CONTROL = BASE_CMD | CMD_DRVR_ENABLE;
   1163   1.1   mycroft 	/* XXX Reset pointer in command? */
   1164   1.1   mycroft 	return 0;
   1165   1.1   mycroft }
   1166   1.1   mycroft 
   1167   1.1   mycroft /*
   1168   1.1   mycroft  * Send an abort to the target.  Return 1 success, 0 on failure.
   1169   1.1   mycroft  */
   1170   1.1   mycroft int
   1171   1.1   mycroft sea_abort(sea, scb)
   1172   1.1   mycroft 	struct sea_softc *sea;
   1173   1.1   mycroft 	struct sea_scb *scb;
   1174   1.1   mycroft {
   1175   1.1   mycroft 	struct sea_scb *tmp;
   1176   1.1   mycroft 	u_char msg, phase, *msgptr;
   1177   1.3   mycroft 	int len;
   1178   1.1   mycroft 
   1179   1.1   mycroft 	/*
   1180   1.1   mycroft 	 * If the command hasn't been issued yet, we simply remove it from the
   1181   1.1   mycroft 	 * issue queue
   1182   1.1   mycroft 	 * XXX Could avoid this loop.
   1183   1.1   mycroft 	 */
   1184   1.3   mycroft 	for (tmp = sea->ready_list.tqh_first; tmp; tmp = tmp->chain.tqe_next)
   1185   1.1   mycroft 		if (scb == tmp) {
   1186   1.3   mycroft 			TAILQ_REMOVE(&sea->ready_list, scb, chain);
   1187   1.1   mycroft 			/* XXX Set some type of error result for operation. */
   1188   1.1   mycroft 			return 1;
   1189   1.1   mycroft 		}
   1190   1.1   mycroft 
   1191   1.1   mycroft 	/*
   1192   1.1   mycroft 	 * If any commands are connected, we're going to fail the abort and let
   1193   1.1   mycroft 	 * the high level SCSI driver retry at a later time or issue a reset.
   1194   1.1   mycroft 	 */
   1195   1.3   mycroft 	if (sea->nexus)
   1196   1.1   mycroft 		return 0;
   1197   1.1   mycroft 
   1198   1.1   mycroft 	/*
   1199   1.1   mycroft 	 * If the command is currently disconnected from the bus, and there are
   1200   1.1   mycroft 	 * no connected commands, we reconnect the I_T_L or I_T_L_Q nexus
   1201   1.1   mycroft 	 * associated with it, go into message out, and send an abort message.
   1202   1.1   mycroft 	 */
   1203   1.3   mycroft 	for (tmp = sea->nexus_list.tqh_first; tmp;
   1204   1.1   mycroft 	    tmp = tmp->chain.tqe_next)
   1205   1.1   mycroft 		if (scb == tmp) {
   1206   1.1   mycroft 			if (sea_select(sea, scb))
   1207   1.1   mycroft 				return 0;
   1208   1.1   mycroft 
   1209   1.1   mycroft 			msg = MSG_ABORT;
   1210   1.1   mycroft 			msgptr = &msg;
   1211   1.1   mycroft 			len = 1;
   1212   1.3   mycroft 			phase = PH_MSGOUT;
   1213   1.1   mycroft 			CONTROL = BASE_CMD | CMD_ATTN;
   1214   1.1   mycroft 			sea_transfer_pio(sea, &phase, &len, &msgptr);
   1215   1.1   mycroft 
   1216   1.3   mycroft 			for (tmp = sea->nexus_list.tqh_first; tmp;
   1217   1.1   mycroft 			    tmp = tmp->chain.tqe_next)
   1218   1.1   mycroft 				if (scb == tmp) {
   1219   1.3   mycroft 					TAILQ_REMOVE(&sea->nexus_list,
   1220   1.1   mycroft 					    scb, chain);
   1221   1.1   mycroft 					/* XXX Set some type of error result
   1222   1.1   mycroft 					   for the operation. */
   1223   1.1   mycroft 					return 1;
   1224   1.1   mycroft 				}
   1225   1.1   mycroft 		}
   1226   1.1   mycroft 
   1227   1.1   mycroft 	/* Command not found in any queue; race condition? */
   1228   1.1   mycroft 	return 1;
   1229   1.1   mycroft }
   1230   1.1   mycroft 
   1231   1.1   mycroft void
   1232   1.1   mycroft sea_done(sea, scb)
   1233   1.1   mycroft 	struct sea_softc *sea;
   1234   1.1   mycroft 	struct sea_scb *scb;
   1235   1.1   mycroft {
   1236  1.23    bouyer 	struct scsipi_xfer *xs = scb->xs;
   1237   1.1   mycroft 
   1238  1.35   thorpej 	callout_stop(&scb->xs->xs_callout);
   1239   1.1   mycroft 
   1240   1.1   mycroft 	xs->resid = scb->datalen;
   1241   1.1   mycroft 
   1242   1.3   mycroft 	/* XXXX need to get status */
   1243   1.3   mycroft 	if (scb->flags == SCB_ACTIVE) {
   1244   1.1   mycroft 		xs->resid = 0;
   1245   1.1   mycroft 	} else {
   1246   1.3   mycroft 		if (scb->flags & (SCB_TIMEOUT | SCB_ABORTED))
   1247   1.3   mycroft 			xs->error = XS_TIMEOUT;
   1248   1.3   mycroft 		if (scb->flags & SCB_ERROR)
   1249   1.1   mycroft 			xs->error = XS_DRIVER_STUFFUP;
   1250   1.1   mycroft 	}
   1251  1.34   thorpej 	sea_free_scb(sea, scb, xs->xs_control);
   1252  1.23    bouyer 	scsipi_done(xs);
   1253   1.1   mycroft }
   1254   1.1   mycroft 
   1255   1.1   mycroft /*
   1256   1.1   mycroft  * Wait for completion of command in polled mode.
   1257   1.1   mycroft  */
   1258   1.1   mycroft int
   1259   1.3   mycroft sea_poll(sea, xs, count)
   1260   1.1   mycroft 	struct sea_softc *sea;
   1261  1.23    bouyer 	struct scsipi_xfer *xs;
   1262   1.3   mycroft 	int count;
   1263   1.1   mycroft {
   1264   1.1   mycroft 	int s;
   1265   1.1   mycroft 
   1266   1.1   mycroft 	while (count) {
   1267   1.1   mycroft 		/* try to do something */
   1268   1.1   mycroft 		s = splbio();
   1269   1.1   mycroft 		if (!main_running)
   1270   1.1   mycroft 			sea_main();
   1271   1.1   mycroft 		splx(s);
   1272  1.34   thorpej 		if (xs->xs_status & XS_STS_DONE)
   1273   1.3   mycroft 			return 0;
   1274   1.3   mycroft 		delay(1000);
   1275   1.1   mycroft 		count--;
   1276   1.1   mycroft 	}
   1277   1.3   mycroft 	return 1;
   1278   1.1   mycroft }
   1279   1.1   mycroft 
   1280   1.1   mycroft /*
   1281   1.1   mycroft  * Do the transfer.  We know we are connected.  Update the flags, and call
   1282   1.1   mycroft  * sea_done() when task accomplished.  Dialog controlled by the target.
   1283   1.1   mycroft  */
   1284   1.1   mycroft void
   1285   1.1   mycroft sea_information_transfer(sea)
   1286   1.1   mycroft 	struct sea_softc *sea;
   1287   1.1   mycroft {
   1288   1.1   mycroft 	int timeout;
   1289   1.3   mycroft 	u_char msgout = MSG_NOOP;
   1290   1.3   mycroft 	int len;
   1291   1.1   mycroft 	int s;
   1292   1.1   mycroft 	u_char *data;
   1293   1.3   mycroft 	u_char phase, tmp, old_phase = PH_INVALID;
   1294   1.3   mycroft 	struct sea_scb *scb = sea->nexus;
   1295   1.1   mycroft 	int loop;
   1296   1.1   mycroft 
   1297   1.1   mycroft 	for (timeout = 0; timeout < 10000000L; timeout++) {
   1298   1.1   mycroft 		tmp = STATUS;
   1299   1.3   mycroft 		if (tmp & STAT_PARITY)
   1300  1.21  christos 			printf("%s: parity error detected\n",
   1301   1.3   mycroft 			    sea->sc_dev.dv_xname);
   1302   1.1   mycroft 		if (!(tmp & STAT_BSY)) {
   1303   1.1   mycroft 			for (loop = 0; loop < 20; loop++)
   1304   1.1   mycroft 				if ((tmp = STATUS) & STAT_BSY)
   1305   1.1   mycroft 					break;
   1306   1.1   mycroft 			if (!(tmp & STAT_BSY)) {
   1307  1.21  christos 				printf("%s: !STAT_BSY unit in data transfer!\n",
   1308   1.1   mycroft 				    sea->sc_dev.dv_xname);
   1309   1.1   mycroft 				s = splbio();
   1310   1.3   mycroft 				sea->nexus = NULL;
   1311   1.1   mycroft 				scb->flags = SCB_ERROR;
   1312   1.1   mycroft 				splx(s);
   1313   1.1   mycroft 				sea_done(sea, scb);
   1314   1.1   mycroft 				return;
   1315   1.1   mycroft 			}
   1316   1.1   mycroft 		}
   1317   1.1   mycroft 
   1318   1.1   mycroft 		/* we only have a valid SCSI phase when REQ is asserted */
   1319   1.1   mycroft 		if (!(tmp & STAT_REQ))
   1320   1.1   mycroft 			continue;
   1321   1.1   mycroft 
   1322   1.3   mycroft 		if (sea->type == FDOMAIN840)
   1323   1.3   mycroft 			tmp = ((tmp & 0x08) >> 2) |
   1324   1.3   mycroft 			      ((tmp & 0x02) << 2) |
   1325   1.3   mycroft 			       (tmp & 0xf5);
   1326   1.3   mycroft 		phase = tmp & PH_MASK;
   1327   1.1   mycroft 		if (phase != old_phase)
   1328   1.1   mycroft 			old_phase = phase;
   1329   1.1   mycroft 
   1330   1.1   mycroft 		switch (phase) {
   1331   1.3   mycroft 		case PH_DATAOUT:
   1332   1.1   mycroft #ifdef SEA_NODATAOUT
   1333  1.21  christos 			printf("%s: SEA_NODATAOUT set, attempted DATAOUT aborted\n",
   1334   1.1   mycroft 			    sea->sc_dev.dv_xname);
   1335   1.1   mycroft 			msgout = MSG_ABORT;
   1336   1.1   mycroft 			CONTROL = BASE_CMD | CMD_ATTN;
   1337   1.1   mycroft 			break;
   1338   1.1   mycroft #endif
   1339   1.3   mycroft 		case PH_DATAIN:
   1340   1.1   mycroft 			if (!scb->data)
   1341  1.21  christos 				printf("no data address!\n");
   1342   1.1   mycroft #ifdef SEA_BLINDTRANSFER
   1343   1.1   mycroft 			if (scb->datalen && !(scb->datalen % BLOCK_SIZE)) {
   1344   1.1   mycroft 				while (scb->datalen) {
   1345   1.3   mycroft 					for (loop = 0; loop < 50000; loop++)
   1346   1.1   mycroft 						if ((tmp = STATUS) & STAT_REQ)
   1347   1.1   mycroft 							break;
   1348   1.1   mycroft 					if (!(tmp & STAT_REQ)) {
   1349  1.21  christos 						printf("%s: timeout waiting for STAT_REQ\n",
   1350   1.1   mycroft 						    sea->sc_dev.dv_xname);
   1351   1.1   mycroft 						/* XXX Do something? */
   1352   1.1   mycroft 					}
   1353   1.3   mycroft 					if (sea->type == FDOMAIN840)
   1354   1.3   mycroft 						tmp = ((tmp & 0x08) >> 2) |
   1355   1.3   mycroft 						      ((tmp & 0x02) << 2) |
   1356   1.3   mycroft 						       (tmp & 0xf5);
   1357   1.3   mycroft 					if ((tmp & PH_MASK) != phase)
   1358   1.1   mycroft 						break;
   1359   1.1   mycroft 					if (!(phase & STAT_IO)) {
   1360   1.1   mycroft #ifdef SEA_ASSEMBLER
   1361  1.37   mycroft 						caddr_t junk;
   1362  1.37   mycroft 						asm("cld\n\t\
   1363   1.1   mycroft 						    rep\n\t\
   1364   1.1   mycroft 						    movsl" :
   1365  1.37   mycroft 						    "=S" (scb->data),
   1366  1.37   mycroft 						    "=c" (len),
   1367  1.37   mycroft 						    "=D" (junk) :
   1368   1.1   mycroft 						    "0" (scb->data),
   1369  1.37   mycroft 						    "1" (BLOCK_SIZE >> 2),
   1370  1.37   mycroft 						    "2" (sea->maddr_dr));
   1371   1.1   mycroft #else
   1372  1.37   mycroft 					        for (len = BLOCK_SIZE;
   1373  1.37   mycroft 						    len; len--)
   1374   1.1   mycroft 							DATA = *(scb->data++);
   1375   1.1   mycroft #endif
   1376   1.1   mycroft 					} else {
   1377   1.1   mycroft #ifdef SEA_ASSEMBLER
   1378  1.37   mycroft 						caddr_t junk;
   1379  1.37   mycroft 						asm("cld\n\t\
   1380   1.1   mycroft 						    rep\n\t\
   1381   1.1   mycroft 						    movsl" :
   1382  1.37   mycroft 						    "=D" (scb->data),
   1383  1.37   mycroft 						    "=c" (len),
   1384  1.37   mycroft 						    "=S" (junk) :
   1385   1.1   mycroft 						    "0" (scb->data),
   1386  1.37   mycroft 						    "1" (BLOCK_SIZE >> 2),
   1387  1.37   mycroft 						    "2" (sea->maddr_dr));
   1388   1.1   mycroft #else
   1389  1.37   mycroft 					        for (len = BLOCK_SIZE;
   1390  1.37   mycroft 						    len; len--)
   1391   1.1   mycroft 							*(scb->data++) = DATA;
   1392   1.1   mycroft #endif
   1393   1.1   mycroft 					}
   1394   1.1   mycroft 					scb->datalen -= BLOCK_SIZE;
   1395   1.1   mycroft 				}
   1396   1.1   mycroft 			}
   1397   1.1   mycroft #endif
   1398   1.1   mycroft 			if (scb->datalen)
   1399   1.1   mycroft 				sea_transfer_pio(sea, &phase, &scb->datalen,
   1400   1.1   mycroft 				    &scb->data);
   1401   1.1   mycroft 			break;
   1402   1.3   mycroft 		case PH_MSGIN:
   1403   1.1   mycroft 			/* Multibyte messages should not be present here. */
   1404   1.1   mycroft 			len = 1;
   1405   1.1   mycroft 			data = &tmp;
   1406   1.1   mycroft 			sea_transfer_pio(sea, &phase, &len, &data);
   1407   1.1   mycroft 			/* scb->MessageIn = tmp; */
   1408   1.1   mycroft 
   1409   1.1   mycroft 			switch (tmp) {
   1410   1.1   mycroft 			case MSG_ABORT:
   1411   1.1   mycroft 				scb->flags = SCB_ABORTED;
   1412  1.21  christos 				printf("sea: command aborted by target\n");
   1413   1.1   mycroft 				CONTROL = BASE_CMD;
   1414   1.1   mycroft 				sea_done(sea, scb);
   1415   1.1   mycroft 				return;
   1416   1.3   mycroft 			case MSG_CMDCOMPLETE:
   1417   1.1   mycroft 				s = splbio();
   1418   1.3   mycroft 				sea->nexus = NULL;
   1419   1.1   mycroft 				splx(s);
   1420  1.40    bouyer 				sea->busy[scb->xs->xs_periph->periph_target] &=
   1421  1.40    bouyer 				    ~(1 << scb->xs->xs_periph->periph_lun);
   1422   1.1   mycroft 				CONTROL = BASE_CMD;
   1423   1.1   mycroft 				sea_done(sea, scb);
   1424   1.1   mycroft 				return;
   1425   1.1   mycroft 			case MSG_MESSAGE_REJECT:
   1426  1.41       wiz 				printf("%s: message_reject received\n",
   1427   1.1   mycroft 				    sea->sc_dev.dv_xname);
   1428   1.1   mycroft 				break;
   1429   1.1   mycroft 			case MSG_DISCONNECT:
   1430   1.1   mycroft 				s = splbio();
   1431   1.3   mycroft 				TAILQ_INSERT_TAIL(&sea->nexus_list,
   1432   1.1   mycroft 				    scb, chain);
   1433   1.3   mycroft 				sea->nexus = NULL;
   1434   1.1   mycroft 				CONTROL = BASE_CMD;
   1435   1.1   mycroft 				splx(s);
   1436   1.1   mycroft 				return;
   1437   1.3   mycroft 			case MSG_SAVEDATAPOINTER:
   1438   1.3   mycroft 			case MSG_RESTOREPOINTERS:
   1439   1.1   mycroft 				/* save/restore of pointers are ignored */
   1440   1.1   mycroft 				break;
   1441   1.1   mycroft 			default:
   1442   1.1   mycroft 				/*
   1443   1.1   mycroft 				 * This should be handled in the pio data
   1444   1.1   mycroft 				 * transfer phase, as the ATN should be raised
   1445   1.1   mycroft 				 * before ACK goes false when rejecting a
   1446   1.1   mycroft 				 * message.
   1447   1.1   mycroft 				 */
   1448  1.21  christos 				printf("%s: unknown message in: %x\n",
   1449   1.1   mycroft 				    sea->sc_dev.dv_xname, tmp);
   1450   1.1   mycroft 				break;
   1451   1.1   mycroft 			} /* switch (tmp) */
   1452   1.1   mycroft 			break;
   1453   1.3   mycroft 		case PH_MSGOUT:
   1454   1.1   mycroft 			len = 1;
   1455   1.1   mycroft 			data = &msgout;
   1456   1.1   mycroft 			/* sea->last_message = msgout; */
   1457   1.1   mycroft 			sea_transfer_pio(sea, &phase, &len, &data);
   1458   1.1   mycroft 			if (msgout == MSG_ABORT) {
   1459  1.21  christos 				printf("%s: sent message abort to target\n",
   1460   1.1   mycroft 				    sea->sc_dev.dv_xname);
   1461   1.1   mycroft 				s = splbio();
   1462  1.40    bouyer 				sea->busy[scb->xs->xs_periph->periph_target] &=
   1463  1.40    bouyer 				    ~(1 << scb->xs->xs_periph->periph_lun);
   1464   1.3   mycroft 				sea->nexus = NULL;
   1465   1.1   mycroft 				scb->flags = SCB_ABORTED;
   1466   1.1   mycroft 				splx(s);
   1467   1.1   mycroft 				/* enable interrupt from scsi */
   1468   1.1   mycroft 				sea_done(sea, scb);
   1469   1.1   mycroft 				return;
   1470   1.1   mycroft 			}
   1471   1.3   mycroft 			msgout = MSG_NOOP;
   1472   1.1   mycroft 			break;
   1473   1.3   mycroft 		case PH_CMD:
   1474   1.3   mycroft 			len = scb->xs->cmdlen;
   1475   1.3   mycroft 			data = (char *) scb->xs->cmd;
   1476   1.1   mycroft 			sea_transfer_pio(sea, &phase, &len, &data);
   1477   1.1   mycroft 			break;
   1478   1.3   mycroft 		case PH_STAT:
   1479   1.1   mycroft 			len = 1;
   1480   1.1   mycroft 			data = &tmp;
   1481   1.1   mycroft 			sea_transfer_pio(sea, &phase, &len, &data);
   1482   1.3   mycroft 			scb->xs->status = tmp;
   1483   1.1   mycroft 			break;
   1484   1.1   mycroft 		default:
   1485  1.21  christos 			printf("sea: unknown phase\n");
   1486   1.1   mycroft 		} /* switch (phase) */
   1487   1.1   mycroft 	} /* for (...) */
   1488   1.1   mycroft 
   1489   1.1   mycroft 	/* If we get here we have got a timeout! */
   1490  1.21  christos 	printf("%s: timeout in data transfer\n", sea->sc_dev.dv_xname);
   1491   1.1   mycroft 	scb->flags = SCB_TIMEOUT;
   1492   1.1   mycroft 	/* XXX Should I clear scsi-bus state? */
   1493   1.1   mycroft 	sea_done(sea, scb);
   1494   1.1   mycroft }
   1495