1 /*
2 * buslogic.h Copyright (C) 1993, 1994 David B. Gentzel
3 * See buslogic.c for more information.
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 NULL, \
17 "buslogic", \
18 PROC_SCSI_BUSLOGIC, \
19 "BusLogic", \
20 buslogic_detect, \
21 0, /* no release func */ \
22 buslogic_info, \
23 0, /* no command func */ \
24 buslogic_queuecommand, \
25 buslogic_abort, \
26 buslogic_reset, \
27 0, /* slave_attach NYI */ \
28 buslogic_biosparam, \
29 0, /* set by driver */ \
30 0, /* set by driver */ \
31 0, /* set by driver */ \
32 0, /* set by driver */ \
33 0, \
34 0, /* set by driver */ \
35 ENABLE_CLUSTERING \
36 }
37
38 #ifdef BUSLOGIC_PRIVATE_H
39
40 /* ??? These don't really belong here */
41 #ifndef TRUE
42 # define TRUE 1
43 #endif
44 #ifndef FALSE
45 # define FALSE 0
46 #endif
47
48 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr)[0])
49
50 #define PACKED __attribute__((packed))
51
52 #define BD_ABORT 0x0001
53 #define BD_COMMAND 0x0002
54 #define BD_DETECT 0x0004
55 #define BD_ERRORS 0x0008
56 #define BD_INTERRUPT 0x0010
57 #define BD_IO 0x0020
58 #define BD_RESET 0x0040
59 #define BD_UNDOCUMENTED 0x0080
60
61 /* I/O Port interface */
62 /* READ */
63 #define STATUS(base) (base)
64 #define DACT 0x80 /* Diagnostic Active */
65 #define DFAIL 0x40 /* Diagnostic Failure */
66 #define INREQ 0x20 /* Initialization Required */
67 #define HARDY 0x10 /* Host Adapter Ready */
68 #define CPRBSY 0x08 /* Command/Parameter Register Busy */
69 #define DIRRDY 0x04 /* Data In Register Ready */
70 /* 0x02 is reserved */
71 #define CMDINV 0x01 /* Command Invalid */
72
73 #define DATA_IN(base) (STATUS(base) + 1)
74
75 #define INTERRUPT(base) (STATUS(base) + 2)
76 #define INTV 0x80 /* Interrupt Valid */
77 /* 0x70 are reserved */
78 #define RSTS 0x08 /* SCSI Reset State */
79 #define CMDC 0x04 /* Command Complete */
80 #define MBOR 0x02 /* Mailbox Out Ready */
81 #define IMBL 0x01 /* Incoming Mailbox Loaded */
82 #define INTRMASK 0x8F
83
84 /* This undocumented port returns a bitmask indicating geometry translation. */
85 #define GEOMETRY(base) (STATUS(base) + 3)
86 #define GEO_GT_1GB 0x80 /* > 1GB under DOS geometry mapping */
87 /* 0x70 are unknown */
88 #define GEO_XLATION_S_D1 0x0C /* Disk 1 geometry ("S" models only) */
89 #define GEO_XLATION_S_D0 0x03 /* Disk 0 geometry ("S" models only) */
90
91
92 /* WRITE */
93 #define CONTROL(base) STATUS(base)
94 #define RHARD 0x80 /* Hard Reset */
95 #define RSOFT 0x40 /* Soft Reset */
96 #define RINT 0x20 /* Interrupt Reset */
97 #define RSBUS 0x10 /* SCSI Bus Reset */
98 /* 0x0F are reserved */
99
100 #define COMMAND_PARAMETER(base) (STATUS(base) + 1)
101 #define CMD_TSTCMDCINT 0x00 /* Test CMDC Interrupt */
102 #define CMD_INITMB 0x01 /* Initialize Mailbox */
103 #define CMD_START_SCSI 0x02 /* Start Mailbox */
104 #define CMD_START_BIOS 0x03 /* Start BIOS */
105 #define CMD_INQUIRY 0x04 /* Inquire Board ID */
106 #define CMD_ENBOMBRINT 0x05 /* Enable OMBR Interrupt */
107 #define CMD_SETSELTIMOUT 0x06 /* Set SCSI Selection Time-Out */
108 #define CMD_BUSON_TIME 0x07 /* Set Bus-On Time */
109 #define CMD_BUSOFF_TIME 0x08 /* Set Bus-Off Time */
110 #define CMD_BUSXFR_RATE 0x09 /* Set Bus Transfer Rate */
111 #define CMD_INQ_DEVICES 0x0A /* Inquire Installed Devices */
112 #define CMD_RETCONF 0x0B /* Return Configuration */
113 #define CMD_TARGET_MODE 0x0C /* Set Target Mode */
114 #define CMD_INQ_SETUP_INFO 0x0D /* Inquire Set-up Information */
115 #define CMD_WRITE_LCL_RAM 0x1A /* Write Adapter Local RAM */
116 #define CMD_READ_LCL_RAM 0x1B /* Read Adapter Local RAM */
117 #define CMD_WRITE_BM_FIFO 0x1C /* Write Bus Master Chip FIFO */
118 #define CMD_READ_BM_FIFO 0x1D /* Read Bus Master Chip FIFO */
119 #define CMD_ECHO 0x1F /* Echo Data Byte */
120 #define CMD_HA_DIAG 0x20 /* Host Adapter Diagnostic */
121 #define CMD_HA_OPTIONS 0x21 /* Host Adapter Options */
122 #define CMD_INITEXTMB 0x81 /* Initialize Extended Mailbox */
123 #define CMD_VER_NO_LAST 0x84 /* Version Number Last Byte (undocumented) */
124 #define CMD_VER_NO_LETTER 0x85 /* Version Number One Letter (undocumented) */
125 #define CMD_RET_MODEL_NO 0x8B /* Return Model Number (undocumented) */
126 #define CMD_INQEXTSETUP 0x8D /* Inquire Extended Set-up Information */
127 #define CMD_ROUND_ROBIN 0x8F /* Enable strict vs. half-assed round-robin
128 mailbox filling (undocumented) */
129 #define CMD_READ_FW_LCL_RAM 0x91/* Read Firmware Local RAM (undocumented) */
130 #define CMD_WRITE_INQ_BUF 0x9A /* Write Inquiry Data Buffer
131 (Target Mode Only) */
132 #define CMD_READ_INQ_BUF 0x9B /* Read Inquiry Data Buffer
133 (Target Mode Only) */
134
135 #define MBX_NOT_IN_USE 0x00
136 #define MBX_ACTION_START 0x01
137 #define MBX_ACTION_ABORT 0x02
138 #define MBX_COMPLETION_OK 0x01
139 #define MBX_COMPLETION_ABORTED 0x02
140 #define MBX_COMPLETION_NOT_FOUND 0x03
141 #define MBX_COMPLETION_ERROR 0x04
142
143 /* Mailbox Definition */
144 struct mailbox {
145 void *ccbptr; /* lsb, ..., msb */
146 unsigned char btstat;
147 unsigned char sdstat;
148 unsigned char reserved;
149 unsigned char status; /* Command/Status */
150 };
151
152 /* This is used with scatter-gather */
153 struct chain {
154 unsigned long datalen; /* Size of this part of chain */
155 void *dataptr; /* Location of data */
156 };
157
158 #define MAX_CDB 12
159
160 struct ccb { /* Command Control Block */
161 unsigned char op; /* Command Control Block Operation Code */
162 unsigned char dir;
163 unsigned char cdblen; /* SCSI Command Length */
164 unsigned char rsalen; /* Request Sense Allocation Length/Disable */
165 unsigned long datalen; /* Data Length (msb, ..., lsb) */
166 void *dataptr; /* Data Pointer */
167 unsigned char reserved[2];
168 unsigned char hastat; /* Host Adapter Status (HASTAT) */
169 unsigned char tarstat; /* Target Device Status */
170 unsigned char id;
171 unsigned char lun;
172 unsigned char cdb[MAX_CDB];
173 unsigned char ccbcontrol;
174 unsigned char commlinkid; /* Command Linking Identifier */
175 void *linkptr; /* Link Pointer */
176 void *senseptr;
177 };
178
179 #define CCB_OP_INIT 0x00 /* Initiator CCB */
180 #define CCB_OP_TARG 0x01 /* Target CCB */
181 #define CCB_OP_INIT_SG 0x02 /* Initiator CCB with scatter-gather */
182 #define CCB_OP_INIT_R 0x03 /* Initiator CCB with residual data length
183 returned */
184 #define CCB_OP_INIT_SG_R 0x04 /* Initiator CCB with scatter-gather and
185 residual data length returned */
186 #define CCB_OP_BUS_RESET 0x81 /* SCSI bus device reset */
187
188 #endif
189
190 #endif