ispmbox.h revision 1.54 1 1.54 mjacob /* $NetBSD: ispmbox.h,v 1.54 2010/01/03 02:47:10 mjacob Exp $ */
2 1.26 mjacob /*
3 1.50 mjacob * Copyright (C) 1997, 1998, 1999 National Aeronautics & Space Administration
4 1.50 mjacob * All rights reserved.
5 1.26 mjacob *
6 1.50 mjacob * Additional Copyright (C) 2000-2007 by Matthew Jacob
7 1.1 cgd * All rights reserved.
8 1.1 cgd *
9 1.1 cgd * Redistribution and use in source and binary forms, with or without
10 1.1 cgd * modification, are permitted provided that the following conditions
11 1.1 cgd * are met:
12 1.1 cgd * 1. Redistributions of source code must retain the above copyright
13 1.18 mjacob * notice, this list of conditions and the following disclaimer.
14 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 cgd * notice, this list of conditions and the following disclaimer in the
16 1.1 cgd * documentation and/or other materials provided with the distribution.
17 1.1 cgd * 3. The name of the author may not be used to endorse or promote products
18 1.18 mjacob * derived from this software without specific prior written permission
19 1.6 mjacob *
20 1.18 mjacob * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.18 mjacob * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.18 mjacob * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.18 mjacob * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.18 mjacob * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.18 mjacob * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.18 mjacob * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.18 mjacob * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.18 mjacob * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.18 mjacob * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.18 mjacob */
31 1.18 mjacob /*
32 1.18 mjacob * Mailbox and Queue Entry Definitions for for Qlogic ISP SCSI adapters.
33 1.1 cgd */
34 1.1 cgd #ifndef _ISPMBOX_H
35 1.1 cgd #define _ISPMBOX_H
36 1.1 cgd
37 1.1 cgd /*
38 1.1 cgd * Mailbox Command Opcodes
39 1.1 cgd */
40 1.1 cgd #define MBOX_NO_OP 0x0000
41 1.1 cgd #define MBOX_LOAD_RAM 0x0001
42 1.1 cgd #define MBOX_EXEC_FIRMWARE 0x0002
43 1.1 cgd #define MBOX_DUMP_RAM 0x0003
44 1.1 cgd #define MBOX_WRITE_RAM_WORD 0x0004
45 1.1 cgd #define MBOX_READ_RAM_WORD 0x0005
46 1.1 cgd #define MBOX_MAILBOX_REG_TEST 0x0006
47 1.1 cgd #define MBOX_VERIFY_CHECKSUM 0x0007
48 1.1 cgd #define MBOX_ABOUT_FIRMWARE 0x0008
49 1.50 mjacob #define MBOX_LOAD_RISC_RAM_2100 0x0009
50 1.1 cgd /* a */
51 1.50 mjacob #define MBOX_LOAD_RISC_RAM 0x000b
52 1.1 cgd /* c */
53 1.50 mjacob #define MBOX_WRITE_RAM_WORD_EXTENDED 0x000d
54 1.1 cgd #define MBOX_CHECK_FIRMWARE 0x000e
55 1.38 mjacob #define MBOX_READ_RAM_WORD_EXTENDED 0x000f
56 1.1 cgd #define MBOX_INIT_REQ_QUEUE 0x0010
57 1.1 cgd #define MBOX_INIT_RES_QUEUE 0x0011
58 1.1 cgd #define MBOX_EXECUTE_IOCB 0x0012
59 1.1 cgd #define MBOX_WAKE_UP 0x0013
60 1.1 cgd #define MBOX_STOP_FIRMWARE 0x0014
61 1.1 cgd #define MBOX_ABORT 0x0015
62 1.1 cgd #define MBOX_ABORT_DEVICE 0x0016
63 1.1 cgd #define MBOX_ABORT_TARGET 0x0017
64 1.1 cgd #define MBOX_BUS_RESET 0x0018
65 1.1 cgd #define MBOX_STOP_QUEUE 0x0019
66 1.1 cgd #define MBOX_START_QUEUE 0x001a
67 1.1 cgd #define MBOX_SINGLE_STEP_QUEUE 0x001b
68 1.1 cgd #define MBOX_ABORT_QUEUE 0x001c
69 1.1 cgd #define MBOX_GET_DEV_QUEUE_STATUS 0x001d
70 1.1 cgd /* 1e */
71 1.1 cgd #define MBOX_GET_FIRMWARE_STATUS 0x001f
72 1.1 cgd #define MBOX_GET_INIT_SCSI_ID 0x0020
73 1.1 cgd #define MBOX_GET_SELECT_TIMEOUT 0x0021
74 1.1 cgd #define MBOX_GET_RETRY_COUNT 0x0022
75 1.1 cgd #define MBOX_GET_TAG_AGE_LIMIT 0x0023
76 1.1 cgd #define MBOX_GET_CLOCK_RATE 0x0024
77 1.1 cgd #define MBOX_GET_ACT_NEG_STATE 0x0025
78 1.1 cgd #define MBOX_GET_ASYNC_DATA_SETUP_TIME 0x0026
79 1.1 cgd #define MBOX_GET_SBUS_PARAMS 0x0027
80 1.34 mjacob #define MBOX_GET_PCI_PARAMS MBOX_GET_SBUS_PARAMS
81 1.1 cgd #define MBOX_GET_TARGET_PARAMS 0x0028
82 1.1 cgd #define MBOX_GET_DEV_QUEUE_PARAMS 0x0029
83 1.17 mjacob #define MBOX_GET_RESET_DELAY_PARAMS 0x002a
84 1.1 cgd /* 2b */
85 1.1 cgd /* 2c */
86 1.1 cgd /* 2d */
87 1.1 cgd /* 2e */
88 1.1 cgd /* 2f */
89 1.1 cgd #define MBOX_SET_INIT_SCSI_ID 0x0030
90 1.1 cgd #define MBOX_SET_SELECT_TIMEOUT 0x0031
91 1.1 cgd #define MBOX_SET_RETRY_COUNT 0x0032
92 1.1 cgd #define MBOX_SET_TAG_AGE_LIMIT 0x0033
93 1.1 cgd #define MBOX_SET_CLOCK_RATE 0x0034
94 1.17 mjacob #define MBOX_SET_ACT_NEG_STATE 0x0035
95 1.1 cgd #define MBOX_SET_ASYNC_DATA_SETUP_TIME 0x0036
96 1.1 cgd #define MBOX_SET_SBUS_CONTROL_PARAMS 0x0037
97 1.3 mjacob #define MBOX_SET_PCI_PARAMETERS 0x0037
98 1.1 cgd #define MBOX_SET_TARGET_PARAMS 0x0038
99 1.1 cgd #define MBOX_SET_DEV_QUEUE_PARAMS 0x0039
100 1.17 mjacob #define MBOX_SET_RESET_DELAY_PARAMS 0x003a
101 1.1 cgd /* 3b */
102 1.1 cgd /* 3c */
103 1.1 cgd /* 3d */
104 1.1 cgd /* 3e */
105 1.1 cgd /* 3f */
106 1.1 cgd #define MBOX_RETURN_BIOS_BLOCK_ADDR 0x0040
107 1.1 cgd #define MBOX_WRITE_FOUR_RAM_WORDS 0x0041
108 1.1 cgd #define MBOX_EXEC_BIOS_IOCB 0x0042
109 1.12 mjacob #define MBOX_SET_FW_FEATURES 0x004a
110 1.12 mjacob #define MBOX_GET_FW_FEATURES 0x004b
111 1.38 mjacob #define FW_FEATURE_FAST_POST 0x1
112 1.12 mjacob #define FW_FEATURE_LVD_NOTIFY 0x2
113 1.38 mjacob #define FW_FEATURE_RIO_32BIT 0x4
114 1.38 mjacob #define FW_FEATURE_RIO_16BIT 0x8
115 1.1 cgd
116 1.44 mjacob #define MBOX_INIT_REQ_QUEUE_A64 0x0052
117 1.44 mjacob #define MBOX_INIT_RES_QUEUE_A64 0x0053
118 1.44 mjacob
119 1.35 mjacob #define MBOX_ENABLE_TARGET_MODE 0x0055
120 1.20 mjacob #define ENABLE_TARGET_FLAG 0x8000
121 1.32 mjacob #define ENABLE_TQING_FLAG 0x0004
122 1.32 mjacob #define ENABLE_MANDATORY_DISC 0x0002
123 1.35 mjacob #define MBOX_GET_TARGET_STATUS 0x0056
124 1.35 mjacob
125 1.35 mjacob /* These are for the ISP2X00 FC cards */
126 1.35 mjacob #define MBOX_GET_LOOP_ID 0x0020
127 1.51 mjacob /* for 24XX cards, outgoing mailbox 7 has these values for F or FL topologies */
128 1.51 mjacob #define ISP24XX_INORDER 0x0100
129 1.51 mjacob #define ISP24XX_NPIV_SAN 0x0400
130 1.51 mjacob #define ISP24XX_VSAN_SAN 0x1000
131 1.51 mjacob #define ISP24XX_FC_SP_SAN 0x2000
132 1.51 mjacob
133 1.35 mjacob #define MBOX_GET_FIRMWARE_OPTIONS 0x0028
134 1.35 mjacob #define MBOX_SET_FIRMWARE_OPTIONS 0x0038
135 1.35 mjacob #define MBOX_GET_RESOURCE_COUNT 0x0042
136 1.50 mjacob #define MBOX_REQUEST_OFFLINE_MODE 0x0043
137 1.35 mjacob #define MBOX_ENHANCED_GET_PDB 0x0047
138 1.51 mjacob #define MBOX_INIT_FIRMWARE_MULTI_ID 0x0048 /* 2400 only */
139 1.51 mjacob #define MBOX_GET_VP_DATABASE 0x0049 /* 2400 only */
140 1.51 mjacob #define MBOX_GET_VP_DATABASE_ENTRY 0x004a /* 2400 only */
141 1.35 mjacob #define MBOX_EXEC_COMMAND_IOCB_A64 0x0054
142 1.35 mjacob #define MBOX_INIT_FIRMWARE 0x0060
143 1.35 mjacob #define MBOX_GET_INIT_CONTROL_BLOCK 0x0061
144 1.35 mjacob #define MBOX_INIT_LIP 0x0062
145 1.35 mjacob #define MBOX_GET_FC_AL_POSITION_MAP 0x0063
146 1.35 mjacob #define MBOX_GET_PORT_DB 0x0064
147 1.35 mjacob #define MBOX_CLEAR_ACA 0x0065
148 1.35 mjacob #define MBOX_TARGET_RESET 0x0066
149 1.35 mjacob #define MBOX_CLEAR_TASK_SET 0x0067
150 1.35 mjacob #define MBOX_ABORT_TASK_SET 0x0068
151 1.35 mjacob #define MBOX_GET_FW_STATE 0x0069
152 1.35 mjacob #define MBOX_GET_PORT_NAME 0x006A
153 1.35 mjacob #define MBOX_GET_LINK_STATUS 0x006B
154 1.35 mjacob #define MBOX_INIT_LIP_RESET 0x006C
155 1.35 mjacob #define MBOX_SEND_SNS 0x006E
156 1.35 mjacob #define MBOX_FABRIC_LOGIN 0x006F
157 1.35 mjacob #define MBOX_SEND_CHANGE_REQUEST 0x0070
158 1.35 mjacob #define MBOX_FABRIC_LOGOUT 0x0071
159 1.35 mjacob #define MBOX_INIT_LIP_LOGIN 0x0072
160 1.50 mjacob #define MBOX_LUN_RESET 0x007E
161 1.41 mjacob
162 1.41 mjacob #define MBOX_DRIVER_HEARTBEAT 0x005B
163 1.41 mjacob #define MBOX_FW_HEARTBEAT 0x005C
164 1.35 mjacob
165 1.50 mjacob #define MBOX_GET_SET_DATA_RATE 0x005D /* 24XX/23XX only */
166 1.50 mjacob #define MBGSD_GET_RATE 0
167 1.50 mjacob #define MBGSD_SET_RATE 1
168 1.50 mjacob #define MBGSD_SET_RATE_NOW 2 /* 24XX only */
169 1.35 mjacob #define MBGSD_ONEGB 0
170 1.35 mjacob #define MBGSD_TWOGB 1
171 1.35 mjacob #define MBGSD_AUTO 2
172 1.50 mjacob #define MBGSD_FOURGB 3 /* 24XX only */
173 1.53 mjacob #define MBGSD_EIGHTGB 4 /* 25XX only */
174 1.20 mjacob
175 1.3 mjacob
176 1.3 mjacob #define ISP2100_SET_PCI_PARAM 0x00ff
177 1.3 mjacob
178 1.1 cgd #define MBOX_BUSY 0x04
179 1.1 cgd
180 1.1 cgd /*
181 1.8 mjacob * Mailbox Command Complete Status Codes
182 1.8 mjacob */
183 1.8 mjacob #define MBOX_COMMAND_COMPLETE 0x4000
184 1.8 mjacob #define MBOX_INVALID_COMMAND 0x4001
185 1.8 mjacob #define MBOX_HOST_INTERFACE_ERROR 0x4002
186 1.8 mjacob #define MBOX_TEST_FAILED 0x4003
187 1.8 mjacob #define MBOX_COMMAND_ERROR 0x4005
188 1.8 mjacob #define MBOX_COMMAND_PARAM_ERROR 0x4006
189 1.22 mjacob #define MBOX_PORT_ID_USED 0x4007
190 1.22 mjacob #define MBOX_LOOP_ID_USED 0x4008
191 1.22 mjacob #define MBOX_ALL_IDS_USED 0x4009
192 1.22 mjacob #define MBOX_NOT_LOGGED_IN 0x400A
193 1.50 mjacob /* pseudo mailbox completion codes */
194 1.50 mjacob #define MBOX_REGS_BUSY 0x6000 /* registers in use */
195 1.50 mjacob #define MBOX_TIMEOUT 0x6001 /* command timed out */
196 1.50 mjacob
197 1.25 mjacob #define MBLOGALL 0x000f
198 1.25 mjacob #define MBLOGNONE 0x0000
199 1.25 mjacob #define MBLOGMASK(x) ((x) & 0xf)
200 1.8 mjacob
201 1.8 mjacob /*
202 1.8 mjacob * Asynchronous event status codes
203 1.8 mjacob */
204 1.8 mjacob #define ASYNC_BUS_RESET 0x8001
205 1.8 mjacob #define ASYNC_SYSTEM_ERROR 0x8002
206 1.8 mjacob #define ASYNC_RQS_XFER_ERR 0x8003
207 1.8 mjacob #define ASYNC_RSP_XFER_ERR 0x8004
208 1.8 mjacob #define ASYNC_QWAKEUP 0x8005
209 1.8 mjacob #define ASYNC_TIMEOUT_RESET 0x8006
210 1.10 mjacob #define ASYNC_DEVICE_RESET 0x8007
211 1.8 mjacob #define ASYNC_EXTMSG_UNDERRUN 0x800A
212 1.8 mjacob #define ASYNC_SCAM_INT 0x800B
213 1.8 mjacob #define ASYNC_HUNG_SCSI 0x800C
214 1.8 mjacob #define ASYNC_KILLED_BUS 0x800D
215 1.8 mjacob #define ASYNC_BUS_TRANSIT 0x800E /* LVD -> HVD, eg. */
216 1.8 mjacob #define ASYNC_LIP_OCCURRED 0x8010
217 1.8 mjacob #define ASYNC_LOOP_UP 0x8011
218 1.8 mjacob #define ASYNC_LOOP_DOWN 0x8012
219 1.8 mjacob #define ASYNC_LOOP_RESET 0x8013
220 1.10 mjacob #define ASYNC_PDB_CHANGED 0x8014
221 1.8 mjacob #define ASYNC_CHANGE_NOTIFY 0x8015
222 1.34 mjacob #define ASYNC_LIP_F8 0x8016
223 1.50 mjacob #define ASYNC_LIP_ERROR 0x8017
224 1.50 mjacob #define ASYNC_SECURITY_UPDATE 0x801B
225 1.33 mjacob #define ASYNC_CMD_CMPLT 0x8020
226 1.33 mjacob #define ASYNC_CTIO_DONE 0x8021
227 1.33 mjacob #define ASYNC_IP_XMIT_DONE 0x8022
228 1.33 mjacob #define ASYNC_IP_RECV_DONE 0x8023
229 1.33 mjacob #define ASYNC_IP_BROADCAST 0x8024
230 1.33 mjacob #define ASYNC_IP_RCVQ_LOW 0x8025
231 1.33 mjacob #define ASYNC_IP_RCVQ_EMPTY 0x8026
232 1.33 mjacob #define ASYNC_IP_RECV_DONE_ALIGNED 0x8027
233 1.21 mjacob #define ASYNC_PTPMODE 0x8030
234 1.33 mjacob #define ASYNC_RIO1 0x8031
235 1.33 mjacob #define ASYNC_RIO2 0x8032
236 1.33 mjacob #define ASYNC_RIO3 0x8033
237 1.33 mjacob #define ASYNC_RIO4 0x8034
238 1.33 mjacob #define ASYNC_RIO5 0x8035
239 1.21 mjacob #define ASYNC_CONNMODE 0x8036
240 1.21 mjacob #define ISP_CONN_LOOP 1
241 1.21 mjacob #define ISP_CONN_PTP 2
242 1.21 mjacob #define ISP_CONN_BADLIP 3
243 1.21 mjacob #define ISP_CONN_FATAL 4
244 1.21 mjacob #define ISP_CONN_LOOPBACK 5
245 1.33 mjacob #define ASYNC_RIO_RESP 0x8040
246 1.33 mjacob #define ASYNC_RIO_COMP 0x8042
247 1.50 mjacob #define ASYNC_RCV_ERR 0x8048
248 1.50 mjacob
249 1.33 mjacob /*
250 1.54 mjacob * Firmware Options. There are a lot of them.
251 1.54 mjacob *
252 1.54 mjacob * IFCOPTN - ISP Fibre Channel Option Word N
253 1.54 mjacob */
254 1.54 mjacob #define IFCOPT1_EQFQASYNC (1 << 13) /* enable QFULL notification */
255 1.54 mjacob #define IFCOPT1_EAABSRCVD (1 << 12)
256 1.54 mjacob #define IFCOPT1_RJTASYNC (1 << 11) /* enable 8018 notification */
257 1.54 mjacob #define IFCOPT1_ENAPURE (1 << 10)
258 1.54 mjacob #define IFCOPT1_ENA8017 (1 << 7)
259 1.54 mjacob #define IFCOPT1_DISGPIO67 (1 << 6)
260 1.54 mjacob #define IFCOPT1_LIPLOSSIMM (1 << 5)
261 1.54 mjacob #define IFCOPT1_DISF7SWTCH (1 << 4)
262 1.54 mjacob #define IFCOPT1_CTIO_RETRY (1 << 3)
263 1.54 mjacob #define IFCOPT1_LIPASYNC (1 << 1)
264 1.54 mjacob #define IFCOPT1_LIPF8 (1 << 0)
265 1.54 mjacob
266 1.54 mjacob #define IFCOPT2_LOOPBACK (1 << 1)
267 1.54 mjacob #define IFCOPT2_ATIO3_ONLY (1 << 0)
268 1.54 mjacob
269 1.54 mjacob #define IFCOPT3_NOPRLI (1 << 4) /* disable automatic sending of PRLI on local loops */
270 1.54 mjacob #define IFCOPT3_RNDASYNC (1 << 1)
271 1.54 mjacob /*
272 1.33 mjacob * 2.01.31 2200 Only. Need Bit 13 in Mailbox 1 for Set Firmware Options
273 1.33 mjacob * mailbox command to enable this.
274 1.33 mjacob */
275 1.33 mjacob #define ASYNC_QFULL_SENT 0x8049
276 1.33 mjacob
277 1.33 mjacob /*
278 1.54 mjacob * Needs to be enabled
279 1.54 mjacob */
280 1.54 mjacob #define ASYNC_AUTO_PLOGI_RJT 0x8018
281 1.54 mjacob /*
282 1.50 mjacob * 24XX only
283 1.33 mjacob */
284 1.50 mjacob #define ASYNC_RJT_SENT 0x8049
285 1.33 mjacob
286 1.50 mjacob /*
287 1.50 mjacob * All IOCB Queue entries are this size
288 1.50 mjacob */
289 1.50 mjacob #define QENTRY_LEN 64
290 1.21 mjacob
291 1.8 mjacob /*
292 1.51 mjacob * Special Internal Handle for IOCBs
293 1.51 mjacob */
294 1.51 mjacob #define ISP_SPCL_HANDLE 0xa5dead5a
295 1.51 mjacob
296 1.51 mjacob /*
297 1.1 cgd * Command Structure Definitions
298 1.1 cgd */
299 1.1 cgd
300 1.1 cgd typedef struct {
301 1.50 mjacob uint32_t ds_base;
302 1.50 mjacob uint32_t ds_count;
303 1.1 cgd } ispds_t;
304 1.1 cgd
305 1.33 mjacob typedef struct {
306 1.50 mjacob uint32_t ds_base;
307 1.50 mjacob uint32_t ds_basehi;
308 1.50 mjacob uint32_t ds_count;
309 1.33 mjacob } ispds64_t;
310 1.33 mjacob
311 1.36 mjacob #define DSTYPE_32BIT 0
312 1.36 mjacob #define DSTYPE_64BIT 1
313 1.33 mjacob typedef struct {
314 1.50 mjacob uint16_t ds_type; /* 0-> ispds_t, 1-> ispds64_t */
315 1.50 mjacob uint32_t ds_segment; /* unused */
316 1.50 mjacob uint32_t ds_base; /* 32 bit address of DSD list */
317 1.33 mjacob } ispdslist_t;
318 1.33 mjacob
319 1.33 mjacob
320 1.1 cgd typedef struct {
321 1.50 mjacob uint8_t rqs_entry_type;
322 1.50 mjacob uint8_t rqs_entry_count;
323 1.50 mjacob uint8_t rqs_seqno;
324 1.50 mjacob uint8_t rqs_flags;
325 1.16 mjacob } isphdr_t;
326 1.1 cgd
327 1.1 cgd /* RQS Flag definitions */
328 1.1 cgd #define RQSFLAG_CONTINUATION 0x01
329 1.1 cgd #define RQSFLAG_FULL 0x02
330 1.1 cgd #define RQSFLAG_BADHEADER 0x04
331 1.1 cgd #define RQSFLAG_BADPACKET 0x08
332 1.53 mjacob #define RQSFLAG_BADCOUNT 0x10
333 1.53 mjacob #define RQSFLAG_BADORDER 0x20
334 1.53 mjacob #define RQSFLAG_MASK 0x3f
335 1.3 mjacob
336 1.1 cgd /* RQS entry_type definitions */
337 1.8 mjacob #define RQSTYPE_REQUEST 0x01
338 1.8 mjacob #define RQSTYPE_DATASEG 0x02
339 1.8 mjacob #define RQSTYPE_RESPONSE 0x03
340 1.8 mjacob #define RQSTYPE_MARKER 0x04
341 1.8 mjacob #define RQSTYPE_CMDONLY 0x05
342 1.8 mjacob #define RQSTYPE_ATIO 0x06 /* Target Mode */
343 1.20 mjacob #define RQSTYPE_CTIO 0x07 /* Target Mode */
344 1.8 mjacob #define RQSTYPE_SCAM 0x08
345 1.8 mjacob #define RQSTYPE_A64 0x09
346 1.8 mjacob #define RQSTYPE_A64_CONT 0x0a
347 1.8 mjacob #define RQSTYPE_ENABLE_LUN 0x0b /* Target Mode */
348 1.8 mjacob #define RQSTYPE_MODIFY_LUN 0x0c /* Target Mode */
349 1.8 mjacob #define RQSTYPE_NOTIFY 0x0d /* Target Mode */
350 1.8 mjacob #define RQSTYPE_NOTIFY_ACK 0x0e /* Target Mode */
351 1.8 mjacob #define RQSTYPE_CTIO1 0x0f /* Target Mode */
352 1.8 mjacob #define RQSTYPE_STATUS_CONT 0x10
353 1.8 mjacob #define RQSTYPE_T2RQS 0x11
354 1.50 mjacob #define RQSTYPE_CTIO7 0x12
355 1.33 mjacob #define RQSTYPE_IP_XMIT 0x13
356 1.50 mjacob #define RQSTYPE_TSK_MGMT 0x14
357 1.8 mjacob #define RQSTYPE_T4RQS 0x15
358 1.33 mjacob #define RQSTYPE_ATIO2 0x16 /* Target Mode */
359 1.33 mjacob #define RQSTYPE_CTIO2 0x17 /* Target Mode */
360 1.50 mjacob #define RQSTYPE_T7RQS 0x18
361 1.8 mjacob #define RQSTYPE_T3RQS 0x19
362 1.33 mjacob #define RQSTYPE_IP_XMIT_64 0x1b
363 1.33 mjacob #define RQSTYPE_CTIO4 0x1e /* Target Mode */
364 1.33 mjacob #define RQSTYPE_CTIO3 0x1f /* Target Mode */
365 1.33 mjacob #define RQSTYPE_RIO1 0x21
366 1.33 mjacob #define RQSTYPE_RIO2 0x22
367 1.33 mjacob #define RQSTYPE_IP_RECV 0x23
368 1.33 mjacob #define RQSTYPE_IP_RECV_CONT 0x24
369 1.50 mjacob #define RQSTYPE_CT_PASSTHRU 0x29
370 1.50 mjacob #define RQSTYPE_MS_PASSTHRU 0x29
371 1.51 mjacob #define RQSTYPE_VP_CTRL 0x30 /* 24XX only */
372 1.51 mjacob #define RQSTYPE_VP_MODIFY 0x31 /* 24XX only */
373 1.51 mjacob #define RQSTYPE_RPT_ID_ACQ 0x32 /* 24XX only */
374 1.50 mjacob #define RQSTYPE_ABORT_IO 0x33
375 1.50 mjacob #define RQSTYPE_T6RQS 0x48
376 1.50 mjacob #define RQSTYPE_LOGIN 0x52
377 1.50 mjacob #define RQSTYPE_ABTS_RCVD 0x54 /* 24XX only */
378 1.50 mjacob #define RQSTYPE_ABTS_RSP 0x55 /* 24XX only */
379 1.1 cgd
380 1.1 cgd
381 1.1 cgd #define ISP_RQDSEG 4
382 1.1 cgd typedef struct {
383 1.1 cgd isphdr_t req_header;
384 1.50 mjacob uint32_t req_handle;
385 1.50 mjacob uint8_t req_lun_trn;
386 1.50 mjacob uint8_t req_target;
387 1.50 mjacob uint16_t req_cdblen;
388 1.50 mjacob uint16_t req_flags;
389 1.50 mjacob uint16_t req_reserved;
390 1.50 mjacob uint16_t req_time;
391 1.50 mjacob uint16_t req_seg_count;
392 1.50 mjacob uint8_t req_cdb[12];
393 1.1 cgd ispds_t req_dataseg[ISP_RQDSEG];
394 1.1 cgd } ispreq_t;
395 1.50 mjacob #define ISP_RQDSEG_A64 2
396 1.44 mjacob
397 1.50 mjacob typedef struct {
398 1.50 mjacob isphdr_t mrk_header;
399 1.50 mjacob uint32_t mrk_handle;
400 1.50 mjacob uint8_t mrk_reserved0;
401 1.50 mjacob uint8_t mrk_target;
402 1.50 mjacob uint16_t mrk_modifier;
403 1.50 mjacob uint16_t mrk_flags;
404 1.50 mjacob uint16_t mrk_lun;
405 1.50 mjacob uint8_t mrk_reserved1[48];
406 1.50 mjacob } isp_marker_t;
407 1.50 mjacob
408 1.50 mjacob typedef struct {
409 1.50 mjacob isphdr_t mrk_header;
410 1.50 mjacob uint32_t mrk_handle;
411 1.50 mjacob uint16_t mrk_nphdl;
412 1.50 mjacob uint8_t mrk_modifier;
413 1.50 mjacob uint8_t mrk_reserved0;
414 1.50 mjacob uint8_t mrk_reserved1;
415 1.50 mjacob uint8_t mrk_vphdl;
416 1.50 mjacob uint16_t mrk_reserved2;
417 1.50 mjacob uint8_t mrk_lun[8];
418 1.50 mjacob uint8_t mrk_reserved3[40];
419 1.50 mjacob } isp_marker_24xx_t;
420 1.50 mjacob
421 1.1 cgd
422 1.16 mjacob #define SYNC_DEVICE 0
423 1.16 mjacob #define SYNC_TARGET 1
424 1.16 mjacob #define SYNC_ALL 2
425 1.50 mjacob #define SYNC_LIP 3
426 1.16 mjacob
427 1.34 mjacob #define ISP_RQDSEG_T2 3
428 1.3 mjacob typedef struct {
429 1.3 mjacob isphdr_t req_header;
430 1.50 mjacob uint32_t req_handle;
431 1.50 mjacob uint8_t req_lun_trn;
432 1.50 mjacob uint8_t req_target;
433 1.50 mjacob uint16_t req_scclun;
434 1.50 mjacob uint16_t req_flags;
435 1.50 mjacob uint16_t req_reserved;
436 1.50 mjacob uint16_t req_time;
437 1.50 mjacob uint16_t req_seg_count;
438 1.50 mjacob uint8_t req_cdb[16];
439 1.50 mjacob uint32_t req_totalcnt;
440 1.3 mjacob ispds_t req_dataseg[ISP_RQDSEG_T2];
441 1.3 mjacob } ispreqt2_t;
442 1.3 mjacob
443 1.50 mjacob typedef struct {
444 1.50 mjacob isphdr_t req_header;
445 1.50 mjacob uint32_t req_handle;
446 1.50 mjacob uint16_t req_target;
447 1.50 mjacob uint16_t req_scclun;
448 1.50 mjacob uint16_t req_flags;
449 1.50 mjacob uint16_t req_reserved;
450 1.50 mjacob uint16_t req_time;
451 1.50 mjacob uint16_t req_seg_count;
452 1.50 mjacob uint8_t req_cdb[16];
453 1.50 mjacob uint32_t req_totalcnt;
454 1.50 mjacob ispds_t req_dataseg[ISP_RQDSEG_T2];
455 1.50 mjacob } ispreqt2e_t;
456 1.50 mjacob
457 1.34 mjacob #define ISP_RQDSEG_T3 2
458 1.34 mjacob typedef struct {
459 1.34 mjacob isphdr_t req_header;
460 1.50 mjacob uint32_t req_handle;
461 1.50 mjacob uint8_t req_lun_trn;
462 1.50 mjacob uint8_t req_target;
463 1.50 mjacob uint16_t req_scclun;
464 1.50 mjacob uint16_t req_flags;
465 1.50 mjacob uint16_t req_reserved;
466 1.50 mjacob uint16_t req_time;
467 1.50 mjacob uint16_t req_seg_count;
468 1.50 mjacob uint8_t req_cdb[16];
469 1.50 mjacob uint32_t req_totalcnt;
470 1.34 mjacob ispds64_t req_dataseg[ISP_RQDSEG_T3];
471 1.34 mjacob } ispreqt3_t;
472 1.50 mjacob #define ispreq64_t ispreqt3_t /* same as.... */
473 1.50 mjacob
474 1.50 mjacob typedef struct {
475 1.50 mjacob isphdr_t req_header;
476 1.50 mjacob uint32_t req_handle;
477 1.50 mjacob uint16_t req_target;
478 1.50 mjacob uint16_t req_scclun;
479 1.50 mjacob uint16_t req_flags;
480 1.50 mjacob uint16_t req_reserved;
481 1.50 mjacob uint16_t req_time;
482 1.50 mjacob uint16_t req_seg_count;
483 1.50 mjacob uint8_t req_cdb[16];
484 1.50 mjacob uint32_t req_totalcnt;
485 1.50 mjacob ispds64_t req_dataseg[ISP_RQDSEG_T3];
486 1.50 mjacob } ispreqt3e_t;
487 1.34 mjacob
488 1.1 cgd /* req_flag values */
489 1.1 cgd #define REQFLAG_NODISCON 0x0001
490 1.1 cgd #define REQFLAG_HTAG 0x0002
491 1.1 cgd #define REQFLAG_OTAG 0x0004
492 1.1 cgd #define REQFLAG_STAG 0x0008
493 1.1 cgd #define REQFLAG_TARGET_RTN 0x0010
494 1.1 cgd
495 1.1 cgd #define REQFLAG_NODATA 0x0000
496 1.1 cgd #define REQFLAG_DATA_IN 0x0020
497 1.1 cgd #define REQFLAG_DATA_OUT 0x0040
498 1.1 cgd #define REQFLAG_DATA_UNKNOWN 0x0060
499 1.1 cgd
500 1.1 cgd #define REQFLAG_DISARQ 0x0100
501 1.8 mjacob #define REQFLAG_FRC_ASYNC 0x0200
502 1.8 mjacob #define REQFLAG_FRC_SYNC 0x0400
503 1.8 mjacob #define REQFLAG_FRC_WIDE 0x0800
504 1.8 mjacob #define REQFLAG_NOPARITY 0x1000
505 1.8 mjacob #define REQFLAG_STOPQ 0x2000
506 1.8 mjacob #define REQFLAG_XTRASNS 0x4000
507 1.8 mjacob #define REQFLAG_PRIORITY 0x8000
508 1.1 cgd
509 1.1 cgd typedef struct {
510 1.1 cgd isphdr_t req_header;
511 1.50 mjacob uint32_t req_handle;
512 1.50 mjacob uint8_t req_lun_trn;
513 1.50 mjacob uint8_t req_target;
514 1.50 mjacob uint16_t req_cdblen;
515 1.50 mjacob uint16_t req_flags;
516 1.50 mjacob uint16_t req_reserved;
517 1.50 mjacob uint16_t req_time;
518 1.50 mjacob uint16_t req_seg_count;
519 1.50 mjacob uint8_t req_cdb[44];
520 1.1 cgd } ispextreq_t;
521 1.1 cgd
522 1.50 mjacob /* 24XX only */
523 1.50 mjacob typedef struct {
524 1.50 mjacob uint16_t fcd_length;
525 1.50 mjacob uint16_t fcd_a1500;
526 1.50 mjacob uint16_t fcd_a3116;
527 1.50 mjacob uint16_t fcd_a4732;
528 1.50 mjacob uint16_t fcd_a6348;
529 1.50 mjacob } fcp_cmnd_ds_t;
530 1.50 mjacob
531 1.50 mjacob typedef struct {
532 1.50 mjacob isphdr_t req_header;
533 1.50 mjacob uint32_t req_handle;
534 1.50 mjacob uint16_t req_nphdl;
535 1.50 mjacob uint16_t req_time;
536 1.50 mjacob uint16_t req_seg_count;
537 1.50 mjacob uint16_t req_fc_rsp_dsd_length;
538 1.50 mjacob uint8_t req_lun[8];
539 1.50 mjacob uint16_t req_flags;
540 1.50 mjacob uint16_t req_fc_cmnd_dsd_length;
541 1.50 mjacob uint16_t req_fc_cmnd_dsd_a1500;
542 1.50 mjacob uint16_t req_fc_cmnd_dsd_a3116;
543 1.50 mjacob uint16_t req_fc_cmnd_dsd_a4732;
544 1.50 mjacob uint16_t req_fc_cmnd_dsd_a6348;
545 1.50 mjacob uint16_t req_fc_rsp_dsd_a1500;
546 1.50 mjacob uint16_t req_fc_rsp_dsd_a3116;
547 1.50 mjacob uint16_t req_fc_rsp_dsd_a4732;
548 1.50 mjacob uint16_t req_fc_rsp_dsd_a6348;
549 1.50 mjacob uint32_t req_totalcnt;
550 1.50 mjacob uint16_t req_tidlo;
551 1.50 mjacob uint8_t req_tidhi;
552 1.50 mjacob uint8_t req_vpidx;
553 1.50 mjacob ispds64_t req_dataseg;
554 1.50 mjacob } ispreqt6_t;
555 1.50 mjacob
556 1.50 mjacob typedef struct {
557 1.50 mjacob isphdr_t req_header;
558 1.50 mjacob uint32_t req_handle;
559 1.50 mjacob uint16_t req_nphdl;
560 1.50 mjacob uint16_t req_time;
561 1.50 mjacob uint16_t req_seg_count;
562 1.50 mjacob uint16_t req_reserved;
563 1.50 mjacob uint8_t req_lun[8];
564 1.50 mjacob uint8_t req_alen_datadir;
565 1.50 mjacob uint8_t req_task_management;
566 1.50 mjacob uint8_t req_task_attribute;
567 1.50 mjacob uint8_t req_crn;
568 1.50 mjacob uint8_t req_cdb[16];
569 1.50 mjacob uint32_t req_dl;
570 1.50 mjacob uint16_t req_tidlo;
571 1.50 mjacob uint8_t req_tidhi;
572 1.50 mjacob uint8_t req_vpidx;
573 1.50 mjacob ispds64_t req_dataseg;
574 1.50 mjacob } ispreqt7_t;
575 1.50 mjacob
576 1.51 mjacob /* Task Management Request Function */
577 1.51 mjacob typedef struct {
578 1.51 mjacob isphdr_t tmf_header;
579 1.51 mjacob uint32_t tmf_handle;
580 1.51 mjacob uint16_t tmf_nphdl;
581 1.51 mjacob uint8_t tmf_reserved0[2];
582 1.51 mjacob uint16_t tmf_delay;
583 1.51 mjacob uint16_t tmf_timeout;
584 1.51 mjacob uint8_t tmf_lun[8];
585 1.51 mjacob uint32_t tmf_flags;
586 1.51 mjacob uint8_t tmf_reserved1[20];
587 1.51 mjacob uint16_t tmf_tidlo;
588 1.51 mjacob uint8_t tmf_tidhi;
589 1.51 mjacob uint8_t tmf_vpidx;
590 1.51 mjacob uint8_t tmf_reserved2[12];
591 1.51 mjacob } isp24xx_tmf_t;
592 1.51 mjacob
593 1.51 mjacob #define ISP24XX_TMF_NOSEND 0x80000000
594 1.51 mjacob
595 1.51 mjacob #define ISP24XX_TMF_LUN_RESET 0x00000010
596 1.51 mjacob #define ISP24XX_TMF_ABORT_TASK_SET 0x00000008
597 1.51 mjacob #define ISP24XX_TMF_CLEAR_TASK_SET 0x00000004
598 1.51 mjacob #define ISP24XX_TMF_TARGET_RESET 0x00000002
599 1.51 mjacob #define ISP24XX_TMF_CLEAR_ACA 0x00000001
600 1.51 mjacob
601 1.50 mjacob /* I/O Abort Structure */
602 1.50 mjacob typedef struct {
603 1.50 mjacob isphdr_t abrt_header;
604 1.50 mjacob uint32_t abrt_handle;
605 1.50 mjacob uint16_t abrt_nphdl;
606 1.50 mjacob uint16_t abrt_options;
607 1.50 mjacob uint32_t abrt_cmd_handle;
608 1.50 mjacob uint8_t abrt_reserved[32];
609 1.50 mjacob uint16_t abrt_tidlo;
610 1.50 mjacob uint8_t abrt_tidhi;
611 1.50 mjacob uint8_t abrt_vpidx;
612 1.50 mjacob uint8_t abrt_reserved1[12];
613 1.50 mjacob } isp24xx_abrt_t;
614 1.51 mjacob
615 1.51 mjacob #define ISP24XX_ABRT_NOSEND 0x01 /* don't actually send ABTS */
616 1.51 mjacob #define ISP24XX_ABRT_OKAY 0x00 /* in nphdl on return */
617 1.50 mjacob #define ISP24XX_ABRT_ENXIO 0x31 /* in nphdl on return */
618 1.50 mjacob
619 1.1 cgd #define ISP_CDSEG 7
620 1.1 cgd typedef struct {
621 1.1 cgd isphdr_t req_header;
622 1.50 mjacob uint32_t req_reserved;
623 1.1 cgd ispds_t req_dataseg[ISP_CDSEG];
624 1.1 cgd } ispcontreq_t;
625 1.1 cgd
626 1.34 mjacob #define ISP_CDSEG64 5
627 1.34 mjacob typedef struct {
628 1.34 mjacob isphdr_t req_header;
629 1.34 mjacob ispds64_t req_dataseg[ISP_CDSEG64];
630 1.34 mjacob } ispcontreq64_t;
631 1.34 mjacob
632 1.1 cgd typedef struct {
633 1.1 cgd isphdr_t req_header;
634 1.50 mjacob uint32_t req_handle;
635 1.50 mjacob uint16_t req_scsi_status;
636 1.50 mjacob uint16_t req_completion_status;
637 1.50 mjacob uint16_t req_state_flags;
638 1.50 mjacob uint16_t req_status_flags;
639 1.50 mjacob uint16_t req_time;
640 1.20 mjacob #define req_response_len req_time /* FC only */
641 1.50 mjacob uint16_t req_sense_len;
642 1.50 mjacob uint32_t req_resid;
643 1.50 mjacob uint8_t req_response[8]; /* FC only */
644 1.50 mjacob uint8_t req_sense_data[32];
645 1.1 cgd } ispstatusreq_t;
646 1.36 mjacob
647 1.50 mjacob /*
648 1.50 mjacob * Status Continuation
649 1.50 mjacob */
650 1.36 mjacob typedef struct {
651 1.36 mjacob isphdr_t req_header;
652 1.50 mjacob uint8_t req_sense_data[60];
653 1.36 mjacob } ispstatus_cont_t;
654 1.1 cgd
655 1.48 perry /*
656 1.50 mjacob * 24XX Type 0 status
657 1.50 mjacob */
658 1.50 mjacob typedef struct {
659 1.50 mjacob isphdr_t req_header;
660 1.50 mjacob uint32_t req_handle;
661 1.50 mjacob uint16_t req_completion_status;
662 1.50 mjacob uint16_t req_oxid;
663 1.50 mjacob uint32_t req_resid;
664 1.50 mjacob uint16_t req_reserved0;
665 1.50 mjacob uint16_t req_state_flags;
666 1.50 mjacob uint16_t req_reserved1;
667 1.50 mjacob uint16_t req_scsi_status;
668 1.50 mjacob uint32_t req_fcp_residual;
669 1.50 mjacob uint32_t req_sense_len;
670 1.50 mjacob uint32_t req_response_len;
671 1.50 mjacob uint8_t req_rsp_sense[28];
672 1.50 mjacob } isp24xx_statusreq_t;
673 1.50 mjacob
674 1.50 mjacob /*
675 1.29 mjacob * For Qlogic 2X00, the high order byte of SCSI status has
676 1.3 mjacob * additional meaning.
677 1.3 mjacob */
678 1.3 mjacob #define RQCS_RU 0x800 /* Residual Under */
679 1.3 mjacob #define RQCS_RO 0x400 /* Residual Over */
680 1.27 mjacob #define RQCS_RESID (RQCS_RU|RQCS_RO)
681 1.3 mjacob #define RQCS_SV 0x200 /* Sense Length Valid */
682 1.27 mjacob #define RQCS_RV 0x100 /* FCP Response Length Valid */
683 1.3 mjacob
684 1.48 perry /*
685 1.50 mjacob * CT Passthru IOCB
686 1.50 mjacob */
687 1.50 mjacob typedef struct {
688 1.50 mjacob isphdr_t ctp_header;
689 1.50 mjacob uint32_t ctp_handle;
690 1.50 mjacob uint16_t ctp_status;
691 1.50 mjacob uint16_t ctp_nphdl; /* n-port handle */
692 1.50 mjacob uint16_t ctp_cmd_cnt; /* Command DSD count */
693 1.51 mjacob uint8_t ctp_vpidx;
694 1.51 mjacob uint8_t ctp_reserved0;
695 1.50 mjacob uint16_t ctp_time;
696 1.51 mjacob uint16_t ctp_reserved1;
697 1.50 mjacob uint16_t ctp_rsp_cnt; /* Response DSD count */
698 1.51 mjacob uint16_t ctp_reserved2[5];
699 1.50 mjacob uint32_t ctp_rsp_bcnt; /* Response byte count */
700 1.50 mjacob uint32_t ctp_cmd_bcnt; /* Command byte count */
701 1.50 mjacob ispds64_t ctp_dataseg[2];
702 1.50 mjacob } isp_ct_pt_t;
703 1.50 mjacob
704 1.50 mjacob /*
705 1.50 mjacob * MS Passthru IOCB
706 1.50 mjacob */
707 1.50 mjacob typedef struct {
708 1.50 mjacob isphdr_t ms_header;
709 1.50 mjacob uint32_t ms_handle;
710 1.50 mjacob uint16_t ms_nphdl; /* handle in high byte for !2k f/w */
711 1.50 mjacob uint16_t ms_status;
712 1.50 mjacob uint16_t ms_flags;
713 1.50 mjacob uint16_t ms_reserved1; /* low 8 bits */
714 1.50 mjacob uint16_t ms_time;
715 1.50 mjacob uint16_t ms_cmd_cnt; /* Command DSD count */
716 1.50 mjacob uint16_t ms_tot_cnt; /* Total DSD Count */
717 1.50 mjacob uint8_t ms_type; /* MS type */
718 1.50 mjacob uint8_t ms_r_ctl; /* R_CTL */
719 1.50 mjacob uint16_t ms_rxid; /* RX_ID */
720 1.50 mjacob uint16_t ms_reserved2;
721 1.50 mjacob uint32_t ms_handle2;
722 1.50 mjacob uint32_t ms_rsp_bcnt; /* Response byte count */
723 1.50 mjacob uint32_t ms_cmd_bcnt; /* Command byte count */
724 1.50 mjacob ispds64_t ms_dataseg[2];
725 1.50 mjacob } isp_ms_t;
726 1.50 mjacob
727 1.50 mjacob /*
728 1.3 mjacob * Completion Status Codes.
729 1.3 mjacob */
730 1.1 cgd #define RQCS_COMPLETE 0x0000
731 1.1 cgd #define RQCS_DMA_ERROR 0x0002
732 1.1 cgd #define RQCS_RESET_OCCURRED 0x0004
733 1.1 cgd #define RQCS_ABORTED 0x0005
734 1.1 cgd #define RQCS_TIMEOUT 0x0006
735 1.1 cgd #define RQCS_DATA_OVERRUN 0x0007
736 1.27 mjacob #define RQCS_DATA_UNDERRUN 0x0015
737 1.27 mjacob #define RQCS_QUEUE_FULL 0x001C
738 1.27 mjacob
739 1.27 mjacob /* 1X00 Only Completion Codes */
740 1.27 mjacob #define RQCS_INCOMPLETE 0x0001
741 1.27 mjacob #define RQCS_TRANSPORT_ERROR 0x0003
742 1.1 cgd #define RQCS_COMMAND_OVERRUN 0x0008
743 1.1 cgd #define RQCS_STATUS_OVERRUN 0x0009
744 1.1 cgd #define RQCS_BAD_MESSAGE 0x000a
745 1.1 cgd #define RQCS_NO_MESSAGE_OUT 0x000b
746 1.1 cgd #define RQCS_EXT_ID_FAILED 0x000c
747 1.1 cgd #define RQCS_IDE_MSG_FAILED 0x000d
748 1.1 cgd #define RQCS_ABORT_MSG_FAILED 0x000e
749 1.1 cgd #define RQCS_REJECT_MSG_FAILED 0x000f
750 1.1 cgd #define RQCS_NOP_MSG_FAILED 0x0010
751 1.1 cgd #define RQCS_PARITY_ERROR_MSG_FAILED 0x0011
752 1.1 cgd #define RQCS_DEVICE_RESET_MSG_FAILED 0x0012
753 1.1 cgd #define RQCS_ID_MSG_FAILED 0x0013
754 1.1 cgd #define RQCS_UNEXP_BUS_FREE 0x0014
755 1.8 mjacob #define RQCS_XACT_ERR1 0x0018
756 1.8 mjacob #define RQCS_XACT_ERR2 0x0019
757 1.8 mjacob #define RQCS_XACT_ERR3 0x001A
758 1.8 mjacob #define RQCS_BAD_ENTRY 0x001B
759 1.8 mjacob #define RQCS_PHASE_SKIPPED 0x001D
760 1.8 mjacob #define RQCS_ARQS_FAILED 0x001E
761 1.8 mjacob #define RQCS_WIDE_FAILED 0x001F
762 1.8 mjacob #define RQCS_SYNCXFER_FAILED 0x0020
763 1.8 mjacob #define RQCS_LVD_BUSERR 0x0021
764 1.8 mjacob
765 1.27 mjacob /* 2X00 Only Completion Codes */
766 1.3 mjacob #define RQCS_PORT_UNAVAILABLE 0x0028
767 1.3 mjacob #define RQCS_PORT_LOGGED_OUT 0x0029
768 1.3 mjacob #define RQCS_PORT_CHANGED 0x002A
769 1.3 mjacob #define RQCS_PORT_BUSY 0x002B
770 1.1 cgd
771 1.50 mjacob /* 24XX Only Completion Codes */
772 1.50 mjacob #define RQCS_24XX_DRE 0x0011 /* data reassembly error */
773 1.50 mjacob #define RQCS_24XX_TABORT 0x0013 /* aborted by target */
774 1.50 mjacob #define RQCS_24XX_ENOMEM 0x002C /* f/w resource unavailable */
775 1.50 mjacob #define RQCS_24XX_TMO 0x0030 /* task management overrun */
776 1.50 mjacob
777 1.50 mjacob
778 1.3 mjacob /*
779 1.50 mjacob * 1X00 specific State Flags
780 1.3 mjacob */
781 1.1 cgd #define RQSF_GOT_BUS 0x0100
782 1.1 cgd #define RQSF_GOT_TARGET 0x0200
783 1.1 cgd #define RQSF_SENT_CDB 0x0400
784 1.5 mjacob #define RQSF_XFRD_DATA 0x0800
785 1.1 cgd #define RQSF_GOT_STATUS 0x1000
786 1.1 cgd #define RQSF_GOT_SENSE 0x2000
787 1.5 mjacob #define RQSF_XFER_COMPLETE 0x4000
788 1.1 cgd
789 1.3 mjacob /*
790 1.29 mjacob * 2X00 specific State Flags
791 1.29 mjacob * (same as 1X00 except RQSF_GOT_BUS/RQSF_GOT_TARGET are not available)
792 1.29 mjacob */
793 1.29 mjacob #define RQSF_DATA_IN 0x0020
794 1.29 mjacob #define RQSF_DATA_OUT 0x0040
795 1.29 mjacob #define RQSF_STAG 0x0008
796 1.29 mjacob #define RQSF_OTAG 0x0004
797 1.29 mjacob #define RQSF_HTAG 0x0002
798 1.29 mjacob /*
799 1.27 mjacob * 1X00 Status Flags
800 1.3 mjacob */
801 1.1 cgd #define RQSTF_DISCONNECT 0x0001
802 1.1 cgd #define RQSTF_SYNCHRONOUS 0x0002
803 1.1 cgd #define RQSTF_PARITY_ERROR 0x0004
804 1.1 cgd #define RQSTF_BUS_RESET 0x0008
805 1.1 cgd #define RQSTF_DEVICE_RESET 0x0010
806 1.1 cgd #define RQSTF_ABORTED 0x0020
807 1.1 cgd #define RQSTF_TIMEOUT 0x0040
808 1.1 cgd #define RQSTF_NEGOTIATION 0x0080
809 1.27 mjacob
810 1.27 mjacob /*
811 1.27 mjacob * 2X00 specific state flags
812 1.27 mjacob */
813 1.27 mjacob /* RQSF_SENT_CDB */
814 1.27 mjacob /* RQSF_XFRD_DATA */
815 1.27 mjacob /* RQSF_GOT_STATUS */
816 1.27 mjacob /* RQSF_XFER_COMPLETE */
817 1.27 mjacob
818 1.27 mjacob /*
819 1.27 mjacob * 2X00 specific status flags
820 1.27 mjacob */
821 1.27 mjacob /* RQSTF_ABORTED */
822 1.27 mjacob /* RQSTF_TIMEOUT */
823 1.27 mjacob #define RQSTF_DMA_ERROR 0x0080
824 1.27 mjacob #define RQSTF_LOGOUT 0x2000
825 1.27 mjacob
826 1.27 mjacob /*
827 1.27 mjacob * Miscellaneous
828 1.27 mjacob */
829 1.27 mjacob #ifndef ISP_EXEC_THROTTLE
830 1.27 mjacob #define ISP_EXEC_THROTTLE 16
831 1.27 mjacob #endif
832 1.32 mjacob
833 1.32 mjacob /*
834 1.32 mjacob * About Firmware returns an 'attribute' word in mailbox 6.
835 1.50 mjacob * These attributes are for 2200 and 2300.
836 1.32 mjacob */
837 1.51 mjacob #define ISP_FW_ATTR_TMODE 0x0001
838 1.51 mjacob #define ISP_FW_ATTR_SCCLUN 0x0002
839 1.51 mjacob #define ISP_FW_ATTR_FABRIC 0x0004
840 1.51 mjacob #define ISP_FW_ATTR_CLASS2 0x0008
841 1.51 mjacob #define ISP_FW_ATTR_FCTAPE 0x0010
842 1.51 mjacob #define ISP_FW_ATTR_IP 0x0020
843 1.51 mjacob #define ISP_FW_ATTR_VI 0x0040
844 1.51 mjacob #define ISP_FW_ATTR_VI_SOLARIS 0x0080
845 1.51 mjacob #define ISP_FW_ATTR_2KLOGINS 0x0100 /* just a guess... */
846 1.50 mjacob
847 1.50 mjacob /* and these are for the 2400 */
848 1.51 mjacob #define ISP2400_FW_ATTR_CLASS2 0x0001
849 1.51 mjacob #define ISP2400_FW_ATTR_IP 0x0002
850 1.51 mjacob #define ISP2400_FW_ATTR_MULTIID 0x0004
851 1.51 mjacob #define ISP2400_FW_ATTR_SB2 0x0008
852 1.51 mjacob #define ISP2400_FW_ATTR_T10CRC 0x0010
853 1.51 mjacob #define ISP2400_FW_ATTR_VI 0x0020
854 1.51 mjacob #define ISP2400_FW_ATTR_EXPFW 0x2000
855 1.51 mjacob
856 1.51 mjacob #define ISP_CAP_TMODE(isp) \
857 1.51 mjacob (IS_24XX(isp)? 1 : (isp->isp_fwattr & ISP_FW_ATTR_TMODE))
858 1.51 mjacob #define ISP_CAP_SCCFW(isp) \
859 1.51 mjacob (IS_24XX(isp)? 1 : (isp->isp_fwattr & ISP_FW_ATTR_SCCLUN))
860 1.51 mjacob #define ISP_CAP_2KLOGIN(isp) \
861 1.51 mjacob (IS_24XX(isp)? 1 : (isp->isp_fwattr & ISP_FW_ATTR_2KLOGINS))
862 1.51 mjacob #define ISP_CAP_MULTI_ID(isp) \
863 1.51 mjacob (IS_24XX(isp)? (isp->isp_fwattr & ISP2400_FW_ATTR_MULTIID) : 0)
864 1.33 mjacob
865 1.53 mjacob #define ISP_GET_VPIDX(isp, tag) \
866 1.53 mjacob (ISP_CAP_MULTI_ID(isp) ? tag : 0)
867 1.53 mjacob
868 1.33 mjacob /*
869 1.33 mjacob * Reduced Interrupt Operation Response Queue Entreis
870 1.33 mjacob */
871 1.33 mjacob
872 1.33 mjacob typedef struct {
873 1.33 mjacob isphdr_t req_header;
874 1.50 mjacob uint32_t req_handles[15];
875 1.33 mjacob } isp_rio1_t;
876 1.33 mjacob
877 1.33 mjacob typedef struct {
878 1.33 mjacob isphdr_t req_header;
879 1.50 mjacob uint16_t req_handles[30];
880 1.33 mjacob } isp_rio2_t;
881 1.3 mjacob
882 1.3 mjacob /*
883 1.50 mjacob * FC (ISP2100/ISP2200/ISP2300/ISP2400) specific data structures
884 1.3 mjacob */
885 1.3 mjacob
886 1.3 mjacob /*
887 1.3 mjacob * Initialization Control Block
888 1.8 mjacob *
889 1.19 mjacob * Version One (prime) format.
890 1.3 mjacob */
891 1.50 mjacob typedef struct {
892 1.50 mjacob uint8_t icb_version;
893 1.50 mjacob uint8_t icb_reserved0;
894 1.50 mjacob uint16_t icb_fwoptions;
895 1.50 mjacob uint16_t icb_maxfrmlen;
896 1.50 mjacob uint16_t icb_maxalloc;
897 1.50 mjacob uint16_t icb_execthrottle;
898 1.50 mjacob uint8_t icb_retry_count;
899 1.50 mjacob uint8_t icb_retry_delay;
900 1.50 mjacob uint8_t icb_portname[8];
901 1.50 mjacob uint16_t icb_hardaddr;
902 1.50 mjacob uint8_t icb_iqdevtype;
903 1.50 mjacob uint8_t icb_logintime;
904 1.50 mjacob uint8_t icb_nodename[8];
905 1.50 mjacob uint16_t icb_rqstout;
906 1.50 mjacob uint16_t icb_rspnsin;
907 1.50 mjacob uint16_t icb_rqstqlen;
908 1.50 mjacob uint16_t icb_rsltqlen;
909 1.50 mjacob uint16_t icb_rqstaddr[4];
910 1.50 mjacob uint16_t icb_respaddr[4];
911 1.50 mjacob uint16_t icb_lunenables;
912 1.50 mjacob uint8_t icb_ccnt;
913 1.50 mjacob uint8_t icb_icnt;
914 1.50 mjacob uint16_t icb_lunetimeout;
915 1.50 mjacob uint16_t icb_reserved1;
916 1.50 mjacob uint16_t icb_xfwoptions;
917 1.50 mjacob uint8_t icb_racctimer;
918 1.50 mjacob uint8_t icb_idelaytimer;
919 1.50 mjacob uint16_t icb_zfwoptions;
920 1.50 mjacob uint16_t icb_reserved2[13];
921 1.3 mjacob } isp_icb_t;
922 1.50 mjacob
923 1.8 mjacob #define ICB_VERSION1 1
924 1.8 mjacob
925 1.50 mjacob #define ICBOPT_EXTENDED 0x8000
926 1.50 mjacob #define ICBOPT_BOTH_WWNS 0x4000
927 1.50 mjacob #define ICBOPT_FULL_LOGIN 0x2000
928 1.50 mjacob #define ICBOPT_STOP_ON_QFULL 0x1000 /* 2200/2100 only */
929 1.50 mjacob #define ICBOPT_PREVLOOP 0x0800
930 1.50 mjacob #define ICBOPT_SRCHDOWN 0x0400
931 1.50 mjacob #define ICBOPT_NOLIP 0x0200
932 1.50 mjacob #define ICBOPT_PDBCHANGE_AE 0x0100
933 1.50 mjacob #define ICBOPT_INI_TGTTYPE 0x0080
934 1.50 mjacob #define ICBOPT_INI_ADISC 0x0040
935 1.50 mjacob #define ICBOPT_INI_DISABLE 0x0020
936 1.50 mjacob #define ICBOPT_TGT_ENABLE 0x0010
937 1.50 mjacob #define ICBOPT_FAST_POST 0x0008
938 1.50 mjacob #define ICBOPT_FULL_DUPLEX 0x0004
939 1.50 mjacob #define ICBOPT_FAIRNESS 0x0002
940 1.18 mjacob #define ICBOPT_HARD_ADDRESS 0x0001
941 1.21 mjacob
942 1.50 mjacob #define ICBXOPT_NO_LOGOUT 0x8000 /* no logout on link failure */
943 1.50 mjacob #define ICBXOPT_FCTAPE_CCQ 0x4000 /* FC-Tape Command Queueing */
944 1.50 mjacob #define ICBXOPT_FCTAPE_CONFIRM 0x2000
945 1.50 mjacob #define ICBXOPT_FCTAPE 0x1000
946 1.21 mjacob #define ICBXOPT_CLASS2_ACK0 0x0200
947 1.21 mjacob #define ICBXOPT_CLASS2 0x0100
948 1.50 mjacob #define ICBXOPT_NO_PLAY 0x0080 /* don't play if can't get hard addr */
949 1.50 mjacob #define ICBXOPT_TOPO_MASK 0x0070
950 1.50 mjacob #define ICBXOPT_LOOP_ONLY 0x0000
951 1.50 mjacob #define ICBXOPT_PTP_ONLY 0x0010
952 1.50 mjacob #define ICBXOPT_LOOP_2_PTP 0x0020
953 1.50 mjacob #define ICBXOPT_PTP_2_LOOP 0x0030
954 1.46 mjacob /*
955 1.46 mjacob * The lower 4 bits of the xfwoptions field are the OPERATION MODE bits.
956 1.50 mjacob * RIO is not defined for the 23XX cards (just 2200)
957 1.46 mjacob */
958 1.21 mjacob #define ICBXOPT_RIO_OFF 0
959 1.21 mjacob #define ICBXOPT_RIO_16BIT 1
960 1.21 mjacob #define ICBXOPT_RIO_32BIT 2
961 1.37 mjacob #define ICBXOPT_RIO_16BIT_IOCB 3
962 1.37 mjacob #define ICBXOPT_RIO_32BIT_IOCB 4
963 1.50 mjacob #define ICBXOPT_ZIO 5
964 1.50 mjacob #define ICBXOPT_TIMER_MASK 0x7
965 1.8 mjacob
966 1.50 mjacob #define ICBZOPT_RATE_MASK 0xC000
967 1.50 mjacob #define ICBZOPT_RATE_ONEGB 0x0000
968 1.50 mjacob #define ICBZOPT_RATE_AUTO 0x8000
969 1.50 mjacob #define ICBZOPT_RATE_TWOGB 0x4000
970 1.50 mjacob #define ICBZOPT_50_OHM 0x2000
971 1.50 mjacob #define ICBZOPT_ENA_OOF 0x0040 /* out of order frame handling */
972 1.50 mjacob #define ICBZOPT_RSPSZ_MASK 0x0030
973 1.50 mjacob #define ICBZOPT_RSPSZ_24 0x0000
974 1.50 mjacob #define ICBZOPT_RSPSZ_12 0x0010
975 1.50 mjacob #define ICBZOPT_RSPSZ_24A 0x0020
976 1.50 mjacob #define ICBZOPT_RSPSZ_32 0x0030
977 1.50 mjacob #define ICBZOPT_SOFTID 0x0002
978 1.50 mjacob #define ICBZOPT_ENA_RDXFR_RDY 0x0001
979 1.50 mjacob
980 1.50 mjacob /* 2400 F/W options */
981 1.50 mjacob #define ICB2400_OPT1_BOTH_WWNS 0x00004000
982 1.50 mjacob #define ICB2400_OPT1_FULL_LOGIN 0x00002000
983 1.50 mjacob #define ICB2400_OPT1_PREVLOOP 0x00000800
984 1.50 mjacob #define ICB2400_OPT1_SRCHDOWN 0x00000400
985 1.50 mjacob #define ICB2400_OPT1_NOLIP 0x00000200
986 1.50 mjacob #define ICB2400_OPT1_INI_DISABLE 0x00000020
987 1.50 mjacob #define ICB2400_OPT1_TGT_ENABLE 0x00000010
988 1.50 mjacob #define ICB2400_OPT1_FULL_DUPLEX 0x00000004
989 1.50 mjacob #define ICB2400_OPT1_FAIRNESS 0x00000002
990 1.50 mjacob #define ICB2400_OPT1_HARD_ADDRESS 0x00000001
991 1.50 mjacob
992 1.50 mjacob #define ICB2400_OPT2_FCTAPE 0x00001000
993 1.50 mjacob #define ICB2400_OPT2_CLASS2_ACK0 0x00000200
994 1.50 mjacob #define ICB2400_OPT2_CLASS2 0x00000100
995 1.50 mjacob #define ICB2400_OPT2_NO_PLAY 0x00000080
996 1.50 mjacob #define ICB2400_OPT2_TOPO_MASK 0x00000070
997 1.50 mjacob #define ICB2400_OPT2_LOOP_ONLY 0x00000000
998 1.50 mjacob #define ICB2400_OPT2_PTP_ONLY 0x00000010
999 1.50 mjacob #define ICB2400_OPT2_LOOP_2_PTP 0x00000020
1000 1.50 mjacob #define ICB2400_OPT2_PTP_2_LOOP 0x00000030
1001 1.50 mjacob #define ICB2400_OPT2_TIMER_MASK 0x00000007
1002 1.50 mjacob #define ICB2400_OPT2_ZIO 0x00000005
1003 1.50 mjacob #define ICB2400_OPT2_ZIO1 0x00000006
1004 1.50 mjacob
1005 1.50 mjacob #define ICB2400_OPT3_75_OHM 0x00010000
1006 1.50 mjacob #define ICB2400_OPT3_RATE_MASK 0x0000E000
1007 1.50 mjacob #define ICB2400_OPT3_RATE_ONEGB 0x00000000
1008 1.50 mjacob #define ICB2400_OPT3_RATE_TWOGB 0x00002000
1009 1.50 mjacob #define ICB2400_OPT3_RATE_AUTO 0x00004000
1010 1.50 mjacob #define ICB2400_OPT3_RATE_FOURGB 0x00006000
1011 1.53 mjacob #define ICB2400_OPT3_RATE_EIGHTGB 0x00008000
1012 1.50 mjacob #define ICB2400_OPT3_ENA_OOF_XFRDY 0x00000200
1013 1.50 mjacob #define ICB2400_OPT3_NO_LOCAL_PLOGI 0x00000080
1014 1.50 mjacob #define ICB2400_OPT3_ENA_OOF 0x00000040
1015 1.50 mjacob /* note that a response size flag of zero is reserved! */
1016 1.50 mjacob #define ICB2400_OPT3_RSPSZ_MASK 0x00000030
1017 1.50 mjacob #define ICB2400_OPT3_RSPSZ_12 0x00000010
1018 1.50 mjacob #define ICB2400_OPT3_RSPSZ_24 0x00000020
1019 1.50 mjacob #define ICB2400_OPT3_RSPSZ_32 0x00000030
1020 1.50 mjacob #define ICB2400_OPT3_SOFTID 0x00000002
1021 1.8 mjacob
1022 1.8 mjacob #define ICB_MIN_FRMLEN 256
1023 1.8 mjacob #define ICB_MAX_FRMLEN 2112
1024 1.8 mjacob #define ICB_DFLT_FRMLEN 1024
1025 1.18 mjacob #define ICB_DFLT_ALLOC 256
1026 1.18 mjacob #define ICB_DFLT_THROTTLE 16
1027 1.18 mjacob #define ICB_DFLT_RDELAY 5
1028 1.18 mjacob #define ICB_DFLT_RCOUNT 3
1029 1.18 mjacob
1030 1.50 mjacob #define ICB_LOGIN_TOV 30
1031 1.50 mjacob #define ICB_LUN_ENABLE_TOV 180
1032 1.50 mjacob
1033 1.50 mjacob
1034 1.50 mjacob /*
1035 1.50 mjacob * And somebody at QLogic had a great idea that you could just change
1036 1.50 mjacob * the structure *and* keep the version number the same as the other cards.
1037 1.50 mjacob */
1038 1.50 mjacob typedef struct {
1039 1.50 mjacob uint16_t icb_version;
1040 1.50 mjacob uint16_t icb_reserved0;
1041 1.50 mjacob uint16_t icb_maxfrmlen;
1042 1.50 mjacob uint16_t icb_execthrottle;
1043 1.50 mjacob uint16_t icb_xchgcnt;
1044 1.50 mjacob uint16_t icb_hardaddr;
1045 1.50 mjacob uint8_t icb_portname[8];
1046 1.50 mjacob uint8_t icb_nodename[8];
1047 1.50 mjacob uint16_t icb_rspnsin;
1048 1.50 mjacob uint16_t icb_rqstout;
1049 1.50 mjacob uint16_t icb_retry_count;
1050 1.50 mjacob uint16_t icb_priout;
1051 1.50 mjacob uint16_t icb_rsltqlen;
1052 1.50 mjacob uint16_t icb_rqstqlen;
1053 1.50 mjacob uint16_t icb_ldn_nols;
1054 1.50 mjacob uint16_t icb_prqstqlen;
1055 1.50 mjacob uint16_t icb_rqstaddr[4];
1056 1.50 mjacob uint16_t icb_respaddr[4];
1057 1.50 mjacob uint16_t icb_priaddr[4];
1058 1.50 mjacob uint16_t icb_reserved1[4];
1059 1.50 mjacob uint16_t icb_atio_in;
1060 1.50 mjacob uint16_t icb_atioqlen;
1061 1.50 mjacob uint16_t icb_atioqaddr[4];
1062 1.50 mjacob uint16_t icb_idelaytimer;
1063 1.50 mjacob uint16_t icb_logintime;
1064 1.50 mjacob uint32_t icb_fwoptions1;
1065 1.50 mjacob uint32_t icb_fwoptions2;
1066 1.50 mjacob uint32_t icb_fwoptions3;
1067 1.50 mjacob uint16_t icb_reserved2[12];
1068 1.50 mjacob } isp_icb_2400_t;
1069 1.8 mjacob
1070 1.8 mjacob #define RQRSP_ADDR0015 0
1071 1.8 mjacob #define RQRSP_ADDR1631 1
1072 1.8 mjacob #define RQRSP_ADDR3247 2
1073 1.8 mjacob #define RQRSP_ADDR4863 3
1074 1.8 mjacob
1075 1.8 mjacob
1076 1.8 mjacob #define ICB_NNM0 7
1077 1.8 mjacob #define ICB_NNM1 6
1078 1.8 mjacob #define ICB_NNM2 5
1079 1.8 mjacob #define ICB_NNM3 4
1080 1.8 mjacob #define ICB_NNM4 3
1081 1.8 mjacob #define ICB_NNM5 2
1082 1.8 mjacob #define ICB_NNM6 1
1083 1.8 mjacob #define ICB_NNM7 0
1084 1.3 mjacob
1085 1.8 mjacob #define MAKE_NODE_NAME_FROM_WWN(array, wwn) \
1086 1.50 mjacob array[ICB_NNM0] = (uint8_t) ((wwn >> 0) & 0xff), \
1087 1.50 mjacob array[ICB_NNM1] = (uint8_t) ((wwn >> 8) & 0xff), \
1088 1.50 mjacob array[ICB_NNM2] = (uint8_t) ((wwn >> 16) & 0xff), \
1089 1.50 mjacob array[ICB_NNM3] = (uint8_t) ((wwn >> 24) & 0xff), \
1090 1.50 mjacob array[ICB_NNM4] = (uint8_t) ((wwn >> 32) & 0xff), \
1091 1.50 mjacob array[ICB_NNM5] = (uint8_t) ((wwn >> 40) & 0xff), \
1092 1.50 mjacob array[ICB_NNM6] = (uint8_t) ((wwn >> 48) & 0xff), \
1093 1.50 mjacob array[ICB_NNM7] = (uint8_t) ((wwn >> 56) & 0xff)
1094 1.50 mjacob
1095 1.50 mjacob #define MAKE_WWN_FROM_NODE_NAME(wwn, array) \
1096 1.50 mjacob wwn = ((uint64_t) array[ICB_NNM0]) | \
1097 1.50 mjacob ((uint64_t) array[ICB_NNM1] << 8) | \
1098 1.50 mjacob ((uint64_t) array[ICB_NNM2] << 16) | \
1099 1.50 mjacob ((uint64_t) array[ICB_NNM3] << 24) | \
1100 1.50 mjacob ((uint64_t) array[ICB_NNM4] << 32) | \
1101 1.50 mjacob ((uint64_t) array[ICB_NNM5] << 40) | \
1102 1.50 mjacob ((uint64_t) array[ICB_NNM6] << 48) | \
1103 1.50 mjacob ((uint64_t) array[ICB_NNM7] << 56)
1104 1.14 mjacob
1105 1.51 mjacob
1106 1.51 mjacob /*
1107 1.51 mjacob * For MULTI_ID firmware, this describes a
1108 1.51 mjacob * virtual port entity for getting status.
1109 1.51 mjacob */
1110 1.51 mjacob typedef struct {
1111 1.51 mjacob uint16_t vp_port_status;
1112 1.51 mjacob uint8_t vp_port_options;
1113 1.51 mjacob uint8_t vp_port_loopid;
1114 1.51 mjacob uint8_t vp_port_portname[8];
1115 1.51 mjacob uint8_t vp_port_nodename[8];
1116 1.51 mjacob uint16_t vp_port_portid_lo; /* not present when trailing icb */
1117 1.51 mjacob uint16_t vp_port_portid_hi; /* not present when trailing icb */
1118 1.51 mjacob } vp_port_info_t;
1119 1.51 mjacob
1120 1.51 mjacob #define ICB2400_VPOPT_TGT_DISABLE 0x00000020 /* disable target mode */
1121 1.51 mjacob #define ICB2400_VPOPT_INI_ENABLE 0x00000010 /* enable initiator mode */
1122 1.51 mjacob #define ICB2400_VPOPT_ENABLED 0x00000008
1123 1.51 mjacob #define ICB2400_VPOPT_NOPLAY 0x00000004
1124 1.51 mjacob #define ICB2400_VPOPT_PREVLOOP 0x00000002
1125 1.51 mjacob #define ICB2400_VPOPT_HARD_ADDRESS 0x00000001
1126 1.51 mjacob
1127 1.51 mjacob #define ICB2400_VPOPT_WRITE_SIZE 20
1128 1.51 mjacob
1129 1.51 mjacob /*
1130 1.51 mjacob * For MULTI_ID firmware, we append this structure
1131 1.51 mjacob * to the isp_icb_2400_t above, followed by a list
1132 1.51 mjacob * structures that are *most* of the vp_port_info_t.
1133 1.51 mjacob */
1134 1.51 mjacob typedef struct {
1135 1.51 mjacob uint16_t vp_count;
1136 1.51 mjacob uint16_t vp_global_options;
1137 1.51 mjacob } isp_icb_2400_vpinfo_t;
1138 1.51 mjacob
1139 1.51 mjacob #define ICB2400_VPINFO_OFF 0x80 /* offset from start of ICB */
1140 1.51 mjacob #define ICB2400_VPINFO_PORT_OFF(chan) \
1141 1.51 mjacob ICB2400_VPINFO_OFF + \
1142 1.51 mjacob sizeof (isp_icb_2400_vpinfo_t) + ((chan - 1) * ICB2400_VPOPT_WRITE_SIZE)
1143 1.51 mjacob
1144 1.51 mjacob #define ICB2400_VPGOPT_MID_DISABLE 0x02
1145 1.51 mjacob
1146 1.51 mjacob typedef struct {
1147 1.51 mjacob isphdr_t vp_ctrl_hdr;
1148 1.51 mjacob uint32_t vp_ctrl_handle;
1149 1.51 mjacob uint16_t vp_ctrl_index_fail;
1150 1.51 mjacob uint16_t vp_ctrl_status;
1151 1.51 mjacob uint16_t vp_ctrl_command;
1152 1.51 mjacob uint16_t vp_ctrl_vp_count;
1153 1.51 mjacob uint16_t vp_ctrl_idmap[8];
1154 1.51 mjacob uint8_t vp_ctrl_reserved[32];
1155 1.51 mjacob } vp_ctrl_info_t;
1156 1.51 mjacob
1157 1.51 mjacob #define VP_CTRL_CMD_ENABLE_VP 0
1158 1.51 mjacob #define VP_CTRL_CMD_DISABLE_VP 8
1159 1.51 mjacob #define VP_CTRL_CMD_DISABLE_VP_REINIT_LINK 9
1160 1.51 mjacob #define VP_CTRL_CMD_DISABLE_VP_LOGO 0xA
1161 1.51 mjacob
1162 1.51 mjacob /*
1163 1.51 mjacob * We can use this structure for modifying either one or two VP ports after initialization
1164 1.51 mjacob */
1165 1.51 mjacob typedef struct {
1166 1.51 mjacob isphdr_t vp_mod_hdr;
1167 1.51 mjacob uint32_t vp_mod_hdl;
1168 1.51 mjacob uint16_t vp_mod_reserved0;
1169 1.51 mjacob uint16_t vp_mod_status;
1170 1.51 mjacob uint8_t vp_mod_cmd;
1171 1.51 mjacob uint8_t vp_mod_cnt;
1172 1.51 mjacob uint8_t vp_mod_idx0;
1173 1.51 mjacob uint8_t vp_mod_idx1;
1174 1.51 mjacob struct {
1175 1.51 mjacob uint8_t options;
1176 1.51 mjacob uint8_t loopid;
1177 1.51 mjacob uint16_t reserved1;
1178 1.51 mjacob uint8_t wwpn[8];
1179 1.51 mjacob uint8_t wwnn[8];
1180 1.51 mjacob } vp_mod_ports[2];
1181 1.51 mjacob uint8_t vp_mod_reserved2[8];
1182 1.51 mjacob } vp_modify_t;
1183 1.51 mjacob
1184 1.51 mjacob #define VP_STS_OK 0x00
1185 1.51 mjacob #define VP_STS_ERR 0x01
1186 1.51 mjacob #define VP_CNT_ERR 0x02
1187 1.51 mjacob #define VP_GEN_ERR 0x03
1188 1.51 mjacob #define VP_IDX_ERR 0x04
1189 1.51 mjacob #define VP_STS_BSY 0x05
1190 1.51 mjacob
1191 1.51 mjacob #define VP_MODIFY_VP 0x00
1192 1.51 mjacob #define VP_MODIFY_ENA 0x01
1193 1.51 mjacob
1194 1.14 mjacob /*
1195 1.14 mjacob * Port Data Base Element
1196 1.14 mjacob */
1197 1.14 mjacob
1198 1.14 mjacob typedef struct {
1199 1.50 mjacob uint16_t pdb_options;
1200 1.50 mjacob uint8_t pdb_mstate;
1201 1.50 mjacob uint8_t pdb_sstate;
1202 1.50 mjacob uint8_t pdb_hardaddr_bits[4];
1203 1.50 mjacob uint8_t pdb_portid_bits[4];
1204 1.50 mjacob uint8_t pdb_nodename[8];
1205 1.50 mjacob uint8_t pdb_portname[8];
1206 1.50 mjacob uint16_t pdb_execthrottle;
1207 1.50 mjacob uint16_t pdb_exec_count;
1208 1.50 mjacob uint8_t pdb_retry_count;
1209 1.50 mjacob uint8_t pdb_retry_delay;
1210 1.50 mjacob uint16_t pdb_resalloc;
1211 1.50 mjacob uint16_t pdb_curalloc;
1212 1.50 mjacob uint16_t pdb_qhead;
1213 1.50 mjacob uint16_t pdb_qtail;
1214 1.50 mjacob uint16_t pdb_tl_next;
1215 1.50 mjacob uint16_t pdb_tl_last;
1216 1.50 mjacob uint16_t pdb_features; /* PLOGI, Common Service */
1217 1.50 mjacob uint16_t pdb_pconcurrnt; /* PLOGI, Common Service */
1218 1.50 mjacob uint16_t pdb_roi; /* PLOGI, Common Service */
1219 1.50 mjacob uint8_t pdb_target;
1220 1.50 mjacob uint8_t pdb_initiator; /* PLOGI, Class 3 Control Flags */
1221 1.50 mjacob uint16_t pdb_rdsiz; /* PLOGI, Class 3 */
1222 1.50 mjacob uint16_t pdb_ncseq; /* PLOGI, Class 3 */
1223 1.50 mjacob uint16_t pdb_noseq; /* PLOGI, Class 3 */
1224 1.50 mjacob uint16_t pdb_labrtflg;
1225 1.50 mjacob uint16_t pdb_lstopflg;
1226 1.50 mjacob uint16_t pdb_sqhead;
1227 1.50 mjacob uint16_t pdb_sqtail;
1228 1.50 mjacob uint16_t pdb_ptimer;
1229 1.50 mjacob uint16_t pdb_nxt_seqid;
1230 1.50 mjacob uint16_t pdb_fcount;
1231 1.50 mjacob uint16_t pdb_prli_len;
1232 1.50 mjacob uint16_t pdb_prli_svc0;
1233 1.50 mjacob uint16_t pdb_prli_svc3;
1234 1.50 mjacob uint16_t pdb_loopid;
1235 1.50 mjacob uint16_t pdb_il_ptr;
1236 1.50 mjacob uint16_t pdb_sl_ptr;
1237 1.50 mjacob } isp_pdb_21xx_t;
1238 1.14 mjacob
1239 1.14 mjacob #define PDB_OPTIONS_XMITTING (1<<11)
1240 1.14 mjacob #define PDB_OPTIONS_LNKXMIT (1<<10)
1241 1.14 mjacob #define PDB_OPTIONS_ABORTED (1<<9)
1242 1.14 mjacob #define PDB_OPTIONS_ADISC (1<<1)
1243 1.14 mjacob
1244 1.14 mjacob #define PDB_STATE_DISCOVERY 0
1245 1.14 mjacob #define PDB_STATE_WDISC_ACK 1
1246 1.14 mjacob #define PDB_STATE_PLOGI 2
1247 1.14 mjacob #define PDB_STATE_PLOGI_ACK 3
1248 1.14 mjacob #define PDB_STATE_PRLI 4
1249 1.14 mjacob #define PDB_STATE_PRLI_ACK 5
1250 1.14 mjacob #define PDB_STATE_LOGGED_IN 6
1251 1.14 mjacob #define PDB_STATE_PORT_UNAVAIL 7
1252 1.14 mjacob #define PDB_STATE_PRLO 8
1253 1.14 mjacob #define PDB_STATE_PRLO_ACK 9
1254 1.14 mjacob #define PDB_STATE_PLOGO 10
1255 1.14 mjacob #define PDB_STATE_PLOG_ACK 11
1256 1.14 mjacob
1257 1.14 mjacob #define SVC3_TGT_ROLE 0x10
1258 1.14 mjacob #define SVC3_INI_ROLE 0x20
1259 1.14 mjacob #define SVC3_ROLE_MASK 0x30
1260 1.18 mjacob #define SVC3_ROLE_SHIFT 4
1261 1.18 mjacob
1262 1.50 mjacob #define BITS2WORD(x) ((x)[0] << 16 | (x)[3] << 8 | (x)[2])
1263 1.50 mjacob #define BITS2WORD_24XX(x) ((x)[0] << 16 | (x)[1] << 8 | (x)[2])
1264 1.50 mjacob
1265 1.50 mjacob /*
1266 1.50 mjacob * Port Data Base Element- 24XX cards
1267 1.50 mjacob */
1268 1.50 mjacob typedef struct {
1269 1.50 mjacob uint16_t pdb_flags;
1270 1.50 mjacob uint8_t pdb_curstate;
1271 1.50 mjacob uint8_t pdb_laststate;
1272 1.50 mjacob uint8_t pdb_hardaddr_bits[4];
1273 1.50 mjacob uint8_t pdb_portid_bits[4];
1274 1.50 mjacob #define pdb_nxt_seqid_2400 pdb_portid_bits[3]
1275 1.50 mjacob uint16_t pdb_retry_timer;
1276 1.50 mjacob uint16_t pdb_handle;
1277 1.50 mjacob uint16_t pdb_rcv_dsize;
1278 1.50 mjacob uint16_t pdb_reserved0;
1279 1.50 mjacob uint16_t pdb_prli_svc0;
1280 1.50 mjacob uint16_t pdb_prli_svc3;
1281 1.50 mjacob uint8_t pdb_portname[8];
1282 1.50 mjacob uint8_t pdb_nodename[8];
1283 1.50 mjacob uint8_t pdb_reserved1[24];
1284 1.50 mjacob } isp_pdb_24xx_t;
1285 1.50 mjacob
1286 1.50 mjacob #define PDB2400_TID_SUPPORTED 0x4000
1287 1.50 mjacob #define PDB2400_FC_TAPE 0x0080
1288 1.50 mjacob #define PDB2400_CLASS2_ACK0 0x0040
1289 1.50 mjacob #define PDB2400_FCP_CONF 0x0020
1290 1.50 mjacob #define PDB2400_CLASS2 0x0010
1291 1.50 mjacob #define PDB2400_ADDR_VALID 0x0002
1292 1.50 mjacob
1293 1.51 mjacob #define PDB2400_STATE_PLOGI_PEND 0x03
1294 1.51 mjacob #define PDB2400_STATE_PLOGI_DONE 0x04
1295 1.51 mjacob #define PDB2400_STATE_PRLI_PEND 0x05
1296 1.51 mjacob #define PDB2400_STATE_LOGGED_IN 0x06
1297 1.51 mjacob #define PDB2400_STATE_PORT_UNAVAIL 0x07
1298 1.51 mjacob #define PDB2400_STATE_PRLO_PEND 0x09
1299 1.51 mjacob #define PDB2400_STATE_LOGO_PEND 0x0B
1300 1.51 mjacob
1301 1.50 mjacob /*
1302 1.50 mjacob * Common elements from the above two structures that are actually useful to us.
1303 1.50 mjacob */
1304 1.50 mjacob typedef struct {
1305 1.50 mjacob uint16_t handle;
1306 1.50 mjacob uint16_t reserved;
1307 1.50 mjacob uint32_t s3_role : 8,
1308 1.50 mjacob portid : 24;
1309 1.50 mjacob uint8_t portname[8];
1310 1.50 mjacob uint8_t nodename[8];
1311 1.50 mjacob } isp_pdb_t;
1312 1.50 mjacob
1313 1.39 mjacob /*
1314 1.51 mjacob * Port Database Changed Async Event information for 24XX cards
1315 1.51 mjacob */
1316 1.51 mjacob #define PDB24XX_AE_OK 0x00
1317 1.51 mjacob #define PDB24XX_AE_IMPL_LOGO_1 0x01
1318 1.51 mjacob #define PDB24XX_AE_IMPL_LOGO_2 0x02
1319 1.51 mjacob #define PDB24XX_AE_IMPL_LOGO_3 0x03
1320 1.51 mjacob #define PDB24XX_AE_PLOGI_RCVD 0x04
1321 1.51 mjacob #define PDB24XX_AE_PLOGI_RJT 0x05
1322 1.51 mjacob #define PDB24XX_AE_PRLI_RCVD 0x06
1323 1.51 mjacob #define PDB24XX_AE_PRLI_RJT 0x07
1324 1.51 mjacob #define PDB24XX_AE_TPRLO 0x08
1325 1.51 mjacob #define PDB24XX_AE_TPRLO_RJT 0x09
1326 1.51 mjacob #define PDB24XX_AE_PRLO_RCVD 0x0a
1327 1.51 mjacob #define PDB24XX_AE_LOGO_RCVD 0x0b
1328 1.51 mjacob #define PDB24XX_AE_TOPO_CHG 0x0c
1329 1.51 mjacob #define PDB24XX_AE_NPORT_CHG 0x0d
1330 1.51 mjacob #define PDB24XX_AE_FLOGI_RJT 0x0e
1331 1.51 mjacob #define PDB24XX_AE_BAD_FANN 0x0f
1332 1.51 mjacob #define PDB24XX_AE_FLOGI_TIMO 0x10
1333 1.51 mjacob #define PDB24XX_AE_ABX_LOGO 0x11
1334 1.51 mjacob #define PDB24XX_AE_PLOGI_DONE 0x12
1335 1.51 mjacob #define PDB24XX_AE_PRLI_DONJE 0x13
1336 1.51 mjacob #define PDB24XX_AE_OPN_1 0x14
1337 1.51 mjacob #define PDB24XX_AE_OPN_2 0x15
1338 1.51 mjacob #define PDB24XX_AE_TXERR 0x16
1339 1.51 mjacob #define PDB24XX_AE_FORCED_LOGO 0x17
1340 1.51 mjacob #define PDB24XX_AE_DISC_TIMO 0x18
1341 1.51 mjacob
1342 1.51 mjacob /*
1343 1.50 mjacob * Genericized Port Login/Logout software structure
1344 1.39 mjacob */
1345 1.50 mjacob typedef struct {
1346 1.50 mjacob uint16_t handle;
1347 1.51 mjacob uint16_t channel;
1348 1.50 mjacob uint32_t
1349 1.50 mjacob flags : 8,
1350 1.50 mjacob portid : 24;
1351 1.50 mjacob } isp_plcmd_t;
1352 1.50 mjacob /* the flags to use are those for PLOGX_FLG_* below */
1353 1.39 mjacob
1354 1.50 mjacob /*
1355 1.50 mjacob * ISP24XX- Login/Logout Port IOCB
1356 1.50 mjacob */
1357 1.39 mjacob typedef struct {
1358 1.50 mjacob isphdr_t plogx_header;
1359 1.50 mjacob uint32_t plogx_handle;
1360 1.50 mjacob uint16_t plogx_status;
1361 1.50 mjacob uint16_t plogx_nphdl;
1362 1.50 mjacob uint16_t plogx_flags;
1363 1.50 mjacob uint16_t plogx_vphdl; /* low 8 bits */
1364 1.50 mjacob uint16_t plogx_portlo; /* low 16 bits */
1365 1.50 mjacob uint16_t plogx_rspsz_porthi;
1366 1.50 mjacob struct {
1367 1.50 mjacob uint16_t lo16;
1368 1.50 mjacob uint16_t hi16;
1369 1.50 mjacob } plogx_ioparm[11];
1370 1.50 mjacob } isp_plogx_t;
1371 1.50 mjacob
1372 1.50 mjacob #define PLOGX_STATUS_OK 0x00
1373 1.50 mjacob #define PLOGX_STATUS_UNAVAIL 0x28
1374 1.50 mjacob #define PLOGX_STATUS_LOGOUT 0x29
1375 1.50 mjacob #define PLOGX_STATUS_IOCBERR 0x31
1376 1.50 mjacob
1377 1.50 mjacob #define PLOGX_IOCBERR_NOLINK 0x01
1378 1.50 mjacob #define PLOGX_IOCBERR_NOIOCB 0x02
1379 1.50 mjacob #define PLOGX_IOCBERR_NOXGHG 0x03
1380 1.50 mjacob #define PLOGX_IOCBERR_FAILED 0x04 /* further info in IOPARM 1 */
1381 1.50 mjacob #define PLOGX_IOCBERR_NOFABRIC 0x05
1382 1.50 mjacob #define PLOGX_IOCBERR_NOTREADY 0x07
1383 1.50 mjacob #define PLOGX_IOCBERR_NOLOGIN 0x08 /* further info in IOPARM 1 */
1384 1.50 mjacob #define PLOGX_IOCBERR_NOPCB 0x0a
1385 1.50 mjacob #define PLOGX_IOCBERR_REJECT 0x18 /* further info in IOPARM 1 */
1386 1.50 mjacob #define PLOGX_IOCBERR_EINVAL 0x19 /* further info in IOPARM 1 */
1387 1.50 mjacob #define PLOGX_IOCBERR_PORTUSED 0x1a /* further info in IOPARM 1 */
1388 1.50 mjacob #define PLOGX_IOCBERR_HNDLUSED 0x1b /* further info in IOPARM 1 */
1389 1.50 mjacob #define PLOGX_IOCBERR_NOHANDLE 0x1c
1390 1.50 mjacob #define PLOGX_IOCBERR_NOFLOGI 0x1f /* further info in IOPARM 1 */
1391 1.50 mjacob
1392 1.50 mjacob #define PLOGX_FLG_CMD_MASK 0xf
1393 1.50 mjacob #define PLOGX_FLG_CMD_PLOGI 0
1394 1.50 mjacob #define PLOGX_FLG_CMD_PRLI 1
1395 1.50 mjacob #define PLOGX_FLG_CMD_PDISC 2
1396 1.50 mjacob #define PLOGX_FLG_CMD_LOGO 8
1397 1.50 mjacob #define PLOGX_FLG_CMD_PRLO 9
1398 1.50 mjacob #define PLOGX_FLG_CMD_TPRLO 10
1399 1.50 mjacob
1400 1.50 mjacob #define PLOGX_FLG_COND_PLOGI 0x10 /* if with PLOGI */
1401 1.50 mjacob #define PLOGX_FLG_IMPLICIT 0x10 /* if with LOGO, PRLO, TPRLO */
1402 1.50 mjacob #define PLOGX_FLG_SKIP_PRLI 0x20 /* if with PLOGI */
1403 1.50 mjacob #define PLOGX_FLG_IMPLICIT_LOGO_ALL 0x20 /* if with LOGO */
1404 1.50 mjacob #define PLOGX_FLG_EXPLICIT_LOGO 0x40 /* if with LOGO */
1405 1.50 mjacob #define PLOGX_FLG_COMMON_FEATURES 0x80 /* if with PLOGI */
1406 1.50 mjacob #define PLOGX_FLG_FREE_NPHDL 0x80 /* if with with LOGO */
1407 1.50 mjacob
1408 1.50 mjacob #define PLOGX_FLG_CLASS2 0x100 /* if with PLOGI */
1409 1.50 mjacob #define PLOGX_FLG_FCP2_OVERRIDE 0x200 /* if with PRLOG, PRLI */
1410 1.39 mjacob
1411 1.50 mjacob /*
1412 1.51 mjacob * Report ID Acquisistion (24XX multi-id firmware)
1413 1.51 mjacob */
1414 1.51 mjacob typedef struct {
1415 1.51 mjacob isphdr_t ridacq_hdr;
1416 1.51 mjacob uint32_t ridacq_handle;
1417 1.51 mjacob union {
1418 1.51 mjacob struct {
1419 1.51 mjacob uint8_t ridacq_vp_acquired;
1420 1.51 mjacob uint8_t ridacq_vp_setup;
1421 1.51 mjacob uint16_t ridacq_reserved0;
1422 1.51 mjacob } type0; /* type 0 */
1423 1.51 mjacob struct {
1424 1.51 mjacob uint16_t ridacq_vp_count;
1425 1.51 mjacob uint8_t ridacq_vp_index;
1426 1.51 mjacob uint8_t ridacq_vp_status;
1427 1.51 mjacob } type1; /* type 1 */
1428 1.51 mjacob } un;
1429 1.51 mjacob uint16_t ridacq_vp_port_lo;
1430 1.51 mjacob uint8_t ridacq_vp_port_hi;
1431 1.51 mjacob uint8_t ridacq_format; /* 0 or 1 */
1432 1.51 mjacob uint16_t ridacq_map[8];
1433 1.51 mjacob uint8_t ridacq_reserved1[32];
1434 1.51 mjacob } isp_ridacq_t;
1435 1.51 mjacob
1436 1.51 mjacob #define RIDACQ_STS_COMPLETE 0
1437 1.51 mjacob #define RIDACQ_STS_UNACQUIRED 1
1438 1.51 mjacob #define RIDACQ_STS_CHANGED 20
1439 1.51 mjacob
1440 1.51 mjacob
1441 1.51 mjacob /*
1442 1.50 mjacob * Simple Name Server Data Structures
1443 1.50 mjacob */
1444 1.39 mjacob #define SNS_GA_NXT 0x100
1445 1.39 mjacob #define SNS_GPN_ID 0x112
1446 1.39 mjacob #define SNS_GNN_ID 0x113
1447 1.40 mjacob #define SNS_GFF_ID 0x11F
1448 1.39 mjacob #define SNS_GID_FT 0x171
1449 1.39 mjacob #define SNS_RFT_ID 0x217
1450 1.18 mjacob typedef struct {
1451 1.50 mjacob uint16_t snscb_rblen; /* response buffer length (words) */
1452 1.50 mjacob uint16_t snscb_reserved0;
1453 1.50 mjacob uint16_t snscb_addr[4]; /* response buffer address */
1454 1.50 mjacob uint16_t snscb_sblen; /* subcommand buffer length (words) */
1455 1.50 mjacob uint16_t snscb_reserved1;
1456 1.50 mjacob uint16_t snscb_data[1]; /* variable data */
1457 1.18 mjacob } sns_screq_t; /* Subcommand Request Structure */
1458 1.18 mjacob
1459 1.18 mjacob typedef struct {
1460 1.50 mjacob uint16_t snscb_rblen; /* response buffer length (words) */
1461 1.50 mjacob uint16_t snscb_reserved0;
1462 1.50 mjacob uint16_t snscb_addr[4]; /* response buffer address */
1463 1.50 mjacob uint16_t snscb_sblen; /* subcommand buffer length (words) */
1464 1.50 mjacob uint16_t snscb_reserved1;
1465 1.50 mjacob uint16_t snscb_cmd;
1466 1.50 mjacob uint16_t snscb_reserved2;
1467 1.50 mjacob uint32_t snscb_reserved3;
1468 1.50 mjacob uint32_t snscb_port;
1469 1.39 mjacob } sns_ga_nxt_req_t;
1470 1.39 mjacob #define SNS_GA_NXT_REQ_SIZE (sizeof (sns_ga_nxt_req_t))
1471 1.39 mjacob
1472 1.39 mjacob typedef struct {
1473 1.50 mjacob uint16_t snscb_rblen; /* response buffer length (words) */
1474 1.50 mjacob uint16_t snscb_reserved0;
1475 1.50 mjacob uint16_t snscb_addr[4]; /* response buffer address */
1476 1.50 mjacob uint16_t snscb_sblen; /* subcommand buffer length (words) */
1477 1.50 mjacob uint16_t snscb_reserved1;
1478 1.50 mjacob uint16_t snscb_cmd;
1479 1.50 mjacob uint16_t snscb_reserved2;
1480 1.50 mjacob uint32_t snscb_reserved3;
1481 1.50 mjacob uint32_t snscb_portid;
1482 1.39 mjacob } sns_gxn_id_req_t;
1483 1.39 mjacob #define SNS_GXN_ID_REQ_SIZE (sizeof (sns_gxn_id_req_t))
1484 1.39 mjacob
1485 1.39 mjacob typedef struct {
1486 1.50 mjacob uint16_t snscb_rblen; /* response buffer length (words) */
1487 1.50 mjacob uint16_t snscb_reserved0;
1488 1.50 mjacob uint16_t snscb_addr[4]; /* response buffer address */
1489 1.50 mjacob uint16_t snscb_sblen; /* subcommand buffer length (words) */
1490 1.50 mjacob uint16_t snscb_reserved1;
1491 1.50 mjacob uint16_t snscb_cmd;
1492 1.50 mjacob uint16_t snscb_mword_div_2;
1493 1.50 mjacob uint32_t snscb_reserved3;
1494 1.50 mjacob uint32_t snscb_fc4_type;
1495 1.39 mjacob } sns_gid_ft_req_t;
1496 1.39 mjacob #define SNS_GID_FT_REQ_SIZE (sizeof (sns_gid_ft_req_t))
1497 1.39 mjacob
1498 1.39 mjacob typedef struct {
1499 1.50 mjacob uint16_t snscb_rblen; /* response buffer length (words) */
1500 1.50 mjacob uint16_t snscb_reserved0;
1501 1.50 mjacob uint16_t snscb_addr[4]; /* response buffer address */
1502 1.50 mjacob uint16_t snscb_sblen; /* subcommand buffer length (words) */
1503 1.50 mjacob uint16_t snscb_reserved1;
1504 1.50 mjacob uint16_t snscb_cmd;
1505 1.50 mjacob uint16_t snscb_reserved2;
1506 1.50 mjacob uint32_t snscb_reserved3;
1507 1.50 mjacob uint32_t snscb_port;
1508 1.50 mjacob uint32_t snscb_fc4_types[8];
1509 1.39 mjacob } sns_rft_id_req_t;
1510 1.39 mjacob #define SNS_RFT_ID_REQ_SIZE (sizeof (sns_rft_id_req_t))
1511 1.39 mjacob
1512 1.39 mjacob typedef struct {
1513 1.39 mjacob ct_hdr_t snscb_cthdr;
1514 1.50 mjacob uint8_t snscb_port_type;
1515 1.50 mjacob uint8_t snscb_port_id[3];
1516 1.50 mjacob uint8_t snscb_portname[8];
1517 1.50 mjacob uint16_t snscb_data[1]; /* variable data */
1518 1.18 mjacob } sns_scrsp_t; /* Subcommand Response Structure */
1519 1.22 mjacob
1520 1.22 mjacob typedef struct {
1521 1.39 mjacob ct_hdr_t snscb_cthdr;
1522 1.50 mjacob uint8_t snscb_port_type;
1523 1.50 mjacob uint8_t snscb_port_id[3];
1524 1.50 mjacob uint8_t snscb_portname[8];
1525 1.50 mjacob uint8_t snscb_pnlen; /* symbolic port name length */
1526 1.50 mjacob uint8_t snscb_pname[255]; /* symbolic port name */
1527 1.50 mjacob uint8_t snscb_nodename[8];
1528 1.50 mjacob uint8_t snscb_nnlen; /* symbolic node name length */
1529 1.50 mjacob uint8_t snscb_nname[255]; /* symbolic node name */
1530 1.50 mjacob uint8_t snscb_ipassoc[8];
1531 1.50 mjacob uint8_t snscb_ipaddr[16];
1532 1.50 mjacob uint8_t snscb_svc_class[4];
1533 1.50 mjacob uint8_t snscb_fc4_types[32];
1534 1.50 mjacob uint8_t snscb_fpname[8];
1535 1.50 mjacob uint8_t snscb_reserved;
1536 1.50 mjacob uint8_t snscb_hardaddr[3];
1537 1.39 mjacob } sns_ga_nxt_rsp_t; /* Subcommand Response Structure */
1538 1.39 mjacob #define SNS_GA_NXT_RESP_SIZE (sizeof (sns_ga_nxt_rsp_t))
1539 1.39 mjacob
1540 1.39 mjacob typedef struct {
1541 1.39 mjacob ct_hdr_t snscb_cthdr;
1542 1.50 mjacob uint8_t snscb_wwn[8];
1543 1.39 mjacob } sns_gxn_id_rsp_t;
1544 1.39 mjacob #define SNS_GXN_ID_RESP_SIZE (sizeof (sns_gxn_id_rsp_t))
1545 1.39 mjacob
1546 1.40 mjacob typedef struct {
1547 1.40 mjacob ct_hdr_t snscb_cthdr;
1548 1.50 mjacob uint32_t snscb_fc4_features[32];
1549 1.40 mjacob } sns_gff_id_rsp_t;
1550 1.40 mjacob #define SNS_GFF_ID_RESP_SIZE (sizeof (sns_gff_id_rsp_t))
1551 1.39 mjacob
1552 1.39 mjacob typedef struct {
1553 1.39 mjacob ct_hdr_t snscb_cthdr;
1554 1.39 mjacob struct {
1555 1.50 mjacob uint8_t control;
1556 1.50 mjacob uint8_t portid[3];
1557 1.39 mjacob } snscb_ports[1];
1558 1.39 mjacob } sns_gid_ft_rsp_t;
1559 1.39 mjacob #define SNS_GID_FT_RESP_SIZE(x) ((sizeof (sns_gid_ft_rsp_t)) + ((x - 1) << 2))
1560 1.50 mjacob #define SNS_RFT_ID_RESP_SIZE (sizeof (ct_hdr_t))
1561 1.39 mjacob
1562 1.50 mjacob /*
1563 1.50 mjacob * Other Misc Structures
1564 1.50 mjacob */
1565 1.1 cgd
1566 1.50 mjacob /* ELS Pass Through */
1567 1.50 mjacob typedef struct {
1568 1.50 mjacob isphdr_t els_hdr;
1569 1.50 mjacob uint32_t els_handle;
1570 1.50 mjacob uint16_t els_status;
1571 1.50 mjacob uint16_t els_nphdl;
1572 1.50 mjacob uint16_t els_xmit_dsd_count; /* outgoing only */
1573 1.50 mjacob uint8_t els_vphdl;
1574 1.50 mjacob uint8_t els_sof;
1575 1.50 mjacob uint32_t els_rxid;
1576 1.50 mjacob uint16_t els_recv_dsd_count; /* outgoing only */
1577 1.50 mjacob uint8_t els_opcode;
1578 1.50 mjacob uint8_t els_reserved1;
1579 1.50 mjacob uint8_t els_did_lo;
1580 1.50 mjacob uint8_t els_did_mid;
1581 1.50 mjacob uint8_t els_did_hi;
1582 1.50 mjacob uint8_t els_reserved2;
1583 1.50 mjacob uint16_t els_reserved3;
1584 1.50 mjacob uint16_t els_ctl_flags;
1585 1.50 mjacob union {
1586 1.50 mjacob struct {
1587 1.50 mjacob uint32_t _els_bytecnt;
1588 1.50 mjacob uint32_t _els_subcode1;
1589 1.50 mjacob uint32_t _els_subcode2;
1590 1.50 mjacob uint8_t _els_reserved4[20];
1591 1.50 mjacob } in;
1592 1.50 mjacob struct {
1593 1.50 mjacob uint32_t _els_recv_bytecnt;
1594 1.50 mjacob uint32_t _els_xmit_bytecnt;
1595 1.50 mjacob uint32_t _els_xmit_dsd_length;
1596 1.50 mjacob uint16_t _els_xmit_dsd_a1500;
1597 1.50 mjacob uint16_t _els_xmit_dsd_a3116;
1598 1.50 mjacob uint16_t _els_xmit_dsd_a4732;
1599 1.50 mjacob uint16_t _els_xmit_dsd_a6348;
1600 1.50 mjacob uint32_t _els_recv_dsd_length;
1601 1.50 mjacob uint16_t _els_recv_dsd_a1500;
1602 1.50 mjacob uint16_t _els_recv_dsd_a3116;
1603 1.50 mjacob uint16_t _els_recv_dsd_a4732;
1604 1.50 mjacob uint16_t _els_recv_dsd_a6348;
1605 1.50 mjacob } out;
1606 1.50 mjacob } inout;
1607 1.50 mjacob #define els_bytecnt inout.in._els_bytecnt
1608 1.50 mjacob #define els_subcode1 inout.in._els_subcode1
1609 1.50 mjacob #define els_subcode2 inout.in._els_subcode2
1610 1.50 mjacob #define els_reserved4 inout.in._els_reserved4
1611 1.50 mjacob #define els_recv_bytecnt inout.out._els_recv_bytecnt
1612 1.50 mjacob #define els_xmit_bytecnt inout.out._els_xmit_bytecnt
1613 1.50 mjacob #define els_xmit_dsd_length inout.out._els_xmit_dsd_length
1614 1.50 mjacob #define els_xmit_dsd_a1500 inout.out._els_xmit_dsd_a1500
1615 1.50 mjacob #define els_xmit_dsd_a3116 inout.out._els_xmit_dsd_a3116
1616 1.50 mjacob #define els_xmit_dsd_a4732 inout.out._els_xmit_dsd_a4732
1617 1.50 mjacob #define els_xmit_dsd_a6348 inout.out._els_xmit_dsd_a6348
1618 1.50 mjacob #define els_recv_dsd_length inout.out._els_recv_dsd_length
1619 1.50 mjacob #define els_recv_dsd_a1500 inout.out._els_recv_dsd_a1500
1620 1.50 mjacob #define els_recv_dsd_a3116 inout.out._els_recv_dsd_a3116
1621 1.50 mjacob #define els_recv_dsd_a4732 inout.out._els_recv_dsd_a4732
1622 1.50 mjacob #define els_recv_dsd_a6348 inout.out._els_recv_dsd_a6348
1623 1.50 mjacob } els_t;
1624 1.50 mjacob
1625 1.50 mjacob /*
1626 1.51 mjacob * A handy package structure for running FC-SCSI commands internally
1627 1.50 mjacob */
1628 1.50 mjacob typedef struct {
1629 1.50 mjacob uint16_t handle;
1630 1.50 mjacob uint16_t lun;
1631 1.51 mjacob uint32_t
1632 1.51 mjacob channel : 8,
1633 1.51 mjacob portid : 24;
1634 1.50 mjacob uint32_t timeout;
1635 1.50 mjacob union {
1636 1.50 mjacob struct {
1637 1.50 mjacob uint32_t data_length;
1638 1.51 mjacob uint32_t
1639 1.51 mjacob no_wait : 1,
1640 1.51 mjacob do_read : 1;
1641 1.50 mjacob uint8_t cdb[16];
1642 1.50 mjacob void *data_ptr;
1643 1.50 mjacob } beg;
1644 1.50 mjacob struct {
1645 1.50 mjacob uint32_t data_residual;
1646 1.50 mjacob uint8_t status;
1647 1.50 mjacob uint8_t pad;
1648 1.50 mjacob uint16_t sense_length;
1649 1.50 mjacob uint8_t sense_data[32];
1650 1.50 mjacob } end;
1651 1.50 mjacob } fcd;
1652 1.50 mjacob } isp_xcmd_t;
1653 1.53 mjacob
1654 1.53 mjacob /*
1655 1.53 mjacob * Target Mode related definitions
1656 1.53 mjacob */
1657 1.53 mjacob #define QLTM_SENSELEN 18 /* non-FC cards only */
1658 1.53 mjacob #define QLTM_SVALID 0x80
1659 1.53 mjacob
1660 1.53 mjacob /*
1661 1.53 mjacob * Structure for Enable Lun and Modify Lun queue entries
1662 1.53 mjacob */
1663 1.53 mjacob typedef struct {
1664 1.53 mjacob isphdr_t le_header;
1665 1.53 mjacob uint32_t le_reserved;
1666 1.53 mjacob uint8_t le_lun;
1667 1.53 mjacob uint8_t le_rsvd;
1668 1.53 mjacob uint8_t le_ops; /* Modify LUN only */
1669 1.53 mjacob uint8_t le_tgt; /* Not for FC */
1670 1.53 mjacob uint32_t le_flags; /* Not for FC */
1671 1.53 mjacob uint8_t le_status;
1672 1.53 mjacob uint8_t le_reserved2;
1673 1.53 mjacob uint8_t le_cmd_count;
1674 1.53 mjacob uint8_t le_in_count;
1675 1.53 mjacob uint8_t le_cdb6len; /* Not for FC */
1676 1.53 mjacob uint8_t le_cdb7len; /* Not for FC */
1677 1.53 mjacob uint16_t le_timeout;
1678 1.53 mjacob uint16_t le_reserved3[20];
1679 1.53 mjacob } lun_entry_t;
1680 1.53 mjacob
1681 1.53 mjacob /*
1682 1.53 mjacob * le_flags values
1683 1.53 mjacob */
1684 1.53 mjacob #define LUN_TQAE 0x00000002 /* bit1 Tagged Queue Action Enable */
1685 1.53 mjacob #define LUN_DSSM 0x01000000 /* bit24 Disable Sending SDP Message */
1686 1.53 mjacob #define LUN_DISAD 0x02000000 /* bit25 Disable autodisconnect */
1687 1.53 mjacob #define LUN_DM 0x40000000 /* bit30 Disconnects Mandatory */
1688 1.53 mjacob
1689 1.53 mjacob /*
1690 1.53 mjacob * le_ops values
1691 1.53 mjacob */
1692 1.53 mjacob #define LUN_CCINCR 0x01 /* increment command count */
1693 1.53 mjacob #define LUN_CCDECR 0x02 /* decrement command count */
1694 1.53 mjacob #define LUN_ININCR 0x40 /* increment immed. notify count */
1695 1.53 mjacob #define LUN_INDECR 0x80 /* decrement immed. notify count */
1696 1.53 mjacob
1697 1.53 mjacob /*
1698 1.53 mjacob * le_status values
1699 1.53 mjacob */
1700 1.53 mjacob #define LUN_OK 0x01 /* we be rockin' */
1701 1.53 mjacob #define LUN_ERR 0x04 /* request completed with error */
1702 1.53 mjacob #define LUN_INVAL 0x06 /* invalid request */
1703 1.53 mjacob #define LUN_NOCAP 0x16 /* can't provide requested capability */
1704 1.53 mjacob #define LUN_ENABLED 0x3E /* LUN already enabled */
1705 1.53 mjacob
1706 1.53 mjacob /*
1707 1.53 mjacob * Immediate Notify Entry structure
1708 1.53 mjacob */
1709 1.53 mjacob #define IN_MSGLEN 8 /* 8 bytes */
1710 1.53 mjacob #define IN_RSVDLEN 8 /* 8 words */
1711 1.53 mjacob typedef struct {
1712 1.53 mjacob isphdr_t in_header;
1713 1.53 mjacob uint32_t in_reserved;
1714 1.53 mjacob uint8_t in_lun; /* lun */
1715 1.53 mjacob uint8_t in_iid; /* initiator */
1716 1.53 mjacob uint8_t in_reserved2;
1717 1.53 mjacob uint8_t in_tgt; /* target */
1718 1.53 mjacob uint32_t in_flags;
1719 1.53 mjacob uint8_t in_status;
1720 1.53 mjacob uint8_t in_rsvd2;
1721 1.53 mjacob uint8_t in_tag_val; /* tag value */
1722 1.53 mjacob uint8_t in_tag_type; /* tag type */
1723 1.53 mjacob uint16_t in_seqid; /* sequence id */
1724 1.53 mjacob uint8_t in_msg[IN_MSGLEN]; /* SCSI message bytes */
1725 1.53 mjacob uint16_t in_reserved3[IN_RSVDLEN];
1726 1.53 mjacob uint8_t in_sense[QLTM_SENSELEN];/* suggested sense data */
1727 1.53 mjacob } in_entry_t;
1728 1.53 mjacob
1729 1.53 mjacob typedef struct {
1730 1.53 mjacob isphdr_t in_header;
1731 1.53 mjacob uint32_t in_reserved;
1732 1.53 mjacob uint8_t in_lun; /* lun */
1733 1.53 mjacob uint8_t in_iid; /* initiator */
1734 1.53 mjacob uint16_t in_scclun;
1735 1.53 mjacob uint32_t in_reserved2;
1736 1.53 mjacob uint16_t in_status;
1737 1.53 mjacob uint16_t in_task_flags;
1738 1.53 mjacob uint16_t in_seqid; /* sequence id */
1739 1.53 mjacob } in_fcentry_t;
1740 1.53 mjacob
1741 1.53 mjacob typedef struct {
1742 1.53 mjacob isphdr_t in_header;
1743 1.53 mjacob uint32_t in_reserved;
1744 1.53 mjacob uint16_t in_iid; /* initiator */
1745 1.53 mjacob uint16_t in_scclun;
1746 1.53 mjacob uint32_t in_reserved2;
1747 1.53 mjacob uint16_t in_status;
1748 1.53 mjacob uint16_t in_task_flags;
1749 1.53 mjacob uint16_t in_seqid; /* sequence id */
1750 1.53 mjacob } in_fcentry_e_t;
1751 1.53 mjacob
1752 1.53 mjacob /*
1753 1.53 mjacob * Values for the in_status field
1754 1.53 mjacob */
1755 1.53 mjacob #define IN_REJECT 0x0D /* Message Reject message received */
1756 1.53 mjacob #define IN_RESET 0x0E /* Bus Reset occurred */
1757 1.53 mjacob #define IN_NO_RCAP 0x16 /* requested capability not available */
1758 1.53 mjacob #define IN_IDE_RECEIVED 0x33 /* Initiator Detected Error msg received */
1759 1.53 mjacob #define IN_RSRC_UNAVAIL 0x34 /* resource unavailable */
1760 1.53 mjacob #define IN_MSG_RECEIVED 0x36 /* SCSI message received */
1761 1.53 mjacob #define IN_ABORT_TASK 0x20 /* task named in RX_ID is being aborted (FC) */
1762 1.53 mjacob #define IN_PORT_LOGOUT 0x29 /* port has logged out (FC) */
1763 1.53 mjacob #define IN_PORT_CHANGED 0x2A /* port changed */
1764 1.53 mjacob #define IN_GLOBAL_LOGO 0x2E /* all ports logged out */
1765 1.53 mjacob #define IN_NO_NEXUS 0x3B /* Nexus not established */
1766 1.53 mjacob
1767 1.53 mjacob /*
1768 1.53 mjacob * Values for the in_task_flags field- should only get one at a time!
1769 1.53 mjacob */
1770 1.53 mjacob #define TASK_FLAGS_RESERVED_MASK (0xe700)
1771 1.53 mjacob #define TASK_FLAGS_CLEAR_ACA (1<<14)
1772 1.53 mjacob #define TASK_FLAGS_TARGET_RESET (1<<13)
1773 1.53 mjacob #define TASK_FLAGS_LUN_RESET (1<<12)
1774 1.53 mjacob #define TASK_FLAGS_CLEAR_TASK_SET (1<<10)
1775 1.53 mjacob #define TASK_FLAGS_ABORT_TASK_SET (1<<9)
1776 1.53 mjacob
1777 1.53 mjacob /*
1778 1.53 mjacob * ISP24XX Immediate Notify
1779 1.53 mjacob */
1780 1.53 mjacob typedef struct {
1781 1.53 mjacob isphdr_t in_header;
1782 1.53 mjacob uint32_t in_reserved;
1783 1.53 mjacob uint16_t in_nphdl;
1784 1.53 mjacob uint16_t in_reserved1;
1785 1.53 mjacob uint16_t in_flags;
1786 1.53 mjacob uint16_t in_srr_rxid;
1787 1.53 mjacob uint16_t in_status;
1788 1.53 mjacob uint8_t in_status_subcode;
1789 1.53 mjacob uint8_t in_reserved2;
1790 1.53 mjacob uint32_t in_rxid;
1791 1.53 mjacob uint16_t in_srr_reloff_lo;
1792 1.53 mjacob uint16_t in_srr_reloff_hi;
1793 1.53 mjacob uint16_t in_srr_iu;
1794 1.53 mjacob uint16_t in_srr_oxid;
1795 1.53 mjacob /*
1796 1.53 mjacob * If bit 2 is set in in_flags, the following
1797 1.53 mjacob * two tags are valid. If the received ELS is
1798 1.53 mjacob * a LOGO, then these tags contain the N Port ID
1799 1.53 mjacob * from the LOGO payload. If the received ELS
1800 1.53 mjacob * request is TPRLO, these tags contain the
1801 1.53 mjacob * Third Party Originator N Port ID.
1802 1.53 mjacob */
1803 1.53 mjacob uint16_t in_nport_id_hi;
1804 1.53 mjacob uint8_t in_nport_id_lo;
1805 1.53 mjacob uint8_t in_reserved3;
1806 1.53 mjacob /*
1807 1.53 mjacob * If bit 2 is set in in_flags, the following
1808 1.53 mjacob * tag is valid. If the received ELS is a LOGO,
1809 1.53 mjacob * then this tag contains the n-port handle
1810 1.53 mjacob * from the LOGO payload. If the received ELS
1811 1.53 mjacob * request is TPRLO, this tag contain the
1812 1.53 mjacob * n-port handle for the Third Party Originator.
1813 1.53 mjacob */
1814 1.53 mjacob uint16_t in_np_handle;
1815 1.53 mjacob uint8_t in_reserved4[12];
1816 1.53 mjacob uint8_t in_reserved5;
1817 1.53 mjacob uint8_t in_vpidx;
1818 1.53 mjacob uint32_t in_reserved6;
1819 1.53 mjacob uint16_t in_portid_lo;
1820 1.53 mjacob uint8_t in_portid_hi;
1821 1.53 mjacob uint8_t in_reserved7;
1822 1.53 mjacob uint16_t in_reserved8;
1823 1.53 mjacob uint16_t in_oxid;
1824 1.53 mjacob } in_fcentry_24xx_t;
1825 1.53 mjacob
1826 1.53 mjacob #define IN24XX_FLAG_PUREX_IOCB 0x1
1827 1.53 mjacob #define IN24XX_FLAG_GLOBAL_LOGOUT 0x2
1828 1.53 mjacob #define IN24XX_FLAG_NPHDL_VALID 0x4
1829 1.53 mjacob
1830 1.53 mjacob #define IN24XX_LIP_RESET 0x0E
1831 1.53 mjacob #define IN24XX_LINK_RESET 0x0F
1832 1.53 mjacob #define IN24XX_PORT_LOGOUT 0x29
1833 1.53 mjacob #define IN24XX_PORT_CHANGED 0x2A
1834 1.53 mjacob #define IN24XX_LINK_FAILED 0x2E
1835 1.53 mjacob #define IN24XX_SRR_RCVD 0x45
1836 1.53 mjacob #define IN24XX_ELS_RCVD 0x46 /*
1837 1.53 mjacob * login-affectin ELS received- check
1838 1.53 mjacob * subcode for specific opcode
1839 1.53 mjacob */
1840 1.53 mjacob
1841 1.53 mjacob /*
1842 1.53 mjacob * For f/w > 4.0.25, these offsets in the Immediate Notify contain
1843 1.53 mjacob * the WWNN/WWPN if the ELS is PLOGI, PDISC or ADISC. The WWN is in
1844 1.53 mjacob * Big Endian format.
1845 1.53 mjacob */
1846 1.53 mjacob #define IN24XX_PLOGI_WWNN_OFF 0x20
1847 1.53 mjacob #define IN24XX_PLOGI_WWPN_OFF 0x28
1848 1.53 mjacob
1849 1.53 mjacob /*
1850 1.53 mjacob * For f/w > 4.0.25, this offset in the Immediate Notify contain
1851 1.53 mjacob * the WWPN if the ELS is LOGO. The WWN is in Big Endian format.
1852 1.53 mjacob */
1853 1.53 mjacob #define IN24XX_LOGO_WWPN_OFF 0x28
1854 1.53 mjacob
1855 1.53 mjacob /*
1856 1.53 mjacob * Immediate Notify Status Subcodes for IN24XX_PORT_LOGOUT
1857 1.53 mjacob */
1858 1.53 mjacob #define IN24XX_PORT_LOGOUT_PDISC_TMO 0x00
1859 1.53 mjacob #define IN24XX_PORT_LOGOUT_UXPR_DISC 0x01
1860 1.53 mjacob #define IN24XX_PORT_LOGOUT_OWN_OPN 0x02
1861 1.53 mjacob #define IN24XX_PORT_LOGOUT_OWN_OPN_SFT 0x03
1862 1.53 mjacob #define IN24XX_PORT_LOGOUT_ABTS_TMO 0x04
1863 1.53 mjacob #define IN24XX_PORT_LOGOUT_DISC_RJT 0x05
1864 1.53 mjacob #define IN24XX_PORT_LOGOUT_LOGIN_NEEDED 0x06
1865 1.53 mjacob #define IN24XX_PORT_LOGOUT_BAD_DISC 0x07
1866 1.53 mjacob #define IN24XX_PORT_LOGOUT_LOST_ALPA 0x08
1867 1.53 mjacob #define IN24XX_PORT_LOGOUT_XMIT_FAILURE 0x09
1868 1.53 mjacob
1869 1.53 mjacob /*
1870 1.53 mjacob * Immediate Notify Status Subcodes for IN24XX_PORT_CHANGED
1871 1.53 mjacob */
1872 1.53 mjacob #define IN24XX_PORT_CHANGED_BADFAN 0x00
1873 1.53 mjacob #define IN24XX_PORT_CHANGED_TOPO_CHANGE 0x01
1874 1.53 mjacob #define IN24XX_PORT_CHANGED_FLOGI_ACC 0x02
1875 1.53 mjacob #define IN24XX_PORT_CHANGED_FLOGI_RJT 0x03
1876 1.53 mjacob #define IN24XX_PORT_CHANGED_TIMEOUT 0x04
1877 1.53 mjacob #define IN24XX_PORT_CHANGED_PORT_CHANGE 0x05
1878 1.53 mjacob
1879 1.53 mjacob /*
1880 1.53 mjacob * Notify Acknowledge Entry structure
1881 1.53 mjacob */
1882 1.53 mjacob #define NA_RSVDLEN 22
1883 1.53 mjacob typedef struct {
1884 1.53 mjacob isphdr_t na_header;
1885 1.53 mjacob uint32_t na_reserved;
1886 1.53 mjacob uint8_t na_lun; /* lun */
1887 1.53 mjacob uint8_t na_iid; /* initiator */
1888 1.53 mjacob uint8_t na_reserved2;
1889 1.53 mjacob uint8_t na_tgt; /* target */
1890 1.53 mjacob uint32_t na_flags;
1891 1.53 mjacob uint8_t na_status;
1892 1.53 mjacob uint8_t na_event;
1893 1.53 mjacob uint16_t na_seqid; /* sequence id */
1894 1.53 mjacob uint16_t na_reserved3[NA_RSVDLEN];
1895 1.53 mjacob } na_entry_t;
1896 1.53 mjacob
1897 1.53 mjacob /*
1898 1.53 mjacob * Value for the na_event field
1899 1.53 mjacob */
1900 1.53 mjacob #define NA_RST_CLRD 0x80 /* Clear an async event notification */
1901 1.53 mjacob #define NA_OK 0x01 /* Notify Acknowledge Succeeded */
1902 1.53 mjacob #define NA_INVALID 0x06 /* Invalid Notify Acknowledge */
1903 1.53 mjacob
1904 1.53 mjacob #define NA2_RSVDLEN 21
1905 1.53 mjacob typedef struct {
1906 1.53 mjacob isphdr_t na_header;
1907 1.53 mjacob uint32_t na_reserved;
1908 1.53 mjacob uint8_t na_reserved1;
1909 1.53 mjacob uint8_t na_iid; /* initiator loop id */
1910 1.53 mjacob uint16_t na_response;
1911 1.53 mjacob uint16_t na_flags;
1912 1.53 mjacob uint16_t na_reserved2;
1913 1.53 mjacob uint16_t na_status;
1914 1.53 mjacob uint16_t na_task_flags;
1915 1.53 mjacob uint16_t na_seqid; /* sequence id */
1916 1.53 mjacob uint16_t na_reserved3[NA2_RSVDLEN];
1917 1.53 mjacob } na_fcentry_t;
1918 1.53 mjacob
1919 1.53 mjacob typedef struct {
1920 1.53 mjacob isphdr_t na_header;
1921 1.53 mjacob uint32_t na_reserved;
1922 1.53 mjacob uint16_t na_iid; /* initiator loop id */
1923 1.53 mjacob uint16_t na_response; /* response code */
1924 1.53 mjacob uint16_t na_flags;
1925 1.53 mjacob uint16_t na_reserved2;
1926 1.53 mjacob uint16_t na_status;
1927 1.53 mjacob uint16_t na_task_flags;
1928 1.53 mjacob uint16_t na_seqid; /* sequence id */
1929 1.53 mjacob uint16_t na_reserved3[NA2_RSVDLEN];
1930 1.53 mjacob } na_fcentry_e_t;
1931 1.53 mjacob
1932 1.53 mjacob #define NAFC_RCOUNT 0x80 /* increment resource count */
1933 1.53 mjacob #define NAFC_RST_CLRD 0x20 /* Clear LIP Reset */
1934 1.53 mjacob #define NAFC_TVALID 0x10 /* task mangement response code is valid */
1935 1.53 mjacob
1936 1.53 mjacob /*
1937 1.53 mjacob * ISP24XX Notify Acknowledge
1938 1.53 mjacob */
1939 1.53 mjacob
1940 1.53 mjacob typedef struct {
1941 1.53 mjacob isphdr_t na_header;
1942 1.53 mjacob uint32_t na_handle;
1943 1.53 mjacob uint16_t na_nphdl;
1944 1.53 mjacob uint16_t na_reserved1;
1945 1.53 mjacob uint16_t na_flags;
1946 1.53 mjacob uint16_t na_srr_rxid;
1947 1.53 mjacob uint16_t na_status;
1948 1.53 mjacob uint8_t na_status_subcode;
1949 1.53 mjacob uint8_t na_reserved2;
1950 1.53 mjacob uint32_t na_rxid;
1951 1.53 mjacob uint16_t na_srr_reloff_lo;
1952 1.53 mjacob uint16_t na_srr_reloff_hi;
1953 1.53 mjacob uint16_t na_srr_iu;
1954 1.53 mjacob uint16_t na_srr_flags;
1955 1.53 mjacob uint8_t na_reserved3[18];
1956 1.53 mjacob uint8_t na_reserved4;
1957 1.53 mjacob uint8_t na_vpidx;
1958 1.53 mjacob uint8_t na_srr_reject_vunique;
1959 1.53 mjacob uint8_t na_srr_reject_explanation;
1960 1.53 mjacob uint8_t na_srr_reject_code;
1961 1.53 mjacob uint8_t na_reserved5;
1962 1.53 mjacob uint8_t na_reserved6[6];
1963 1.53 mjacob uint16_t na_oxid;
1964 1.53 mjacob } na_fcentry_24xx_t;
1965 1.53 mjacob
1966 1.53 mjacob /*
1967 1.53 mjacob * Accept Target I/O Entry structure
1968 1.53 mjacob */
1969 1.53 mjacob #define ATIO_CDBLEN 26
1970 1.53 mjacob
1971 1.53 mjacob typedef struct {
1972 1.53 mjacob isphdr_t at_header;
1973 1.53 mjacob uint16_t at_reserved;
1974 1.53 mjacob uint16_t at_handle;
1975 1.53 mjacob uint8_t at_lun; /* lun */
1976 1.53 mjacob uint8_t at_iid; /* initiator */
1977 1.53 mjacob uint8_t at_cdblen; /* cdb length */
1978 1.53 mjacob uint8_t at_tgt; /* target */
1979 1.53 mjacob uint32_t at_flags;
1980 1.53 mjacob uint8_t at_status; /* firmware status */
1981 1.53 mjacob uint8_t at_scsi_status; /* scsi status */
1982 1.53 mjacob uint8_t at_tag_val; /* tag value */
1983 1.53 mjacob uint8_t at_tag_type; /* tag type */
1984 1.53 mjacob uint8_t at_cdb[ATIO_CDBLEN]; /* received CDB */
1985 1.53 mjacob uint8_t at_sense[QLTM_SENSELEN];/* suggested sense data */
1986 1.53 mjacob } at_entry_t;
1987 1.53 mjacob
1988 1.53 mjacob /*
1989 1.53 mjacob * at_flags values
1990 1.53 mjacob */
1991 1.53 mjacob #define AT_NODISC 0x00008000 /* disconnect disabled */
1992 1.53 mjacob #define AT_TQAE 0x00000002 /* Tagged Queue Action enabled */
1993 1.53 mjacob
1994 1.53 mjacob /*
1995 1.53 mjacob * at_status values
1996 1.53 mjacob */
1997 1.53 mjacob #define AT_PATH_INVALID 0x07 /* ATIO sent to firmware for disabled lun */
1998 1.53 mjacob #define AT_RESET 0x0E /* SCSI Bus Reset Occurred */
1999 1.53 mjacob #define AT_PHASE_ERROR 0x14 /* Bus phase sequence error */
2000 1.53 mjacob #define AT_NOCAP 0x16 /* Requested capability not available */
2001 1.53 mjacob #define AT_BDR_MSG 0x17 /* Bus Device Reset msg received */
2002 1.53 mjacob #define AT_CDB 0x3D /* CDB received */
2003 1.53 mjacob /*
2004 1.53 mjacob * Macros to create and fetch and test concatenated handle and tag value macros
2005 1.53 mjacob * (SPI only)
2006 1.53 mjacob */
2007 1.53 mjacob #define AT_MAKE_TAGID(tid, aep) \
2008 1.53 mjacob tid = aep->at_handle; \
2009 1.53 mjacob if (aep->at_flags & AT_TQAE) { \
2010 1.53 mjacob tid |= (aep->at_tag_val << 16); \
2011 1.53 mjacob tid |= (1 << 24); \
2012 1.53 mjacob }
2013 1.53 mjacob
2014 1.53 mjacob #define CT_MAKE_TAGID(tid, ct) \
2015 1.53 mjacob tid = ct->ct_fwhandle; \
2016 1.53 mjacob if (ct->ct_flags & CT_TQAE) { \
2017 1.53 mjacob tid |= (ct->ct_tag_val << 16); \
2018 1.53 mjacob tid |= (1 << 24); \
2019 1.53 mjacob }
2020 1.53 mjacob
2021 1.53 mjacob #define AT_HAS_TAG(val) ((val) & (1 << 24))
2022 1.53 mjacob #define AT_GET_TAG(val) (((val) >> 16) & 0xff)
2023 1.53 mjacob #define AT_GET_HANDLE(val) ((val) & 0xffff)
2024 1.53 mjacob
2025 1.53 mjacob #define IN_MAKE_TAGID(tid, inp) \
2026 1.53 mjacob tid = inp->in_seqid; \
2027 1.53 mjacob tid |= (inp->in_tag_val << 16); \
2028 1.53 mjacob tid |= (1 << 24)
2029 1.53 mjacob
2030 1.53 mjacob /*
2031 1.53 mjacob * Accept Target I/O Entry structure, Type 2
2032 1.53 mjacob */
2033 1.53 mjacob #define ATIO2_CDBLEN 16
2034 1.53 mjacob
2035 1.53 mjacob typedef struct {
2036 1.53 mjacob isphdr_t at_header;
2037 1.53 mjacob uint32_t at_reserved;
2038 1.53 mjacob uint8_t at_lun; /* lun or reserved */
2039 1.53 mjacob uint8_t at_iid; /* initiator */
2040 1.53 mjacob uint16_t at_rxid; /* response ID */
2041 1.53 mjacob uint16_t at_flags;
2042 1.53 mjacob uint16_t at_status; /* firmware status */
2043 1.53 mjacob uint8_t at_crn; /* command reference number */
2044 1.53 mjacob uint8_t at_taskcodes;
2045 1.53 mjacob uint8_t at_taskflags;
2046 1.53 mjacob uint8_t at_execodes;
2047 1.53 mjacob uint8_t at_cdb[ATIO2_CDBLEN]; /* received CDB */
2048 1.53 mjacob uint32_t at_datalen; /* allocated data len */
2049 1.53 mjacob uint16_t at_scclun; /* SCC Lun or reserved */
2050 1.53 mjacob uint16_t at_wwpn[4]; /* WWPN of initiator */
2051 1.53 mjacob uint16_t at_reserved2[6];
2052 1.53 mjacob uint16_t at_oxid;
2053 1.53 mjacob } at2_entry_t;
2054 1.53 mjacob
2055 1.53 mjacob typedef struct {
2056 1.53 mjacob isphdr_t at_header;
2057 1.53 mjacob uint32_t at_reserved;
2058 1.53 mjacob uint16_t at_iid; /* initiator */
2059 1.53 mjacob uint16_t at_rxid; /* response ID */
2060 1.53 mjacob uint16_t at_flags;
2061 1.53 mjacob uint16_t at_status; /* firmware status */
2062 1.53 mjacob uint8_t at_crn; /* command reference number */
2063 1.53 mjacob uint8_t at_taskcodes;
2064 1.53 mjacob uint8_t at_taskflags;
2065 1.53 mjacob uint8_t at_execodes;
2066 1.53 mjacob uint8_t at_cdb[ATIO2_CDBLEN]; /* received CDB */
2067 1.53 mjacob uint32_t at_datalen; /* allocated data len */
2068 1.53 mjacob uint16_t at_scclun; /* SCC Lun or reserved */
2069 1.53 mjacob uint16_t at_wwpn[4]; /* WWPN of initiator */
2070 1.53 mjacob uint16_t at_reserved2[6];
2071 1.53 mjacob uint16_t at_oxid;
2072 1.53 mjacob } at2e_entry_t;
2073 1.53 mjacob
2074 1.53 mjacob #define ATIO2_WWPN_OFFSET 0x2A
2075 1.53 mjacob #define ATIO2_OXID_OFFSET 0x3E
2076 1.53 mjacob
2077 1.53 mjacob #define ATIO2_TC_ATTR_MASK 0x7
2078 1.53 mjacob #define ATIO2_TC_ATTR_SIMPLEQ 0
2079 1.53 mjacob #define ATIO2_TC_ATTR_HEADOFQ 1
2080 1.53 mjacob #define ATIO2_TC_ATTR_ORDERED 2
2081 1.53 mjacob #define ATIO2_TC_ATTR_ACAQ 4
2082 1.53 mjacob #define ATIO2_TC_ATTR_UNTAGGED 5
2083 1.53 mjacob
2084 1.53 mjacob #define ATIO2_EX_WRITE 0x1
2085 1.53 mjacob #define ATIO2_EX_READ 0x2
2086 1.53 mjacob /*
2087 1.53 mjacob * Macros to create and fetch and test concatenated handle and tag value macros
2088 1.53 mjacob */
2089 1.53 mjacob #define AT2_MAKE_TAGID(tid, bus, inst, aep) \
2090 1.53 mjacob tid = aep->at_rxid; \
2091 1.53 mjacob tid |= (((uint64_t)inst) << 32); \
2092 1.53 mjacob tid |= (((uint64_t)bus) << 48)
2093 1.53 mjacob
2094 1.53 mjacob #define CT2_MAKE_TAGID(tid, bus, inst, ct) \
2095 1.53 mjacob tid = ct->ct_rxid; \
2096 1.53 mjacob tid |= (((uint64_t)inst) << 32); \
2097 1.53 mjacob tid |= (((uint64_t)(bus & 0xff)) << 48)
2098 1.53 mjacob
2099 1.53 mjacob #define AT2_HAS_TAG(val) 1
2100 1.53 mjacob #define AT2_GET_TAG(val) ((val) & 0xffffffff)
2101 1.53 mjacob #define AT2_GET_INST(val) (((val) >> 32) & 0xffff)
2102 1.53 mjacob #define AT2_GET_HANDLE AT2_GET_TAG
2103 1.53 mjacob #define AT2_GET_BUS(val) (((val) >> 48) & 0xff)
2104 1.53 mjacob
2105 1.53 mjacob #define FC_HAS_TAG AT2_HAS_TAG
2106 1.53 mjacob #define FC_GET_TAG AT2_GET_TAG
2107 1.53 mjacob #define FC_GET_INST AT2_GET_INST
2108 1.53 mjacob #define FC_GET_HANDLE AT2_GET_HANDLE
2109 1.53 mjacob
2110 1.53 mjacob #define IN_FC_MAKE_TAGID(tid, bus, inst, seqid) \
2111 1.53 mjacob tid = seqid; \
2112 1.53 mjacob tid |= (((uint64_t)inst) << 32); \
2113 1.53 mjacob tid |= (((uint64_t)(bus & 0xff)) << 48)
2114 1.53 mjacob
2115 1.53 mjacob #define FC_TAG_INSERT_INST(tid, inst) \
2116 1.53 mjacob tid &= ~0x0000ffff00000000ull; \
2117 1.53 mjacob tid |= (((uint64_t)inst) << 32)
2118 1.53 mjacob
2119 1.53 mjacob /*
2120 1.53 mjacob * 24XX ATIO Definition
2121 1.53 mjacob *
2122 1.53 mjacob * This is *quite* different from other entry types.
2123 1.53 mjacob * First of all, it has its own queue it comes in on.
2124 1.53 mjacob *
2125 1.53 mjacob * Secondly, it doesn't have a normal header.
2126 1.53 mjacob *
2127 1.53 mjacob * Thirdly, it's just a passthru of the FCP CMND IU
2128 1.53 mjacob * which is recorded in big endian mode.
2129 1.53 mjacob */
2130 1.53 mjacob typedef struct {
2131 1.53 mjacob uint8_t at_type;
2132 1.53 mjacob uint8_t at_count;
2133 1.53 mjacob /*
2134 1.53 mjacob * Task attribute in high four bits,
2135 1.53 mjacob * the rest is the FCP CMND IU Length.
2136 1.53 mjacob * NB: the command can extend past the
2137 1.53 mjacob * length for a single queue entry.
2138 1.53 mjacob */
2139 1.53 mjacob uint16_t at_ta_len;
2140 1.53 mjacob uint32_t at_rxid;
2141 1.53 mjacob fc_hdr_t at_hdr;
2142 1.53 mjacob fcp_cmnd_iu_t at_cmnd;
2143 1.53 mjacob } at7_entry_t;
2144 1.53 mjacob #define AT7_NORESRC_RXID 0xffffffff
2145 1.53 mjacob
2146 1.53 mjacob
2147 1.53 mjacob /*
2148 1.53 mjacob * Continue Target I/O Entry structure
2149 1.53 mjacob * Request from driver. The response from the
2150 1.53 mjacob * ISP firmware is the same except that the last 18
2151 1.53 mjacob * bytes are overwritten by suggested sense data if
2152 1.53 mjacob * the 'autosense valid' bit is set in the status byte.
2153 1.53 mjacob */
2154 1.53 mjacob typedef struct {
2155 1.53 mjacob isphdr_t ct_header;
2156 1.53 mjacob uint16_t ct_syshandle;
2157 1.53 mjacob uint16_t ct_fwhandle; /* required by f/w */
2158 1.53 mjacob uint8_t ct_lun; /* lun */
2159 1.53 mjacob uint8_t ct_iid; /* initiator id */
2160 1.53 mjacob uint8_t ct_reserved2;
2161 1.53 mjacob uint8_t ct_tgt; /* our target id */
2162 1.53 mjacob uint32_t ct_flags;
2163 1.53 mjacob uint8_t ct_status; /* isp status */
2164 1.53 mjacob uint8_t ct_scsi_status; /* scsi status */
2165 1.53 mjacob uint8_t ct_tag_val; /* tag value */
2166 1.53 mjacob uint8_t ct_tag_type; /* tag type */
2167 1.53 mjacob uint32_t ct_xfrlen; /* transfer length */
2168 1.53 mjacob int32_t ct_resid; /* residual length */
2169 1.53 mjacob uint16_t ct_timeout;
2170 1.53 mjacob uint16_t ct_seg_count;
2171 1.53 mjacob ispds_t ct_dataseg[ISP_RQDSEG];
2172 1.53 mjacob } ct_entry_t;
2173 1.53 mjacob
2174 1.53 mjacob /*
2175 1.53 mjacob * For some of the dual port SCSI adapters, port (bus #) is reported
2176 1.53 mjacob * in the MSbit of ct_iid. Bit fields are a bit too awkward here.
2177 1.53 mjacob *
2178 1.53 mjacob * Note that this does not apply to FC adapters at all which can and
2179 1.53 mjacob * do report IIDs between 0x81 && 0xfe (or 0x7ff) which represent devices
2180 1.53 mjacob * that have logged in across a SCSI fabric.
2181 1.53 mjacob */
2182 1.53 mjacob #define GET_IID_VAL(x) (x & 0x3f)
2183 1.53 mjacob #define GET_BUS_VAL(x) ((x >> 7) & 0x1)
2184 1.53 mjacob #define SET_IID_VAL(y, x) y = ((y & ~0x3f) | (x & 0x3f))
2185 1.53 mjacob #define SET_BUS_VAL(y, x) y = ((y & 0x3f) | ((x & 0x1) << 7))
2186 1.53 mjacob
2187 1.53 mjacob /*
2188 1.53 mjacob * ct_flags values
2189 1.53 mjacob */
2190 1.53 mjacob #define CT_TQAE 0x00000002 /* bit 1, Tagged Queue Action enable */
2191 1.53 mjacob #define CT_DATA_IN 0x00000040 /* bits 6&7, Data direction */
2192 1.53 mjacob #define CT_DATA_OUT 0x00000080 /* bits 6&7, Data direction */
2193 1.53 mjacob #define CT_NO_DATA 0x000000C0 /* bits 6&7, Data direction */
2194 1.53 mjacob #define CT_CCINCR 0x00000100 /* bit 8, autoincrement atio count */
2195 1.53 mjacob #define CT_DATAMASK 0x000000C0 /* bits 6&7, Data direction */
2196 1.53 mjacob #define CT_INISYNCWIDE 0x00004000 /* bit 14, Do Sync/Wide Negotiation */
2197 1.53 mjacob #define CT_NODISC 0x00008000 /* bit 15, Disconnects disabled */
2198 1.53 mjacob #define CT_DSDP 0x01000000 /* bit 24, Disable Save Data Pointers */
2199 1.53 mjacob #define CT_SENDRDP 0x04000000 /* bit 26, Send Restore Pointers msg */
2200 1.53 mjacob #define CT_SENDSTATUS 0x80000000 /* bit 31, Send SCSI status byte */
2201 1.53 mjacob
2202 1.53 mjacob /*
2203 1.53 mjacob * ct_status values
2204 1.53 mjacob * - set by the firmware when it returns the CTIO
2205 1.53 mjacob */
2206 1.53 mjacob #define CT_OK 0x01 /* completed without error */
2207 1.53 mjacob #define CT_ABORTED 0x02 /* aborted by host */
2208 1.53 mjacob #define CT_ERR 0x04 /* see sense data for error */
2209 1.53 mjacob #define CT_INVAL 0x06 /* request for disabled lun */
2210 1.53 mjacob #define CT_NOPATH 0x07 /* invalid ITL nexus */
2211 1.53 mjacob #define CT_INVRXID 0x08 /* (FC only) Invalid RX_ID */
2212 1.53 mjacob #define CT_DATA_OVER 0x09 /* (FC only) Data Overrun */
2213 1.53 mjacob #define CT_RSELTMO 0x0A /* reselection timeout after 2 tries */
2214 1.53 mjacob #define CT_TIMEOUT 0x0B /* timed out */
2215 1.53 mjacob #define CT_RESET 0x0E /* SCSI Bus Reset occurred */
2216 1.53 mjacob #define CT_PARITY 0x0F /* Uncorrectable Parity Error */
2217 1.53 mjacob #define CT_BUS_ERROR 0x10 /* (FC Only) DMA PCI Error */
2218 1.53 mjacob #define CT_PANIC 0x13 /* Unrecoverable Error */
2219 1.53 mjacob #define CT_PHASE_ERROR 0x14 /* Bus phase sequence error */
2220 1.53 mjacob #define CT_DATA_UNDER 0x15 /* (FC only) Data Underrun */
2221 1.53 mjacob #define CT_BDR_MSG 0x17 /* Bus Device Reset msg received */
2222 1.53 mjacob #define CT_TERMINATED 0x19 /* due to Terminate Transfer mbox cmd */
2223 1.53 mjacob #define CT_PORTUNAVAIL 0x28 /* port not available */
2224 1.53 mjacob #define CT_LOGOUT 0x29 /* port logout */
2225 1.53 mjacob #define CT_PORTCHANGED 0x2A /* port changed */
2226 1.53 mjacob #define CT_IDE 0x33 /* Initiator Detected Error */
2227 1.53 mjacob #define CT_NOACK 0x35 /* Outstanding Immed. Notify. entry */
2228 1.53 mjacob #define CT_SRR 0x45 /* SRR Received */
2229 1.53 mjacob #define CT_LUN_RESET 0x48 /* Lun Reset Received */
2230 1.53 mjacob
2231 1.53 mjacob #define CT_HBA_RESET 0xffff /* pseudo error - command destroyed by HBA reset*/
2232 1.53 mjacob
2233 1.53 mjacob /*
2234 1.53 mjacob * When the firmware returns a CTIO entry, it may overwrite the last
2235 1.53 mjacob * part of the structure with sense data. This starts at offset 0x2E
2236 1.53 mjacob * into the entry, which is in the middle of ct_dataseg[1]. Rather
2237 1.53 mjacob * than define a new struct for this, I'm just using the sense data
2238 1.53 mjacob * offset.
2239 1.53 mjacob */
2240 1.53 mjacob #define CTIO_SENSE_OFFSET 0x2E
2241 1.53 mjacob
2242 1.53 mjacob /*
2243 1.53 mjacob * Entry length in u_longs. All entries are the same size so
2244 1.53 mjacob * any one will do as the numerator.
2245 1.53 mjacob */
2246 1.53 mjacob #define UINT32_ENTRY_SIZE (sizeof(at_entry_t)/sizeof(uint32_t))
2247 1.53 mjacob
2248 1.53 mjacob /*
2249 1.53 mjacob * QLA2100 CTIO (type 2) entry
2250 1.53 mjacob */
2251 1.53 mjacob #define MAXRESPLEN 26
2252 1.53 mjacob typedef struct {
2253 1.53 mjacob isphdr_t ct_header;
2254 1.53 mjacob uint32_t ct_syshandle;
2255 1.53 mjacob uint8_t ct_lun; /* lun */
2256 1.53 mjacob uint8_t ct_iid; /* initiator id */
2257 1.53 mjacob uint16_t ct_rxid; /* response ID */
2258 1.53 mjacob uint16_t ct_flags;
2259 1.53 mjacob uint16_t ct_status; /* isp status */
2260 1.53 mjacob uint16_t ct_timeout;
2261 1.53 mjacob uint16_t ct_seg_count;
2262 1.53 mjacob uint32_t ct_reloff; /* relative offset */
2263 1.53 mjacob int32_t ct_resid; /* residual length */
2264 1.53 mjacob union {
2265 1.53 mjacob /*
2266 1.53 mjacob * The three different modes that the target driver
2267 1.53 mjacob * can set the CTIO{2,3,4} up as.
2268 1.53 mjacob *
2269 1.53 mjacob * The first is for sending FCP_DATA_IUs as well as
2270 1.53 mjacob * (optionally) sending a terminal SCSI status FCP_RSP_IU.
2271 1.53 mjacob *
2272 1.53 mjacob * The second is for sending SCSI sense data in an FCP_RSP_IU.
2273 1.53 mjacob * Note that no FCP_DATA_IUs will be sent.
2274 1.53 mjacob *
2275 1.53 mjacob * The third is for sending FCP_RSP_IUs as built specifically
2276 1.53 mjacob * in system memory as located by the isp_dataseg.
2277 1.53 mjacob */
2278 1.53 mjacob struct {
2279 1.53 mjacob uint32_t _reserved;
2280 1.53 mjacob uint16_t _reserved2;
2281 1.53 mjacob uint16_t ct_scsi_status;
2282 1.53 mjacob uint32_t ct_xfrlen;
2283 1.53 mjacob union {
2284 1.53 mjacob ispds_t ct_dataseg[ISP_RQDSEG_T2];
2285 1.53 mjacob ispds64_t ct_dataseg64[ISP_RQDSEG_T3];
2286 1.53 mjacob ispdslist_t ct_dslist;
2287 1.53 mjacob } u;
2288 1.53 mjacob } m0;
2289 1.53 mjacob struct {
2290 1.53 mjacob uint16_t _reserved;
2291 1.53 mjacob uint16_t _reserved2;
2292 1.53 mjacob uint16_t ct_senselen;
2293 1.53 mjacob uint16_t ct_scsi_status;
2294 1.53 mjacob uint16_t ct_resplen;
2295 1.53 mjacob uint8_t ct_resp[MAXRESPLEN];
2296 1.53 mjacob } m1;
2297 1.53 mjacob struct {
2298 1.53 mjacob uint32_t _reserved;
2299 1.53 mjacob uint16_t _reserved2;
2300 1.53 mjacob uint16_t _reserved3;
2301 1.53 mjacob uint32_t ct_datalen;
2302 1.53 mjacob ispds_t ct_fcp_rsp_iudata;
2303 1.53 mjacob } m2;
2304 1.53 mjacob } rsp;
2305 1.53 mjacob } ct2_entry_t;
2306 1.53 mjacob
2307 1.53 mjacob typedef struct {
2308 1.53 mjacob isphdr_t ct_header;
2309 1.53 mjacob uint32_t ct_syshandle;
2310 1.53 mjacob uint16_t ct_iid; /* initiator id */
2311 1.53 mjacob uint16_t ct_rxid; /* response ID */
2312 1.53 mjacob uint16_t ct_flags;
2313 1.53 mjacob uint16_t ct_status; /* isp status */
2314 1.53 mjacob uint16_t ct_timeout;
2315 1.53 mjacob uint16_t ct_seg_count;
2316 1.53 mjacob uint32_t ct_reloff; /* relative offset */
2317 1.53 mjacob int32_t ct_resid; /* residual length */
2318 1.53 mjacob union {
2319 1.53 mjacob struct {
2320 1.53 mjacob uint32_t _reserved;
2321 1.53 mjacob uint16_t _reserved2;
2322 1.53 mjacob uint16_t ct_scsi_status;
2323 1.53 mjacob uint32_t ct_xfrlen;
2324 1.53 mjacob union {
2325 1.53 mjacob ispds_t ct_dataseg[ISP_RQDSEG_T2];
2326 1.53 mjacob ispds64_t ct_dataseg64[ISP_RQDSEG_T3];
2327 1.53 mjacob ispdslist_t ct_dslist;
2328 1.53 mjacob } u;
2329 1.53 mjacob } m0;
2330 1.53 mjacob struct {
2331 1.53 mjacob uint16_t _reserved;
2332 1.53 mjacob uint16_t _reserved2;
2333 1.53 mjacob uint16_t ct_senselen;
2334 1.53 mjacob uint16_t ct_scsi_status;
2335 1.53 mjacob uint16_t ct_resplen;
2336 1.53 mjacob uint8_t ct_resp[MAXRESPLEN];
2337 1.53 mjacob } m1;
2338 1.53 mjacob struct {
2339 1.53 mjacob uint32_t _reserved;
2340 1.53 mjacob uint16_t _reserved2;
2341 1.53 mjacob uint16_t _reserved3;
2342 1.53 mjacob uint32_t ct_datalen;
2343 1.53 mjacob ispds_t ct_fcp_rsp_iudata;
2344 1.53 mjacob } m2;
2345 1.53 mjacob } rsp;
2346 1.53 mjacob } ct2e_entry_t;
2347 1.53 mjacob
2348 1.53 mjacob /*
2349 1.53 mjacob * ct_flags values for CTIO2
2350 1.53 mjacob */
2351 1.53 mjacob #define CT2_FLAG_MODE0 0x0000
2352 1.53 mjacob #define CT2_FLAG_MODE1 0x0001
2353 1.53 mjacob #define CT2_FLAG_MODE2 0x0002
2354 1.53 mjacob #define CT2_FLAG_MMASK 0x0003
2355 1.53 mjacob #define CT2_DATA_IN 0x0040
2356 1.53 mjacob #define CT2_DATA_OUT 0x0080
2357 1.53 mjacob #define CT2_NO_DATA 0x00C0
2358 1.53 mjacob #define CT2_DATAMASK 0x00C0
2359 1.53 mjacob #define CT2_CCINCR 0x0100
2360 1.53 mjacob #define CT2_FASTPOST 0x0200
2361 1.53 mjacob #define CT2_CONFIRM 0x2000
2362 1.53 mjacob #define CT2_TERMINATE 0x4000
2363 1.53 mjacob #define CT2_SENDSTATUS 0x8000
2364 1.53 mjacob
2365 1.53 mjacob /*
2366 1.53 mjacob * ct_status values are (mostly) the same as that for ct_entry.
2367 1.53 mjacob */
2368 1.53 mjacob
2369 1.53 mjacob /*
2370 1.53 mjacob * ct_scsi_status values- the low 8 bits are the normal SCSI status
2371 1.53 mjacob * we know and love. The upper 8 bits are validity markers for FCP_RSP_IU
2372 1.53 mjacob * fields.
2373 1.53 mjacob */
2374 1.53 mjacob #define CT2_RSPLEN_VALID 0x0100
2375 1.53 mjacob #define CT2_SNSLEN_VALID 0x0200
2376 1.53 mjacob #define CT2_DATA_OVER 0x0400
2377 1.53 mjacob #define CT2_DATA_UNDER 0x0800
2378 1.53 mjacob
2379 1.53 mjacob /*
2380 1.53 mjacob * ISP24XX CTIO
2381 1.53 mjacob */
2382 1.53 mjacob #define MAXRESPLEN_24XX 24
2383 1.53 mjacob typedef struct {
2384 1.53 mjacob isphdr_t ct_header;
2385 1.53 mjacob uint32_t ct_syshandle;
2386 1.53 mjacob uint16_t ct_nphdl; /* status on returned CTIOs */
2387 1.53 mjacob uint16_t ct_timeout;
2388 1.53 mjacob uint16_t ct_seg_count;
2389 1.53 mjacob uint8_t ct_vpidx;
2390 1.53 mjacob uint8_t ct_xflags;
2391 1.53 mjacob uint16_t ct_iid_lo; /* low 16 bits of portid */
2392 1.53 mjacob uint8_t ct_iid_hi; /* hi 8 bits of portid */
2393 1.53 mjacob uint8_t ct_reserved;
2394 1.53 mjacob uint32_t ct_rxid;
2395 1.53 mjacob uint16_t ct_senselen; /* mode 1 only */
2396 1.53 mjacob uint16_t ct_flags;
2397 1.53 mjacob int32_t ct_resid; /* residual length */
2398 1.53 mjacob uint16_t ct_oxid;
2399 1.53 mjacob uint16_t ct_scsi_status; /* modes 0 && 1 only */
2400 1.53 mjacob union {
2401 1.53 mjacob struct {
2402 1.53 mjacob uint32_t reloff;
2403 1.53 mjacob uint32_t reserved0;
2404 1.53 mjacob uint32_t ct_xfrlen;
2405 1.53 mjacob uint32_t reserved1;
2406 1.53 mjacob ispds64_t ds;
2407 1.53 mjacob } m0;
2408 1.53 mjacob struct {
2409 1.53 mjacob uint16_t ct_resplen;
2410 1.53 mjacob uint16_t reserved;
2411 1.53 mjacob uint8_t ct_resp[MAXRESPLEN_24XX];
2412 1.53 mjacob } m1;
2413 1.53 mjacob struct {
2414 1.53 mjacob uint32_t reserved0;
2415 1.53 mjacob uint32_t ct_datalen;
2416 1.53 mjacob uint32_t reserved1;
2417 1.53 mjacob ispds64_t ct_fcp_rsp_iudata;
2418 1.53 mjacob } m2;
2419 1.53 mjacob } rsp;
2420 1.53 mjacob } ct7_entry_t;
2421 1.53 mjacob
2422 1.53 mjacob /*
2423 1.53 mjacob * ct_flags values for CTIO7
2424 1.53 mjacob */
2425 1.53 mjacob #define CT7_DATA_IN 0x0002
2426 1.53 mjacob #define CT7_DATA_OUT 0x0001
2427 1.53 mjacob #define CT7_NO_DATA 0x0000
2428 1.53 mjacob #define CT7_DATAMASK 0x003
2429 1.53 mjacob #define CT7_DSD_ENABLE 0x0004
2430 1.53 mjacob #define CT7_CONF_STSFD 0x0010
2431 1.53 mjacob #define CT7_EXPLCT_CONF 0x0020
2432 1.53 mjacob #define CT7_FLAG_MODE0 0x0000
2433 1.53 mjacob #define CT7_FLAG_MODE1 0x0040
2434 1.53 mjacob #define CT7_FLAG_MODE2 0x0080
2435 1.53 mjacob #define CT7_FLAG_MMASK 0x00C0
2436 1.53 mjacob #define CT7_NOACK 0x0100
2437 1.53 mjacob #define CT7_TASK_ATTR_SHIFT 9
2438 1.53 mjacob #define CT7_CONFIRM 0x2000
2439 1.53 mjacob #define CT7_TERMINATE 0x4000
2440 1.53 mjacob #define CT7_SENDSTATUS 0x8000
2441 1.53 mjacob
2442 1.53 mjacob /*
2443 1.53 mjacob * Type 7 CTIO status codes
2444 1.53 mjacob */
2445 1.53 mjacob #define CT7_OK 0x01 /* completed without error */
2446 1.53 mjacob #define CT7_ABORTED 0x02 /* aborted by host */
2447 1.53 mjacob #define CT7_ERR 0x04 /* see sense data for error */
2448 1.53 mjacob #define CT7_INVAL 0x06 /* request for disabled lun */
2449 1.53 mjacob #define CT7_INVRXID 0x08 /* Invalid RX_ID */
2450 1.53 mjacob #define CT7_DATA_OVER 0x09 /* Data Overrun */
2451 1.53 mjacob #define CT7_TIMEOUT 0x0B /* timed out */
2452 1.53 mjacob #define CT7_RESET 0x0E /* LIP Rset Received */
2453 1.53 mjacob #define CT7_BUS_ERROR 0x10 /* DMA PCI Error */
2454 1.53 mjacob #define CT7_REASSY_ERR 0x11 /* DMA reassembly error */
2455 1.53 mjacob #define CT7_DATA_UNDER 0x15 /* Data Underrun */
2456 1.53 mjacob #define CT7_PORTUNAVAIL 0x28 /* port not available */
2457 1.53 mjacob #define CT7_LOGOUT 0x29 /* port logout */
2458 1.53 mjacob #define CT7_PORTCHANGED 0x2A /* port changed */
2459 1.53 mjacob #define CT7_SRR 0x45 /* SRR Received */
2460 1.53 mjacob
2461 1.53 mjacob /*
2462 1.53 mjacob * Other 24XX related target IOCBs
2463 1.53 mjacob */
2464 1.53 mjacob
2465 1.53 mjacob /*
2466 1.53 mjacob * ABTS Received
2467 1.53 mjacob */
2468 1.53 mjacob typedef struct {
2469 1.53 mjacob isphdr_t abts_header;
2470 1.53 mjacob uint8_t abts_reserved0[6];
2471 1.53 mjacob uint16_t abts_nphdl;
2472 1.53 mjacob uint16_t abts_reserved1;
2473 1.53 mjacob uint16_t abts_sof;
2474 1.53 mjacob uint32_t abts_rxid_abts;
2475 1.53 mjacob uint16_t abts_did_lo;
2476 1.53 mjacob uint8_t abts_did_hi;
2477 1.53 mjacob uint8_t abts_r_ctl;
2478 1.53 mjacob uint16_t abts_sid_lo;
2479 1.53 mjacob uint8_t abts_sid_hi;
2480 1.53 mjacob uint8_t abts_cs_ctl;
2481 1.53 mjacob uint16_t abts_fs_ctl;
2482 1.53 mjacob uint8_t abts_f_ctl;
2483 1.53 mjacob uint8_t abts_type;
2484 1.53 mjacob uint16_t abts_seq_cnt;
2485 1.53 mjacob uint8_t abts_df_ctl;
2486 1.53 mjacob uint8_t abts_seq_id;
2487 1.53 mjacob uint16_t abts_rx_id;
2488 1.53 mjacob uint16_t abts_ox_id;
2489 1.53 mjacob uint32_t abts_param;
2490 1.53 mjacob uint8_t abts_reserved2[16];
2491 1.53 mjacob uint32_t abts_rxid_task;
2492 1.53 mjacob } abts_t;
2493 1.53 mjacob
2494 1.53 mjacob typedef struct {
2495 1.53 mjacob isphdr_t abts_rsp_header;
2496 1.53 mjacob uint32_t abts_rsp_handle;
2497 1.53 mjacob uint16_t abts_rsp_status;
2498 1.53 mjacob uint16_t abts_rsp_nphdl;
2499 1.53 mjacob uint16_t abts_rsp_ctl_flags;
2500 1.53 mjacob uint16_t abts_rsp_sof;
2501 1.53 mjacob uint32_t abts_rsp_rxid_abts;
2502 1.53 mjacob uint16_t abts_rsp_did_lo;
2503 1.53 mjacob uint8_t abts_rsp_did_hi;
2504 1.53 mjacob uint8_t abts_rsp_r_ctl;
2505 1.53 mjacob uint16_t abts_rsp_sid_lo;
2506 1.53 mjacob uint8_t abts_rsp_sid_hi;
2507 1.53 mjacob uint8_t abts_rsp_cs_ctl;
2508 1.53 mjacob uint16_t abts_rsp_f_ctl_lo;
2509 1.53 mjacob uint8_t abts_rsp_f_ctl_hi;
2510 1.53 mjacob uint8_t abts_rsp_type;
2511 1.53 mjacob uint16_t abts_rsp_seq_cnt;
2512 1.53 mjacob uint8_t abts_rsp_df_ctl;
2513 1.53 mjacob uint8_t abts_rsp_seq_id;
2514 1.53 mjacob uint16_t abts_rsp_rx_id;
2515 1.53 mjacob uint16_t abts_rsp_ox_id;
2516 1.53 mjacob uint32_t abts_rsp_param;
2517 1.53 mjacob union {
2518 1.53 mjacob struct {
2519 1.53 mjacob uint16_t reserved;
2520 1.53 mjacob uint8_t last_seq_id;
2521 1.53 mjacob uint8_t seq_id_valid;
2522 1.53 mjacob uint16_t aborted_rx_id;
2523 1.53 mjacob uint16_t aborted_ox_id;
2524 1.53 mjacob uint16_t high_seq_cnt;
2525 1.53 mjacob uint16_t low_seq_cnt;
2526 1.53 mjacob uint8_t reserved2[4];
2527 1.53 mjacob } ba_acc;
2528 1.53 mjacob struct {
2529 1.53 mjacob uint8_t vendor_unique;
2530 1.53 mjacob uint8_t explanation;
2531 1.53 mjacob uint8_t reason;
2532 1.53 mjacob uint8_t reserved;
2533 1.53 mjacob uint8_t reserved2[12];
2534 1.53 mjacob } ba_rjt;
2535 1.53 mjacob struct {
2536 1.53 mjacob uint8_t reserved[8];
2537 1.53 mjacob uint32_t subcode1;
2538 1.53 mjacob uint32_t subcode2;
2539 1.53 mjacob } rsp;
2540 1.53 mjacob uint8_t reserved[16];
2541 1.53 mjacob } abts_rsp_payload;
2542 1.53 mjacob uint32_t abts_rsp_rxid_task;
2543 1.53 mjacob } abts_rsp_t;
2544 1.53 mjacob
2545 1.53 mjacob /* terminate this ABTS exchange */
2546 1.53 mjacob #define ISP24XX_ABTS_RSP_TERMINATE 0x01
2547 1.53 mjacob
2548 1.53 mjacob #define ISP24XX_ABTS_RSP_COMPLETE 0x00
2549 1.53 mjacob #define ISP24XX_ABTS_RSP_RESET 0x04
2550 1.53 mjacob #define ISP24XX_ABTS_RSP_ABORTED 0x05
2551 1.53 mjacob #define ISP24XX_ABTS_RSP_TIMEOUT 0x06
2552 1.53 mjacob #define ISP24XX_ABTS_RSP_INVXID 0x08
2553 1.53 mjacob #define ISP24XX_ABTS_RSP_LOGOUT 0x29
2554 1.53 mjacob #define ISP24XX_ABTS_RSP_SUBCODE 0x31
2555 1.53 mjacob
2556 1.53 mjacob #define ISP24XX_NO_TASK 0xffffffff
2557 1.53 mjacob
2558 1.53 mjacob /*
2559 1.53 mjacob * Miscellaneous
2560 1.53 mjacob *
2561 1.53 mjacob * These are the limits of the number of dma segments we
2562 1.53 mjacob * can deal with based not on the size of the segment counter
2563 1.53 mjacob * (which is 16 bits), but on the size of the number of
2564 1.53 mjacob * queue entries field (which is 8 bits). We assume no
2565 1.53 mjacob * segments in the first queue entry, so we can either
2566 1.53 mjacob * have 7 dma segments per continuation entry or 5
2567 1.53 mjacob * (for 64 bit dma).. multiplying out by 254....
2568 1.53 mjacob */
2569 1.53 mjacob #define ISP_NSEG_MAX 1778
2570 1.53 mjacob #define ISP_NSEG64_MAX 1270
2571 1.53 mjacob
2572 1.1 cgd #endif /* _ISPMBOX_H */
2573