3 /* $Id: a3000.h,v 1.4 1997/01/19 23:07:10 davem Exp $
5 * Header file for the Amiga 3000 built-in SCSI controller for Linux
7 * Written and (C) 1993, Hamish Macdonald, see a3000.c for more info
11 #include <linux/types.h>
13 int a3000_detect(Scsi_Host_Template
*);
14 int a3000_release(struct Scsi_Host
*);
15 const char *wd33c93_info(void);
16 int wd33c93_queuecommand(Scsi_Cmnd
*, void (*done
)(Scsi_Cmnd
*));
17 int wd33c93_abort(Scsi_Cmnd
*);
18 int wd33c93_reset(Scsi_Cmnd
*, unsigned int);
34 extern struct proc_dir_entry proc_scsi_a3000
;
36 #define A3000_SCSI { proc_dir: &proc_scsi_a3000, \
38 name: "Amiga 3000 built-in SCSI", \
39 detect: a3000_detect, \
40 release: a3000_release, \
41 queuecommand: wd33c93_queuecommand, \
42 abort: wd33c93_abort, \
43 reset: wd33c93_reset, \
44 can_queue: CAN_QUEUE, \
46 sg_tablesize: SG_ALL, \
47 cmd_per_lun: CMD_PER_LUN, \
48 use_clustering: ENABLE_CLUSTERING }
52 * if the transfer address ANDed with this results in a non-zero
53 * result, then we can't use DMA.
55 #define A3000_XFER_MASK (0x00000003)
58 unsigned char pad1
[2];
59 volatile unsigned short DAWR
;
60 volatile unsigned int WTC
;
61 unsigned char pad2
[2];
62 volatile unsigned short CNTR
;
63 volatile unsigned long ACR
;
64 unsigned char pad3
[2];
65 volatile unsigned short ST_DMA
;
66 unsigned char pad4
[2];
67 volatile unsigned short FLUSH
;
68 unsigned char pad5
[2];
69 volatile unsigned short CINT
;
70 unsigned char pad6
[2];
71 volatile unsigned short ISTR
;
72 unsigned char pad7
[30];
73 volatile unsigned short SP_DMA
;
75 volatile unsigned char SASR
;
77 volatile unsigned char SCMD
;
80 #define DAWR_A3000 (3)
83 #define CNTR_TCEN (1<<5)
84 #define CNTR_PREST (1<<4)
85 #define CNTR_PDMD (1<<3)
86 #define CNTR_INTEN (1<<2)
87 #define CNTR_DDIR (1<<1)
88 #define CNTR_IO_DX (1<<0)
91 #define ISTR_INTX (1<<8)
92 #define ISTR_INT_F (1<<7)
93 #define ISTR_INTS (1<<6)
94 #define ISTR_E_INT (1<<5)
95 #define ISTR_INT_P (1<<4)
96 #define ISTR_UE_INT (1<<3)
97 #define ISTR_OE_INT (1<<2)
98 #define ISTR_FF_FLG (1<<1)
99 #define ISTR_FE_FLG (1<<0)
101 #endif /* else def HOSTS_C */