5 * $Id: aha152x.h,v 2.7 2004/01/24 11:39:03 fischer Exp $
8 /* number of queueable commands
9 (unless we support more than 1 cmd_per_lun this should do) */
10 #define AHA152X_MAXQUEUE 7
12 #define AHA152X_REVID "Adaptec 152x SCSI driver; $Revision: 2.7 $"
15 #define SCSISEQ (HOSTIOPORT0+0x00) /* SCSI sequence control */
16 #define SXFRCTL0 (HOSTIOPORT0+0x01) /* SCSI transfer control 0 */
17 #define SXFRCTL1 (HOSTIOPORT0+0x02) /* SCSI transfer control 1 */
18 #define SCSISIG (HOSTIOPORT0+0x03) /* SCSI signal in/out */
19 #define SCSIRATE (HOSTIOPORT0+0x04) /* SCSI rate control */
20 #define SELID (HOSTIOPORT0+0x05) /* selection/reselection ID */
21 #define SCSIID SELID /* SCSI ID */
22 #define SCSIDAT (HOSTIOPORT0+0x06) /* SCSI latched data */
23 #define SCSIBUS (HOSTIOPORT0+0x07) /* SCSI data bus */
24 #define STCNT0 (HOSTIOPORT0+0x08) /* SCSI transfer count 0 */
25 #define STCNT1 (HOSTIOPORT0+0x09) /* SCSI transfer count 1 */
26 #define STCNT2 (HOSTIOPORT0+0x0a) /* SCSI transfer count 2 */
27 #define SSTAT0 (HOSTIOPORT0+0x0b) /* SCSI interrupt status 0 */
28 #define SSTAT1 (HOSTIOPORT0+0x0c) /* SCSI interrupt status 1 */
29 #define SSTAT2 (HOSTIOPORT0+0x0d) /* SCSI interrupt status 2 */
30 #define SCSITEST (HOSTIOPORT0+0x0e) /* SCSI test control */
31 #define SSTAT3 SCSITEST /* SCSI interrupt status 3 */
32 #define SSTAT4 (HOSTIOPORT0+0x0f) /* SCSI status 4 */
33 #define SIMODE0 (HOSTIOPORT1+0x10) /* SCSI interrupt mode 0 */
34 #define SIMODE1 (HOSTIOPORT1+0x11) /* SCSI interrupt mode 1 */
35 #define DMACNTRL0 (HOSTIOPORT1+0x12) /* DMA control 0 */
36 #define DMACNTRL1 (HOSTIOPORT1+0x13) /* DMA control 1 */
37 #define DMASTAT (HOSTIOPORT1+0x14) /* DMA status */
38 #define FIFOSTAT (HOSTIOPORT1+0x15) /* FIFO status */
39 #define DATAPORT (HOSTIOPORT1+0x16) /* DATA port */
40 #define BRSTCNTRL (HOSTIOPORT1+0x18) /* burst control */
41 #define PORTA (HOSTIOPORT1+0x1a) /* PORT A */
42 #define PORTB (HOSTIOPORT1+0x1b) /* PORT B */
43 #define REV (HOSTIOPORT1+0x1c) /* revision */
44 #define STACK (HOSTIOPORT1+0x1d) /* stack */
45 #define TEST (HOSTIOPORT1+0x1e) /* test register */
49 /* used in aha152x_porttest */
50 #define O_PORTA 0x1a /* PORT A */
51 #define O_PORTB 0x1b /* PORT B */
52 #define O_DMACNTRL1 0x13 /* DMA control 1 */
53 #define O_STACK 0x1d /* stack */
55 /* used in tc1550_porttest */
56 #define O_TC_PORTA 0x0a /* PORT A */
57 #define O_TC_PORTB 0x0b /* PORT B */
58 #define O_TC_DMACNTRL1 0x03 /* DMA control 1 */
59 #define O_TC_STACK 0x0d /* stack */
61 /* bits and bitmasks to ports */
63 /* SCSI sequence control */
68 #define ENAUTOATNO 0x08
69 #define ENAUTOATNI 0x04
70 #define ENAUTOATNP 0x02
73 /* SCSI transfer control 0 */
81 /* SCSI transfer control 1 */
82 #define BITBUCKET 0x80
85 #define STIMESEL 0x18 /* mask */
88 #define BYTEALIGN 0x02
101 #define P_MASK (SIG_MSGI|SIG_CDI|SIG_IOI)
103 #define P_DATAI (SIG_IOI)
104 #define P_CMD (SIG_CDI)
105 #define P_STATUS (SIG_CDI|SIG_IOI)
106 #define P_MSGO (SIG_MSGI|SIG_CDI)
107 #define P_MSGI (SIG_MSGI|SIG_CDI|SIG_IOI)
109 /* SCSI signal OUT */
112 #define SIG_MSGO 0x20
113 #define SIG_ATNO 0x10
114 #define SIG_SELO 0x08
115 #define SIG_BSYO 0x04
116 #define SIG_REQO 0x02
117 #define SIG_ACKO 0x01
119 /* SCSI rate control */
120 #define SXFR 0x70 /* mask */
122 #define SOFS 0x0f /* mask */
129 /* SCSI transfer count */
130 #define GETSTCNT() ( (GETPORT(STCNT2)<<16) \
131 + (GETPORT(STCNT1)<< 8) \
134 #define SETSTCNT(X) { SETPORT(STCNT2, ((X) & 0xFF0000) >> 16); \
135 SETPORT(STCNT1, ((X) & 0x00FF00) >> 8); \
136 SETPORT(STCNT0, ((X) & 0x0000FF) ); }
138 /* SCSI interrupt status */
148 #define SETSDONE 0x80
149 #define CLRSELDO 0x40
150 #define CLRSELDI 0x20
151 #define CLRSELINGO 0x10
152 #define CLRSWRAP 0x08
153 #define CLRSDONE 0x04
154 #define CLRSPIORDY 0x02
155 #define CLRDMADONE 0x01
160 #define SCSIRSTI 0x20
161 #define PHASEMIS 0x10
163 #define SCSIPERR 0x04
164 #define PHASECHG 0x02
167 #define CLRSELTIMO 0x80
169 #define CLRSCSIRSTI 0x20
170 #define CLRBUSFREE 0x08
171 #define CLRSCSIPERR 0x04
172 #define CLRPHASECHG 0x02
173 #define CLRREQINIT 0x01
179 #define SFCNT 0x07 /* mask */
182 #define SCSICNT 0xf0 /* mask */
184 #define OFFCNT 0x0f /* mask */
186 /* SCSI TEST control */
196 #define CLRSYNCERR 0x04
197 #define CLRFWERR 0x02
198 #define CLRFRERR 0x01
200 /* SCSI interrupt mode 0 */
203 #define ENSELINGO 0x10
206 #define ENSPIORDY 0x02
207 #define ENDMADONE 0x01
209 /* SCSI interrupt mode 1 */
210 #define ENSELTIMO 0x80
211 #define ENATNTARG 0x40
212 #define ENSCSIRST 0x20
213 #define ENPHASEMIS 0x10
214 #define ENBUSFREE 0x08
215 #define ENSCSIPERR 0x04
216 #define ENPHASECHG 0x02
217 #define ENREQINIT 0x01
223 #define WRITE_READ 0x08
230 #define STK 0x07 /* mask */
236 #define DFIFOFULL 0x10
237 #define DFIFOEMP 0x08
252 /* On the AHA-152x board PORTA and PORTB contain
253 some information about the board's configuration. */
256 unsigned reserved
:2; /* reserved */
257 unsigned tardisc
:1; /* Target disconnect: 0=disabled, 1=enabled */
258 unsigned syncneg
:1; /* Initial sync neg: 0=disabled, 1=enabled */
259 unsigned msgclasses
:2; /* Message classes
265 unsigned boot
:1; /* boot: 0=disabled, 1=enabled */
266 unsigned dma
:1; /* Transfer mode: 0=PIO; 1=DMA */
267 unsigned id
:3; /* SCSI-id */
268 unsigned irq
:2; /* IRQ-Channel: 0,3=12, 1=10, 2=11 */
269 unsigned dmachan
:2; /* DMA-Channel: 0=0, 1=5, 2=6, 3=7 */
270 unsigned parity
:1; /* SCSI-parity: 1=enabled 0=disabled */
275 #define cf_parity fields.parity
276 #define cf_dmachan fields.dmachan
277 #define cf_irq fields.irq
278 #define cf_id fields.id
279 #define cf_dma fields.dma
280 #define cf_boot fields.boot
281 #define cf_msgclasses fields.msgclasses
282 #define cf_syncneg fields.syncneg
283 #define cf_tardisc fields.tardisc
286 /* Some macros to manipulate ports and their bits */
288 #define SETPORT(PORT, VAL) outb( (VAL), (PORT) )
289 #define GETPORT(PORT) inb( PORT )
290 #define SETBITS(PORT, BITS) outb( (inb(PORT) | (BITS)), (PORT) )
291 #define CLRBITS(PORT, BITS) outb( (inb(PORT) & ~(BITS)), (PORT) )
292 #define TESTHI(PORT, BITS) ((inb(PORT) & (BITS)) == (BITS))
293 #define TESTLO(PORT, BITS) ((inb(PORT) & (BITS)) == 0)
295 #define SETRATE(RATE) SETPORT(SCSIRATE,(RATE) & 0x7f)
297 #if defined(AHA152X_DEBUG)
299 debug_procinfo
= 0x0001,
300 debug_queue
= 0x0002,
301 debug_locks
= 0x0004,
303 debug_selection
= 0x0010,
306 debug_status
= 0x0080,
308 debug_datai
= 0x0200,
309 debug_datao
= 0x0400,
312 debug_phases
= 0x2000,
316 /* for the pcmcia stub */
317 struct aha152x_setup
{
327 #if defined(AHA152X_DEBUG)
333 struct Scsi_Host
*aha152x_probe_one(struct aha152x_setup
*);
334 void aha152x_release(struct Scsi_Host
*);
335 int aha152x_host_reset_host(struct Scsi_Host
*);
337 #endif /* _AHA152X_H */