ncr53c9xreg.h revision 226381
1120586Sbms/*	$NetBSD: ncr53c9xreg.h,v 1.16 2009/09/07 13:31:44 tsutsui Exp $	*/
2120586Sbms
3120586Sbms/*-
4120586Sbms * Copyright (c) 1994 Peter Galbavy.  All rights reserved.
5120586Sbms *
6120586Sbms * Redistribution and use in source and binary forms, with or without
7120586Sbms * modification, are permitted provided that the following conditions
8120586Sbms * are met:
9120586Sbms * 1. Redistributions of source code must retain the above copyright
10120586Sbms *    notice, this list of conditions and the following disclaimer.
11120586Sbms * 2. Redistributions in binary form must reproduce the above copyright
12120586Sbms *    notice, this list of conditions and the following disclaimer in the
13120586Sbms *    documentation and/or other materials provided with the distribution.
14120586Sbms * 3. All advertising materials mentioning features or use of this software
15120586Sbms *    must display the following acknowledgement:
16120586Sbms *	This product includes software developed by Peter Galbavy.
17120586Sbms * 4. The name of the author may not be used to endorse or promote products
18120586Sbms *    derived from this software without specific prior written permission.
19120586Sbms *
20120586Sbms * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21120586Sbms * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22120586Sbms * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23120586Sbms * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24120586Sbms * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25120586Sbms * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26120586Sbms * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27120586Sbms * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28255495Sjhb * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29131680Sru * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30131681Sru */
31120586Sbms
32120586Sbms/* $FreeBSD: head/sys/dev/esp/ncr53c9xreg.h 226381 2011-10-15 09:29:43Z marius $ */
33120586Sbms
34120586Sbms/*
35120586Sbms * Register addresses, relative to some base address
36120586Sbms */
37120586Sbms
38120586Sbms#define	NCR_TCL		0x00		/* RW - Transfer Count Low	*/
39131680Sru#define	NCR_TCM		0x01		/* RW - Transfer Count Mid	*/
40131680Sru#define	NCR_TCH		0x0e		/* RW - Transfer Count High	*/
41255495Sjhb					/*	NOT on 53C90		*/
42255495Sjhb
43131680Sru#define	NCR_FIFO	0x02		/* RW - FIFO data		*/
44120586Sbms
45120586Sbms#define	NCR_CMD		0x03		/* RW - Command (2 deep)	*/
46120586Sbms#define	 NCRCMD_DMA	0x80		/*	DMA Bit			*/
47120586Sbms#define	 NCRCMD_NOP	0x00		/*	No Operation		*/
48120586Sbms#define	 NCRCMD_FLUSH	0x01		/*	Flush FIFO		*/
49120586Sbms#define	 NCRCMD_RSTCHIP	0x02		/*	Reset Chip		*/
50255495Sjhb#define	 NCRCMD_RSTSCSI	0x03		/*	Reset SCSI Bus		*/
51255495Sjhb#define	 NCRCMD_RESEL	0x40		/*	Reselect Sequence	*/
52255495Sjhb#define	 NCRCMD_SELNATN	0x41		/*	Select without ATN	*/
53255495Sjhb#define	 NCRCMD_SELATN	0x42		/*	Select with ATN		*/
54255495Sjhb#define	 NCRCMD_SELATNS	0x43		/*	Select with ATN & Stop	*/
55255495Sjhb#define	 NCRCMD_ENSEL	0x44		/*	Enable (Re)Selection	*/
56255495Sjhb#define	 NCRCMD_DISSEL	0x45		/*	Disable (Re)Selection	*/
57120586Sbms#define	 NCRCMD_SELATN3	0x46		/*	Select with ATN3	*/
58120586Sbms#define	 NCRCMD_RESEL3	0x47		/*	Reselect3 Sequence	*/
59120586Sbms#define	 NCRCMD_SNDMSG	0x20		/*	Send Message		*/
60120586Sbms#define	 NCRCMD_SNDSTAT	0x21		/*	Send Status		*/
61120586Sbms#define	 NCRCMD_SNDDATA	0x22		/*	Send Data		*/
62120586Sbms#define	 NCRCMD_DISCSEQ	0x23		/*	Disconnect Sequence	*/
63120586Sbms#define	 NCRCMD_TERMSEQ	0x24		/*	Terminate Sequence	*/
64120586Sbms#define	 NCRCMD_TCCS	0x25		/*	Target Command Comp Seq	*/
65120586Sbms#define	 NCRCMD_DISC	0x27		/*	Disconnect		*/
66120586Sbms#define	 NCRCMD_RECMSG	0x28		/*	Receive Message		*/
67120586Sbms#define	 NCRCMD_RECCMD	0x29		/*	Receive Command		*/
68120586Sbms#define	 NCRCMD_RECDATA	0x2a		/*	Receive Data		*/
69120586Sbms#define	 NCRCMD_RECCSEQ	0x2b		/*	Receive Command Sequence*/
70131680Sru#define	 NCRCMD_ABORT	0x04		/*	Target Abort DMA	*/
71131680Sru#define	 NCRCMD_TRANS	0x10		/*	Transfer Information	*/
72131680Sru#define	 NCRCMD_ICCS	0x11		/*	Initiator Cmd Comp Seq	*/
73120586Sbms#define	 NCRCMD_MSGOK	0x12		/*	Message Accepted	*/
74120586Sbms#define	 NCRCMD_TRPAD	0x18		/*	Transfer Pad		*/
75120586Sbms#define	 NCRCMD_SETATN	0x1a		/*	Set ATN			*/
76255495Sjhb#define	 NCRCMD_RSTATN	0x1b		/*	Reset ATN		*/
77255495Sjhb
78255495Sjhb#define	NCR_STAT	0x04		/* RO - Status			*/
79255495Sjhb#define	 NCRSTAT_INT	0x80		/*	Interrupt		*/
80255495Sjhb#define	 NCRSTAT_GE	0x40		/*	Gross Error		*/
81255495Sjhb#define	 NCRSTAT_PE	0x20		/*	Parity Error		*/
82255495Sjhb#define	 NCRSTAT_TC	0x10		/*	Terminal Count		*/
83255495Sjhb#define	 NCRSTAT_VGC	0x08		/*	Valid Group Code	*/
84120586Sbms#define	 NCRSTAT_PHASE	0x07		/*	Phase bits		*/
85255495Sjhb
86255495Sjhb#define	NCR_SELID	0x04		/* WO - Select/Reselect Bus ID	*/
87255495Sjhb#define	 NCR_BUSID_HMEXC32	0x40	/*	HME xfer counter is 32bit */
88255495Sjhb#define	 NCR_BUSID_HMEENCID	0x10	/*	HME encode reselection ID */
89120586Sbms
90255495Sjhb#define	NCR_INTR	0x05		/* RO - Interrupt		*/
91255495Sjhb#define	 NCRINTR_SBR	0x80		/*	SCSI Bus Reset		*/
92255495Sjhb#define	 NCRINTR_ILL	0x40		/*	Illegal Command		*/
93255495Sjhb#define	 NCRINTR_DIS	0x20		/*	Disconnect		*/
94255525Sjoel#define	 NCRINTR_BS	0x10		/*	Bus Service		*/
95255495Sjhb#define	 NCRINTR_FC	0x08		/*	Function Complete	*/
96255495Sjhb#define	 NCRINTR_RESEL	0x04		/*	Reselected		*/
97255495Sjhb#define	 NCRINTR_SELATN	0x02		/*	Select with ATN		*/
98255495Sjhb#define	 NCRINTR_SEL	0x01		/*	Selected		*/
99255495Sjhb
100255495Sjhb#define	NCR_TIMEOUT	0x05		/* WO - Select/Reselect Timeout */
101255495Sjhb
102255495Sjhb#define	NCR_STEP	0x06		/* RO - Sequence Step		*/
103255495Sjhb#define	 NCRSTEP_MASK	0x07		/*	the last 3 bits		*/
104255495Sjhb#define	 NCRSTEP_DONE	0x04		/*	command went out	*/
105255495Sjhb
106178928Salc#define	NCR_SYNCTP	0x06		/* WO - Synch Transfer Period	*/
107255495Sjhb					/*	Default 5 (53C9X)	*/
108255495Sjhb
109255495Sjhb#define	NCR_FFLAG	0x07		/* RO - FIFO Flags		*/
110255495Sjhb#define	 NCRFIFO_SS	0xe0		/*	Sequence Step (Dup)	*/
111255495Sjhb#define	 NCRFIFO_FF	0x1f		/*	Bytes in FIFO		*/
112255495Sjhb
113255495Sjhb#define	NCR_SYNCOFF	0x07		/* WO - Synch Offset		*/
114255495Sjhb					/*	0 = ASYNC		*/
115178928Salc					/*	1 - 15 = SYNC bytes	*/
116255495Sjhb
117255495Sjhb#define	NCR_CFG1	0x08		/* RW - Configuration #1	*/
118255495Sjhb#define	 NCRCFG1_SLOW	0x80		/*	Slow Cable Mode		*/
119255495Sjhb#define	 NCRCFG1_SRR	0x40		/*	SCSI Reset Rep Int Dis	*/
120255495Sjhb#define	 NCRCFG1_PTEST	0x20		/*	Parity Test Mod		*/
121255495Sjhb#define	 NCRCFG1_PARENB	0x10		/*	Enable Parity Check	*/
122255495Sjhb#define	 NCRCFG1_CTEST	0x08		/*	Enable Chip Test	*/
123255495Sjhb#define	 NCRCFG1_BUSID	0x07		/*	Bus ID			*/
124255495Sjhb
125255495Sjhb#define	NCR_CCF		0x09		/* WO -	Clock Conversion Factor	*/
126120586Sbms					/*	0 = 35.01 - 40MHz	*/
127120586Sbms					/*	NEVER SET TO 1		*/
128120586Sbms					/*	2 = 10MHz		*/
129120586Sbms					/*	3 = 10.01 - 15MHz	*/
130120586Sbms					/*	4 = 15.01 - 20MHz	*/
131120586Sbms					/*	5 = 20.01 - 25MHz	*/
132120586Sbms					/*	6 = 25.01 - 30MHz	*/
133120586Sbms					/*	7 = 30.01 - 35MHz	*/
134120586Sbms
135120586Sbms#define	NCR_TEST	0x0a		/* WO - Test (Chip Test Only)	*/
136120586Sbms
137120586Sbms#define	NCR_CFG2	0x0b		/* RW - Configuration #2	*/
138131680Sru#define	 NCRCFG2_RSVD	0xa0		/*	reserved		*/
139120586Sbms#define	 NCRCFG2_FE	0x40		/*	Features Enable		*/
140120586Sbms#define	 NCRCFG2_DREQ	0x10		/*	DREQ High Impedance	*/
141178928Salc#define	 NCRCFG2_SCSI2	0x08		/*	SCSI-2 Enable		*/
142178928Salc#define	 NCRCFG2_BPA	0x04		/*	Target Bad Parity Abort	*/
143178928Salc#define	 NCRCFG2_RPE	0x02		/*	Register Parity Error	*/
144178928Salc#define	 NCRCFG2_DPE	0x01		/*	DMA Parity Error	*/
145178928Salc
146178928Salc#define	 NCRCFG2_HMEFE	0x10		/*	HME feature enable	*/
147178928Salc#define	 NCRCFG2_HME32  0x80		/*	HME 32 extended		*/
148178928Salc
149120586Sbms/* Config #3 only on 53C9X */
150120586Sbms#define	NCR_CFG3	0x0c		/* RW - Configuration #3	*/
151120586Sbms#define	 NCRCFG3_RSVD	0xe0		/*	reserved		*/
152120586Sbms#define	 NCRCFG3_IDM	0x10		/*	ID Message Res Check	*/
153120586Sbms#define	 NCRCFG3_QTE	0x08		/*	Queue Tag Enable	*/
154120586Sbms#define	 NCRCFG3_CDB	0x04		/*	CDB 10-bytes OK		*/
155120586Sbms#define	 NCRCFG3_FSCSI	0x02		/*	Fast SCSI		*/
156120586Sbms#define	 NCRCFG3_FCLK	0x01		/*	Fast Clock (>25MHz)	*/
157120586Sbms
158120586Sbms/*
159120586Sbms * For some unknown reason, the ESP406/FAS408 looks like every
160147647Shmp * other ncr53c9x, except for configuration #3 register.  At any
161120586Sbms * rate, if you're dealing with these chips, you need to use these
162 * defines instead.
163 */
164
165/* Config #3 different on ESP406/FAS408 */
166#define	NCR_ESPCFG3		0x0c	/* RW - Configuration #3	*/
167#define	 NCRESPCFG3_IDM		0x80	/*	ID Message Res Check	*/
168#define	 NCRESPCFG3_QTE		0x40	/*	Queue Tag Enable	*/
169#define	 NCRESPCFG3_CDB		0x20	/*	CDB 10-bytes OK		*/
170#define	 NCRESPCFG3_FSCSI	0x10	/*	Fast SCSI		*/
171#define	 NCRESPCFG3_SRESB	0x08	/*	Save Residual Byte	*/
172#define	 NCRESPCFG3_FCLK	0x04	/*	Fast Clock (>25MHz)	*/
173#define	 NCRESPCFG3_ADMA	0x02	/*	Alternate DMA Mode	*/
174#define	 NCRESPCFG3_T8M		0x01	/*	Threshold 8 Mode	*/
175
176/* Config #3 also different on NCR53CF9x/FAS100A/FAS216/FAS236 */
177#define	NCR_F9XCFG3		0x0c	/* RW - Configuration #3	*/
178#define	 NCRF9XCFG3_IDM		0x80	/*	ID Message Res Check	*/
179#define	 NCRF9XCFG3_QTE		0x40	/*	Queue Tag Enable	*/
180#define	 NCRF9XCFG3_CDB		0x20	/*	CDB 10-bytes OK		*/
181#define	 NCRF9XCFG3_FSCSI	0x10	/*	Fast SCSI		*/
182#define	 NCRF9XCFG3_FCLK	0x08	/*	Fast Clock (>25MHz)	*/
183#define	 NCRF9XCFG3_SRESB	0x04	/*	Save Residual Byte	*/
184#define	 NCRF9XCFG3_ADMA	0x02	/*	Alternate DMA Mode	*/
185#define	 NCRF9XCFG3_T8M		0x01	/*	Threshold 8 Mode	*/
186
187/* Config #3 on FAS366 */
188#define	 NCRFASCFG3_OBAUTO	0x80    /*	auto push odd-byte to DMA */
189#define	 NCRFASCFG3_EWIDE	0x40    /*	Enable Wide-SCSI     */
190#define	 NCRFASCFG3_IDBIT3	0x20	/*	Bit 3 of HME SCSI-ID */
191#define	 NCRFASCFG3_IDRESCHK	0x10	/*	ID message checking */
192#define	 NCRFASCFG3_QUENB	0x08	/*	3-byte msg support */
193#define	 NCRFASCFG3_CDB10	0x04	/*	group 2 scsi-2 support */
194#define	 NCRFASCFG3_FASTSCSI	0x02	/*	10 MB/S fast scsi mode */
195#define	 NCRFASCFG3_FASTCLK	0x01	/*	fast clock mode */
196
197/* Config #4 only on ESP406/FAS408 */
198#define	NCR_CFG4	0x0d		/* RW - Configuration #4	*/
199#define	 NCRCFG4_CRS1	0x80		/*	Select register set #1	*/
200#define	 NCRCFG4_RSVD	0x7b		/*	reserved		*/
201#define	 NCRCFG4_ACTNEG	0x04		/*	Active negation		*/
202
203/*
204   The following registers are only on the ESP406/FAS408.  The
205   documentation refers to them as "Control Register Set #1".
206   These are the registers that are visible when bit 7 of
207   register 0x0d is set.  This bit is common to both register sets.
208*/
209
210#define	NCR_JMP		0x00		/* RO - Jumper Sense Register	*/
211#define	 NCRJMP_RSVD	0xc0		/*	reserved		*/
212#define	 NCRJMP_ROMSZ	0x20		/*	ROM Size 1=16K, 0=32K	*/
213#define	 NCRJMP_J4	0x10		/*	Jumper #4		*/
214#define	 NCRJMP_J3	0x08		/*	Jumper #3		*/
215#define	 NCRJMP_J2	0x04		/*	Jumper #2		*/
216#define	 NCRJMP_J1	0x02		/*	Jumper #1		*/
217#define	 NCRJMP_J0	0x01		/*	Jumper #0		*/
218
219#define	NCR_PIOFIFO	0x04		/* WO - PIO FIFO, 4 bytes deep	*/
220
221#define	NCR_PSTAT	0x08		/* RW - PIO Status Register	*/
222#define	 NCRPSTAT_PERR	0x80		/*	PIO Error		*/
223#define	 NCRPSTAT_SIRQ	0x40		/*	Active High of SCSI IRQ */
224#define	 NCRPSTAT_ATAI	0x20		/*	ATA IRQ			*/
225#define	 NCRPSTAT_FEMPT	0x10		/*	PIO FIFO Empty		*/
226#define	 NCRPSTAT_F13	0x08		/*	PIO FIFO 1/3		*/
227#define	 NCRPSTAT_F23	0x04		/*	PIO FIFO 2/3		*/
228#define	 NCRPSTAT_FFULL	0x02		/*	PIO FIFO Full		*/
229#define	 NCRPSTAT_PIOM	0x01		/*	PIO/DMA Mode		*/
230
231#define	NCR_PIOI	0x0b		/* RW - PIO Interrupt Enable	*/
232#define	 NCRPIOI_RSVD	0xe0		/*	reserved		*/
233#define	 NCRPIOI_EMPTY	0x10		/*	IRQ When Empty		*/
234#define	 NCRPIOI_13	0x08		/*	IRQ When 1/3		*/
235#define	 NCRPIOI_23	0x04		/*	IRQ When 2/3		*/
236#define	 NCRPIOI_FULL	0x02		/*	IRQ When Full		*/
237#define	 NCRPIOI_FINV	0x01		/*	Flag Invert		*/
238
239#define	NCR_CFG5	0x0d		/* RW - Configuration #5	*/
240#define	 NCRCFG5_CRS1	0x80		/*	Select Register Set #1	*/
241#define	 NCRCFG5_SRAM	0x40		/*	SRAM Memory Map		*/
242#define	 NCRCFG5_AADDR	0x20		/*	Auto Address		*/
243#define	 NCRCFG5_PTRINC	0x10		/*	Pointer Increment	*/
244#define	 NCRCFG5_LOWPWR	0x08		/*	Low Power Mode		*/
245#define	 NCRCFG5_SINT	0x04		/*	SCSI Interrupt Enable	*/
246#define	 NCRCFG5_INTP	0x02		/*	INT Polarity		*/
247#define	 NCRCFG5_AINT	0x01		/*	ATA Interrupt Enable	*/
248
249#define	NCR_SIGNTR	0x0e		/* RO - Signature		*/
250
251/* Am53c974 Config #3 */
252#define	NCR_AMDCFG3		0x0c	/* RW - Configuration #3	*/
253#define	 NCRAMDCFG3_IDM		0x80	/*	ID Message Res Check	*/
254#define	 NCRAMDCFG3_QTE		0x40	/*	Queue Tag Enable	*/
255#define	 NCRAMDCFG3_CDB		0x20	/*	CDB 10-bytes OK		*/
256#define	 NCRAMDCFG3_FSCSI	0x10	/*	Fast SCSI		*/
257#define	 NCRAMDCFG3_FCLK	0x08	/*	Fast Clock (40MHz)	*/
258#define	 NCRAMDCFG3_RSVD	0x07	/*	Reserved		*/
259
260/* Am53c974 Config #4 */
261#define	NCR_AMDCFG4		0x0d	/* RW - Configuration #4	*/
262#define	 NCRAMDCFG4_GE		0xc0	/*	Glitch Eater		*/
263#define	 NCRAMDCFG4_GE12NS	0x00	/*	Signal window 12ns	*/
264#define	 NCRAMDCFG4_GE25NS	0x80	/*	Signal window 25ns	*/
265#define	 NCRAMDCFG4_GE35NS	0x40	/*	Signal window 35ns	*/
266#define	 NCRAMDCFG4_GE0NS	0xc0	/*	Signal window 0ns	*/
267#define	 NCRAMDCFG4_PWD		0x20	/*	Reduced power feature	*/
268#define	 NCRAMDCFG4_RSVD	0x13	/*	Reserved		*/
269#define	 NCRAMDCFG4_RAE		0x08	/*	Active neg. REQ/ACK	*/
270#define	 NCRAMDCFG4_RADE	0x04	/*	Active neg. REQ/ACK/DAT	*/
271
272/*
273 * FAS366
274 */
275#define	NCR_RCL		NCR_TCH	/* Recommand counter low */
276#define	NCR_RCH		0xf	/* Recommand counter high */
277#define	NCR_UID		NCR_RCL	/* fas366 part-uniq id */
278
279
280/* status register #2 definitions (read	only) */
281#define	NCR_STAT2	NCR_CCF
282#define	NCRFAS_STAT2_SEQCNT   0x01	   /* Sequence counter bit 7-3 enabled */
283#define	NCRFAS_STAT2_FLATCHED 0x02	   /* FIFO flags register latched */
284#define	NCRFAS_STAT2_CLATCHED 0x04	   /* Xfer cntr	& recommand ctr	latched */
285#define	NCRFAS_STAT2_CACTIVE  0x08	   /* Command register is active */
286#define	NCRFAS_STAT2_SCSI16   0x10	   /* SCSI interface is	wide */
287#define	NCRFAS_STAT2_ISHUTTLE 0x20	   /* FIFO Top register	contains 1 byte */
288#define	NCRFAS_STAT2_OSHUTTLE 0x40	   /* next byte	from FIFO is MSB */
289#define	NCRFAS_STAT2_EMPTY    0x80	   /* FIFO is empty */
290
291