Home | History | Annotate | Line # | Download | only in ic
ncr53c9xvar.h revision 1.6.2.5
      1  1.6.2.5   bouyer /*	$NetBSD: ncr53c9xvar.h,v 1.6.2.5 1997/08/27 08:20:48 bouyer Exp $	*/
      2      1.1  thorpej 
      3      1.1  thorpej /*
      4      1.1  thorpej  * Copyright (c) 1997 Jason R. Thorpe.
      5      1.1  thorpej  * All rights reserved.
      6      1.1  thorpej  *
      7      1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      8      1.1  thorpej  * modification, are permitted provided that the following conditions
      9      1.1  thorpej  * are met:
     10      1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     11      1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     12      1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     15      1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     16      1.1  thorpej  *    must display the following acknowledgement:
     17      1.1  thorpej  *	This product includes software developed for the NetBSD Project
     18      1.1  thorpej  *	by Jason R. Thorpe.
     19      1.1  thorpej  * 4. The name of the author may not be used to endorse or promote products
     20      1.1  thorpej  *    derived from this software without specific prior written permission.
     21      1.1  thorpej  *
     22      1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23      1.1  thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24      1.1  thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25      1.1  thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26      1.1  thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27      1.1  thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28      1.1  thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29      1.1  thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30      1.1  thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31      1.1  thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32      1.1  thorpej  */
     33      1.1  thorpej 
     34      1.1  thorpej /*
     35      1.1  thorpej  * Copyright (c) 1994 Peter Galbavy.  All rights reserved.
     36      1.1  thorpej  *
     37      1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     38      1.1  thorpej  * modification, are permitted provided that the following conditions
     39      1.1  thorpej  * are met:
     40      1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     41      1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     42      1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     43      1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     44      1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     45      1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     46      1.1  thorpej  *    must display the following acknowledgement:
     47      1.1  thorpej  *	This product includes software developed by Peter Galbavy.
     48      1.1  thorpej  * 4. The name of the author may not be used to endorse or promote products
     49      1.1  thorpej  *    derived from this software without specific prior written permission.
     50      1.1  thorpej  *
     51      1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     52      1.1  thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     53      1.1  thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     54      1.1  thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     55      1.1  thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     56      1.1  thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     57      1.1  thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     58      1.1  thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     59      1.1  thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     60      1.1  thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     61      1.1  thorpej  */
     62      1.1  thorpej 
     63      1.4      gwr /* Set this to 1 for normal debug, or 2 for per-target tracing. */
     64      1.5       pk #define NCR53C9X_DEBUG		1
     65      1.1  thorpej 
     66      1.1  thorpej #define	NCR_ABORT_TIMEOUT	2000	/* time to wait for abort */
     67      1.4      gwr #define	NCR_SENSE_TIMEOUT	1000	/* time to wait for sense */
     68      1.1  thorpej 
     69      1.1  thorpej #define FREQTOCCF(freq)	(((freq + 4) / 5))
     70      1.1  thorpej 
     71      1.1  thorpej /*
     72      1.1  thorpej  * NCR 53c9x variants.  Note, these values are used as indexes into
     73      1.1  thorpej  * a table; don't modify them unless you know what you're doing.
     74      1.1  thorpej  */
     75      1.1  thorpej #define	NCR_VARIANT_ESP100		0
     76      1.1  thorpej #define	NCR_VARIANT_ESP100A		1
     77      1.1  thorpej #define	NCR_VARIANT_ESP200		2
     78      1.1  thorpej #define	NCR_VARIANT_NCR53C94		3
     79      1.2   briggs #define	NCR_VARIANT_NCR53C96		4
     80      1.6       pk #define	NCR_VARIANT_ESP406		5
     81      1.6       pk #define	NCR_VARIANT_FAS408		6
     82      1.6       pk #define	NCR_VARIANT_MAX			7
     83      1.1  thorpej 
     84      1.1  thorpej /*
     85      1.1  thorpej  * ECB. Holds additional information for each SCSI command Comments: We
     86      1.1  thorpej  * need a separate scsi command block because we may need to overwrite it
     87      1.1  thorpej  * with a request sense command.  Basicly, we refrain from fiddling with
     88  1.6.2.1   bouyer  * the scsipi_xfer struct (except do the expected updating of return values).
     89      1.1  thorpej  * We'll generally update: xs->{flags,resid,error,sense,status} and
     90      1.1  thorpej  * occasionally xs->retries.
     91      1.1  thorpej  */
     92      1.1  thorpej struct ncr53c9x_ecb {
     93      1.1  thorpej 	TAILQ_ENTRY(ncr53c9x_ecb) chain;
     94  1.6.2.1   bouyer 	struct scsipi_xfer *xs;	/* SCSI xfer ctrl block from above */
     95      1.1  thorpej 	int flags;
     96  1.6.2.2   bouyer #define	ECB_ALLOC			0x01
     97  1.6.2.2   bouyer #define	ECB_NEXUS			0x02
     98  1.6.2.2   bouyer #define	ECB_SENSE			0x04
     99  1.6.2.2   bouyer #define	ECB_ABORT			0x40
    100  1.6.2.2   bouyer #define	ECB_RESET			0x80
    101  1.6.2.2   bouyer #define	ECB_TENTATIVE_DONE	0x100
    102      1.1  thorpej 	int timeout;
    103      1.1  thorpej 
    104      1.5       pk 	struct {
    105      1.5       pk 		u_char	id;			/* Selection Id msg */
    106      1.5       pk 		struct scsi_generic cmd;	/* SCSI command block */
    107      1.5       pk 	} cmd;
    108      1.5       pk 	int	 clen;		/* Size of command in cmd.cmd */
    109      1.1  thorpej 	char	*daddr;		/* Saved data pointer */
    110      1.1  thorpej 	int	 dleft;		/* Residue */
    111      1.1  thorpej 	u_char 	 stat;		/* SCSI status byte */
    112      1.4      gwr 	u_char	pad[3];
    113      1.1  thorpej 
    114      1.4      gwr #if NCR53C9X_DEBUG > 1
    115      1.1  thorpej 	char trace[1000];
    116      1.1  thorpej #endif
    117      1.1  thorpej };
    118      1.4      gwr #if NCR53C9X_DEBUG > 1
    119      1.1  thorpej #define ECB_TRACE(ecb, msg, a, b) do { \
    120      1.1  thorpej 	const char *f = "[" msg "]"; \
    121      1.1  thorpej 	int n = strlen((ecb)->trace); \
    122      1.1  thorpej 	if (n < (sizeof((ecb)->trace)-100)) \
    123      1.1  thorpej 		sprintf((ecb)->trace + n, f,  a, b); \
    124      1.1  thorpej } while(0)
    125      1.1  thorpej #else
    126      1.1  thorpej #define ECB_TRACE(ecb, msg, a, b)
    127      1.1  thorpej #endif
    128      1.1  thorpej 
    129      1.1  thorpej /*
    130      1.1  thorpej  * Some info about each (possible) target on the SCSI bus.  This should
    131      1.1  thorpej  * probably have been a "per target+lunit" structure, but we'll leave it at
    132      1.1  thorpej  * this for now.  Is there a way to reliably hook it up to sc->fordriver??
    133      1.1  thorpej  */
    134      1.1  thorpej struct ncr53c9x_tinfo {
    135      1.1  thorpej 	int	cmds;		/* #commands processed */
    136      1.1  thorpej 	int	dconns;		/* #disconnects */
    137      1.1  thorpej 	int	touts;		/* #timeouts */
    138      1.1  thorpej 	int	perrs;		/* #parity errors */
    139      1.1  thorpej 	int	senses;		/* #request sense commands sent */
    140      1.1  thorpej 	ushort	lubusy;		/* What local units/subr. are busy? */
    141      1.1  thorpej 	u_char  flags;
    142      1.1  thorpej #define T_NEED_TO_RESET	0x01	/* Should send a BUS_DEV_RESET */
    143      1.1  thorpej #define T_NEGOTIATE	0x02	/* (Re)Negotiate synchronous options */
    144      1.1  thorpej #define T_BUSY		0x04	/* Target is busy, i.e. cmd in progress */
    145      1.1  thorpej #define T_SYNCMODE	0x08	/* sync mode has been negotiated */
    146      1.1  thorpej #define T_SYNCHOFF	0x10	/* .. */
    147      1.1  thorpej #define T_RSELECTOFF	0x20	/* .. */
    148      1.1  thorpej 	u_char  period;		/* Period suggestion */
    149      1.1  thorpej 	u_char  offset;		/* Offset suggestion */
    150      1.4      gwr 	u_char	pad[3];
    151      1.1  thorpej } tinfo_t;
    152      1.1  thorpej 
    153      1.1  thorpej /* Register a linenumber (for debugging) */
    154      1.1  thorpej #define LOGLINE(p)
    155      1.1  thorpej 
    156      1.1  thorpej #define NCR_SHOWECBS	0x01
    157      1.1  thorpej #define NCR_SHOWINTS	0x02
    158      1.1  thorpej #define NCR_SHOWCMDS	0x04
    159      1.1  thorpej #define NCR_SHOWMISC	0x08
    160      1.1  thorpej #define NCR_SHOWTRAC	0x10
    161      1.1  thorpej #define NCR_SHOWSTART	0x20
    162      1.1  thorpej #define NCR_SHOWPHASE	0x40
    163      1.1  thorpej #define NCR_SHOWDMA	0x80
    164      1.1  thorpej #define NCR_SHOWCCMDS	0x100
    165      1.1  thorpej #define NCR_SHOWMSGS	0x200
    166      1.1  thorpej 
    167      1.1  thorpej #ifdef NCR53C9X_DEBUG
    168      1.1  thorpej extern int ncr53c9x_debug;
    169      1.1  thorpej #define NCR_ECBS(str)	\
    170      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWECBS) printf str;} while (0)
    171      1.1  thorpej #define NCR_MISC(str)	\
    172      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWMISC) printf str;} while (0)
    173      1.1  thorpej #define NCR_INTS(str)	\
    174      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWINTS) printf str;} while (0)
    175      1.1  thorpej #define NCR_TRACE(str)	\
    176      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWTRAC) printf str;} while (0)
    177      1.1  thorpej #define NCR_CMDS(str)	\
    178      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWCMDS) printf str;} while (0)
    179      1.1  thorpej #define NCR_START(str)	\
    180      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWSTART) printf str;}while (0)
    181      1.1  thorpej #define NCR_PHASE(str)	\
    182      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWPHASE) printf str;}while (0)
    183      1.1  thorpej #define NCR_DMA(str)	\
    184      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWDMA) printf str;}while (0)
    185      1.1  thorpej #define NCR_MSGS(str)	\
    186      1.1  thorpej 	do {if (ncr53c9x_debug & NCR_SHOWMSGS) printf str;}while (0)
    187      1.1  thorpej #else
    188      1.1  thorpej #define NCR_ECBS(str)
    189      1.1  thorpej #define NCR_MISC(str)
    190      1.1  thorpej #define NCR_INTS(str)
    191      1.1  thorpej #define NCR_TRACE(str)
    192      1.1  thorpej #define NCR_CMDS(str)
    193      1.1  thorpej #define NCR_START(str)
    194      1.1  thorpej #define NCR_PHASE(str)
    195      1.1  thorpej #define NCR_DMA(str)
    196      1.1  thorpej #define NCR_MSGS(str)
    197      1.1  thorpej #endif
    198      1.1  thorpej 
    199      1.1  thorpej #define NCR_MAX_MSG_LEN 8
    200      1.1  thorpej 
    201      1.1  thorpej struct ncr53c9x_softc;
    202      1.1  thorpej 
    203      1.1  thorpej /*
    204      1.1  thorpej  * Function switch used as glue to MD code.
    205      1.1  thorpej  */
    206      1.1  thorpej struct ncr53c9x_glue {
    207      1.1  thorpej 	/* Mandatory entry points. */
    208      1.1  thorpej 	u_char	(*gl_read_reg) __P((struct ncr53c9x_softc *, int));
    209      1.1  thorpej 	void	(*gl_write_reg) __P((struct ncr53c9x_softc *, int, u_char));
    210      1.1  thorpej 	int	(*gl_dma_isintr) __P((struct ncr53c9x_softc *));
    211      1.1  thorpej 	void	(*gl_dma_reset) __P((struct ncr53c9x_softc *));
    212      1.1  thorpej 	int	(*gl_dma_intr) __P((struct ncr53c9x_softc *));
    213      1.1  thorpej 	int	(*gl_dma_setup) __P((struct ncr53c9x_softc *,
    214      1.1  thorpej 		    caddr_t *, size_t *, int, size_t *));
    215      1.1  thorpej 	void	(*gl_dma_go) __P((struct ncr53c9x_softc *));
    216      1.1  thorpej 	void	(*gl_dma_stop) __P((struct ncr53c9x_softc *));
    217      1.1  thorpej 	int	(*gl_dma_isactive) __P((struct ncr53c9x_softc *));
    218      1.1  thorpej 
    219      1.1  thorpej 	/* Optional entry points. */
    220      1.1  thorpej 	void	(*gl_clear_latched_intr) __P((struct ncr53c9x_softc *));
    221      1.1  thorpej };
    222      1.1  thorpej 
    223      1.1  thorpej struct ncr53c9x_softc {
    224      1.1  thorpej 	struct device sc_dev;			/* us as a device */
    225      1.1  thorpej 
    226      1.1  thorpej 	struct evcnt sc_intrcnt;		/* intr count */
    227  1.6.2.1   bouyer 	struct scsipi_link sc_link;		/* scsipi lint struct */
    228      1.1  thorpej 
    229      1.1  thorpej 	struct ncr53c9x_glue *sc_glue;		/* glue to MD code */
    230  1.6.2.3   bouyer 
    231  1.6.2.4   bouyer 	int	sc_cfflags;			/* Copy of config flags */
    232  1.6.2.4   bouyer 
    233      1.1  thorpej 	/* register defaults */
    234      1.1  thorpej 	u_char	sc_cfg1;			/* Config 1 */
    235      1.1  thorpej 	u_char	sc_cfg2;			/* Config 2, not ESP100 */
    236      1.1  thorpej 	u_char	sc_cfg3;			/* Config 3, only ESP200 */
    237      1.1  thorpej 	u_char	sc_ccf;				/* Clock Conversion */
    238      1.1  thorpej 	u_char	sc_timeout;
    239      1.1  thorpej 
    240      1.1  thorpej 	/* register copies, see espreadregs() */
    241      1.1  thorpej 	u_char	sc_espintr;
    242      1.1  thorpej 	u_char	sc_espstat;
    243      1.1  thorpej 	u_char	sc_espstep;
    244      1.1  thorpej 	u_char	sc_espfflags;
    245      1.1  thorpej 
    246      1.1  thorpej 	/* Lists of command blocks */
    247      1.1  thorpej 	TAILQ_HEAD(ecb_list, ncr53c9x_ecb) free_list,
    248      1.1  thorpej 				      ready_list,
    249      1.1  thorpej 				      nexus_list;
    250      1.1  thorpej 
    251      1.1  thorpej 	struct ncr53c9x_ecb *sc_nexus;		/* current command */
    252      1.1  thorpej 	struct ncr53c9x_ecb sc_ecb[3*8];		/* three per target */
    253      1.1  thorpej 	struct ncr53c9x_tinfo sc_tinfo[8];
    254      1.1  thorpej 
    255      1.1  thorpej 	/* Data about the current nexus (updated for every cmd switch) */
    256      1.1  thorpej 	caddr_t	sc_dp;				/* Current data pointer */
    257      1.1  thorpej 	ssize_t	sc_dleft;			/* Data left to transfer */
    258      1.1  thorpej 
    259      1.1  thorpej 	/* Adapter state */
    260      1.1  thorpej 	int	sc_phase;		/* Copy of what bus phase we are in */
    261      1.1  thorpej 	int	sc_prevphase;		/* Copy of what bus phase we were in */
    262      1.1  thorpej 	u_char	sc_state;		/* State applicable to the adapter */
    263      1.1  thorpej 	u_char	sc_flags;
    264      1.1  thorpej 	u_char	sc_selid;
    265      1.1  thorpej 	u_char	sc_lastcmd;
    266      1.1  thorpej 
    267      1.1  thorpej 	/* Message stuff */
    268      1.1  thorpej 	u_char	sc_msgpriq;	/* One or more messages to send (encoded) */
    269      1.1  thorpej 	u_char	sc_msgout;	/* What message is on its way out? */
    270      1.1  thorpej 	u_char	sc_msgoutq;	/* What messages have been sent so far? */
    271      1.1  thorpej 	u_char	sc_omess[NCR_MAX_MSG_LEN];
    272      1.1  thorpej 	caddr_t	sc_omp;	/* Message pointer (for multibyte messages) */
    273      1.1  thorpej 	size_t	sc_omlen;
    274      1.1  thorpej 	u_char	sc_imess[NCR_MAX_MSG_LEN + 1];
    275      1.1  thorpej 	caddr_t	sc_imp;	/* Message pointer (for multibyte messages) */
    276      1.1  thorpej 	size_t	sc_imlen;
    277      1.1  thorpej 
    278      1.5       pk 	caddr_t	sc_cmdp;	/* Command pointer (for DMAed commands) */
    279      1.5       pk 	size_t	sc_cmdlen;	/* Size of command in transit */
    280      1.5       pk 
    281      1.1  thorpej 	/* hardware/openprom stuff */
    282      1.1  thorpej 	int sc_freq;				/* Freq in HZ */
    283      1.1  thorpej 	int sc_id;				/* our scsi id */
    284      1.1  thorpej 	int sc_rev;				/* esp revision */
    285      1.1  thorpej 	int sc_minsync;				/* minimum sync period / 4 */
    286      1.1  thorpej 	int sc_maxxfer;				/* maximum transfer size */
    287      1.1  thorpej };
    288      1.1  thorpej 
    289      1.1  thorpej /* values for sc_state */
    290      1.1  thorpej #define NCR_IDLE	1	/* waiting for something to do */
    291      1.1  thorpej #define NCR_SELECTING	2	/* SCSI command is arbiting  */
    292      1.1  thorpej #define NCR_RESELECTED	3	/* Has been reselected */
    293      1.1  thorpej #define NCR_CONNECTED	4	/* Actively using the SCSI bus */
    294      1.1  thorpej #define	NCR_DISCONNECT	5	/* MSG_DISCONNECT received */
    295      1.1  thorpej #define	NCR_CMDCOMPLETE	6	/* MSG_CMDCOMPLETE received */
    296      1.1  thorpej #define	NCR_CLEANING	7
    297      1.1  thorpej #define NCR_SBR		8	/* Expect a SCSI RST because we commanded it */
    298      1.1  thorpej 
    299      1.1  thorpej /* values for sc_flags */
    300      1.1  thorpej #define NCR_DROP_MSGI	0x01	/* Discard all msgs (parity err detected) */
    301      1.1  thorpej #define NCR_ABORTING	0x02	/* Bailing out */
    302      1.1  thorpej #define NCR_DOINGDMA	0x04	/* The FIFO data path is active! */
    303      1.1  thorpej #define NCR_SYNCHNEGO	0x08	/* Synch negotiation in progress. */
    304      1.1  thorpej #define NCR_ICCS	0x10	/* Expect status phase results */
    305      1.1  thorpej #define NCR_WAITI	0x20	/* Waiting for non-DMA data to arrive */
    306      1.1  thorpej #define	NCR_ATN		0x40	/* ATN asserted */
    307      1.5       pk #define	NCR_EXPECT_ILLCMD	0x80	/* Expect Illegal Command Interrupt */
    308      1.1  thorpej 
    309      1.1  thorpej /* values for sc_msgout */
    310      1.1  thorpej #define SEND_DEV_RESET		0x01
    311      1.1  thorpej #define SEND_PARITY_ERROR	0x02
    312      1.1  thorpej #define SEND_INIT_DET_ERR	0x04
    313      1.1  thorpej #define SEND_REJECT		0x08
    314      1.1  thorpej #define SEND_IDENTIFY  		0x10
    315      1.1  thorpej #define SEND_ABORT		0x20
    316      1.1  thorpej #define SEND_SDTR		0x40
    317      1.1  thorpej #define SEND_WDTR		0x80
    318      1.1  thorpej 
    319      1.1  thorpej /* SCSI Status codes */
    320      1.1  thorpej #define ST_MASK			0x3e /* bit 0,6,7 is reserved */
    321      1.1  thorpej 
    322      1.1  thorpej /* phase bits */
    323      1.1  thorpej #define IOI			0x01
    324      1.1  thorpej #define CDI			0x02
    325      1.1  thorpej #define MSGI			0x04
    326      1.1  thorpej 
    327      1.1  thorpej /* Information transfer phases */
    328      1.1  thorpej #define DATA_OUT_PHASE		(0)
    329      1.1  thorpej #define DATA_IN_PHASE		(IOI)
    330      1.1  thorpej #define COMMAND_PHASE		(CDI)
    331      1.1  thorpej #define STATUS_PHASE		(CDI|IOI)
    332      1.1  thorpej #define MESSAGE_OUT_PHASE	(MSGI|CDI)
    333      1.1  thorpej #define MESSAGE_IN_PHASE	(MSGI|CDI|IOI)
    334      1.1  thorpej 
    335      1.1  thorpej #define PHASE_MASK		(MSGI|CDI|IOI)
    336      1.1  thorpej 
    337      1.1  thorpej /* Some pseudo phases for getphase()*/
    338      1.1  thorpej #define BUSFREE_PHASE		0x100	/* Re/Selection no longer valid */
    339      1.1  thorpej #define INVALID_PHASE		0x101	/* Re/Selection valid, but no REQ yet */
    340      1.1  thorpej #define PSEUDO_PHASE		0x100	/* "pseudo" bit */
    341      1.1  thorpej 
    342      1.1  thorpej /*
    343      1.1  thorpej  * Macros to read and write the chip's registers.
    344      1.1  thorpej  */
    345      1.1  thorpej #define	NCR_READ_REG(sc, reg)		\
    346      1.1  thorpej 				(*(sc)->sc_glue->gl_read_reg)((sc), (reg))
    347      1.1  thorpej #define	NCR_WRITE_REG(sc, reg, val)	\
    348      1.1  thorpej 			(*(sc)->sc_glue->gl_write_reg)((sc), (reg), (val))
    349      1.1  thorpej 
    350      1.1  thorpej #ifdef NCR53C9X_DEBUG
    351      1.1  thorpej #define	NCRCMD(sc, cmd) do {				\
    352      1.1  thorpej 	if (ncr53c9x_debug & NCR_SHOWCCMDS)		\
    353      1.1  thorpej 		printf("<cmd:0x%x>", (unsigned)cmd);	\
    354      1.1  thorpej 	sc->sc_lastcmd = cmd;				\
    355      1.1  thorpej 	NCR_WRITE_REG(sc, NCR_CMD, cmd);		\
    356      1.1  thorpej } while (0)
    357      1.1  thorpej #else
    358      1.1  thorpej #define	NCRCMD(sc, cmd)		NCR_WRITE_REG(sc, NCR_CMD, cmd)
    359      1.1  thorpej #endif
    360      1.1  thorpej 
    361      1.1  thorpej /*
    362      1.1  thorpej  * DMA macros for NCR53c9x
    363      1.1  thorpej  */
    364      1.1  thorpej #define	NCRDMA_ISINTR(sc)	(*(sc)->sc_glue->gl_dma_isintr)((sc))
    365      1.1  thorpej #define	NCRDMA_RESET(sc)	(*(sc)->sc_glue->gl_dma_reset)((sc))
    366      1.1  thorpej #define	NCRDMA_INTR(sc)		(*(sc)->sc_glue->gl_dma_intr)((sc))
    367      1.1  thorpej #define	NCRDMA_SETUP(sc, addr, len, datain, dmasize)	\
    368      1.1  thorpej      (*(sc)->sc_glue->gl_dma_setup)((sc), (addr), (len), (datain), (dmasize))
    369      1.1  thorpej #define	NCRDMA_GO(sc)		(*(sc)->sc_glue->gl_dma_go)((sc))
    370      1.1  thorpej #define	NCRDMA_ISACTIVE(sc)	(*(sc)->sc_glue->gl_dma_isactive)((sc))
    371      1.1  thorpej 
    372      1.1  thorpej /*
    373      1.1  thorpej  * Macro to convert the chip register Clock Per Byte value to
    374      1.1  thorpej  * Sunchronous Transfer Period.
    375      1.1  thorpej  */
    376      1.1  thorpej #define	ncr53c9x_cpb2stp(sc, cpb)	\
    377      1.1  thorpej 	((250 * (cpb)) / (sc)->sc_freq)
    378      1.1  thorpej 
    379      1.1  thorpej void	ncr53c9x_attach __P((struct ncr53c9x_softc *,
    380  1.6.2.1   bouyer 	    struct scsipi_adapter *, struct scsipi_device *));
    381  1.6.2.1   bouyer int	ncr53c9x_scsi_cmd __P((struct scsipi_xfer *));
    382      1.1  thorpej void	ncr53c9x_reset __P((struct ncr53c9x_softc *));
    383      1.1  thorpej int	ncr53c9x_intr __P((struct ncr53c9x_softc *));
    384  1.6.2.3   bouyer 
    385  1.6.2.3   bouyer extern	int ncr53c9x_dmaselect;
    386  1.6.2.2   bouyer 
    387  1.6.2.2   bouyer extern int ncr53c9x_dmaselect;
    388