1 #ifndef _AHA1740_H
2
3
4
5
6
7
8
9 #include <linux/types.h>
10
11
12 #define MINEISA 1
13 #define MAXEISA 6
14 #define SLOTBASE(x) ((x << 12)+ 0xc80 )
15 #define BASE (base)
16
17
18 #define HID0 (base + 0x0)
19 #define HID1 (base + 0x1)
20 #define HID2 (base + 0x2)
21 #define HID3 (base + 0x3)
22 #define EBCNTRL (base + 0x4)
23 #define PORTADR (base + 0x40)
24 #define BIOSADR (base + 0x41)
25 #define INTDEF (base + 0x42)
26 #define SCSIDEF (base + 0x43)
27 #define BUSDEF (base + 0x44)
28 #define RESV0 (base + 0x45)
29 #define RESV1 (base + 0x46)
30 #define RESV2 (base + 0x47)
31
32 #define HID_MFG "ADP"
33 #define HID_PRD 0
34 #define HID_REV 1
35 #define EBCNTRL_VALUE 1
36 #define PORTADDR_ENH 0x80
37
38 #define G2INTST (BASE + 0x56)
39 #define G2STAT (BASE + 0x57)
40 #define MBOXIN0 (BASE + 0x58)
41 #define MBOXIN1 (BASE + 0x59)
42 #define MBOXIN2 (BASE + 0x5a)
43 #define MBOXIN3 (BASE + 0x5b)
44 #define G2STAT2 (BASE + 0x5c)
45
46 #define G2INTST_MASK 0xf0
47 #define G2INTST_CCBGOOD 0x10
48 #define G2INTST_CCBRETRY 0x50
49 #define G2INTST_HARDFAIL 0x70
50 #define G2INTST_CMDGOOD 0xa0
51 #define G2INTST_CCBERROR 0xc0
52 #define G2INTST_ASNEVENT 0xd0
53 #define G2INTST_CMDERROR 0xe0
54
55 #define G2STAT_MBXOUT 4
56 #define G2STAT_INTPEND 2
57 #define G2STAT_BUSY 1
58
59 #define G2STAT2_READY 0
60
61
62 #define MBOXOUT0 (BASE + 0x50)
63 #define MBOXOUT1 (BASE + 0x51)
64 #define MBOXOUT2 (BASE + 0x52)
65 #define MBOXOUT3 (BASE + 0x53)
66 #define ATTN (BASE + 0x54)
67 #define G2CNTRL (BASE + 0x55)
68
69 #define ATTN_IMMED 0x10
70 #define ATTN_START 0x40
71 #define ATTN_ABORT 0x50
72
73 #define G2CNTRL_HRST 0x80
74 #define G2CNTRL_IRST 0x40
75 #define G2CNTRL_HRDY 0x20
76
77
78 struct aha1740_chain {
79 ulong dataptr;
80 ulong datalen;
81 };
82
83
84 #define any2scsi(up, p) \
85 (up)[0] = (((unsigned long)(p)) >> 16) ; \
86 (up)[1] = (((unsigned long)(p)) >> 8); \
87 (up)[2] = ((unsigned long)(p));
88
89 #define scsi2int(up) ( (((long)*(up)) << 16) + (((long)(up)[1]) << 8) + ((long)(up)[2]) )
90
91 #define xany2scsi(up, p) \
92 (up)[0] = ((long)(p)) >> 24; \
93 (up)[1] = ((long)(p)) >> 16; \
94 (up)[2] = ((long)(p)) >> 8; \
95 (up)[3] = ((long)(p));
96
97 #define xscsi2int(up) ( (((long)(up)[0]) << 24) + (((long)(up)[1]) << 16) \
98 + (((long)(up)[2]) << 8) + ((long)(up)[3]) )
99
100 #define MAX_CDB 12
101 #define MAX_SENSE 14
102 #define MAX_STATUS 32
103
104 struct ecb {
105 ushort cmdw;
106
107 ushort cne:1,
108 :6, di:1,
109 :2, ses:1,
110 :1, sg:1,
111 :1, dsb:1,
112 ars:1;
113
114 ushort lun:3,
115 tag:1,
116 tt:2,
117 nd:1,
118 :1, dat:1,
119 dir:1,
120 st:1,
121 chk:1,
122 :2, rec:1, :1;
123 ushort nil0;
124 ulong dataptr;
125 ulong datalen;
126 ulong statusptr;
127 ulong linkptr;
128 ulong nil1;
129 ulong senseptr;
130 unchar senselen;
131 unchar cdblen;
132 ushort datacheck;
133 unchar cdb[MAX_CDB];
134
135 unchar sense[MAX_SENSE];
136 unchar status[MAX_STATUS];
137 Scsi_Cmnd *SCpnt;
138 void (*done)(Scsi_Cmnd *);
139 };
140
141 #define AHA1740CMD_NOP 0x00
142 #define AHA1740CMD_INIT 0x01
143 #define AHA1740CMD_DIAG 0x05
144 #define AHA1740CMD_SCSI 0x06
145 #define AHA1740CMD_SENSE 0x08
146 #define AHA1740CMD_DOWN 0x09
147 #define AHA1740CMD_RINQ 0x0a
148 #define AHA1740CMD_TARG 0x10
149
150 int aha1740_detect(int);
151 int aha1740_command(Scsi_Cmnd *);
152 int aha1740_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
153 int aha1740_abort(Scsi_Cmnd *, int);
154 const char *aha1740_info(void);
155 int aha1740_reset(void);
156 int aha1740_biosparam(int, int, int*);
157
158 #define AHA1740_ECBS 64
159 #define AHA1740_SCATTER 16
160
161 #ifndef NULL
162 #define NULL 0
163 #endif
164
165 #define AHA1740 {"Adaptec 1740", aha1740_detect, \
166 aha1740_info, aha1740_command, \
167 aha1740_queuecommand, \
168 aha1740_abort, \
169 aha1740_reset, \
170 NULL, \
171 aha1740_biosparam, \
172 AHA1740_ECBS, 7, AHA1740_SCATTER, 1, 0, 0}
173
174 #endif
175