1
2
3
4
5
6 #ifndef _BUSLOGIC_H
7
8 int buslogic_detect(Scsi_Host_Template *);
9 int buslogic_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
10 int buslogic_abort(Scsi_Cmnd *);
11 const char *buslogic_info(struct Scsi_Host *);
12 int buslogic_reset(Scsi_Cmnd *);
13 int buslogic_biosparam(Disk *, int, int *);
14
15 #define BUSLOGIC { NULL, NULL, \
16 "BusLogic", \
17 buslogic_detect, \
18 0, \
19 buslogic_info, \
20 0, \
21 buslogic_queuecommand, \
22 buslogic_abort, \
23 buslogic_reset, \
24 0, \
25 buslogic_biosparam, \
26 0, \
27 0, \
28 0, \
29 0, \
30 0, \
31 0, \
32 ENABLE_CLUSTERING \
33 }
34
35 #ifdef BUSLOGIC_PRIVATE_H
36
37
38 #ifndef TRUE
39 # define TRUE 1
40 #endif
41 #ifndef FALSE
42 # define FALSE 0
43 #endif
44
45 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr)[0])
46
47 #define PACKED __attribute__((packed))
48
49 #define BD_ABORT 0x0001
50 #define BD_COMMAND 0x0002
51 #define BD_DETECT 0x0004
52 #define BD_ERRORS 0x0008
53 #define BD_INTERRUPT 0x0010
54 #define BD_IO 0x0020
55 #define BD_RESET 0x0040
56 #define BD_UNDOCUMENTED 0x0080
57
58
59
60 #define STATUS(base) (base)
61 #define DACT 0x80
62 #define DFAIL 0x40
63 #define INREQ 0x20
64 #define HARDY 0x10
65 #define CPRBSY 0x08
66 #define DIRRDY 0x04
67
68 #define CMDINV 0x01
69
70 #define DATA_IN(base) (STATUS(base) + 1)
71
72 #define INTERRUPT(base) (STATUS(base) + 2)
73 #define INTV 0x80
74
75 #define RSTS 0x08
76 #define CMDC 0x04
77 #define MBOR 0x02
78 #define IMBL 0x01
79 #define INTRMASK 0x8F
80
81
82 #define GEOMETRY(base) (STATUS(base) + 3)
83 #define GEO_GT_1GB 0x80
84
85 #define GEO_XLATION_S_D1 0x0C
86 #define GEO_XLATION_S_D0 0x03
87
88
89
90 #define CONTROL(base) STATUS(base)
91 #define RHARD 0x80
92 #define RSOFT 0x40
93 #define RINT 0x20
94 #define RSBUS 0x10
95
96
97 #define COMMAND_PARAMETER(base) (STATUS(base) + 1)
98 #define CMD_TSTCMDCINT 0x00
99 #define CMD_INITMB 0x01
100 #define CMD_START_SCSI 0x02
101 #define CMD_START_BIOS 0x03
102 #define CMD_INQUIRY 0x04
103 #define CMD_ENBOMBRINT 0x05
104 #define CMD_SETSELTIMOUT 0x06
105 #define CMD_BUSON_TIME 0x07
106 #define CMD_BUSOFF_TIME 0x08
107 #define CMD_BUSXFR_RATE 0x09
108 #define CMD_INQ_DEVICES 0x0A
109 #define CMD_RETCONF 0x0B
110 #define CMD_TARGET_MODE 0x0C
111 #define CMD_INQ_SETUP_INFO 0x0D
112 #define CMD_WRITE_LCL_RAM 0x1A
113 #define CMD_READ_LCL_RAM 0x1B
114 #define CMD_WRITE_BM_FIFO 0x1C
115 #define CMD_READ_BM_FIFO 0x1D
116 #define CMD_ECHO 0x1F
117 #define CMD_HA_DIAG 0x20
118 #define CMD_HA_OPTIONS 0x21
119 #define CMD_INITEXTMB 0x81
120 #define CMD_VER_NO_LAST 0x84
121 #define CMD_VER_NO_LETTER 0x85
122 #define CMD_RET_MODEL_NO 0x8B
123 #define CMD_INQEXTSETUP 0x8D
124 #define CMD_ROUND_ROBIN 0x8F
125
126 #define CMD_READ_FW_LCL_RAM 0x91
127 #define CMD_WRITE_INQ_BUF 0x9A
128
129 #define CMD_READ_INQ_BUF 0x9B
130
131
132 #define MBX_NOT_IN_USE 0x00
133 #define MBX_ACTION_START 0x01
134 #define MBX_ACTION_ABORT 0x02
135 #define MBX_COMPLETION_OK 0x01
136 #define MBX_COMPLETION_ABORTED 0x02
137 #define MBX_COMPLETION_NOT_FOUND 0x03
138 #define MBX_COMPLETION_ERROR 0x04
139
140
141 struct mailbox {
142 void *ccbptr;
143 unsigned char btstat;
144 unsigned char sdstat;
145 unsigned char reserved;
146 unsigned char status;
147 };
148
149
150 struct chain {
151 unsigned long datalen;
152 void *dataptr;
153 };
154
155 #define MAX_CDB 12
156
157 struct ccb {
158 unsigned char op;
159 unsigned char dir;
160 unsigned char cdblen;
161 unsigned char rsalen;
162 unsigned long datalen;
163 void *dataptr;
164 unsigned char reserved[2];
165 unsigned char hastat;
166 unsigned char tarstat;
167 unsigned char id;
168 unsigned char lun;
169 unsigned char cdb[MAX_CDB];
170 unsigned char ccbcontrol;
171 unsigned char commlinkid;
172 void *linkptr;
173 void *senseptr;
174 };
175
176 #define CCB_OP_INIT 0x00
177 #define CCB_OP_TARG 0x01
178 #define CCB_OP_INIT_SG 0x02
179 #define CCB_OP_INIT_R 0x03
180
181 #define CCB_OP_INIT_SG_R 0x04
182
183 #define CCB_OP_BUS_RESET 0x81
184
185 #endif
186
187 #endif