mpt_mpilib.h revision 1.1 1 1.1 thorpej /* $NetBSD: mpt_mpilib.h,v 1.1 2003/04/16 22:03:00 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
5 1.1 thorpej *
6 1.1 thorpej * Redistribution and use in source and binary forms, with or without
7 1.1 thorpej * modification, are permitted provided that the following conditions
8 1.1 thorpej * are met:
9 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
10 1.1 thorpej * notice immediately at the beginning of the file, without modification,
11 1.1 thorpej * this list of conditions, and the following disclaimer.
12 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
13 1.1 thorpej * derived from this software without specific prior written permission.
14 1.1 thorpej *
15 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 1.1 thorpej * SUCH DAMAGE.
26 1.1 thorpej *
27 1.1 thorpej *
28 1.1 thorpej * Name: MPI_TYPE.H
29 1.1 thorpej * Title: MPI Basic type definitions
30 1.1 thorpej * Creation Date: June 6, 2000
31 1.1 thorpej *
32 1.1 thorpej * MPI Version: 01.02.01
33 1.1 thorpej *
34 1.1 thorpej * Version History
35 1.1 thorpej * ---------------
36 1.1 thorpej *
37 1.1 thorpej * Date Version Description
38 1.1 thorpej * -------- -------- ------------------------------------------------------
39 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
40 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
41 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work
42 1.1 thorpej * 02-20-01 01.01.02 Added define and ifdef for MPI_POINTER.
43 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
44 1.1 thorpej * --------------------------------------------------------------------------
45 1.1 thorpej */
46 1.1 thorpej
47 1.1 thorpej #ifndef MPI_TYPE_H
48 1.1 thorpej #define MPI_TYPE_H
49 1.1 thorpej
50 1.1 thorpej
51 1.1 thorpej /*******************************************************************************
52 1.1 thorpej * Define MPI_POINTER if it hasn't already been defined. By default MPI_POINTER
53 1.1 thorpej * is defined to be a near pointer. MPI_POINTER can be defined as a far pointer
54 1.1 thorpej * by defining MPI_POINTER as "far *" before this header file is included.
55 1.1 thorpej */
56 1.1 thorpej #ifndef MPI_POINTER
57 1.1 thorpej #define MPI_POINTER *
58 1.1 thorpej #endif
59 1.1 thorpej
60 1.1 thorpej
61 1.1 thorpej /*****************************************************************************
62 1.1 thorpej *
63 1.1 thorpej * B a s i c T y p e s
64 1.1 thorpej *
65 1.1 thorpej *****************************************************************************/
66 1.1 thorpej
67 1.1 thorpej typedef signed char S8;
68 1.1 thorpej typedef unsigned char U8;
69 1.1 thorpej typedef signed short S16;
70 1.1 thorpej typedef unsigned short U16;
71 1.1 thorpej
72 1.1 thorpej #if defined(unix) || defined(__arm) || defined(ALPHA) || defined(__GNUC__)
73 1.1 thorpej
74 1.1 thorpej typedef signed int S32;
75 1.1 thorpej typedef unsigned int U32;
76 1.1 thorpej
77 1.1 thorpej #else
78 1.1 thorpej
79 1.1 thorpej typedef signed long S32;
80 1.1 thorpej typedef unsigned long U32;
81 1.1 thorpej
82 1.1 thorpej #endif
83 1.1 thorpej
84 1.1 thorpej
85 1.1 thorpej typedef struct _S64
86 1.1 thorpej {
87 1.1 thorpej U32 Low;
88 1.1 thorpej S32 High;
89 1.1 thorpej } S64;
90 1.1 thorpej
91 1.1 thorpej typedef struct _U64
92 1.1 thorpej {
93 1.1 thorpej U32 Low;
94 1.1 thorpej U32 High;
95 1.1 thorpej } U64;
96 1.1 thorpej
97 1.1 thorpej
98 1.1 thorpej /****************************************************************************/
99 1.1 thorpej /* Pointers */
100 1.1 thorpej /****************************************************************************/
101 1.1 thorpej
102 1.1 thorpej typedef S8 *PS8;
103 1.1 thorpej typedef U8 *PU8;
104 1.1 thorpej typedef S16 *PS16;
105 1.1 thorpej typedef U16 *PU16;
106 1.1 thorpej typedef S32 *PS32;
107 1.1 thorpej typedef U32 *PU32;
108 1.1 thorpej typedef S64 *PS64;
109 1.1 thorpej typedef U64 *PU64;
110 1.1 thorpej
111 1.1 thorpej
112 1.1 thorpej #endif
113 1.1 thorpej
114 1.1 thorpej
115 1.1 thorpej /*
116 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
117 1.1 thorpej *
118 1.1 thorpej * Redistribution and use in source and binary forms, with or without
119 1.1 thorpej * modification, are permitted provided that the following conditions
120 1.1 thorpej * are met:
121 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
122 1.1 thorpej * notice immediately at the beginning of the file, without modification,
123 1.1 thorpej * this list of conditions, and the following disclaimer.
124 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
125 1.1 thorpej * derived from this software without specific prior written permission.
126 1.1 thorpej *
127 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
128 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
129 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
130 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
131 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
132 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
133 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
134 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
135 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
136 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
137 1.1 thorpej * SUCH DAMAGE.
138 1.1 thorpej *
139 1.1 thorpej *
140 1.1 thorpej * Name: MPI.H
141 1.1 thorpej * Title: MPI Message independent structures and definitions
142 1.1 thorpej * Creation Date: July 27, 2000
143 1.1 thorpej *
144 1.1 thorpej * MPI Version: 01.02.03
145 1.1 thorpej *
146 1.1 thorpej * Version History
147 1.1 thorpej * ---------------
148 1.1 thorpej *
149 1.1 thorpej * Date Version Description
150 1.1 thorpej * -------- -------- ------------------------------------------------------
151 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
152 1.1 thorpej * 05-24-00 00.10.02 Added MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH definition.
153 1.1 thorpej * 06-06-00 01.00.01 Update MPI_VERSION_MAJOR and MPI_VERSION_MINOR.
154 1.1 thorpej * 06-22-00 01.00.02 Added MPI_IOCSTATUS_LAN_ definitions.
155 1.1 thorpej * Removed LAN_SUSPEND function definition.
156 1.1 thorpej * Added MPI_MSGFLAGS_CONTINUATION_REPLY definition.
157 1.1 thorpej * 06-30-00 01.00.03 Added MPI_CONTEXT_REPLY_TYPE_LAN definition.
158 1.1 thorpej * Added MPI_GET/SET_CONTEXT_REPLY_TYPE macros.
159 1.1 thorpej * 07-27-00 01.00.04 Added MPI_FAULT_ definitions.
160 1.1 thorpej * Removed MPI_IOCSTATUS_MSG/DATA_XFER_ERROR definitions.
161 1.1 thorpej * Added MPI_IOCSTATUS_INTERNAL_ERROR definition.
162 1.1 thorpej * Added MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH.
163 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work.
164 1.1 thorpej * 12-04-00 01.01.02 Added new function codes.
165 1.1 thorpej * 01-09-01 01.01.03 Added more definitions to the system interface section
166 1.1 thorpej * Added MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT.
167 1.1 thorpej * 01-25-01 01.01.04 Changed MPI_VERSION_MINOR from 0x00 to 0x01.
168 1.1 thorpej * 02-20-01 01.01.05 Started using MPI_POINTER.
169 1.1 thorpej * Fixed value for MPI_DIAG_RW_ENABLE.
170 1.1 thorpej * Added defines for MPI_DIAG_PREVENT_IOC_BOOT and
171 1.1 thorpej * MPI_DIAG_CLEAR_FLASH_BAD_SIG.
172 1.1 thorpej * Obsoleted MPI_IOCSTATUS_TARGET_FC_ defines.
173 1.1 thorpej * 02-27-01 01.01.06 Removed MPI_HOST_INDEX_REGISTER define.
174 1.1 thorpej * Added function codes for RAID.
175 1.1 thorpej * 04-09-01 01.01.07 Added alternate define for MPI_DOORBELL_ACTIVE,
176 1.1 thorpej * MPI_DOORBELL_USED, to better match the spec.
177 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
178 1.1 thorpej * Changed MPI_VERSION_MINOR from 0x01 to 0x02.
179 1.1 thorpej * Added define MPI_FUNCTION_TOOLBOX.
180 1.1 thorpej * 09-28-01 01.02.02 New function code MPI_SCSI_ENCLOSURE_PROCESSOR.
181 1.1 thorpej * 11-01-01 01.02.03 Changed name to MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR.
182 1.1 thorpej * --------------------------------------------------------------------------
183 1.1 thorpej */
184 1.1 thorpej
185 1.1 thorpej #ifndef MPI_H
186 1.1 thorpej #define MPI_H
187 1.1 thorpej
188 1.1 thorpej
189 1.1 thorpej /*****************************************************************************
190 1.1 thorpej *
191 1.1 thorpej * M P I V e r s i o n D e f i n i t i o n s
192 1.1 thorpej *
193 1.1 thorpej *****************************************************************************/
194 1.1 thorpej
195 1.1 thorpej #define MPI_VERSION_MAJOR (0x01)
196 1.1 thorpej #define MPI_VERSION_MINOR (0x02)
197 1.1 thorpej #define MPI_VERSION ((MPI_VERSION_MAJOR << 8) | MPI_VERSION_MINOR)
198 1.1 thorpej
199 1.1 thorpej /* Note: The major versions of 0xe0 through 0xff are reserved */
200 1.1 thorpej
201 1.1 thorpej /*****************************************************************************
202 1.1 thorpej *
203 1.1 thorpej * I O C S t a t e D e f i n i t i o n s
204 1.1 thorpej *
205 1.1 thorpej *****************************************************************************/
206 1.1 thorpej
207 1.1 thorpej #define MPI_IOC_STATE_RESET (0x00000000)
208 1.1 thorpej #define MPI_IOC_STATE_READY (0x10000000)
209 1.1 thorpej #define MPI_IOC_STATE_OPERATIONAL (0x20000000)
210 1.1 thorpej #define MPI_IOC_STATE_FAULT (0x40000000)
211 1.1 thorpej
212 1.1 thorpej #define MPI_IOC_STATE_MASK (0xF0000000)
213 1.1 thorpej #define MPI_IOC_STATE_SHIFT (28)
214 1.1 thorpej
215 1.1 thorpej /* Fault state codes (product independent range 0x8000-0xFFFF) */
216 1.1 thorpej
217 1.1 thorpej #define MPI_FAULT_REQUEST_MESSAGE_PCI_PARITY_ERROR (0x8111)
218 1.1 thorpej #define MPI_FAULT_REQUEST_MESSAGE_PCI_BUS_FAULT (0x8112)
219 1.1 thorpej #define MPI_FAULT_REPLY_MESSAGE_PCI_PARITY_ERROR (0x8113)
220 1.1 thorpej #define MPI_FAULT_REPLY_MESSAGE_PCI_BUS_FAULT (0x8114)
221 1.1 thorpej #define MPI_FAULT_DATA_SEND_PCI_PARITY_ERROR (0x8115)
222 1.1 thorpej #define MPI_FAULT_DATA_SEND_PCI_BUS_FAULT (0x8116)
223 1.1 thorpej #define MPI_FAULT_DATA_RECEIVE_PCI_PARITY_ERROR (0x8117)
224 1.1 thorpej #define MPI_FAULT_DATA_RECEIVE_PCI_BUS_FAULT (0x8118)
225 1.1 thorpej
226 1.1 thorpej
227 1.1 thorpej /*****************************************************************************
228 1.1 thorpej *
229 1.1 thorpej * P C I S y s t e m I n t e r f a c e R e g i s t e r s
230 1.1 thorpej *
231 1.1 thorpej *****************************************************************************/
232 1.1 thorpej
233 1.1 thorpej /* S y s t e m D o o r b e l l */
234 1.1 thorpej #define MPI_DOORBELL_OFFSET (0x00000000)
235 1.1 thorpej #define MPI_DOORBELL_ACTIVE (0x08000000) /* DoorbellUsed */
236 1.1 thorpej #define MPI_DOORBELL_USED (MPI_DOORBELL_ACTIVE)
237 1.1 thorpej #define MPI_DOORBELL_ACTIVE_SHIFT (27)
238 1.1 thorpej #define MPI_DOORBELL_WHO_INIT_MASK (0x07000000)
239 1.1 thorpej #define MPI_DOORBELL_WHO_INIT_SHIFT (24)
240 1.1 thorpej #define MPI_DOORBELL_FUNCTION_MASK (0xFF000000)
241 1.1 thorpej #define MPI_DOORBELL_FUNCTION_SHIFT (24)
242 1.1 thorpej #define MPI_DOORBELL_ADD_DWORDS_MASK (0x00FF0000)
243 1.1 thorpej #define MPI_DOORBELL_ADD_DWORDS_SHIFT (16)
244 1.1 thorpej #define MPI_DOORBELL_DATA_MASK (0x0000FFFF)
245 1.1 thorpej
246 1.1 thorpej
247 1.1 thorpej #define MPI_WRITE_SEQUENCE_OFFSET (0x00000004)
248 1.1 thorpej #define MPI_WRSEQ_KEY_VALUE_MASK (0x0000000F)
249 1.1 thorpej #define MPI_WRSEQ_1ST_KEY_VALUE (0x04)
250 1.1 thorpej #define MPI_WRSEQ_2ND_KEY_VALUE (0x0B)
251 1.1 thorpej #define MPI_WRSEQ_3RD_KEY_VALUE (0x02)
252 1.1 thorpej #define MPI_WRSEQ_4TH_KEY_VALUE (0x07)
253 1.1 thorpej #define MPI_WRSEQ_5TH_KEY_VALUE (0x0D)
254 1.1 thorpej
255 1.1 thorpej #define MPI_DIAGNOSTIC_OFFSET (0x00000008)
256 1.1 thorpej #define MPI_DIAG_CLEAR_FLASH_BAD_SIG (0x00000400)
257 1.1 thorpej #define MPI_DIAG_PREVENT_IOC_BOOT (0x00000200)
258 1.1 thorpej #define MPI_DIAG_DRWE (0x00000080)
259 1.1 thorpej #define MPI_DIAG_FLASH_BAD_SIG (0x00000040)
260 1.1 thorpej #define MPI_DIAG_RESET_HISTORY (0x00000020)
261 1.1 thorpej #define MPI_DIAG_RW_ENABLE (0x00000010)
262 1.1 thorpej #define MPI_DIAG_RESET_ADAPTER (0x00000004)
263 1.1 thorpej #define MPI_DIAG_DISABLE_ARM (0x00000002)
264 1.1 thorpej #define MPI_DIAG_MEM_ENABLE (0x00000001)
265 1.1 thorpej
266 1.1 thorpej #define MPI_TEST_BASE_ADDRESS_OFFSET (0x0000000C)
267 1.1 thorpej
268 1.1 thorpej #define MPI_DIAG_RW_DATA_OFFSET (0x00000010)
269 1.1 thorpej
270 1.1 thorpej #define MPI_DIAG_RW_ADDRESS_OFFSET (0x00000014)
271 1.1 thorpej
272 1.1 thorpej #define MPI_HOST_INTERRUPT_STATUS_OFFSET (0x00000030)
273 1.1 thorpej #define MPI_HIS_IOP_DOORBELL_STATUS (0x80000000)
274 1.1 thorpej #define MPI_HIS_REPLY_MESSAGE_INTERRUPT (0x00000008)
275 1.1 thorpej #define MPI_HIS_DOORBELL_INTERRUPT (0x00000001)
276 1.1 thorpej
277 1.1 thorpej #define MPI_HOST_INTERRUPT_MASK_OFFSET (0x00000034)
278 1.1 thorpej #define MPI_HIM_RIM (0x00000008)
279 1.1 thorpej #define MPI_HIM_DIM (0x00000001)
280 1.1 thorpej
281 1.1 thorpej #define MPI_REQUEST_QUEUE_OFFSET (0x00000040)
282 1.1 thorpej #define MPI_REQUEST_POST_FIFO_OFFSET (0x00000040)
283 1.1 thorpej
284 1.1 thorpej #define MPI_REPLY_QUEUE_OFFSET (0x00000044)
285 1.1 thorpej #define MPI_REPLY_POST_FIFO_OFFSET (0x00000044)
286 1.1 thorpej #define MPI_REPLY_FREE_FIFO_OFFSET (0x00000044)
287 1.1 thorpej
288 1.1 thorpej
289 1.1 thorpej
290 1.1 thorpej /*****************************************************************************
291 1.1 thorpej *
292 1.1 thorpej * M e s s a g e F r a m e D e s c r i p t o r s
293 1.1 thorpej *
294 1.1 thorpej *****************************************************************************/
295 1.1 thorpej
296 1.1 thorpej #define MPI_REQ_MF_DESCRIPTOR_NB_MASK (0x00000003)
297 1.1 thorpej #define MPI_REQ_MF_DESCRIPTOR_F_BIT (0x00000004)
298 1.1 thorpej #define MPI_REQ_MF_DESCRIPTOR_ADDRESS_MASK (0xFFFFFFF8)
299 1.1 thorpej
300 1.1 thorpej #define MPI_ADDRESS_REPLY_A_BIT (0x80000000)
301 1.1 thorpej #define MPI_ADDRESS_REPLY_ADDRESS_MASK (0x7FFFFFFF)
302 1.1 thorpej
303 1.1 thorpej #define MPI_CONTEXT_REPLY_A_BIT (0x80000000)
304 1.1 thorpej #define MPI_CONTEXT_REPLY_TYPE_MASK (0x60000000)
305 1.1 thorpej #define MPI_CONTEXT_REPLY_TYPE_SCSI_INIT (0x00)
306 1.1 thorpej #define MPI_CONTEXT_REPLY_TYPE_SCSI_TARGET (0x01)
307 1.1 thorpej #define MPI_CONTEXT_REPLY_TYPE_LAN (0x02)
308 1.1 thorpej #define MPI_CONTEXT_REPLY_TYPE_SHIFT (29)
309 1.1 thorpej #define MPI_CONTEXT_REPLY_CONTEXT_MASK (0x1FFFFFFF)
310 1.1 thorpej
311 1.1 thorpej
312 1.1 thorpej /****************************************************************************/
313 1.1 thorpej /* Context Reply macros */
314 1.1 thorpej /****************************************************************************/
315 1.1 thorpej
316 1.1 thorpej #define MPI_GET_CONTEXT_REPLY_TYPE(x) (((x) & MPI_CONTEXT_REPLY_TYPE_MASK) \
317 1.1 thorpej >> MPI_CONTEXT_REPLY_TYPE_SHIFT)
318 1.1 thorpej
319 1.1 thorpej #define MPI_SET_CONTEXT_REPLY_TYPE(x, typ) \
320 1.1 thorpej ((x) = ((x) & ~MPI_CONTEXT_REPLY_TYPE_MASK) | \
321 1.1 thorpej (((typ) << MPI_CONTEXT_REPLY_TYPE_SHIFT) & \
322 1.1 thorpej MPI_CONTEXT_REPLY_TYPE_MASK))
323 1.1 thorpej
324 1.1 thorpej
325 1.1 thorpej /*****************************************************************************
326 1.1 thorpej *
327 1.1 thorpej * M e s s a g e F u n c t i o n s
328 1.1 thorpej * 0x80 -> 0x8F reserved for private message use per product
329 1.1 thorpej *
330 1.1 thorpej *
331 1.1 thorpej *****************************************************************************/
332 1.1 thorpej
333 1.1 thorpej #define MPI_FUNCTION_SCSI_IO_REQUEST (0x00)
334 1.1 thorpej #define MPI_FUNCTION_SCSI_TASK_MGMT (0x01)
335 1.1 thorpej #define MPI_FUNCTION_IOC_INIT (0x02)
336 1.1 thorpej #define MPI_FUNCTION_IOC_FACTS (0x03)
337 1.1 thorpej #define MPI_FUNCTION_CONFIG (0x04)
338 1.1 thorpej #define MPI_FUNCTION_PORT_FACTS (0x05)
339 1.1 thorpej #define MPI_FUNCTION_PORT_ENABLE (0x06)
340 1.1 thorpej #define MPI_FUNCTION_EVENT_NOTIFICATION (0x07)
341 1.1 thorpej #define MPI_FUNCTION_EVENT_ACK (0x08)
342 1.1 thorpej #define MPI_FUNCTION_FW_DOWNLOAD (0x09)
343 1.1 thorpej #define MPI_FUNCTION_TARGET_CMD_BUFFER_POST (0x0A)
344 1.1 thorpej #define MPI_FUNCTION_TARGET_ASSIST (0x0B)
345 1.1 thorpej #define MPI_FUNCTION_TARGET_STATUS_SEND (0x0C)
346 1.1 thorpej #define MPI_FUNCTION_TARGET_MODE_ABORT (0x0D)
347 1.1 thorpej #define MPI_FUNCTION_TARGET_FC_BUF_POST_LINK_SRVC (0x0E) /* obsolete name */
348 1.1 thorpej #define MPI_FUNCTION_TARGET_FC_RSP_LINK_SRVC (0x0F) /* obsolete name */
349 1.1 thorpej #define MPI_FUNCTION_TARGET_FC_EX_SEND_LINK_SRVC (0x10) /* obsolete name */
350 1.1 thorpej #define MPI_FUNCTION_TARGET_FC_ABORT (0x11) /* obsolete name */
351 1.1 thorpej #define MPI_FUNCTION_FC_LINK_SRVC_BUF_POST (0x0E)
352 1.1 thorpej #define MPI_FUNCTION_FC_LINK_SRVC_RSP (0x0F)
353 1.1 thorpej #define MPI_FUNCTION_FC_EX_LINK_SRVC_SEND (0x10)
354 1.1 thorpej #define MPI_FUNCTION_FC_ABORT (0x11)
355 1.1 thorpej #define MPI_FUNCTION_FW_UPLOAD (0x12)
356 1.1 thorpej #define MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND (0x13)
357 1.1 thorpej #define MPI_FUNCTION_FC_PRIMITIVE_SEND (0x14)
358 1.1 thorpej
359 1.1 thorpej #define MPI_FUNCTION_RAID_ACTION (0x15)
360 1.1 thorpej #define MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH (0x16)
361 1.1 thorpej
362 1.1 thorpej #define MPI_FUNCTION_TOOLBOX (0x17)
363 1.1 thorpej
364 1.1 thorpej #define MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR (0x18)
365 1.1 thorpej
366 1.1 thorpej #define MPI_FUNCTION_LAN_SEND (0x20)
367 1.1 thorpej #define MPI_FUNCTION_LAN_RECEIVE (0x21)
368 1.1 thorpej #define MPI_FUNCTION_LAN_RESET (0x22)
369 1.1 thorpej
370 1.1 thorpej #define MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET (0x40)
371 1.1 thorpej #define MPI_FUNCTION_IO_UNIT_RESET (0x41)
372 1.1 thorpej #define MPI_FUNCTION_HANDSHAKE (0x42)
373 1.1 thorpej #define MPI_FUNCTION_REPLY_FRAME_REMOVAL (0x43)
374 1.1 thorpej
375 1.1 thorpej
376 1.1 thorpej
377 1.1 thorpej /*****************************************************************************
378 1.1 thorpej *
379 1.1 thorpej * S c a t t e r G a t h e r E l e m e n t s
380 1.1 thorpej *
381 1.1 thorpej *****************************************************************************/
382 1.1 thorpej
383 1.1 thorpej /****************************************************************************/
384 1.1 thorpej /* Simple element structures */
385 1.1 thorpej /****************************************************************************/
386 1.1 thorpej
387 1.1 thorpej typedef struct _SGE_SIMPLE32
388 1.1 thorpej {
389 1.1 thorpej U32 FlagsLength;
390 1.1 thorpej U32 Address;
391 1.1 thorpej } SGE_SIMPLE32, MPI_POINTER PTR_SGE_SIMPLE32,
392 1.1 thorpej SGESimple32_t, MPI_POINTER pSGESimple32_t;
393 1.1 thorpej
394 1.1 thorpej typedef struct _SGE_SIMPLE64
395 1.1 thorpej {
396 1.1 thorpej U32 FlagsLength;
397 1.1 thorpej U64 Address;
398 1.1 thorpej } SGE_SIMPLE64, MPI_POINTER PTR_SGE_SIMPLE64,
399 1.1 thorpej SGESimple64_t, MPI_POINTER pSGESimple64_t;
400 1.1 thorpej
401 1.1 thorpej typedef struct _SGE_SIMPLE_UNION
402 1.1 thorpej {
403 1.1 thorpej U32 FlagsLength;
404 1.1 thorpej union
405 1.1 thorpej {
406 1.1 thorpej U32 Address32;
407 1.1 thorpej U64 Address64;
408 1.1 thorpej } _u;
409 1.1 thorpej } SGESimpleUnion_t, MPI_POINTER pSGESimpleUnion_t,
410 1.1 thorpej SGE_SIMPLE_UNION, MPI_POINTER PTR_SGE_SIMPLE_UNION;
411 1.1 thorpej
412 1.1 thorpej /****************************************************************************/
413 1.1 thorpej /* Chain element structures */
414 1.1 thorpej /****************************************************************************/
415 1.1 thorpej
416 1.1 thorpej typedef struct _SGE_CHAIN32
417 1.1 thorpej {
418 1.1 thorpej U16 Length;
419 1.1 thorpej U8 NextChainOffset;
420 1.1 thorpej U8 Flags;
421 1.1 thorpej U32 Address;
422 1.1 thorpej } SGE_CHAIN32, MPI_POINTER PTR_SGE_CHAIN32,
423 1.1 thorpej SGEChain32_t, MPI_POINTER pSGEChain32_t;
424 1.1 thorpej
425 1.1 thorpej typedef struct _SGE_CHAIN64
426 1.1 thorpej {
427 1.1 thorpej U16 Length;
428 1.1 thorpej U8 NextChainOffset;
429 1.1 thorpej U8 Flags;
430 1.1 thorpej U64 Address;
431 1.1 thorpej } SGE_CHAIN64, MPI_POINTER PTR_SGE_CHAIN64,
432 1.1 thorpej SGEChain64_t, MPI_POINTER pSGEChain64_t;
433 1.1 thorpej
434 1.1 thorpej typedef struct _SGE_CHAIN_UNION
435 1.1 thorpej {
436 1.1 thorpej U16 Length;
437 1.1 thorpej U8 NextChainOffset;
438 1.1 thorpej U8 Flags;
439 1.1 thorpej union
440 1.1 thorpej {
441 1.1 thorpej U32 Address32;
442 1.1 thorpej U64 Address64;
443 1.1 thorpej } _u;
444 1.1 thorpej } SGE_CHAIN_UNION, MPI_POINTER PTR_SGE_CHAIN_UNION,
445 1.1 thorpej SGEChainUnion_t, MPI_POINTER pSGEChainUnion_t;
446 1.1 thorpej
447 1.1 thorpej /****************************************************************************/
448 1.1 thorpej /* Transaction Context element */
449 1.1 thorpej /****************************************************************************/
450 1.1 thorpej
451 1.1 thorpej typedef struct _SGE_TRANSACTION32
452 1.1 thorpej {
453 1.1 thorpej U8 Reserved;
454 1.1 thorpej U8 ContextSize;
455 1.1 thorpej U8 DetailsLength;
456 1.1 thorpej U8 Flags;
457 1.1 thorpej U32 TransactionContext[1];
458 1.1 thorpej U32 TransactionDetails[1];
459 1.1 thorpej } SGE_TRANSACTION32, MPI_POINTER PTR_SGE_TRANSACTION32,
460 1.1 thorpej SGETransaction32_t, MPI_POINTER pSGETransaction32_t;
461 1.1 thorpej
462 1.1 thorpej typedef struct _SGE_TRANSACTION64
463 1.1 thorpej {
464 1.1 thorpej U8 Reserved;
465 1.1 thorpej U8 ContextSize;
466 1.1 thorpej U8 DetailsLength;
467 1.1 thorpej U8 Flags;
468 1.1 thorpej U32 TransactionContext[2];
469 1.1 thorpej U32 TransactionDetails[1];
470 1.1 thorpej } SGE_TRANSACTION64, MPI_POINTER PTR_SGE_TRANSACTION64,
471 1.1 thorpej SGETransaction64_t, MPI_POINTER pSGETransaction64_t;
472 1.1 thorpej
473 1.1 thorpej typedef struct _SGE_TRANSACTION96
474 1.1 thorpej {
475 1.1 thorpej U8 Reserved;
476 1.1 thorpej U8 ContextSize;
477 1.1 thorpej U8 DetailsLength;
478 1.1 thorpej U8 Flags;
479 1.1 thorpej U32 TransactionContext[3];
480 1.1 thorpej U32 TransactionDetails[1];
481 1.1 thorpej } SGE_TRANSACTION96, MPI_POINTER PTR_SGE_TRANSACTION96,
482 1.1 thorpej SGETransaction96_t, MPI_POINTER pSGETransaction96_t;
483 1.1 thorpej
484 1.1 thorpej typedef struct _SGE_TRANSACTION128
485 1.1 thorpej {
486 1.1 thorpej U8 Reserved;
487 1.1 thorpej U8 ContextSize;
488 1.1 thorpej U8 DetailsLength;
489 1.1 thorpej U8 Flags;
490 1.1 thorpej U32 TransactionContext[4];
491 1.1 thorpej U32 TransactionDetails[1];
492 1.1 thorpej } SGE_TRANSACTION128, MPI_POINTER PTR_SGE_TRANSACTION128,
493 1.1 thorpej SGETransaction_t128, MPI_POINTER pSGETransaction_t128;
494 1.1 thorpej
495 1.1 thorpej typedef struct _SGE_TRANSACTION_UNION
496 1.1 thorpej {
497 1.1 thorpej U8 Reserved;
498 1.1 thorpej U8 ContextSize;
499 1.1 thorpej U8 DetailsLength;
500 1.1 thorpej U8 Flags;
501 1.1 thorpej union
502 1.1 thorpej {
503 1.1 thorpej U32 TransactionContext32[1];
504 1.1 thorpej U32 TransactionContext64[2];
505 1.1 thorpej U32 TransactionContext96[3];
506 1.1 thorpej U32 TransactionContext128[4];
507 1.1 thorpej } _u;
508 1.1 thorpej U32 TransactionDetails[1];
509 1.1 thorpej } SGE_TRANSACTION_UNION, MPI_POINTER PTR_SGE_TRANSACTION_UNION,
510 1.1 thorpej SGETransactionUnion_t, MPI_POINTER pSGETransactionUnion_t;
511 1.1 thorpej
512 1.1 thorpej
513 1.1 thorpej /****************************************************************************/
514 1.1 thorpej /* SGE IO types union for IO SGL's */
515 1.1 thorpej /****************************************************************************/
516 1.1 thorpej
517 1.1 thorpej typedef struct _SGE_IO_UNION
518 1.1 thorpej {
519 1.1 thorpej union
520 1.1 thorpej {
521 1.1 thorpej SGE_SIMPLE_UNION Simple;
522 1.1 thorpej SGE_CHAIN_UNION Chain;
523 1.1 thorpej } _u;
524 1.1 thorpej } SGE_IO_UNION, MPI_POINTER PTR_SGE_IO_UNION,
525 1.1 thorpej SGEIOUnion_t, MPI_POINTER pSGEIOUnion_t;
526 1.1 thorpej
527 1.1 thorpej /****************************************************************************/
528 1.1 thorpej /* SGE union for SGL's with Simple and Transaction elements */
529 1.1 thorpej /****************************************************************************/
530 1.1 thorpej
531 1.1 thorpej typedef struct _SGE_TRANS_SIMPLE_UNION
532 1.1 thorpej {
533 1.1 thorpej union
534 1.1 thorpej {
535 1.1 thorpej SGE_SIMPLE_UNION Simple;
536 1.1 thorpej SGE_TRANSACTION_UNION Transaction;
537 1.1 thorpej } _u;
538 1.1 thorpej } SGE_TRANS_SIMPLE_UNION, MPI_POINTER PTR_SGE_TRANS_SIMPLE_UNION,
539 1.1 thorpej SGETransSimpleUnion_t, MPI_POINTER pSGETransSimpleUnion_t;
540 1.1 thorpej
541 1.1 thorpej /****************************************************************************/
542 1.1 thorpej /* All SGE types union */
543 1.1 thorpej /****************************************************************************/
544 1.1 thorpej
545 1.1 thorpej typedef struct _SGE_MPI_UNION
546 1.1 thorpej {
547 1.1 thorpej union
548 1.1 thorpej {
549 1.1 thorpej SGE_SIMPLE_UNION Simple;
550 1.1 thorpej SGE_CHAIN_UNION Chain;
551 1.1 thorpej SGE_TRANSACTION_UNION Transaction;
552 1.1 thorpej } _u;
553 1.1 thorpej } SGE_MPI_UNION, MPI_POINTER PTR_SGE_MPI_UNION,
554 1.1 thorpej MPI_SGE_UNION_t, MPI_POINTER pMPI_SGE_UNION_t,
555 1.1 thorpej SGEAllUnion_t, MPI_POINTER pSGEAllUnion_t;
556 1.1 thorpej
557 1.1 thorpej
558 1.1 thorpej /****************************************************************************/
559 1.1 thorpej /* SGE field definition and masks */
560 1.1 thorpej /****************************************************************************/
561 1.1 thorpej
562 1.1 thorpej /* Flags field bit definitions */
563 1.1 thorpej
564 1.1 thorpej #define MPI_SGE_FLAGS_LAST_ELEMENT (0x80)
565 1.1 thorpej #define MPI_SGE_FLAGS_END_OF_BUFFER (0x40)
566 1.1 thorpej #define MPI_SGE_FLAGS_ELEMENT_TYPE_MASK (0x30)
567 1.1 thorpej #define MPI_SGE_FLAGS_LOCAL_ADDRESS (0x08)
568 1.1 thorpej #define MPI_SGE_FLAGS_DIRECTION (0x04)
569 1.1 thorpej #define MPI_SGE_FLAGS_ADDRESS_SIZE (0x02)
570 1.1 thorpej #define MPI_SGE_FLAGS_END_OF_LIST (0x01)
571 1.1 thorpej
572 1.1 thorpej #define MPI_SGE_FLAGS_SHIFT (24)
573 1.1 thorpej
574 1.1 thorpej #define MPI_SGE_LENGTH_MASK (0x00FFFFFF)
575 1.1 thorpej #define MPI_SGE_CHAIN_LENGTH_MASK (0x0000FFFF)
576 1.1 thorpej
577 1.1 thorpej /* Element Type */
578 1.1 thorpej
579 1.1 thorpej #define MPI_SGE_FLAGS_TRANSACTION_ELEMENT (0x00)
580 1.1 thorpej #define MPI_SGE_FLAGS_SIMPLE_ELEMENT (0x10)
581 1.1 thorpej #define MPI_SGE_FLAGS_CHAIN_ELEMENT (0x30)
582 1.1 thorpej #define MPI_SGE_FLAGS_ELEMENT_MASK (0x30)
583 1.1 thorpej
584 1.1 thorpej /* Address location */
585 1.1 thorpej
586 1.1 thorpej #define MPI_SGE_FLAGS_SYSTEM_ADDRESS (0x00)
587 1.1 thorpej
588 1.1 thorpej /* Direction */
589 1.1 thorpej
590 1.1 thorpej #define MPI_SGE_FLAGS_IOC_TO_HOST (0x00)
591 1.1 thorpej #define MPI_SGE_FLAGS_HOST_TO_IOC (0x04)
592 1.1 thorpej
593 1.1 thorpej /* Address Size */
594 1.1 thorpej
595 1.1 thorpej #define MPI_SGE_FLAGS_32_BIT_ADDRESSING (0x00)
596 1.1 thorpej #define MPI_SGE_FLAGS_64_BIT_ADDRESSING (0x02)
597 1.1 thorpej
598 1.1 thorpej /* Context Size */
599 1.1 thorpej
600 1.1 thorpej #define MPI_SGE_FLAGS_32_BIT_CONTEXT (0x00)
601 1.1 thorpej #define MPI_SGE_FLAGS_64_BIT_CONTEXT (0x02)
602 1.1 thorpej #define MPI_SGE_FLAGS_96_BIT_CONTEXT (0x04)
603 1.1 thorpej #define MPI_SGE_FLAGS_128_BIT_CONTEXT (0x06)
604 1.1 thorpej
605 1.1 thorpej #define MPI_SGE_CHAIN_OFFSET_MASK (0x00FF0000)
606 1.1 thorpej #define MPI_SGE_CHAIN_OFFSET_SHIFT (16)
607 1.1 thorpej
608 1.1 thorpej
609 1.1 thorpej /****************************************************************************/
610 1.1 thorpej /* SGE operation Macros */
611 1.1 thorpej /****************************************************************************/
612 1.1 thorpej
613 1.1 thorpej /* SIMPLE FlagsLength manipulations... */
614 1.1 thorpej #define MPI_SGE_SET_FLAGS(f) ((U32)(f) << MPI_SGE_FLAGS_SHIFT)
615 1.1 thorpej #define MPI_SGE_GET_FLAGS(fl) (((fl) & ~MPI_SGE_LENGTH_MASK) >> MPI_SGE_FLAGS_SHIFT)
616 1.1 thorpej #define MPI_SGE_LENGTH(fl) ((fl) & MPI_SGE_LENGTH_MASK)
617 1.1 thorpej #define MPI_SGE_CHAIN_LENGTH(fl) ((fl) & MPI_SGE_CHAIN_LENGTH_MASK)
618 1.1 thorpej
619 1.1 thorpej #define MPI_SGE_SET_FLAGS_LENGTH(f,l) (MPI_SGE_SET_FLAGS(f) | MPI_SGE_LENGTH(l))
620 1.1 thorpej
621 1.1 thorpej #define MPI_pSGE_GET_FLAGS(psg) MPI_SGE_GET_FLAGS((psg)->FlagsLength)
622 1.1 thorpej #define MPI_pSGE_GET_LENGTH(psg) MPI_SGE_LENGTH((psg)->FlagsLength)
623 1.1 thorpej #define MPI_pSGE_SET_FLAGS_LENGTH(psg,f,l) (psg)->FlagsLength = MPI_SGE_SET_FLAGS_LENGTH(f,l)
624 1.1 thorpej /* CAUTION - The following are READ-MODIFY-WRITE! */
625 1.1 thorpej #define MPI_pSGE_SET_FLAGS(psg,f) (psg)->FlagsLength |= MPI_SGE_SET_FLAGS(f)
626 1.1 thorpej #define MPI_pSGE_SET_LENGTH(psg,l) (psg)->FlagsLength |= MPI_SGE_LENGTH(l)
627 1.1 thorpej
628 1.1 thorpej #define MPI_GET_CHAIN_OFFSET(x) ((x&MPI_SGE_CHAIN_OFFSET_MASK)>>MPI_SGE_CHAIN_OFFSET_SHIFT)
629 1.1 thorpej
630 1.1 thorpej
631 1.1 thorpej
632 1.1 thorpej /*****************************************************************************
633 1.1 thorpej *
634 1.1 thorpej * S t a n d a r d M e s s a g e S t r u c t u r e s
635 1.1 thorpej *
636 1.1 thorpej *****************************************************************************/
637 1.1 thorpej
638 1.1 thorpej /****************************************************************************/
639 1.1 thorpej /* Standard message request header for all request messages */
640 1.1 thorpej /****************************************************************************/
641 1.1 thorpej
642 1.1 thorpej typedef struct _MSG_REQUEST_HEADER
643 1.1 thorpej {
644 1.1 thorpej U8 Reserved[2]; /* function specific */
645 1.1 thorpej U8 ChainOffset;
646 1.1 thorpej U8 Function;
647 1.1 thorpej U8 Reserved1[3]; /* function specific */
648 1.1 thorpej U8 MsgFlags;
649 1.1 thorpej U32 MsgContext;
650 1.1 thorpej } MSG_REQUEST_HEADER, MPI_POINTER PTR_MSG_REQUEST_HEADER,
651 1.1 thorpej MPIHeader_t, MPI_POINTER pMPIHeader_t;
652 1.1 thorpej
653 1.1 thorpej
654 1.1 thorpej /****************************************************************************/
655 1.1 thorpej /* Default Reply */
656 1.1 thorpej /****************************************************************************/
657 1.1 thorpej
658 1.1 thorpej typedef struct _MSG_DEFAULT_REPLY
659 1.1 thorpej {
660 1.1 thorpej U8 Reserved[2]; /* function specific */
661 1.1 thorpej U8 MsgLength;
662 1.1 thorpej U8 Function;
663 1.1 thorpej U8 Reserved1[3]; /* function specific */
664 1.1 thorpej U8 MsgFlags;
665 1.1 thorpej U32 MsgContext;
666 1.1 thorpej U8 Reserved2[2]; /* function specific */
667 1.1 thorpej U16 IOCStatus;
668 1.1 thorpej U32 IOCLogInfo;
669 1.1 thorpej } MSG_DEFAULT_REPLY, MPI_POINTER PTR_MSG_DEFAULT_REPLY,
670 1.1 thorpej MPIDefaultReply_t, MPI_POINTER pMPIDefaultReply_t;
671 1.1 thorpej
672 1.1 thorpej
673 1.1 thorpej /* MsgFlags definition for all replies */
674 1.1 thorpej
675 1.1 thorpej #define MPI_MSGFLAGS_CONTINUATION_REPLY (0x80)
676 1.1 thorpej
677 1.1 thorpej
678 1.1 thorpej /*****************************************************************************
679 1.1 thorpej *
680 1.1 thorpej * I O C S t a t u s V a l u e s
681 1.1 thorpej *
682 1.1 thorpej *****************************************************************************/
683 1.1 thorpej
684 1.1 thorpej /****************************************************************************/
685 1.1 thorpej /* Common IOCStatus values for all replies */
686 1.1 thorpej /****************************************************************************/
687 1.1 thorpej
688 1.1 thorpej #define MPI_IOCSTATUS_SUCCESS (0x0000)
689 1.1 thorpej #define MPI_IOCSTATUS_INVALID_FUNCTION (0x0001)
690 1.1 thorpej #define MPI_IOCSTATUS_BUSY (0x0002)
691 1.1 thorpej #define MPI_IOCSTATUS_INVALID_SGL (0x0003)
692 1.1 thorpej #define MPI_IOCSTATUS_INTERNAL_ERROR (0x0004)
693 1.1 thorpej #define MPI_IOCSTATUS_RESERVED (0x0005)
694 1.1 thorpej #define MPI_IOCSTATUS_INSUFFICIENT_RESOURCES (0x0006)
695 1.1 thorpej #define MPI_IOCSTATUS_INVALID_FIELD (0x0007)
696 1.1 thorpej #define MPI_IOCSTATUS_INVALID_STATE (0x0008)
697 1.1 thorpej
698 1.1 thorpej /****************************************************************************/
699 1.1 thorpej /* Config IOCStatus values */
700 1.1 thorpej /****************************************************************************/
701 1.1 thorpej
702 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_INVALID_ACTION (0x0020)
703 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_INVALID_TYPE (0x0021)
704 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_INVALID_PAGE (0x0022)
705 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_INVALID_DATA (0x0023)
706 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_NO_DEFAULTS (0x0024)
707 1.1 thorpej #define MPI_IOCSTATUS_CONFIG_CANT_COMMIT (0x0025)
708 1.1 thorpej
709 1.1 thorpej /****************************************************************************/
710 1.1 thorpej /* SCSIIO Reply (SPI & FCP) initiator values */
711 1.1 thorpej /****************************************************************************/
712 1.1 thorpej
713 1.1 thorpej #define MPI_IOCSTATUS_SCSI_RECOVERED_ERROR (0x0040)
714 1.1 thorpej #define MPI_IOCSTATUS_SCSI_INVALID_BUS (0x0041)
715 1.1 thorpej #define MPI_IOCSTATUS_SCSI_INVALID_TARGETID (0x0042)
716 1.1 thorpej #define MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE (0x0043)
717 1.1 thorpej #define MPI_IOCSTATUS_SCSI_DATA_OVERRUN (0x0044)
718 1.1 thorpej #define MPI_IOCSTATUS_SCSI_DATA_UNDERRUN (0x0045)
719 1.1 thorpej #define MPI_IOCSTATUS_SCSI_IO_DATA_ERROR (0x0046)
720 1.1 thorpej #define MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR (0x0047)
721 1.1 thorpej #define MPI_IOCSTATUS_SCSI_TASK_TERMINATED (0x0048)
722 1.1 thorpej #define MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH (0x0049)
723 1.1 thorpej #define MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED (0x004A)
724 1.1 thorpej #define MPI_IOCSTATUS_SCSI_IOC_TERMINATED (0x004B)
725 1.1 thorpej #define MPI_IOCSTATUS_SCSI_EXT_TERMINATED (0x004C)
726 1.1 thorpej
727 1.1 thorpej /****************************************************************************/
728 1.1 thorpej /* SCSI (SPI & FCP) target values */
729 1.1 thorpej /****************************************************************************/
730 1.1 thorpej
731 1.1 thorpej #define MPI_IOCSTATUS_TARGET_PRIORITY_IO (0x0060)
732 1.1 thorpej #define MPI_IOCSTATUS_TARGET_INVALID_PORT (0x0061)
733 1.1 thorpej #define MPI_IOCSTATUS_TARGET_INVALID_IOCINDEX (0x0062)
734 1.1 thorpej #define MPI_IOCSTATUS_TARGET_ABORTED (0x0063)
735 1.1 thorpej #define MPI_IOCSTATUS_TARGET_NO_CONN_RETRYABLE (0x0064)
736 1.1 thorpej #define MPI_IOCSTATUS_TARGET_NO_CONNECTION (0x0065)
737 1.1 thorpej #define MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH (0x006A)
738 1.1 thorpej #define MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT (0x006B)
739 1.1 thorpej
740 1.1 thorpej /****************************************************************************/
741 1.1 thorpej /* Additional FCP target values */
742 1.1 thorpej /****************************************************************************/
743 1.1 thorpej
744 1.1 thorpej #define MPI_IOCSTATUS_TARGET_FC_ABORTED (0x0066) /* obsolete */
745 1.1 thorpej #define MPI_IOCSTATUS_TARGET_FC_RX_ID_INVALID (0x0067) /* obsolete */
746 1.1 thorpej #define MPI_IOCSTATUS_TARGET_FC_DID_INVALID (0x0068) /* obsolete */
747 1.1 thorpej #define MPI_IOCSTATUS_TARGET_FC_NODE_LOGGED_OUT (0x0069) /* obsolete */
748 1.1 thorpej
749 1.1 thorpej /****************************************************************************/
750 1.1 thorpej /* Fibre Channel Direct Access values */
751 1.1 thorpej /****************************************************************************/
752 1.1 thorpej
753 1.1 thorpej #define MPI_IOCSTATUS_FC_ABORTED (0x0066)
754 1.1 thorpej #define MPI_IOCSTATUS_FC_RX_ID_INVALID (0x0067)
755 1.1 thorpej #define MPI_IOCSTATUS_FC_DID_INVALID (0x0068)
756 1.1 thorpej #define MPI_IOCSTATUS_FC_NODE_LOGGED_OUT (0x0069)
757 1.1 thorpej
758 1.1 thorpej /****************************************************************************/
759 1.1 thorpej /* LAN values */
760 1.1 thorpej /****************************************************************************/
761 1.1 thorpej
762 1.1 thorpej #define MPI_IOCSTATUS_LAN_DEVICE_NOT_FOUND (0x0080)
763 1.1 thorpej #define MPI_IOCSTATUS_LAN_DEVICE_FAILURE (0x0081)
764 1.1 thorpej #define MPI_IOCSTATUS_LAN_TRANSMIT_ERROR (0x0082)
765 1.1 thorpej #define MPI_IOCSTATUS_LAN_TRANSMIT_ABORTED (0x0083)
766 1.1 thorpej #define MPI_IOCSTATUS_LAN_RECEIVE_ERROR (0x0084)
767 1.1 thorpej #define MPI_IOCSTATUS_LAN_RECEIVE_ABORTED (0x0085)
768 1.1 thorpej #define MPI_IOCSTATUS_LAN_PARTIAL_PACKET (0x0086)
769 1.1 thorpej #define MPI_IOCSTATUS_LAN_CANCELED (0x0087)
770 1.1 thorpej
771 1.1 thorpej
772 1.1 thorpej /****************************************************************************/
773 1.1 thorpej /* IOCStatus flag to indicate that log info is available */
774 1.1 thorpej /****************************************************************************/
775 1.1 thorpej
776 1.1 thorpej #define MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE (0x8000)
777 1.1 thorpej #define MPI_IOCSTATUS_MASK (0x7FFF)
778 1.1 thorpej
779 1.1 thorpej /****************************************************************************/
780 1.1 thorpej /* LogInfo Types */
781 1.1 thorpej /****************************************************************************/
782 1.1 thorpej
783 1.1 thorpej #define MPI_IOCLOGINFO_TYPE_MASK (0xF0000000)
784 1.1 thorpej #define MPI_IOCLOGINFO_TYPE_NONE (0x0)
785 1.1 thorpej #define MPI_IOCLOGINFO_TYPE_SCSI (0x1)
786 1.1 thorpej #define MPI_IOCLOGINFO_TYPE_FC (0x2)
787 1.1 thorpej #define MPI_IOCLOGINFO_LOG_DATA_MASK (0x0FFFFFFF)
788 1.1 thorpej
789 1.1 thorpej
790 1.1 thorpej #endif
791 1.1 thorpej
792 1.1 thorpej /*
793 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
794 1.1 thorpej *
795 1.1 thorpej * Redistribution and use in source and binary forms, with or without
796 1.1 thorpej * modification, are permitted provided that the following conditions
797 1.1 thorpej * are met:
798 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
799 1.1 thorpej * notice immediately at the beginning of the file, without modification,
800 1.1 thorpej * this list of conditions, and the following disclaimer.
801 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
802 1.1 thorpej * derived from this software without specific prior written permission.
803 1.1 thorpej *
804 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
805 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
806 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
807 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
808 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
809 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
810 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
811 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
812 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
813 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
814 1.1 thorpej * SUCH DAMAGE.
815 1.1 thorpej *
816 1.1 thorpej *
817 1.1 thorpej * Name: MPI_CNFG.H
818 1.1 thorpej * Title: MPI Config message, structures, and Pages
819 1.1 thorpej * Creation Date: July 27, 2000
820 1.1 thorpej *
821 1.1 thorpej * MPI Version: 01.02.05
822 1.1 thorpej *
823 1.1 thorpej * Version History
824 1.1 thorpej * ---------------
825 1.1 thorpej *
826 1.1 thorpej * Date Version Description
827 1.1 thorpej * -------- -------- ------------------------------------------------------
828 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
829 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
830 1.1 thorpej * 06-08-00 01.00.02 Added _PAGEVERSION definitions for all pages.
831 1.1 thorpej * Added FcPhLowestVersion, FcPhHighestVersion, Reserved2
832 1.1 thorpej * fields to FC_DEVICE_0 page, updated the page version.
833 1.1 thorpej * Changed _FREE_RUNNING_CLOCK to _PACING_TRANSFERS in
834 1.1 thorpej * SCSI_PORT_0, SCSI_DEVICE_0 and SCSI_DEVICE_1 pages
835 1.1 thorpej * and updated the page versions.
836 1.1 thorpej * Added _RESPONSE_ID_MASK definition to SCSI_PORT_1
837 1.1 thorpej * page and updated the page version.
838 1.1 thorpej * Added Information field and _INFO_PARAMS_NEGOTIATED
839 1.1 thorpej * definitionto SCSI_DEVICE_0 page.
840 1.1 thorpej * 06-22-00 01.00.03 Removed batch controls from LAN_0 page and updated the
841 1.1 thorpej * page version.
842 1.1 thorpej * Added BucketsRemaining to LAN_1 page, redefined the
843 1.1 thorpej * state values, and updated the page version.
844 1.1 thorpej * Revised bus width definitions in SCSI_PORT_0,
845 1.1 thorpej * SCSI_DEVICE_0 and SCSI_DEVICE_1 pages.
846 1.1 thorpej * 06-30-00 01.00.04 Added MaxReplySize to LAN_1 page and updated the page
847 1.1 thorpej * version.
848 1.1 thorpej * Moved FC_DEVICE_0 PageAddress description to spec.
849 1.1 thorpej * 07-27-00 01.00.05 Corrected the SubsystemVendorID and SubsystemID field
850 1.1 thorpej * widths in IOC_0 page and updated the page version.
851 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work
852 1.1 thorpej * Added Manufacturing pages, IO Unit Page 2, SCSI SPI
853 1.1 thorpej * Port Page 2, FC Port Page 4, FC Port Page 5
854 1.1 thorpej * 11-15-00 01.01.02 Interim changes to match proposals
855 1.1 thorpej * 12-04-00 01.01.03 Config page changes to match MPI rev 1.00.01.
856 1.1 thorpej * 12-05-00 01.01.04 Modified config page actions.
857 1.1 thorpej * 01-09-01 01.01.05 Added defines for page address formats.
858 1.1 thorpej * Data size for Manufacturing pages 2 and 3 no longer
859 1.1 thorpej * defined here.
860 1.1 thorpej * Io Unit Page 2 size is fixed at 4 adapters and some
861 1.1 thorpej * flags were changed.
862 1.1 thorpej * SCSI Port Page 2 Device Settings modified.
863 1.1 thorpej * New fields added to FC Port Page 0 and some flags
864 1.1 thorpej * cleaned up.
865 1.1 thorpej * Removed impedance flash from FC Port Page 1.
866 1.1 thorpej * Added FC Port pages 6 and 7.
867 1.1 thorpej * 01-25-01 01.01.06 Added MaxInitiators field to FcPortPage0.
868 1.1 thorpej * 01-29-01 01.01.07 Changed some defines to make them 32 character unique.
869 1.1 thorpej * Added some LinkType defines for FcPortPage0.
870 1.1 thorpej * 02-20-01 01.01.08 Started using MPI_POINTER.
871 1.1 thorpej * 02-27-01 01.01.09 Replaced MPI_CONFIG_PAGETYPE_SCSI_LUN with
872 1.1 thorpej * MPI_CONFIG_PAGETYPE_RAID_VOLUME.
873 1.1 thorpej * Added definitions and structures for IOC Page 2 and
874 1.1 thorpej * RAID Volume Page 2.
875 1.1 thorpej * 03-27-01 01.01.10 Added CONFIG_PAGE_FC_PORT_8 and CONFIG_PAGE_FC_PORT_9.
876 1.1 thorpej * CONFIG_PAGE_FC_PORT_3 now supports persistent by DID.
877 1.1 thorpej * Added VendorId and ProductRevLevel fields to
878 1.1 thorpej * RAIDVOL2_IM_PHYS_ID struct.
879 1.1 thorpej * Modified values for MPI_FCPORTPAGE0_FLAGS_ATTACH_
880 1.1 thorpej * defines to make them compatible to MPI version 1.0.
881 1.1 thorpej * Added structure offset comments.
882 1.1 thorpej * 04-09-01 01.01.11 Added some new defines for the PageAddress field and
883 1.1 thorpej * removed some obsolete ones.
884 1.1 thorpej * Added IO Unit Page 3.
885 1.1 thorpej * Modified defines for Scsi Port Page 2.
886 1.1 thorpej * Modified RAID Volume Pages.
887 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
888 1.1 thorpej * Added SepID and SepBus to RVP2 IMPhysicalDisk struct.
889 1.1 thorpej * Added defines for the SEP bits in RVP2 VolumeSettings.
890 1.1 thorpej * Modified the DeviceSettings field in RVP2 to use the
891 1.1 thorpej * proper structure.
892 1.1 thorpej * Added defines for SES, SAF-TE, and cross channel for
893 1.1 thorpej * IOCPage2 CapabilitiesFlags.
894 1.1 thorpej * Removed define for MPI_IOUNITPAGE2_FLAGS_RAID_DISABLE.
895 1.1 thorpej * Removed define for
896 1.1 thorpej * MPI_SCSIPORTPAGE2_PORT_FLAGS_PARITY_ENABLE.
897 1.1 thorpej * Added define for MPI_CONFIG_PAGEATTR_RO_PERSISTENT.
898 1.1 thorpej * 08-29-01 01.02.02 Fixed value for MPI_MANUFACTPAGE_DEVID_53C1035.
899 1.1 thorpej * Added defines for MPI_FCPORTPAGE1_FLAGS_HARD_ALPA_ONLY
900 1.1 thorpej * and MPI_FCPORTPAGE1_FLAGS_IMMEDIATE_ERROR_REPLY.
901 1.1 thorpej * Removed MPI_SCSIPORTPAGE0_CAP_PACING_TRANSFERS,
902 1.1 thorpej * MPI_SCSIDEVPAGE0_NP_PACING_TRANSFERS, and
903 1.1 thorpej * MPI_SCSIDEVPAGE1_RP_PACING_TRANSFERS, and
904 1.1 thorpej * MPI_SCSIDEVPAGE1_CONF_PPR_ALLOWED.
905 1.1 thorpej * Added defines for MPI_SCSIDEVPAGE1_CONF_WDTR_DISALLOWED
906 1.1 thorpej * and MPI_SCSIDEVPAGE1_CONF_SDTR_DISALLOWED.
907 1.1 thorpej * Added OnBusTimerValue to CONFIG_PAGE_SCSI_PORT_1.
908 1.1 thorpej * Added rejected bits to SCSI Device Page 0 Information.
909 1.1 thorpej * Increased size of ALPA array in FC Port Page 2 by one
910 1.1 thorpej * and removed a one byte reserved field.
911 1.1 thorpej * 09-28-01 01.02.03 Swapped NegWireSpeedLow and NegWireSpeedLow in
912 1.1 thorpej * CONFIG_PAGE_LAN_1 to match preferred 64-bit ordering.
913 1.1 thorpej * Added structures for Manufacturing Page 4, IO Unit
914 1.1 thorpej * Page 3, IOC Page 3, IOC Page 4, RAID Volume Page 0, and
915 1.1 thorpej * RAID PhysDisk Page 0.
916 1.1 thorpej * 10-04-01 01.02.04 Added define for MPI_CONFIG_PAGETYPE_RAID_PHYSDISK.
917 1.1 thorpej * Modified some of the new defines to make them 32
918 1.1 thorpej * character unique.
919 1.1 thorpej * Modified how variable length pages (arrays) are defined.
920 1.1 thorpej * Added generic defines for hot spare pools and RAID
921 1.1 thorpej * volume types.
922 1.1 thorpej * 11-01-01 01.02.05 Added define for MPI_IOUNITPAGE1_DISABLE_IR.
923 1.1 thorpej * --------------------------------------------------------------------------
924 1.1 thorpej */
925 1.1 thorpej
926 1.1 thorpej #ifndef MPI_CNFG_H
927 1.1 thorpej #define MPI_CNFG_H
928 1.1 thorpej
929 1.1 thorpej
930 1.1 thorpej /*****************************************************************************
931 1.1 thorpej *
932 1.1 thorpej * C o n f i g M e s s a g e a n d S t r u c t u r e s
933 1.1 thorpej *
934 1.1 thorpej *****************************************************************************/
935 1.1 thorpej
936 1.1 thorpej typedef struct _CONFIG_PAGE_HEADER
937 1.1 thorpej {
938 1.1 thorpej U8 PageVersion; /* 00h */
939 1.1 thorpej U8 PageLength; /* 01h */
940 1.1 thorpej U8 PageNumber; /* 02h */
941 1.1 thorpej U8 PageType; /* 03h */
942 1.1 thorpej } fCONFIG_PAGE_HEADER, MPI_POINTER PTR_CONFIG_PAGE_HEADER,
943 1.1 thorpej ConfigPageHeader_t, MPI_POINTER pConfigPageHeader_t;
944 1.1 thorpej
945 1.1 thorpej typedef union _CONFIG_PAGE_HEADER_UNION
946 1.1 thorpej {
947 1.1 thorpej ConfigPageHeader_t Struct;
948 1.1 thorpej U8 Bytes[4];
949 1.1 thorpej U16 Word16[2];
950 1.1 thorpej U32 Word32;
951 1.1 thorpej } ConfigPageHeaderUnion, MPI_POINTER pConfigPageHeaderUnion,
952 1.1 thorpej fCONFIG_PAGE_HEADER_UNION, MPI_POINTER PTR_CONFIG_PAGE_HEADER_UNION;
953 1.1 thorpej
954 1.1 thorpej
955 1.1 thorpej /****************************************************************************
956 1.1 thorpej * PageType field values
957 1.1 thorpej ****************************************************************************/
958 1.1 thorpej #define MPI_CONFIG_PAGEATTR_READ_ONLY (0x00)
959 1.1 thorpej #define MPI_CONFIG_PAGEATTR_CHANGEABLE (0x10)
960 1.1 thorpej #define MPI_CONFIG_PAGEATTR_PERSISTENT (0x20)
961 1.1 thorpej #define MPI_CONFIG_PAGEATTR_RO_PERSISTENT (0x30)
962 1.1 thorpej #define MPI_CONFIG_PAGEATTR_MASK (0xF0)
963 1.1 thorpej
964 1.1 thorpej #define MPI_CONFIG_PAGETYPE_IO_UNIT (0x00)
965 1.1 thorpej #define MPI_CONFIG_PAGETYPE_IOC (0x01)
966 1.1 thorpej #define MPI_CONFIG_PAGETYPE_BIOS (0x02)
967 1.1 thorpej #define MPI_CONFIG_PAGETYPE_SCSI_PORT (0x03)
968 1.1 thorpej #define MPI_CONFIG_PAGETYPE_SCSI_DEVICE (0x04)
969 1.1 thorpej #define MPI_CONFIG_PAGETYPE_FC_PORT (0x05)
970 1.1 thorpej #define MPI_CONFIG_PAGETYPE_FC_DEVICE (0x06)
971 1.1 thorpej #define MPI_CONFIG_PAGETYPE_LAN (0x07)
972 1.1 thorpej #define MPI_CONFIG_PAGETYPE_RAID_VOLUME (0x08)
973 1.1 thorpej #define MPI_CONFIG_PAGETYPE_MANUFACTURING (0x09)
974 1.1 thorpej #define MPI_CONFIG_PAGETYPE_RAID_PHYSDISK (0x0A)
975 1.1 thorpej #define MPI_CONFIG_PAGETYPE_MASK (0x0F)
976 1.1 thorpej
977 1.1 thorpej #define MPI_CONFIG_TYPENUM_MASK (0x0FFF)
978 1.1 thorpej
979 1.1 thorpej
980 1.1 thorpej /****************************************************************************
981 1.1 thorpej * PageAddress field values
982 1.1 thorpej ****************************************************************************/
983 1.1 thorpej #define MPI_SCSI_PORT_PGAD_PORT_MASK (0x000000FF)
984 1.1 thorpej
985 1.1 thorpej #define MPI_SCSI_DEVICE_TARGET_ID_MASK (0x000000FF)
986 1.1 thorpej #define MPI_SCSI_DEVICE_TARGET_ID_SHIFT (0)
987 1.1 thorpej #define MPI_SCSI_DEVICE_BUS_MASK (0x0000FF00)
988 1.1 thorpej #define MPI_SCSI_DEVICE_BUS_SHIFT (8)
989 1.1 thorpej
990 1.1 thorpej #define MPI_FC_PORT_PGAD_PORT_MASK (0xF0000000)
991 1.1 thorpej #define MPI_FC_PORT_PGAD_PORT_SHIFT (28)
992 1.1 thorpej #define MPI_FC_PORT_PGAD_FORM_MASK (0x0F000000)
993 1.1 thorpej #define MPI_FC_PORT_PGAD_FORM_INDEX (0x01000000)
994 1.1 thorpej #define MPI_FC_PORT_PGAD_INDEX_MASK (0x0000FFFF)
995 1.1 thorpej #define MPI_FC_PORT_PGAD_INDEX_SHIFT (0)
996 1.1 thorpej
997 1.1 thorpej #define MPI_FC_DEVICE_PGAD_PORT_MASK (0xF0000000)
998 1.1 thorpej #define MPI_FC_DEVICE_PGAD_PORT_SHIFT (28)
999 1.1 thorpej #define MPI_FC_DEVICE_PGAD_FORM_MASK (0x0F000000)
1000 1.1 thorpej #define MPI_FC_DEVICE_PGAD_FORM_NEXT_DID (0x00000000)
1001 1.1 thorpej #define MPI_FC_DEVICE_PGAD_ND_PORT_MASK (0xF0000000)
1002 1.1 thorpej #define MPI_FC_DEVICE_PGAD_ND_PORT_SHIFT (28)
1003 1.1 thorpej #define MPI_FC_DEVICE_PGAD_ND_DID_MASK (0x00FFFFFF)
1004 1.1 thorpej #define MPI_FC_DEVICE_PGAD_ND_DID_SHIFT (0)
1005 1.1 thorpej #define MPI_FC_DEVICE_PGAD_FORM_BUS_TID (0x01000000)
1006 1.1 thorpej #define MPI_FC_DEVICE_PGAD_BT_BUS_MASK (0x0000FF00)
1007 1.1 thorpej #define MPI_FC_DEVICE_PGAD_BT_BUS_SHIFT (8)
1008 1.1 thorpej #define MPI_FC_DEVICE_PGAD_BT_TID_MASK (0x000000FF)
1009 1.1 thorpej #define MPI_FC_DEVICE_PGAD_BT_TID_SHIFT (0)
1010 1.1 thorpej
1011 1.1 thorpej #define MPI_PHYSDISK_PGAD_PHYSDISKNUM_MASK (0x000000FF)
1012 1.1 thorpej #define MPI_PHYSDISK_PGAD_PHYSDISKNUM_SHIFT (0)
1013 1.1 thorpej
1014 1.1 thorpej
1015 1.1 thorpej
1016 1.1 thorpej /****************************************************************************
1017 1.1 thorpej * Config Request Message
1018 1.1 thorpej ****************************************************************************/
1019 1.1 thorpej typedef struct _MSG_CONFIG
1020 1.1 thorpej {
1021 1.1 thorpej U8 Action; /* 00h */
1022 1.1 thorpej U8 Reserved; /* 01h */
1023 1.1 thorpej U8 ChainOffset; /* 02h */
1024 1.1 thorpej U8 Function; /* 03h */
1025 1.1 thorpej U8 Reserved1[3]; /* 04h */
1026 1.1 thorpej U8 MsgFlags; /* 07h */
1027 1.1 thorpej U32 MsgContext; /* 08h */
1028 1.1 thorpej U8 Reserved2[8]; /* 0Ch */
1029 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 14h */
1030 1.1 thorpej U32 PageAddress; /* 18h */
1031 1.1 thorpej SGE_IO_UNION PageBufferSGE; /* 1Ch */
1032 1.1 thorpej } MSG_CONFIG, MPI_POINTER PTR_MSG_CONFIG,
1033 1.1 thorpej Config_t, MPI_POINTER pConfig_t;
1034 1.1 thorpej
1035 1.1 thorpej
1036 1.1 thorpej /****************************************************************************
1037 1.1 thorpej * Action field values
1038 1.1 thorpej ****************************************************************************/
1039 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_HEADER (0x00)
1040 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_READ_CURRENT (0x01)
1041 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_WRITE_CURRENT (0x02)
1042 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_DEFAULT (0x03)
1043 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_WRITE_NVRAM (0x04)
1044 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_READ_DEFAULT (0x05)
1045 1.1 thorpej #define MPI_CONFIG_ACTION_PAGE_READ_NVRAM (0x06)
1046 1.1 thorpej
1047 1.1 thorpej
1048 1.1 thorpej /* Config Reply Message */
1049 1.1 thorpej typedef struct _MSG_CONFIG_REPLY
1050 1.1 thorpej {
1051 1.1 thorpej U8 Action; /* 00h */
1052 1.1 thorpej U8 Reserved; /* 01h */
1053 1.1 thorpej U8 MsgLength; /* 02h */
1054 1.1 thorpej U8 Function; /* 03h */
1055 1.1 thorpej U8 Reserved1[3]; /* 04h */
1056 1.1 thorpej U8 MsgFlags; /* 07h */
1057 1.1 thorpej U32 MsgContext; /* 08h */
1058 1.1 thorpej U8 Reserved2[2]; /* 0Ch */
1059 1.1 thorpej U16 IOCStatus; /* 0Eh */
1060 1.1 thorpej U32 IOCLogInfo; /* 10h */
1061 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 14h */
1062 1.1 thorpej } MSG_CONFIG_REPLY, MPI_POINTER PTR_MSG_CONFIG_REPLY,
1063 1.1 thorpej ConfigReply_t, MPI_POINTER pConfigReply_t;
1064 1.1 thorpej
1065 1.1 thorpej
1066 1.1 thorpej
1067 1.1 thorpej /*****************************************************************************
1068 1.1 thorpej *
1069 1.1 thorpej * C o n f i g u r a t i o n P a g e s
1070 1.1 thorpej *
1071 1.1 thorpej *****************************************************************************/
1072 1.1 thorpej
1073 1.1 thorpej /****************************************************************************
1074 1.1 thorpej * Manufacturing Config pages
1075 1.1 thorpej ****************************************************************************/
1076 1.1 thorpej #define MPI_MANUFACTPAGE_DEVICEID_FC909 (0x0621)
1077 1.1 thorpej #define MPI_MANUFACTPAGE_DEVICEID_FC919 (0x0624)
1078 1.1 thorpej #define MPI_MANUFACTPAGE_DEVICEID_FC929 (0x0622)
1079 1.1 thorpej #define MPI_MANUFACTPAGE_DEVICEID_FC919X (0x0628)
1080 1.1 thorpej #define MPI_MANUFACTPAGE_DEVICEID_FC929X (0x0626)
1081 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_53C1030 (0x0030)
1082 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_53C1030ZC (0x0031)
1083 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_1030_53C1035 (0x0032)
1084 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_1030ZC_53C1035 (0x0033)
1085 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_53C1035 (0x0040)
1086 1.1 thorpej #define MPI_MANUFACTPAGE_DEVID_53C1035ZC (0x0041)
1087 1.1 thorpej
1088 1.1 thorpej typedef struct _CONFIG_PAGE_MANUFACTURING_0
1089 1.1 thorpej {
1090 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1091 1.1 thorpej U8 ChipName[16]; /* 04h */
1092 1.1 thorpej U8 ChipRevision[8]; /* 14h */
1093 1.1 thorpej U8 BoardName[16]; /* 1Ch */
1094 1.1 thorpej U8 BoardAssembly[16]; /* 2Ch */
1095 1.1 thorpej U8 BoardTracerNumber[16]; /* 3Ch */
1096 1.1 thorpej
1097 1.1 thorpej } fCONFIG_PAGE_MANUFACTURING_0, MPI_POINTER PTR_CONFIG_PAGE_MANUFACTURING_0,
1098 1.1 thorpej ManufacturingPage0_t, MPI_POINTER pManufacturingPage0_t;
1099 1.1 thorpej
1100 1.1 thorpej #define MPI_MANUFACTURING0_PAGEVERSION (0x00)
1101 1.1 thorpej
1102 1.1 thorpej
1103 1.1 thorpej typedef struct _CONFIG_PAGE_MANUFACTURING_1
1104 1.1 thorpej {
1105 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1106 1.1 thorpej U8 VPD[256]; /* 04h */
1107 1.1 thorpej } fCONFIG_PAGE_MANUFACTURING_1, MPI_POINTER PTR_CONFIG_PAGE_MANUFACTURING_1,
1108 1.1 thorpej ManufacturingPage1_t, MPI_POINTER pManufacturingPage1_t;
1109 1.1 thorpej
1110 1.1 thorpej #define MPI_MANUFACTURING1_PAGEVERSION (0x00)
1111 1.1 thorpej
1112 1.1 thorpej
1113 1.1 thorpej typedef struct _MPI_CHIP_REVISION_ID
1114 1.1 thorpej {
1115 1.1 thorpej U16 DeviceID; /* 00h */
1116 1.1 thorpej U8 PCIRevisionID; /* 02h */
1117 1.1 thorpej U8 Reserved; /* 03h */
1118 1.1 thorpej } MPI_CHIP_REVISION_ID, MPI_POINTER PTR_MPI_CHIP_REVISION_ID,
1119 1.1 thorpej MpiChipRevisionId_t, MPI_POINTER pMpiChipRevisionId_t;
1120 1.1 thorpej
1121 1.1 thorpej
1122 1.1 thorpej /*
1123 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1124 1.1 thorpej * one and check Header.PageLength at runtime.
1125 1.1 thorpej */
1126 1.1 thorpej #ifndef MPI_MAN_PAGE_2_HW_SETTINGS_WORDS
1127 1.1 thorpej #define MPI_MAN_PAGE_2_HW_SETTINGS_WORDS (1)
1128 1.1 thorpej #endif
1129 1.1 thorpej
1130 1.1 thorpej typedef struct _CONFIG_PAGE_MANUFACTURING_2
1131 1.1 thorpej {
1132 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1133 1.1 thorpej MPI_CHIP_REVISION_ID ChipId; /* 04h */
1134 1.1 thorpej U32 HwSettings[MPI_MAN_PAGE_2_HW_SETTINGS_WORDS];/* 08h */
1135 1.1 thorpej } fCONFIG_PAGE_MANUFACTURING_2, MPI_POINTER PTR_CONFIG_PAGE_MANUFACTURING_2,
1136 1.1 thorpej ManufacturingPage2_t, MPI_POINTER pManufacturingPage2_t;
1137 1.1 thorpej
1138 1.1 thorpej #define MPI_MANUFACTURING2_PAGEVERSION (0x00)
1139 1.1 thorpej
1140 1.1 thorpej
1141 1.1 thorpej /*
1142 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1143 1.1 thorpej * one and check Header.PageLength at runtime.
1144 1.1 thorpej */
1145 1.1 thorpej #ifndef MPI_MAN_PAGE_3_INFO_WORDS
1146 1.1 thorpej #define MPI_MAN_PAGE_3_INFO_WORDS (1)
1147 1.1 thorpej #endif
1148 1.1 thorpej
1149 1.1 thorpej typedef struct _CONFIG_PAGE_MANUFACTURING_3
1150 1.1 thorpej {
1151 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1152 1.1 thorpej MPI_CHIP_REVISION_ID ChipId; /* 04h */
1153 1.1 thorpej U32 Info[MPI_MAN_PAGE_3_INFO_WORDS];/* 08h */
1154 1.1 thorpej } fCONFIG_PAGE_MANUFACTURING_3, MPI_POINTER PTR_CONFIG_PAGE_MANUFACTURING_3,
1155 1.1 thorpej ManufacturingPage3_t, MPI_POINTER pManufacturingPage3_t;
1156 1.1 thorpej
1157 1.1 thorpej #define MPI_MANUFACTURING3_PAGEVERSION (0x00)
1158 1.1 thorpej
1159 1.1 thorpej
1160 1.1 thorpej typedef struct _CONFIG_PAGE_MANUFACTURING_4
1161 1.1 thorpej {
1162 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1163 1.1 thorpej U32 Reserved1; /* 04h */
1164 1.1 thorpej U8 InfoOffset0; /* 08h */
1165 1.1 thorpej U8 InfoSize0; /* 09h */
1166 1.1 thorpej U8 InfoOffset1; /* 0Ah */
1167 1.1 thorpej U8 InfoSize1; /* 0Bh */
1168 1.1 thorpej U8 InquirySize; /* 0Ch */
1169 1.1 thorpej U8 Reserved2; /* 0Dh */
1170 1.1 thorpej U16 Reserved3; /* 0Eh */
1171 1.1 thorpej U8 InquiryData[56]; /* 10h */
1172 1.1 thorpej U32 ISVolumeSettings; /* 48h */
1173 1.1 thorpej U32 IMEVolumeSettings; /* 4Ch */
1174 1.1 thorpej U32 IMVolumeSettings; /* 50h */
1175 1.1 thorpej } fCONFIG_PAGE_MANUFACTURING_4, MPI_POINTER PTR_CONFIG_PAGE_MANUFACTURING_4,
1176 1.1 thorpej ManufacturingPage4_t, MPI_POINTER pManufacturingPage4_t;
1177 1.1 thorpej
1178 1.1 thorpej #define MPI_MANUFACTURING4_PAGEVERSION (0x00)
1179 1.1 thorpej
1180 1.1 thorpej
1181 1.1 thorpej /****************************************************************************
1182 1.1 thorpej * IO Unit Config Pages
1183 1.1 thorpej ****************************************************************************/
1184 1.1 thorpej
1185 1.1 thorpej typedef struct _CONFIG_PAGE_IO_UNIT_0
1186 1.1 thorpej {
1187 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1188 1.1 thorpej U64 UniqueValue; /* 04h */
1189 1.1 thorpej } fCONFIG_PAGE_IO_UNIT_0, MPI_POINTER PTR_CONFIG_PAGE_IO_UNIT_0,
1190 1.1 thorpej IOUnitPage0_t, MPI_POINTER pIOUnitPage0_t;
1191 1.1 thorpej
1192 1.1 thorpej #define MPI_IOUNITPAGE0_PAGEVERSION (0x00)
1193 1.1 thorpej
1194 1.1 thorpej
1195 1.1 thorpej typedef struct _CONFIG_PAGE_IO_UNIT_1
1196 1.1 thorpej {
1197 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1198 1.1 thorpej U32 Flags; /* 04h */
1199 1.1 thorpej } fCONFIG_PAGE_IO_UNIT_1, MPI_POINTER PTR_CONFIG_PAGE_IO_UNIT_1,
1200 1.1 thorpej IOUnitPage1_t, MPI_POINTER pIOUnitPage1_t;
1201 1.1 thorpej
1202 1.1 thorpej #define MPI_IOUNITPAGE1_PAGEVERSION (0x00)
1203 1.1 thorpej
1204 1.1 thorpej /* IO Unit Page 1 Flags defines */
1205 1.1 thorpej
1206 1.1 thorpej #define MPI_IOUNITPAGE1_MULTI_FUNCTION (0x00000000)
1207 1.1 thorpej #define MPI_IOUNITPAGE1_SINGLE_FUNCTION (0x00000001)
1208 1.1 thorpej #define MPI_IOUNITPAGE1_MULTI_PATHING (0x00000002)
1209 1.1 thorpej #define MPI_IOUNITPAGE1_SINGLE_PATHING (0x00000000)
1210 1.1 thorpej #define MPI_IOUNITPAGE1_DISABLE_IR (0x00000040)
1211 1.1 thorpej #define MPI_IOUNITPAGE1_FORCE_32 (0x00000080)
1212 1.1 thorpej
1213 1.1 thorpej
1214 1.1 thorpej typedef struct _MPI_ADAPTER_INFO
1215 1.1 thorpej {
1216 1.1 thorpej U8 PciBusNumber; /* 00h */
1217 1.1 thorpej U8 PciDeviceAndFunctionNumber; /* 01h */
1218 1.1 thorpej U16 AdapterFlags; /* 02h */
1219 1.1 thorpej } MPI_ADAPTER_INFO, MPI_POINTER PTR_MPI_ADAPTER_INFO,
1220 1.1 thorpej MpiAdapterInfo_t, MPI_POINTER pMpiAdapterInfo_t;
1221 1.1 thorpej
1222 1.1 thorpej #define MPI_ADAPTER_INFO_FLAGS_EMBEDDED (0x0001)
1223 1.1 thorpej #define MPI_ADAPTER_INFO_FLAGS_INIT_STATUS (0x0002)
1224 1.1 thorpej
1225 1.1 thorpej typedef struct _CONFIG_PAGE_IO_UNIT_2
1226 1.1 thorpej {
1227 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1228 1.1 thorpej U32 Flags; /* 04h */
1229 1.1 thorpej U32 BiosVersion; /* 08h */
1230 1.1 thorpej MPI_ADAPTER_INFO AdapterOrder[4]; /* 0Ch */
1231 1.1 thorpej } fCONFIG_PAGE_IO_UNIT_2, MPI_POINTER PTR_CONFIG_PAGE_IO_UNIT_2,
1232 1.1 thorpej IOUnitPage2_t, MPI_POINTER pIOUnitPage2_t;
1233 1.1 thorpej
1234 1.1 thorpej #define MPI_IOUNITPAGE2_PAGEVERSION (0x00)
1235 1.1 thorpej
1236 1.1 thorpej #define MPI_IOUNITPAGE2_FLAGS_PAUSE_ON_ERROR (0x00000002)
1237 1.1 thorpej #define MPI_IOUNITPAGE2_FLAGS_VERBOSE_ENABLE (0x00000004)
1238 1.1 thorpej #define MPI_IOUNITPAGE2_FLAGS_COLOR_VIDEO_DISABLE (0x00000008)
1239 1.1 thorpej #define MPI_IOUNITPAGE2_FLAGS_DONT_HOOK_INT_40 (0x00000010)
1240 1.1 thorpej
1241 1.1 thorpej
1242 1.1 thorpej /*
1243 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1244 1.1 thorpej * one and check Header.PageLength at runtime.
1245 1.1 thorpej */
1246 1.1 thorpej #ifndef MPI_IO_UNIT_PAGE_3_GPIO_VAL_MAX
1247 1.1 thorpej #define MPI_IO_UNIT_PAGE_3_GPIO_VAL_MAX (1)
1248 1.1 thorpej #endif
1249 1.1 thorpej
1250 1.1 thorpej typedef struct _CONFIG_PAGE_IO_UNIT_3
1251 1.1 thorpej {
1252 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1253 1.1 thorpej U8 GPIOCount; /* 04h */
1254 1.1 thorpej U8 Reserved1; /* 05h */
1255 1.1 thorpej U16 Reserved2; /* 06h */
1256 1.1 thorpej U16 GPIOVal[MPI_IO_UNIT_PAGE_3_GPIO_VAL_MAX]; /* 08h */
1257 1.1 thorpej } fCONFIG_PAGE_IO_UNIT_3, MPI_POINTER PTR_CONFIG_PAGE_IO_UNIT_3,
1258 1.1 thorpej IOUnitPage3_t, MPI_POINTER pIOUnitPage3_t;
1259 1.1 thorpej
1260 1.1 thorpej #define MPI_IOUNITPAGE3_PAGEVERSION (0x01)
1261 1.1 thorpej
1262 1.1 thorpej #define MPI_IOUNITPAGE3_GPIO_FUNCTION_MASK (0xFC)
1263 1.1 thorpej #define MPI_IOUNITPAGE3_GPIO_FUNCTION_SHIFT (2)
1264 1.1 thorpej #define MPI_IOUNITPAGE3_GPIO_SETTING_OFF (0x00)
1265 1.1 thorpej #define MPI_IOUNITPAGE3_GPIO_SETTING_ON (0x01)
1266 1.1 thorpej
1267 1.1 thorpej
1268 1.1 thorpej /****************************************************************************
1269 1.1 thorpej * IOC Config Pages
1270 1.1 thorpej ****************************************************************************/
1271 1.1 thorpej
1272 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_0
1273 1.1 thorpej {
1274 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1275 1.1 thorpej U32 TotalNVStore; /* 04h */
1276 1.1 thorpej U32 FreeNVStore; /* 08h */
1277 1.1 thorpej U16 VendorID; /* 0Ch */
1278 1.1 thorpej U16 DeviceID; /* 0Eh */
1279 1.1 thorpej U8 RevisionID; /* 10h */
1280 1.1 thorpej U8 Reserved[3]; /* 11h */
1281 1.1 thorpej U32 ClassCode; /* 14h */
1282 1.1 thorpej U16 SubsystemVendorID; /* 18h */
1283 1.1 thorpej U16 SubsystemID; /* 1Ah */
1284 1.1 thorpej } fCONFIG_PAGE_IOC_0, MPI_POINTER PTR_CONFIG_PAGE_IOC_0,
1285 1.1 thorpej IOCPage0_t, MPI_POINTER pIOCPage0_t;
1286 1.1 thorpej
1287 1.1 thorpej #define MPI_IOCPAGE0_PAGEVERSION (0x01)
1288 1.1 thorpej
1289 1.1 thorpej
1290 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_1
1291 1.1 thorpej {
1292 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1293 1.1 thorpej U32 Flags; /* 04h */
1294 1.1 thorpej U32 CoalescingTimeout; /* 08h */
1295 1.1 thorpej U8 CoalescingDepth; /* 0Ch */
1296 1.1 thorpej U8 Reserved[3]; /* 0Dh */
1297 1.1 thorpej } fCONFIG_PAGE_IOC_1, MPI_POINTER PTR_CONFIG_PAGE_IOC_1,
1298 1.1 thorpej IOCPage1_t, MPI_POINTER pIOCPage1_t;
1299 1.1 thorpej
1300 1.1 thorpej #define MPI_IOCPAGE1_PAGEVERSION (0x00)
1301 1.1 thorpej
1302 1.1 thorpej #define MPI_IOCPAGE1_REPLY_COALESCING (0x00000001)
1303 1.1 thorpej
1304 1.1 thorpej
1305 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_2_RAID_VOL
1306 1.1 thorpej {
1307 1.1 thorpej U8 VolumeID; /* 00h */
1308 1.1 thorpej U8 VolumeBus; /* 01h */
1309 1.1 thorpej U8 VolumeIOC; /* 02h */
1310 1.1 thorpej U8 VolumePageNumber; /* 03h */
1311 1.1 thorpej U8 VolumeType; /* 04h */
1312 1.1 thorpej U8 Reserved2; /* 05h */
1313 1.1 thorpej U16 Reserved3; /* 06h */
1314 1.1 thorpej } fCONFIG_PAGE_IOC_2_RAID_VOL, MPI_POINTER PTR_CONFIG_PAGE_IOC_2_RAID_VOL,
1315 1.1 thorpej ConfigPageIoc2RaidVol_t, MPI_POINTER pConfigPageIoc2RaidVol_t;
1316 1.1 thorpej
1317 1.1 thorpej /*
1318 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1319 1.1 thorpej * one and check Header.PageLength at runtime.
1320 1.1 thorpej */
1321 1.1 thorpej #ifndef MPI_IOC_PAGE_2_RAID_VOLUME_MAX
1322 1.1 thorpej #define MPI_IOC_PAGE_2_RAID_VOLUME_MAX (1)
1323 1.1 thorpej #endif
1324 1.1 thorpej
1325 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_2
1326 1.1 thorpej {
1327 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1328 1.1 thorpej U32 CapabilitiesFlags; /* 04h */
1329 1.1 thorpej U8 NumActiveVolumes; /* 08h */
1330 1.1 thorpej U8 MaxVolumes; /* 09h */
1331 1.1 thorpej U8 NumActivePhysDisks; /* 0Ah */
1332 1.1 thorpej U8 MaxPhysDisks; /* 0Bh */
1333 1.1 thorpej fCONFIG_PAGE_IOC_2_RAID_VOL RaidVolume[MPI_IOC_PAGE_2_RAID_VOLUME_MAX];/* 0Ch */
1334 1.1 thorpej } fCONFIG_PAGE_IOC_2, MPI_POINTER PTR_CONFIG_PAGE_IOC_2,
1335 1.1 thorpej IOCPage2_t, MPI_POINTER pIOCPage2_t;
1336 1.1 thorpej
1337 1.1 thorpej #define MPI_IOCPAGE2_PAGEVERSION (0x01)
1338 1.1 thorpej
1339 1.1 thorpej /* IOC Page 2 Capabilities flags */
1340 1.1 thorpej
1341 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_IS_SUPPORT (0x00000001)
1342 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_IME_SUPPORT (0x00000002)
1343 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_IM_SUPPORT (0x00000004)
1344 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_SES_SUPPORT (0x20000000)
1345 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_SAFTE_SUPPORT (0x40000000)
1346 1.1 thorpej #define MPI_IOCPAGE2_CAP_FLAGS_CROSS_CHANNEL_SUPPORT (0x80000000)
1347 1.1 thorpej
1348 1.1 thorpej /* IOC Page 2 Volume RAID Type values, also used in RAID Volume pages */
1349 1.1 thorpej
1350 1.1 thorpej #define MPI_RAID_VOL_TYPE_IS (0x00)
1351 1.1 thorpej #define MPI_RAID_VOL_TYPE_IME (0x01)
1352 1.1 thorpej #define MPI_RAID_VOL_TYPE_IM (0x02)
1353 1.1 thorpej
1354 1.1 thorpej
1355 1.1 thorpej typedef struct _IOC_3_PHYS_DISK
1356 1.1 thorpej {
1357 1.1 thorpej U8 PhysDiskID; /* 00h */
1358 1.1 thorpej U8 PhysDiskBus; /* 01h */
1359 1.1 thorpej U8 PhysDiskIOC; /* 02h */
1360 1.1 thorpej U8 PhysDiskNum; /* 03h */
1361 1.1 thorpej } IOC_3_PHYS_DISK, MPI_POINTER PTR_IOC_3_PHYS_DISK,
1362 1.1 thorpej Ioc3PhysDisk_t, MPI_POINTER pIoc3PhysDisk_t;
1363 1.1 thorpej
1364 1.1 thorpej /*
1365 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1366 1.1 thorpej * one and check Header.PageLength at runtime.
1367 1.1 thorpej */
1368 1.1 thorpej #ifndef MPI_IOC_PAGE_3_PHYSDISK_MAX
1369 1.1 thorpej #define MPI_IOC_PAGE_3_PHYSDISK_MAX (1)
1370 1.1 thorpej #endif
1371 1.1 thorpej
1372 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_3
1373 1.1 thorpej {
1374 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1375 1.1 thorpej U8 NumPhysDisks; /* 04h */
1376 1.1 thorpej U8 Reserved1; /* 05h */
1377 1.1 thorpej U16 Reserved2; /* 06h */
1378 1.1 thorpej IOC_3_PHYS_DISK PhysDisk[MPI_IOC_PAGE_3_PHYSDISK_MAX]; /* 08h */
1379 1.1 thorpej } fCONFIG_PAGE_IOC_3, MPI_POINTER PTR_CONFIG_PAGE_IOC_3,
1380 1.1 thorpej IOCPage3_t, MPI_POINTER pIOCPage3_t;
1381 1.1 thorpej
1382 1.1 thorpej #define MPI_IOCPAGE3_PAGEVERSION (0x00)
1383 1.1 thorpej
1384 1.1 thorpej
1385 1.1 thorpej typedef struct _IOC_4_SEP
1386 1.1 thorpej {
1387 1.1 thorpej U8 SEPTargetID; /* 00h */
1388 1.1 thorpej U8 SEPBus; /* 01h */
1389 1.1 thorpej U16 Reserved; /* 02h */
1390 1.1 thorpej } IOC_4_SEP, MPI_POINTER PTR_IOC_4_SEP,
1391 1.1 thorpej Ioc4Sep_t, MPI_POINTER pIoc4Sep_t;
1392 1.1 thorpej
1393 1.1 thorpej /*
1394 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1395 1.1 thorpej * one and check Header.PageLength at runtime.
1396 1.1 thorpej */
1397 1.1 thorpej #ifndef MPI_IOC_PAGE_4_SEP_MAX
1398 1.1 thorpej #define MPI_IOC_PAGE_4_SEP_MAX (1)
1399 1.1 thorpej #endif
1400 1.1 thorpej
1401 1.1 thorpej typedef struct _CONFIG_PAGE_IOC_4
1402 1.1 thorpej {
1403 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1404 1.1 thorpej U8 ActiveSEP; /* 04h */
1405 1.1 thorpej U8 MaxSEP; /* 05h */
1406 1.1 thorpej U16 Reserved1; /* 06h */
1407 1.1 thorpej IOC_4_SEP SEP[MPI_IOC_PAGE_4_SEP_MAX]; /* 08h */
1408 1.1 thorpej } fCONFIG_PAGE_IOC_4, MPI_POINTER PTR_CONFIG_PAGE_IOC_4,
1409 1.1 thorpej IOCPage4_t, MPI_POINTER pIOCPage4_t;
1410 1.1 thorpej
1411 1.1 thorpej #define MPI_IOCPAGE4_PAGEVERSION (0x00)
1412 1.1 thorpej
1413 1.1 thorpej
1414 1.1 thorpej /****************************************************************************
1415 1.1 thorpej * SCSI Port Config Pages
1416 1.1 thorpej ****************************************************************************/
1417 1.1 thorpej
1418 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_PORT_0
1419 1.1 thorpej {
1420 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1421 1.1 thorpej U32 Capabilities; /* 04h */
1422 1.1 thorpej U32 PhysicalInterface; /* 08h */
1423 1.1 thorpej } fCONFIG_PAGE_SCSI_PORT_0, MPI_POINTER PTR_CONFIG_PAGE_SCSI_PORT_0,
1424 1.1 thorpej SCSIPortPage0_t, MPI_POINTER pSCSIPortPage0_t;
1425 1.1 thorpej
1426 1.1 thorpej #define MPI_SCSIPORTPAGE0_PAGEVERSION (0x01)
1427 1.1 thorpej
1428 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_IU (0x00000001)
1429 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_DT (0x00000002)
1430 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_QAS (0x00000004)
1431 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_MIN_SYNC_PERIOD_MASK (0x0000FF00)
1432 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_MAX_SYNC_OFFSET_MASK (0x00FF0000)
1433 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_WIDE (0x20000000)
1434 1.1 thorpej #define MPI_SCSIPORTPAGE0_CAP_AIP (0x80000000)
1435 1.1 thorpej
1436 1.1 thorpej #define MPI_SCSIPORTPAGE0_PHY_SIGNAL_TYPE_MASK (0x00000003)
1437 1.1 thorpej #define MPI_SCSIPORTPAGE0_PHY_SIGNAL_HVD (0x01)
1438 1.1 thorpej #define MPI_SCSIPORTPAGE0_PHY_SIGNAL_SE (0x02)
1439 1.1 thorpej #define MPI_SCSIPORTPAGE0_PHY_SIGNAL_LVD (0x03)
1440 1.1 thorpej
1441 1.1 thorpej
1442 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_PORT_1
1443 1.1 thorpej {
1444 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1445 1.1 thorpej U32 Configuration; /* 04h */
1446 1.1 thorpej U32 OnBusTimerValue; /* 08h */
1447 1.1 thorpej } fCONFIG_PAGE_SCSI_PORT_1, MPI_POINTER PTR_CONFIG_PAGE_SCSI_PORT_1,
1448 1.1 thorpej SCSIPortPage1_t, MPI_POINTER pSCSIPortPage1_t;
1449 1.1 thorpej
1450 1.1 thorpej #define MPI_SCSIPORTPAGE1_PAGEVERSION (0x02)
1451 1.1 thorpej
1452 1.1 thorpej #define MPI_SCSIPORTPAGE1_CFG_PORT_SCSI_ID_MASK (0x000000FF)
1453 1.1 thorpej #define MPI_SCSIPORTPAGE1_CFG_PORT_RESPONSE_ID_MASK (0xFFFF0000)
1454 1.1 thorpej
1455 1.1 thorpej
1456 1.1 thorpej typedef struct _MPI_DEVICE_INFO
1457 1.1 thorpej {
1458 1.1 thorpej U8 Timeout; /* 00h */
1459 1.1 thorpej U8 SyncFactor; /* 01h */
1460 1.1 thorpej U16 DeviceFlags; /* 02h */
1461 1.1 thorpej } MPI_DEVICE_INFO, MPI_POINTER PTR_MPI_DEVICE_INFO,
1462 1.1 thorpej MpiDeviceInfo_t, MPI_POINTER pMpiDeviceInfo_t;
1463 1.1 thorpej
1464 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_PORT_2
1465 1.1 thorpej {
1466 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1467 1.1 thorpej U32 PortFlags; /* 04h */
1468 1.1 thorpej U32 PortSettings; /* 08h */
1469 1.1 thorpej MPI_DEVICE_INFO DeviceSettings[16]; /* 0Ch */
1470 1.1 thorpej } fCONFIG_PAGE_SCSI_PORT_2, MPI_POINTER PTR_CONFIG_PAGE_SCSI_PORT_2,
1471 1.1 thorpej SCSIPortPage2_t, MPI_POINTER pSCSIPortPage2_t;
1472 1.1 thorpej
1473 1.1 thorpej #define MPI_SCSIPORTPAGE2_PAGEVERSION (0x01)
1474 1.1 thorpej
1475 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_FLAGS_SCAN_HIGH_TO_LOW (0x00000001)
1476 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_FLAGS_AVOID_SCSI_RESET (0x00000004)
1477 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_FLAGS_ALTERNATE_CHS (0x00000008)
1478 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_FLAGS_TERMINATION_DISABLE (0x00000010)
1479 1.1 thorpej
1480 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_HOST_ID_MASK (0x0000000F)
1481 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_MASK_INIT_HBA (0x00000030)
1482 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_DISABLE_INIT_HBA (0x00000000)
1483 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_BIOS_INIT_HBA (0x00000010)
1484 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_OS_INIT_HBA (0x00000020)
1485 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_BIOS_OS_INIT_HBA (0x00000030)
1486 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_REMOVABLE_MEDIA (0x000000C0)
1487 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_SPINUP_DELAY_MASK (0x00000F00)
1488 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_MASK_NEGO_MASTER_SETTINGS (0x00003000)
1489 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_NEGO_MASTER_SETTINGS (0x00000000)
1490 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_NONE_MASTER_SETTINGS (0x00001000)
1491 1.1 thorpej #define MPI_SCSIPORTPAGE2_PORT_ALL_MASTER_SETTINGS (0x00003000)
1492 1.1 thorpej
1493 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_DISCONNECT_ENABLE (0x0001)
1494 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_ID_SCAN_ENABLE (0x0002)
1495 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_LUN_SCAN_ENABLE (0x0004)
1496 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_TAG_QUEUE_ENABLE (0x0008)
1497 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_WIDE_DISABLE (0x0010)
1498 1.1 thorpej #define MPI_SCSIPORTPAGE2_DEVICE_BOOT_CHOICE (0x0020)
1499 1.1 thorpej
1500 1.1 thorpej
1501 1.1 thorpej /****************************************************************************
1502 1.1 thorpej * SCSI Target Device Config Pages
1503 1.1 thorpej ****************************************************************************/
1504 1.1 thorpej
1505 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_DEVICE_0
1506 1.1 thorpej {
1507 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1508 1.1 thorpej U32 NegotiatedParameters; /* 04h */
1509 1.1 thorpej U32 Information; /* 08h */
1510 1.1 thorpej } fCONFIG_PAGE_SCSI_DEVICE_0, MPI_POINTER PTR_CONFIG_PAGE_SCSI_DEVICE_0,
1511 1.1 thorpej SCSIDevicePage0_t, MPI_POINTER pSCSIDevicePage0_t;
1512 1.1 thorpej
1513 1.1 thorpej #define MPI_SCSIDEVPAGE0_PAGEVERSION (0x02)
1514 1.1 thorpej
1515 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_IU (0x00000001)
1516 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_DT (0x00000002)
1517 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_QAS (0x00000004)
1518 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_NEG_SYNC_PERIOD_MASK (0x0000FF00)
1519 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_NEG_SYNC_OFFSET_MASK (0x00FF0000)
1520 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_WIDE (0x20000000)
1521 1.1 thorpej #define MPI_SCSIDEVPAGE0_NP_AIP (0x80000000)
1522 1.1 thorpej
1523 1.1 thorpej #define MPI_SCSIDEVPAGE0_INFO_PARAMS_NEGOTIATED (0x00000001)
1524 1.1 thorpej #define MPI_SCSIDEVPAGE0_INFO_SDTR_REJECTED (0x00000002)
1525 1.1 thorpej #define MPI_SCSIDEVPAGE0_INFO_WDTR_REJECTED (0x00000004)
1526 1.1 thorpej #define MPI_SCSIDEVPAGE0_INFO_PPR_REJECTED (0x00000008)
1527 1.1 thorpej
1528 1.1 thorpej
1529 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_DEVICE_1
1530 1.1 thorpej {
1531 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1532 1.1 thorpej U32 RequestedParameters; /* 04h */
1533 1.1 thorpej U32 Reserved; /* 08h */
1534 1.1 thorpej U32 Configuration; /* 0Ch */
1535 1.1 thorpej } fCONFIG_PAGE_SCSI_DEVICE_1, MPI_POINTER PTR_CONFIG_PAGE_SCSI_DEVICE_1,
1536 1.1 thorpej SCSIDevicePage1_t, MPI_POINTER pSCSIDevicePage1_t;
1537 1.1 thorpej
1538 1.1 thorpej #define MPI_SCSIDEVPAGE1_PAGEVERSION (0x03)
1539 1.1 thorpej
1540 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_IU (0x00000001)
1541 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_DT (0x00000002)
1542 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_QAS (0x00000004)
1543 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_MIN_SYNC_PERIOD_MASK (0x0000FF00)
1544 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_MAX_SYNC_OFFSET_MASK (0x00FF0000)
1545 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_WIDE (0x20000000)
1546 1.1 thorpej #define MPI_SCSIDEVPAGE1_RP_AIP (0x80000000)
1547 1.1 thorpej
1548 1.1 thorpej #define MPI_SCSIDEVPAGE1_DV_LVD_DRIVE_STRENGTH_MASK (0x00000003)
1549 1.1 thorpej #define MPI_SCSIDEVPAGE1_DV_SE_SLEW_RATE_MASK (0x00000300)
1550 1.1 thorpej
1551 1.1 thorpej #define MPI_SCSIDEVPAGE1_CONF_WDTR_DISALLOWED (0x00000002)
1552 1.1 thorpej #define MPI_SCSIDEVPAGE1_CONF_SDTR_DISALLOWED (0x00000004)
1553 1.1 thorpej
1554 1.1 thorpej
1555 1.1 thorpej typedef struct _CONFIG_PAGE_SCSI_DEVICE_2
1556 1.1 thorpej {
1557 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1558 1.1 thorpej U32 DomainValidation; /* 04h */
1559 1.1 thorpej U32 ParityPipeSelect; /* 08h */
1560 1.1 thorpej U32 DataPipeSelect; /* 0Ch */
1561 1.1 thorpej } fCONFIG_PAGE_SCSI_DEVICE_2, MPI_POINTER PTR_CONFIG_PAGE_SCSI_DEVICE_2,
1562 1.1 thorpej SCSIDevicePage2_t, MPI_POINTER pSCSIDevicePage2_t;
1563 1.1 thorpej
1564 1.1 thorpej #define MPI_SCSIDEVPAGE2_PAGEVERSION (0x00)
1565 1.1 thorpej
1566 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_ISI_ENABLE (0x00000010)
1567 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_SECONDARY_DRIVER_ENABLE (0x00000020)
1568 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_SLEW_RATE_CTRL (0x00000380)
1569 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_PRIM_DRIVE_STR_CTRL (0x00001C00)
1570 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_SECOND_DRIVE_STR_CTRL (0x0000E000)
1571 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_XCLKH_ST (0x10000000)
1572 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_XCLKS_ST (0x20000000)
1573 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_XCLKH_DT (0x40000000)
1574 1.1 thorpej #define MPI_SCSIDEVPAGE2_DV_XCLKS_DT (0x80000000)
1575 1.1 thorpej
1576 1.1 thorpej #define MPI_SCSIDEVPAGE2_PPS_PPS_MASK (0x00000003)
1577 1.1 thorpej
1578 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_0_PL_SELECT_MASK (0x00000003)
1579 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_1_PL_SELECT_MASK (0x0000000C)
1580 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_2_PL_SELECT_MASK (0x00000030)
1581 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_3_PL_SELECT_MASK (0x000000C0)
1582 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_4_PL_SELECT_MASK (0x00000300)
1583 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_5_PL_SELECT_MASK (0x00000C00)
1584 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_6_PL_SELECT_MASK (0x00003000)
1585 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_7_PL_SELECT_MASK (0x0000C000)
1586 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_8_PL_SELECT_MASK (0x00030000)
1587 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_9_PL_SELECT_MASK (0x000C0000)
1588 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_10_PL_SELECT_MASK (0x00300000)
1589 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_11_PL_SELECT_MASK (0x00C00000)
1590 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_12_PL_SELECT_MASK (0x03000000)
1591 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_13_PL_SELECT_MASK (0x0C000000)
1592 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_14_PL_SELECT_MASK (0x30000000)
1593 1.1 thorpej #define MPI_SCSIDEVPAGE2_DPS_BIT_15_PL_SELECT_MASK (0xC0000000)
1594 1.1 thorpej
1595 1.1 thorpej
1596 1.1 thorpej /****************************************************************************
1597 1.1 thorpej * FC Port Config Pages
1598 1.1 thorpej ****************************************************************************/
1599 1.1 thorpej
1600 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_0
1601 1.1 thorpej {
1602 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1603 1.1 thorpej U32 Flags; /* 04h */
1604 1.1 thorpej U8 MPIPortNumber; /* 08h */
1605 1.1 thorpej U8 LinkType; /* 09h */
1606 1.1 thorpej U8 PortState; /* 0Ah */
1607 1.1 thorpej U8 Reserved; /* 0Bh */
1608 1.1 thorpej U32 PortIdentifier; /* 0Ch */
1609 1.1 thorpej U64 WWNN; /* 10h */
1610 1.1 thorpej U64 WWPN; /* 18h */
1611 1.1 thorpej U32 SupportedServiceClass; /* 20h */
1612 1.1 thorpej U32 SupportedSpeeds; /* 24h */
1613 1.1 thorpej U32 CurrentSpeed; /* 28h */
1614 1.1 thorpej U32 MaxFrameSize; /* 2Ch */
1615 1.1 thorpej U64 FabricWWNN; /* 30h */
1616 1.1 thorpej U64 FabricWWPN; /* 38h */
1617 1.1 thorpej U32 DiscoveredPortsCount; /* 40h */
1618 1.1 thorpej U32 MaxInitiators; /* 44h */
1619 1.1 thorpej } fCONFIG_PAGE_FC_PORT_0, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_0,
1620 1.1 thorpej FCPortPage0_t, MPI_POINTER pFCPortPage0_t;
1621 1.1 thorpej
1622 1.1 thorpej #define MPI_FCPORTPAGE0_PAGEVERSION (0x01)
1623 1.1 thorpej
1624 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_PROT_MASK (0x0000000F)
1625 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_PROT_FCP_INIT (MPI_PORTFACTS_PROTOCOL_INITIATOR)
1626 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_PROT_FCP_TARG (MPI_PORTFACTS_PROTOCOL_TARGET)
1627 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_PROT_LAN (MPI_PORTFACTS_PROTOCOL_LAN)
1628 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_PROT_LOGBUSADDR (MPI_PORTFACTS_PROTOCOL_LOGBUSADDR)
1629 1.1 thorpej
1630 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ALIAS_ALPA_SUPPORTED (0x00000010)
1631 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ALIAS_WWN_SUPPORTED (0x00000020)
1632 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_FABRIC_WWN_VALID (0x00000030)
1633 1.1 thorpej
1634 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_TYPE_MASK (0x00000F00)
1635 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_NO_INIT (0x00000000)
1636 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_POINT_TO_POINT (0x00000100)
1637 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_PRIVATE_LOOP (0x00000200)
1638 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_FABRIC_DIRECT (0x00000400)
1639 1.1 thorpej #define MPI_FCPORTPAGE0_FLAGS_ATTACH_PUBLIC_LOOP (0x00000800)
1640 1.1 thorpej
1641 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_RESERVED (0x00)
1642 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_OTHER (0x01)
1643 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_UNKNOWN (0x02)
1644 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_COPPER (0x03)
1645 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_SINGLE_1300 (0x04)
1646 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_SINGLE_1500 (0x05)
1647 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_50_LASER_MULTI (0x06)
1648 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_50_LED_MULTI (0x07)
1649 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_62_LASER_MULTI (0x08)
1650 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_62_LED_MULTI (0x09)
1651 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_MULTI_LONG_WAVE (0x0A)
1652 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_MULTI_SHORT_WAVE (0x0B)
1653 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_LASER_SHORT_WAVE (0x0C)
1654 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_LED_SHORT_WAVE (0x0D)
1655 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_1300_LONG_WAVE (0x0E)
1656 1.1 thorpej #define MPI_FCPORTPAGE0_LTYPE_1500_LONG_WAVE (0x0F)
1657 1.1 thorpej
1658 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_UNKNOWN (0x01) /*(SNIA)HBA_PORTSTATE_UNKNOWN 1 Unknown */
1659 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_ONLINE (0x02) /*(SNIA)HBA_PORTSTATE_ONLINE 2 Operational */
1660 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_OFFLINE (0x03) /*(SNIA)HBA_PORTSTATE_OFFLINE 3 User Offline */
1661 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_BYPASSED (0x04) /*(SNIA)HBA_PORTSTATE_BYPASSED 4 Bypassed */
1662 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_DIAGNOST (0x05) /*(SNIA)HBA_PORTSTATE_DIAGNOSTICS 5 In diagnostics mode */
1663 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_LINKDOWN (0x06) /*(SNIA)HBA_PORTSTATE_LINKDOWN 6 Link Down */
1664 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_ERROR (0x07) /*(SNIA)HBA_PORTSTATE_ERROR 7 Port Error */
1665 1.1 thorpej #define MPI_FCPORTPAGE0_PORTSTATE_LOOPBACK (0x08) /*(SNIA)HBA_PORTSTATE_LOOPBACK 8 Loopback */
1666 1.1 thorpej
1667 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_CLASS_1 (0x00000001)
1668 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_CLASS_2 (0x00000002)
1669 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_CLASS_3 (0x00000004)
1670 1.1 thorpej
1671 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_1GBIT_SPEED (0x00000001) /* (SNIA)HBA_PORTSPEED_1GBIT 1 1 GBit/sec */
1672 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_2GBIT_SPEED (0x00000002) /* (SNIA)HBA_PORTSPEED_2GBIT 2 2 GBit/sec */
1673 1.1 thorpej #define MPI_FCPORTPAGE0_SUPPORT_10GBIT_SPEED (0x00000004) /* (SNIA)HBA_PORTSPEED_10GBIT 4 10 GBit/sec */
1674 1.1 thorpej
1675 1.1 thorpej #define MPI_FCPORTPAGE0_CURRENT_SPEED_1GBIT MPI_FCPORTPAGE0_SUPPORT_1GBIT_SPEED
1676 1.1 thorpej #define MPI_FCPORTPAGE0_CURRENT_SPEED_2GBIT MPI_FCPORTPAGE0_SUPPORT_2GBIT_SPEED
1677 1.1 thorpej #define MPI_FCPORTPAGE0_CURRENT_SPEED_10GBIT MPI_FCPORTPAGE0_SUPPORT_10GBIT_SPEED
1678 1.1 thorpej
1679 1.1 thorpej
1680 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_1
1681 1.1 thorpej {
1682 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1683 1.1 thorpej U32 Flags; /* 04h */
1684 1.1 thorpej U64 NoSEEPROMWWNN; /* 08h */
1685 1.1 thorpej U64 NoSEEPROMWWPN; /* 10h */
1686 1.1 thorpej U8 HardALPA; /* 18h */
1687 1.1 thorpej U8 LinkConfig; /* 19h */
1688 1.1 thorpej U8 TopologyConfig; /* 1Ah */
1689 1.1 thorpej U8 Reserved; /* 1Bh */
1690 1.1 thorpej } fCONFIG_PAGE_FC_PORT_1, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_1,
1691 1.1 thorpej FCPortPage1_t, MPI_POINTER pFCPortPage1_t;
1692 1.1 thorpej
1693 1.1 thorpej #define MPI_FCPORTPAGE1_PAGEVERSION (0x02)
1694 1.1 thorpej
1695 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_EXT_FCP_STATUS_EN (0x08000000)
1696 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_IMMEDIATE_ERROR_REPLY (0x04000000)
1697 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_SORT_BY_DID (0x00000001)
1698 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_SORT_BY_WWN (0x00000000)
1699 1.1 thorpej
1700 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_MASK (0xF0000000)
1701 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_SHIFT (28)
1702 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_FCP_INIT ((U32)MPI_PORTFACTS_PROTOCOL_INITIATOR << MPI_FCPORTPAGE1_FLAGS_PROT_SHIFT)
1703 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_FCP_TARG ((U32)MPI_PORTFACTS_PROTOCOL_TARGET << MPI_FCPORTPAGE1_FLAGS_PROT_SHIFT)
1704 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_LAN ((U32)MPI_PORTFACTS_PROTOCOL_LAN << MPI_FCPORTPAGE1_FLAGS_PROT_SHIFT)
1705 1.1 thorpej #define MPI_FCPORTPAGE1_FLAGS_PROT_LOGBUSADDR ((U32)MPI_PORTFACTS_PROTOCOL_LOGBUSADDR << MPI_FCPORTPAGE1_FLAGS_PROT_SHIFT)
1706 1.1 thorpej
1707 1.1 thorpej #define MPI_FCPORTPAGE1_HARD_ALPA_NOT_USED (0xFF)
1708 1.1 thorpej
1709 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_MASK (0x0F)
1710 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_1GIG (0x00)
1711 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_2GIG (0x01)
1712 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_4GIG (0x02)
1713 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_10GIG (0x03)
1714 1.1 thorpej #define MPI_FCPORTPAGE1_LCONFIG_SPEED_AUTO (0x0F)
1715 1.1 thorpej
1716 1.1 thorpej #define MPI_FCPORTPAGE1_TOPOLOGY_MASK (0x0F)
1717 1.1 thorpej #define MPI_FCPORTPAGE1_TOPOLOGY_NLPORT (0x01)
1718 1.1 thorpej #define MPI_FCPORTPAGE1_TOPOLOGY_NPORT (0x02)
1719 1.1 thorpej #define MPI_FCPORTPAGE1_TOPOLOGY_AUTO (0x0F)
1720 1.1 thorpej
1721 1.1 thorpej
1722 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_2
1723 1.1 thorpej {
1724 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1725 1.1 thorpej U8 NumberActive; /* 04h */
1726 1.1 thorpej U8 ALPA[127]; /* 05h */
1727 1.1 thorpej } fCONFIG_PAGE_FC_PORT_2, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_2,
1728 1.1 thorpej FCPortPage2_t, MPI_POINTER pFCPortPage2_t;
1729 1.1 thorpej
1730 1.1 thorpej #define MPI_FCPORTPAGE2_PAGEVERSION (0x01)
1731 1.1 thorpej
1732 1.1 thorpej
1733 1.1 thorpej typedef struct _WWN_FORMAT
1734 1.1 thorpej {
1735 1.1 thorpej U64 WWNN; /* 00h */
1736 1.1 thorpej U64 WWPN; /* 08h */
1737 1.1 thorpej } WWN_FORMAT, MPI_POINTER PTR_WWN_FORMAT,
1738 1.1 thorpej WWNFormat, MPI_POINTER pWWNFormat;
1739 1.1 thorpej
1740 1.1 thorpej typedef union _FC_PORT_PERSISTENT_PHYSICAL_ID
1741 1.1 thorpej {
1742 1.1 thorpej WWN_FORMAT WWN;
1743 1.1 thorpej U32 Did;
1744 1.1 thorpej } FC_PORT_PERSISTENT_PHYSICAL_ID, MPI_POINTER PTR_FC_PORT_PERSISTENT_PHYSICAL_ID,
1745 1.1 thorpej PersistentPhysicalId_t, MPI_POINTER pPersistentPhysicalId_t;
1746 1.1 thorpej
1747 1.1 thorpej typedef struct _FC_PORT_PERSISTENT
1748 1.1 thorpej {
1749 1.1 thorpej FC_PORT_PERSISTENT_PHYSICAL_ID PhysicalIdentifier; /* 00h */
1750 1.1 thorpej U8 TargetID; /* 10h */
1751 1.1 thorpej U8 Bus; /* 11h */
1752 1.1 thorpej U16 Flags; /* 12h */
1753 1.1 thorpej } FC_PORT_PERSISTENT, MPI_POINTER PTR_FC_PORT_PERSISTENT,
1754 1.1 thorpej PersistentData_t, MPI_POINTER pPersistentData_t;
1755 1.1 thorpej
1756 1.1 thorpej #define MPI_PERSISTENT_FLAGS_SHIFT (16)
1757 1.1 thorpej #define MPI_PERSISTENT_FLAGS_ENTRY_VALID (0x0001)
1758 1.1 thorpej #define MPI_PERSISTENT_FLAGS_SCAN_ID (0x0002)
1759 1.1 thorpej #define MPI_PERSISTENT_FLAGS_SCAN_LUNS (0x0004)
1760 1.1 thorpej #define MPI_PERSISTENT_FLAGS_BOOT_DEVICE (0x0008)
1761 1.1 thorpej #define MPI_PERSISTENT_FLAGS_BY_DID (0x0080)
1762 1.1 thorpej
1763 1.1 thorpej /*
1764 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1765 1.1 thorpej * one and check Header.PageLength at runtime.
1766 1.1 thorpej */
1767 1.1 thorpej #ifndef MPI_FC_PORT_PAGE_3_ENTRY_MAX
1768 1.1 thorpej #define MPI_FC_PORT_PAGE_3_ENTRY_MAX (1)
1769 1.1 thorpej #endif
1770 1.1 thorpej
1771 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_3
1772 1.1 thorpej {
1773 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1774 1.1 thorpej FC_PORT_PERSISTENT Entry[MPI_FC_PORT_PAGE_3_ENTRY_MAX]; /* 04h */
1775 1.1 thorpej } fCONFIG_PAGE_FC_PORT_3, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_3,
1776 1.1 thorpej FCPortPage3_t, MPI_POINTER pFCPortPage3_t;
1777 1.1 thorpej
1778 1.1 thorpej #define MPI_FCPORTPAGE3_PAGEVERSION (0x01)
1779 1.1 thorpej
1780 1.1 thorpej
1781 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_4
1782 1.1 thorpej {
1783 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1784 1.1 thorpej U32 PortFlags; /* 04h */
1785 1.1 thorpej U32 PortSettings; /* 08h */
1786 1.1 thorpej } fCONFIG_PAGE_FC_PORT_4, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_4,
1787 1.1 thorpej FCPortPage4_t, MPI_POINTER pFCPortPage4_t;
1788 1.1 thorpej
1789 1.1 thorpej #define MPI_FCPORTPAGE4_PAGEVERSION (0x00)
1790 1.1 thorpej
1791 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_FLAGS_ALTERNATE_CHS (0x00000008)
1792 1.1 thorpej
1793 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_MASK_INIT_HBA (0x00000030)
1794 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_DISABLE_INIT_HBA (0x00000000)
1795 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_BIOS_INIT_HBA (0x00000010)
1796 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_OS_INIT_HBA (0x00000020)
1797 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_BIOS_OS_INIT_HBA (0x00000030)
1798 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_REMOVABLE_MEDIA (0x000000C0)
1799 1.1 thorpej #define MPI_FCPORTPAGE4_PORT_SPINUP_DELAY_MASK (0x00000F00)
1800 1.1 thorpej
1801 1.1 thorpej
1802 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_5_ALIAS_INFO
1803 1.1 thorpej {
1804 1.1 thorpej U8 Flags; /* 00h */
1805 1.1 thorpej U8 AliasAlpa; /* 01h */
1806 1.1 thorpej U16 Reserved; /* 02h */
1807 1.1 thorpej U64 AliasWWNN; /* 04h */
1808 1.1 thorpej U64 AliasWWPN; /* 0Ch */
1809 1.1 thorpej } fCONFIG_PAGE_FC_PORT_5_ALIAS_INFO,
1810 1.1 thorpej MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_5_ALIAS_INFO,
1811 1.1 thorpej FcPortPage5AliasInfo_t, MPI_POINTER pFcPortPage5AliasInfo_t;
1812 1.1 thorpej
1813 1.1 thorpej /*
1814 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
1815 1.1 thorpej * one and check Header.PageLength at runtime.
1816 1.1 thorpej */
1817 1.1 thorpej #ifndef MPI_FC_PORT_PAGE_5_ALIAS_MAX
1818 1.1 thorpej #define MPI_FC_PORT_PAGE_5_ALIAS_MAX (1)
1819 1.1 thorpej #endif
1820 1.1 thorpej
1821 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_5
1822 1.1 thorpej {
1823 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1824 1.1 thorpej fCONFIG_PAGE_FC_PORT_5_ALIAS_INFO AliasInfo[MPI_FC_PORT_PAGE_5_ALIAS_MAX];/* 04h */
1825 1.1 thorpej } fCONFIG_PAGE_FC_PORT_5, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_5,
1826 1.1 thorpej FCPortPage5_t, MPI_POINTER pFCPortPage5_t;
1827 1.1 thorpej
1828 1.1 thorpej #define MPI_FCPORTPAGE5_PAGEVERSION (0x00)
1829 1.1 thorpej
1830 1.1 thorpej #define MPI_FCPORTPAGE5_FLAGS_ALIAS_ALPA_VALID (0x01)
1831 1.1 thorpej #define MPI_FCPORTPAGE5_FLAGS_ALIAS_WWN_VALID (0x02)
1832 1.1 thorpej
1833 1.1 thorpej
1834 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_6
1835 1.1 thorpej {
1836 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1837 1.1 thorpej U32 Reserved; /* 04h */
1838 1.1 thorpej U64 TimeSinceReset; /* 08h */
1839 1.1 thorpej U64 TxFrames; /* 10h */
1840 1.1 thorpej U64 RxFrames; /* 18h */
1841 1.1 thorpej U64 TxWords; /* 20h */
1842 1.1 thorpej U64 RxWords; /* 28h */
1843 1.1 thorpej U64 LipCount; /* 30h */
1844 1.1 thorpej U64 NosCount; /* 38h */
1845 1.1 thorpej U64 ErrorFrames; /* 40h */
1846 1.1 thorpej U64 DumpedFrames; /* 48h */
1847 1.1 thorpej U64 LinkFailureCount; /* 50h */
1848 1.1 thorpej U64 LossOfSyncCount; /* 58h */
1849 1.1 thorpej U64 LossOfSignalCount; /* 60h */
1850 1.1 thorpej U64 PrimativeSeqErrCount; /* 68h */
1851 1.1 thorpej U64 InvalidTxWordCount; /* 70h */
1852 1.1 thorpej U64 InvalidCrcCount; /* 78h */
1853 1.1 thorpej U64 FcpInitiatorIoCount; /* 80h */
1854 1.1 thorpej } fCONFIG_PAGE_FC_PORT_6, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_6,
1855 1.1 thorpej FCPortPage6_t, MPI_POINTER pFCPortPage6_t;
1856 1.1 thorpej
1857 1.1 thorpej #define MPI_FCPORTPAGE6_PAGEVERSION (0x00)
1858 1.1 thorpej
1859 1.1 thorpej
1860 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_7
1861 1.1 thorpej {
1862 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1863 1.1 thorpej U32 Reserved; /* 04h */
1864 1.1 thorpej U8 PortSymbolicName[256]; /* 08h */
1865 1.1 thorpej } fCONFIG_PAGE_FC_PORT_7, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_7,
1866 1.1 thorpej FCPortPage7_t, MPI_POINTER pFCPortPage7_t;
1867 1.1 thorpej
1868 1.1 thorpej #define MPI_FCPORTPAGE7_PAGEVERSION (0x00)
1869 1.1 thorpej
1870 1.1 thorpej
1871 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_8
1872 1.1 thorpej {
1873 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1874 1.1 thorpej U32 BitVector[8]; /* 04h */
1875 1.1 thorpej } fCONFIG_PAGE_FC_PORT_8, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_8,
1876 1.1 thorpej FCPortPage8_t, MPI_POINTER pFCPortPage8_t;
1877 1.1 thorpej
1878 1.1 thorpej #define MPI_FCPORTPAGE8_PAGEVERSION (0x00)
1879 1.1 thorpej
1880 1.1 thorpej
1881 1.1 thorpej typedef struct _CONFIG_PAGE_FC_PORT_9
1882 1.1 thorpej {
1883 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1884 1.1 thorpej U32 Reserved; /* 04h */
1885 1.1 thorpej U64 GlobalWWPN; /* 08h */
1886 1.1 thorpej U64 GlobalWWNN; /* 10h */
1887 1.1 thorpej U32 UnitType; /* 18h */
1888 1.1 thorpej U32 PhysicalPortNumber; /* 1Ch */
1889 1.1 thorpej U32 NumAttachedNodes; /* 20h */
1890 1.1 thorpej U16 IPVersion; /* 24h */
1891 1.1 thorpej U16 UDPPortNumber; /* 26h */
1892 1.1 thorpej U8 IPAddress[16]; /* 28h */
1893 1.1 thorpej U16 Reserved1; /* 38h */
1894 1.1 thorpej U16 TopologyDiscoveryFlags; /* 3Ah */
1895 1.1 thorpej } fCONFIG_PAGE_FC_PORT_9, MPI_POINTER PTR_CONFIG_PAGE_FC_PORT_9,
1896 1.1 thorpej FCPortPage9_t, MPI_POINTER pFCPortPage9_t;
1897 1.1 thorpej
1898 1.1 thorpej #define MPI_FCPORTPAGE9_PAGEVERSION (0x00)
1899 1.1 thorpej
1900 1.1 thorpej
1901 1.1 thorpej /****************************************************************************
1902 1.1 thorpej * FC Device Config Pages
1903 1.1 thorpej ****************************************************************************/
1904 1.1 thorpej
1905 1.1 thorpej typedef struct _CONFIG_PAGE_FC_DEVICE_0
1906 1.1 thorpej {
1907 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
1908 1.1 thorpej U64 WWNN; /* 04h */
1909 1.1 thorpej U64 WWPN; /* 0Ch */
1910 1.1 thorpej U32 PortIdentifier; /* 14h */
1911 1.1 thorpej U8 Protocol; /* 18h */
1912 1.1 thorpej U8 Flags; /* 19h */
1913 1.1 thorpej U16 BBCredit; /* 1Ah */
1914 1.1 thorpej U16 MaxRxFrameSize; /* 1Ch */
1915 1.1 thorpej U8 Reserved1; /* 1Eh */
1916 1.1 thorpej U8 PortNumber; /* 1Fh */
1917 1.1 thorpej U8 FcPhLowestVersion; /* 20h */
1918 1.1 thorpej U8 FcPhHighestVersion; /* 21h */
1919 1.1 thorpej U8 CurrentTargetID; /* 22h */
1920 1.1 thorpej U8 CurrentBus; /* 23h */
1921 1.1 thorpej } fCONFIG_PAGE_FC_DEVICE_0, MPI_POINTER PTR_CONFIG_PAGE_FC_DEVICE_0,
1922 1.1 thorpej FCDevicePage0_t, MPI_POINTER pFCDevicePage0_t;
1923 1.1 thorpej
1924 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PAGEVERSION (0x02)
1925 1.1 thorpej
1926 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_FLAGS_TARGETID_BUS_VALID (0x01)
1927 1.1 thorpej
1928 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PROT_IP (0x01)
1929 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PROT_FCP_TARGET (0x02)
1930 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PROT_FCP_INITIATOR (0x04)
1931 1.1 thorpej
1932 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_PORT_MASK (MPI_FC_DEVICE_PGAD_PORT_MASK)
1933 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_FORM_MASK (MPI_FC_DEVICE_PGAD_FORM_MASK)
1934 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_FORM_NEXT_DID (MPI_FC_DEVICE_PGAD_FORM_NEXT_DID)
1935 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_FORM_BUS_TID (MPI_FC_DEVICE_PGAD_FORM_BUS_TID)
1936 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_DID_MASK (MPI_FC_DEVICE_PGAD_ND_DID_MASK)
1937 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_BUS_MASK (MPI_FC_DEVICE_PGAD_BT_BUS_MASK)
1938 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_BUS_SHIFT (MPI_FC_DEVICE_PGAD_BT_BUS_SHIFT)
1939 1.1 thorpej #define MPI_FC_DEVICE_PAGE0_PGAD_TID_MASK (MPI_FC_DEVICE_PGAD_BT_TID_MASK)
1940 1.1 thorpej
1941 1.1 thorpej
1942 1.1 thorpej /****************************************************************************
1943 1.1 thorpej * RAID Volume Config Pages
1944 1.1 thorpej ****************************************************************************/
1945 1.1 thorpej
1946 1.1 thorpej typedef struct _RAID_VOL0_PHYS_DISK
1947 1.1 thorpej {
1948 1.1 thorpej U16 Reserved; /* 00h */
1949 1.1 thorpej U8 PhysDiskMap; /* 02h */
1950 1.1 thorpej U8 PhysDiskNum; /* 03h */
1951 1.1 thorpej } RAID_VOL0_PHYS_DISK, MPI_POINTER PTR_RAID_VOL0_PHYS_DISK,
1952 1.1 thorpej RaidVol0PhysDisk_t, MPI_POINTER pRaidVol0PhysDisk_t;
1953 1.1 thorpej
1954 1.1 thorpej #define MPI_RAIDVOL0_PHYSDISK_PRIMARY (0x01)
1955 1.1 thorpej #define MPI_RAIDVOL0_PHYSDISK_SECONDARY (0x02)
1956 1.1 thorpej
1957 1.1 thorpej typedef struct _RAID_VOL0_STATUS
1958 1.1 thorpej {
1959 1.1 thorpej U8 Flags; /* 00h */
1960 1.1 thorpej U8 State; /* 01h */
1961 1.1 thorpej U16 Reserved; /* 02h */
1962 1.1 thorpej } RAID_VOL0_STATUS, MPI_POINTER PTR_RAID_VOL0_STATUS,
1963 1.1 thorpej RaidVol0Status_t, MPI_POINTER pRaidVol0Status_t;
1964 1.1 thorpej
1965 1.1 thorpej /* RAID Volume Page 0 VolumeStatus defines */
1966 1.1 thorpej
1967 1.1 thorpej #define MPI_RAIDVOL0_STATUS_FLAG_ENABLED (0x01)
1968 1.1 thorpej #define MPI_RAIDVOL0_STATUS_FLAG_QUIESCED (0x02)
1969 1.1 thorpej #define MPI_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS (0x04)
1970 1.1 thorpej
1971 1.1 thorpej #define MPI_RAIDVOL0_STATUS_STATE_OPTIMAL (0x00)
1972 1.1 thorpej #define MPI_RAIDVOL0_STATUS_STATE_DEGRADED (0x01)
1973 1.1 thorpej #define MPI_RAIDVOL0_STATUS_STATE_FAILED (0x02)
1974 1.1 thorpej
1975 1.1 thorpej typedef struct _RAID_VOL0_SETTINGS
1976 1.1 thorpej {
1977 1.1 thorpej U16 Settings; /* 00h */
1978 1.1 thorpej U8 HotSparePool; /* 01h */ /* MPI_RAID_HOT_SPARE_POOL_ */
1979 1.1 thorpej U8 Reserved; /* 02h */
1980 1.1 thorpej } RAID_VOL0_SETTINGS, MPI_POINTER PTR_RAID_VOL0_SETTINGS,
1981 1.1 thorpej RaidVol0Settings, MPI_POINTER pRaidVol0Settings;
1982 1.1 thorpej
1983 1.1 thorpej /* RAID Volume Page 0 VolumeSettings defines */
1984 1.1 thorpej
1985 1.1 thorpej #define MPI_RAIDVOL0_SETTING_WRITE_CACHING_ENABLE (0x0001)
1986 1.1 thorpej #define MPI_RAIDVOL0_SETTING_OFFLINE_ON_SMART (0x0002)
1987 1.1 thorpej #define MPI_RAIDVOL0_SETTING_AUTO_CONFIGURE (0x0004)
1988 1.1 thorpej #define MPI_RAIDVOL0_SETTING_PRIORITY_RESYNC (0x0008)
1989 1.1 thorpej #define MPI_RAIDVOL0_SETTING_USE_PRODUCT_ID_SUFFIX (0x0010)
1990 1.1 thorpej #define MPI_RAIDVOL0_SETTING_USE_DEFAULTS (0x8000)
1991 1.1 thorpej
1992 1.1 thorpej /* RAID Volume Page 0 HotSparePool defines, also used in RAID Physical Disk */
1993 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_0 (0x01)
1994 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_1 (0x02)
1995 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_2 (0x04)
1996 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_3 (0x08)
1997 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_4 (0x10)
1998 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_5 (0x20)
1999 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_6 (0x40)
2000 1.1 thorpej #define MPI_RAID_HOT_SPARE_POOL_7 (0x80)
2001 1.1 thorpej
2002 1.1 thorpej /*
2003 1.1 thorpej * Host code (drivers, BIOS, utilities, etc.) should leave this define set to
2004 1.1 thorpej * one and check Header.PageLength at runtime.
2005 1.1 thorpej */
2006 1.1 thorpej #ifndef MPI_RAID_VOL_PAGE_0_PHYSDISK_MAX
2007 1.1 thorpej #define MPI_RAID_VOL_PAGE_0_PHYSDISK_MAX (1)
2008 1.1 thorpej #endif
2009 1.1 thorpej
2010 1.1 thorpej typedef struct _CONFIG_PAGE_RAID_VOL_0
2011 1.1 thorpej {
2012 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
2013 1.1 thorpej U8 VolumeID; /* 04h */
2014 1.1 thorpej U8 VolumeBus; /* 05h */
2015 1.1 thorpej U8 VolumeIOC; /* 06h */
2016 1.1 thorpej U8 VolumeType; /* 07h */ /* MPI_RAID_VOL_TYPE_ */
2017 1.1 thorpej RAID_VOL0_STATUS VolumeStatus; /* 08h */
2018 1.1 thorpej RAID_VOL0_SETTINGS VolumeSettings; /* 0Ch */
2019 1.1 thorpej U32 MaxLBA; /* 10h */
2020 1.1 thorpej U32 Reserved1; /* 14h */
2021 1.1 thorpej U32 StripeSize; /* 18h */
2022 1.1 thorpej U32 Reserved2; /* 1Ch */
2023 1.1 thorpej U32 Reserved3; /* 20h */
2024 1.1 thorpej U8 NumPhysDisks; /* 24h */
2025 1.1 thorpej U8 Reserved4; /* 25h */
2026 1.1 thorpej U16 Reserved5; /* 26h */
2027 1.1 thorpej RAID_VOL0_PHYS_DISK PhysDisk[MPI_RAID_VOL_PAGE_0_PHYSDISK_MAX];/* 28h */
2028 1.1 thorpej } fCONFIG_PAGE_RAID_VOL_0, MPI_POINTER PTR_CONFIG_PAGE_RAID_VOL_0,
2029 1.1 thorpej RaidVolumePage0_t, MPI_POINTER pRaidVolumePage0_t;
2030 1.1 thorpej
2031 1.1 thorpej #define MPI_RAIDVOLPAGE0_PAGEVERSION (0x00)
2032 1.1 thorpej
2033 1.1 thorpej
2034 1.1 thorpej /****************************************************************************
2035 1.1 thorpej * RAID Physical Disk Config Pages
2036 1.1 thorpej ****************************************************************************/
2037 1.1 thorpej
2038 1.1 thorpej typedef struct _RAID_PHYS_DISK0_ERROR_DATA
2039 1.1 thorpej {
2040 1.1 thorpej U8 ErrorCdbByte; /* 00h */
2041 1.1 thorpej U8 ErrorSenseKey; /* 01h */
2042 1.1 thorpej U16 Reserved; /* 02h */
2043 1.1 thorpej U16 ErrorCount; /* 04h */
2044 1.1 thorpej U8 ErrorASC; /* 06h */
2045 1.1 thorpej U8 ErrorASCQ; /* 07h */
2046 1.1 thorpej U16 SmartCount; /* 08h */
2047 1.1 thorpej U8 SmartASC; /* 0Ah */
2048 1.1 thorpej U8 SmartASCQ; /* 0Bh */
2049 1.1 thorpej } RAID_PHYS_DISK0_ERROR_DATA, MPI_POINTER PTR_RAID_PHYS_DISK0_ERROR_DATA,
2050 1.1 thorpej RaidPhysDisk0ErrorData_t, MPI_POINTER pRaidPhysDisk0ErrorData_t;
2051 1.1 thorpej
2052 1.1 thorpej typedef struct _RAID_PHYS_DISK_INQUIRY_DATA
2053 1.1 thorpej {
2054 1.1 thorpej U8 VendorID[8]; /* 00h */
2055 1.1 thorpej U8 ProductID[16]; /* 08h */
2056 1.1 thorpej U8 ProductRevLevel[4]; /* 18h */
2057 1.1 thorpej U8 Info[32]; /* 1Ch */
2058 1.1 thorpej } RAID_PHYS_DISK0_INQUIRY_DATA, MPI_POINTER PTR_RAID_PHYS_DISK0_INQUIRY_DATA,
2059 1.1 thorpej RaidPhysDisk0InquiryData, MPI_POINTER pRaidPhysDisk0InquiryData;
2060 1.1 thorpej
2061 1.1 thorpej typedef struct _RAID_PHYS_DISK0_SETTINGS
2062 1.1 thorpej {
2063 1.1 thorpej U8 SepID; /* 00h */
2064 1.1 thorpej U8 SepBus; /* 01h */
2065 1.1 thorpej U8 HotSparePool; /* 02h */ /* MPI_RAID_HOT_SPARE_POOL_ */
2066 1.1 thorpej U8 PhysDiskSettings; /* 03h */
2067 1.1 thorpej } RAID_PHYS_DISK0_SETTINGS, MPI_POINTER PTR_RAID_PHYS_DISK0_SETTINGS,
2068 1.1 thorpej RaidPhysDiskSettings_t, MPI_POINTER pRaidPhysDiskSettings_t;
2069 1.1 thorpej
2070 1.1 thorpej typedef struct _RAID_PHYS_DISK0_STATUS
2071 1.1 thorpej {
2072 1.1 thorpej U8 Flags; /* 00h */
2073 1.1 thorpej U8 State; /* 01h */
2074 1.1 thorpej U16 Reserved; /* 02h */
2075 1.1 thorpej } RAID_PHYS_DISK0_STATUS, MPI_POINTER PTR_RAID_PHYS_DISK0_STATUS,
2076 1.1 thorpej RaidPhysDiskStatus_t, MPI_POINTER pRaidPhysDiskStatus_t;
2077 1.1 thorpej
2078 1.1 thorpej /* RAID Volume 2 IM Physical Disk DiskStatus flags */
2079 1.1 thorpej
2080 1.1 thorpej #define MPI_PHYSDISK0_STATUS_FLAG_OUT_OF_SYNC (0x01)
2081 1.1 thorpej #define MPI_PHYSDISK0_STATUS_FLAG_QUIESCED (0x02)
2082 1.1 thorpej
2083 1.1 thorpej #define MPI_PHYSDISK0_STATUS_ONLINE (0x00)
2084 1.1 thorpej #define MPI_PHYSDISK0_STATUS_MISSING (0x01)
2085 1.1 thorpej #define MPI_PHYSDISK0_STATUS_NOT_COMPATIBLE (0x02)
2086 1.1 thorpej #define MPI_PHYSDISK0_STATUS_FAILED (0x03)
2087 1.1 thorpej #define MPI_PHYSDISK0_STATUS_INITIALIZING (0x04)
2088 1.1 thorpej #define MPI_PHYSDISK0_STATUS_OFFLINE_REQUESTED (0x05)
2089 1.1 thorpej #define MPI_PHYSDISK0_STATUS_FAILED_REQUESTED (0x06)
2090 1.1 thorpej #define MPI_PHYSDISK0_STATUS_OTHER_OFFLINE (0xFF)
2091 1.1 thorpej
2092 1.1 thorpej typedef struct _CONFIG_PAGE_RAID_PHYS_DISK_0
2093 1.1 thorpej {
2094 1.1 thorpej fCONFIG_PAGE_HEADER Header; /* 00h */
2095 1.1 thorpej U8 PhysDiskID; /* 04h */
2096 1.1 thorpej U8 PhysDiskBus; /* 05h */
2097 1.1 thorpej U8 PhysDiskIOC; /* 06h */
2098 1.1 thorpej U8 PhysDiskNum; /* 07h */
2099 1.1 thorpej RAID_PHYS_DISK0_SETTINGS PhysDiskSettings; /* 08h */
2100 1.1 thorpej U32 Reserved1; /* 0Ch */
2101 1.1 thorpej U32 Reserved2; /* 10h */
2102 1.1 thorpej U32 Reserved3; /* 14h */
2103 1.1 thorpej U8 DiskIdentifier[16]; /* 18h */
2104 1.1 thorpej RAID_PHYS_DISK0_INQUIRY_DATA InquiryData; /* 28h */
2105 1.1 thorpej RAID_PHYS_DISK0_STATUS PhysDiskStatus; /* 64h */
2106 1.1 thorpej U32 MaxLBA; /* 68h */
2107 1.1 thorpej RAID_PHYS_DISK0_ERROR_DATA ErrorData; /* 6Ch */
2108 1.1 thorpej } fCONFIG_PAGE_RAID_PHYS_DISK_0, MPI_POINTER PTR_CONFIG_PAGE_RAID_PHYS_DISK_0,
2109 1.1 thorpej RaidPhysDiskPage0_t, MPI_POINTER pRaidPhysDiskPage0_t;
2110 1.1 thorpej
2111 1.1 thorpej #define MPI_RAIDPHYSDISKPAGE0_PAGEVERSION (0x00)
2112 1.1 thorpej
2113 1.1 thorpej
2114 1.1 thorpej /****************************************************************************
2115 1.1 thorpej * LAN Config Pages
2116 1.1 thorpej ****************************************************************************/
2117 1.1 thorpej
2118 1.1 thorpej typedef struct _CONFIG_PAGE_LAN_0
2119 1.1 thorpej {
2120 1.1 thorpej ConfigPageHeader_t Header; /* 00h */
2121 1.1 thorpej U16 TxRxModes; /* 04h */
2122 1.1 thorpej U16 Reserved; /* 06h */
2123 1.1 thorpej U32 PacketPrePad; /* 08h */
2124 1.1 thorpej } fCONFIG_PAGE_LAN_0, MPI_POINTER PTR_CONFIG_PAGE_LAN_0,
2125 1.1 thorpej LANPage0_t, MPI_POINTER pLANPage0_t;
2126 1.1 thorpej
2127 1.1 thorpej #define MPI_LAN_PAGE0_PAGEVERSION (0x01)
2128 1.1 thorpej
2129 1.1 thorpej #define MPI_LAN_PAGE0_RETURN_LOOPBACK (0x0000)
2130 1.1 thorpej #define MPI_LAN_PAGE0_SUPPRESS_LOOPBACK (0x0001)
2131 1.1 thorpej #define MPI_LAN_PAGE0_LOOPBACK_MASK (0x0001)
2132 1.1 thorpej
2133 1.1 thorpej typedef struct _CONFIG_PAGE_LAN_1
2134 1.1 thorpej {
2135 1.1 thorpej ConfigPageHeader_t Header; /* 00h */
2136 1.1 thorpej U16 Reserved; /* 04h */
2137 1.1 thorpej U8 CurrentDeviceState; /* 06h */
2138 1.1 thorpej U8 Reserved1; /* 07h */
2139 1.1 thorpej U32 MinPacketSize; /* 08h */
2140 1.1 thorpej U32 MaxPacketSize; /* 0Ch */
2141 1.1 thorpej U32 HardwareAddressLow; /* 10h */
2142 1.1 thorpej U32 HardwareAddressHigh; /* 14h */
2143 1.1 thorpej U32 MaxWireSpeedLow; /* 18h */
2144 1.1 thorpej U32 MaxWireSpeedHigh; /* 1Ch */
2145 1.1 thorpej U32 BucketsRemaining; /* 20h */
2146 1.1 thorpej U32 MaxReplySize; /* 24h */
2147 1.1 thorpej U32 NegWireSpeedLow; /* 28h */
2148 1.1 thorpej U32 NegWireSpeedHigh; /* 2Ch */
2149 1.1 thorpej } fCONFIG_PAGE_LAN_1, MPI_POINTER PTR_CONFIG_PAGE_LAN_1,
2150 1.1 thorpej LANPage1_t, MPI_POINTER pLANPage1_t;
2151 1.1 thorpej
2152 1.1 thorpej #define MPI_LAN_PAGE1_PAGEVERSION (0x03)
2153 1.1 thorpej
2154 1.1 thorpej #define MPI_LAN_PAGE1_DEV_STATE_RESET (0x00)
2155 1.1 thorpej #define MPI_LAN_PAGE1_DEV_STATE_OPERATIONAL (0x01)
2156 1.1 thorpej
2157 1.1 thorpej #endif
2158 1.1 thorpej
2159 1.1 thorpej
2160 1.1 thorpej /*
2161 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
2162 1.1 thorpej *
2163 1.1 thorpej * Redistribution and use in source and binary forms, with or without
2164 1.1 thorpej * modification, are permitted provided that the following conditions
2165 1.1 thorpej * are met:
2166 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
2167 1.1 thorpej * notice immediately at the beginning of the file, without modification,
2168 1.1 thorpej * this list of conditions, and the following disclaimer.
2169 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
2170 1.1 thorpej * derived from this software without specific prior written permission.
2171 1.1 thorpej *
2172 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2173 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2174 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2175 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2176 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2177 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2178 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2179 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2180 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2181 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2182 1.1 thorpej * SUCH DAMAGE.
2183 1.1 thorpej *
2184 1.1 thorpej *
2185 1.1 thorpej * Name: MPI_FC.H
2186 1.1 thorpej * Title: MPI Fibre Channel messages and structures
2187 1.1 thorpej * Creation Date: June 12, 2000
2188 1.1 thorpej *
2189 1.1 thorpej * MPI Version: 01.02.02
2190 1.1 thorpej *
2191 1.1 thorpej * Version History
2192 1.1 thorpej * ---------------
2193 1.1 thorpej *
2194 1.1 thorpej * Date Version Description
2195 1.1 thorpej * -------- -------- ------------------------------------------------------
2196 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
2197 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
2198 1.1 thorpej * 06-12-00 01.00.02 Added _MSG_FC_ABORT_REPLY structure.
2199 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work
2200 1.1 thorpej * 12-04-00 01.01.02 Added messages for Common Transport Send and
2201 1.1 thorpej * Primitive Send.
2202 1.1 thorpej * 01-09-01 01.01.03 Modifed some of the new flags to have an MPI prefix
2203 1.1 thorpej * and modified the FcPrimitiveSend flags.
2204 1.1 thorpej * 01-25-01 01.01.04 Move InitiatorIndex in LinkServiceRsp reply to a larger
2205 1.1 thorpej * field.
2206 1.1 thorpej * Added FC_ABORT_TYPE_CT_SEND_REQUEST and
2207 1.1 thorpej * FC_ABORT_TYPE_EXLINKSEND_REQUEST for FcAbort request.
2208 1.1 thorpej * Added MPI_FC_PRIM_SEND_FLAGS_STOP_SEND.
2209 1.1 thorpej * 02-20-01 01.01.05 Started using MPI_POINTER.
2210 1.1 thorpej * 03-27-01 01.01.06 Added Flags field to MSG_LINK_SERVICE_BUFFER_POST_REPLY
2211 1.1 thorpej * and defined MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED.
2212 1.1 thorpej * Added MPI_FC_PRIM_SEND_FLAGS_RESET_LINK define.
2213 1.1 thorpej * Added structure offset comments.
2214 1.1 thorpej * 04-09-01 01.01.07 Added RspLength field to MSG_LINK_SERVICE_RSP_REQUEST.
2215 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
2216 1.1 thorpej * 09-28-01 01.02.02 Change name of reserved field in
2217 1.1 thorpej * MSG_LINK_SERVICE_RSP_REPLY.
2218 1.1 thorpej * --------------------------------------------------------------------------
2219 1.1 thorpej */
2220 1.1 thorpej
2221 1.1 thorpej #ifndef MPI_FC_H
2222 1.1 thorpej #define MPI_FC_H
2223 1.1 thorpej
2224 1.1 thorpej
2225 1.1 thorpej /*****************************************************************************
2226 1.1 thorpej *
2227 1.1 thorpej * F C T a r g e t M o d e M e s s a g e s
2228 1.1 thorpej *
2229 1.1 thorpej *****************************************************************************/
2230 1.1 thorpej
2231 1.1 thorpej /****************************************************************************/
2232 1.1 thorpej /* Link Service Buffer Post messages */
2233 1.1 thorpej /****************************************************************************/
2234 1.1 thorpej
2235 1.1 thorpej typedef struct _MSG_LINK_SERVICE_BUFFER_POST_REQUEST
2236 1.1 thorpej {
2237 1.1 thorpej U8 BufferPostFlags; /* 00h */
2238 1.1 thorpej U8 BufferCount; /* 01h */
2239 1.1 thorpej U8 ChainOffset; /* 02h */
2240 1.1 thorpej U8 Function; /* 03h */
2241 1.1 thorpej U16 Reserved; /* 04h */
2242 1.1 thorpej U8 Reserved1; /* 06h */
2243 1.1 thorpej U8 MsgFlags; /* 07h */
2244 1.1 thorpej U32 MsgContext; /* 08h */
2245 1.1 thorpej SGE_TRANS_SIMPLE_UNION SGL;
2246 1.1 thorpej } MSG_LINK_SERVICE_BUFFER_POST_REQUEST,
2247 1.1 thorpej MPI_POINTER PTR_MSG_LINK_SERVICE_BUFFER_POST_REQUEST,
2248 1.1 thorpej LinkServiceBufferPostRequest_t, MPI_POINTER pLinkServiceBufferPostRequest_t;
2249 1.1 thorpej
2250 1.1 thorpej #define LINK_SERVICE_BUFFER_POST_FLAGS_PORT_MASK (0x01)
2251 1.1 thorpej
2252 1.1 thorpej typedef struct _WWNFORMAT
2253 1.1 thorpej {
2254 1.1 thorpej U32 PortNameHigh; /* 00h */
2255 1.1 thorpej U32 PortNameLow; /* 04h */
2256 1.1 thorpej U32 NodeNameHigh; /* 08h */
2257 1.1 thorpej U32 NodeNameLow; /* 0Ch */
2258 1.1 thorpej } WWNFORMAT,
2259 1.1 thorpej WwnFormat_t;
2260 1.1 thorpej
2261 1.1 thorpej /* Link Service Buffer Post Reply */
2262 1.1 thorpej typedef struct _MSG_LINK_SERVICE_BUFFER_POST_REPLY
2263 1.1 thorpej {
2264 1.1 thorpej U8 Flags; /* 00h */
2265 1.1 thorpej U8 Reserved; /* 01h */
2266 1.1 thorpej U8 MsgLength; /* 02h */
2267 1.1 thorpej U8 Function; /* 03h */
2268 1.1 thorpej U16 Reserved1; /* 04h */
2269 1.1 thorpej U8 PortNumber; /* 06h */
2270 1.1 thorpej U8 MsgFlags; /* 07h */
2271 1.1 thorpej U32 MsgContext; /* 08h */
2272 1.1 thorpej U16 Reserved2; /* 0Ch */
2273 1.1 thorpej U16 IOCStatus; /* 0Eh */
2274 1.1 thorpej U32 IOCLogInfo; /* 10h */
2275 1.1 thorpej U32 TransferLength; /* 14h */
2276 1.1 thorpej U32 TransactionContext; /* 18h */
2277 1.1 thorpej U32 Rctl_Did; /* 1Ch */
2278 1.1 thorpej U32 Csctl_Sid; /* 20h */
2279 1.1 thorpej U32 Type_Fctl; /* 24h */
2280 1.1 thorpej U16 SeqCnt; /* 28h */
2281 1.1 thorpej U8 Dfctl; /* 2Ah */
2282 1.1 thorpej U8 SeqId; /* 2Bh */
2283 1.1 thorpej U16 Rxid; /* 2Ch */
2284 1.1 thorpej U16 Oxid; /* 2Eh */
2285 1.1 thorpej U32 Parameter; /* 30h */
2286 1.1 thorpej WWNFORMAT Wwn; /* 34h */
2287 1.1 thorpej } MSG_LINK_SERVICE_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_LINK_SERVICE_BUFFER_POST_REPLY,
2288 1.1 thorpej LinkServiceBufferPostReply_t, MPI_POINTER pLinkServiceBufferPostReply_t;
2289 1.1 thorpej
2290 1.1 thorpej #define MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED (0x80)
2291 1.1 thorpej
2292 1.1 thorpej #define MPI_FC_DID_MASK (0x00FFFFFF)
2293 1.1 thorpej #define MPI_FC_DID_SHIFT (0)
2294 1.1 thorpej #define MPI_FC_RCTL_MASK (0xFF000000)
2295 1.1 thorpej #define MPI_FC_RCTL_SHIFT (24)
2296 1.1 thorpej #define MPI_FC_SID_MASK (0x00FFFFFF)
2297 1.1 thorpej #define MPI_FC_SID_SHIFT (0)
2298 1.1 thorpej #define MPI_FC_CSCTL_MASK (0xFF000000)
2299 1.1 thorpej #define MPI_FC_CSCTL_SHIFT (24)
2300 1.1 thorpej #define MPI_FC_FCTL_MASK (0x00FFFFFF)
2301 1.1 thorpej #define MPI_FC_FCTL_SHIFT (0)
2302 1.1 thorpej #define MPI_FC_TYPE_MASK (0xFF000000)
2303 1.1 thorpej #define MPI_FC_TYPE_SHIFT (24)
2304 1.1 thorpej
2305 1.1 thorpej /* obsolete name for the above */
2306 1.1 thorpej #define FCP_TARGET_DID_MASK (0x00FFFFFF)
2307 1.1 thorpej #define FCP_TARGET_DID_SHIFT (0)
2308 1.1 thorpej #define FCP_TARGET_RCTL_MASK (0xFF000000)
2309 1.1 thorpej #define FCP_TARGET_RCTL_SHIFT (24)
2310 1.1 thorpej #define FCP_TARGET_SID_MASK (0x00FFFFFF)
2311 1.1 thorpej #define FCP_TARGET_SID_SHIFT (0)
2312 1.1 thorpej #define FCP_TARGET_CSCTL_MASK (0xFF000000)
2313 1.1 thorpej #define FCP_TARGET_CSCTL_SHIFT (24)
2314 1.1 thorpej #define FCP_TARGET_FCTL_MASK (0x00FFFFFF)
2315 1.1 thorpej #define FCP_TARGET_FCTL_SHIFT (0)
2316 1.1 thorpej #define FCP_TARGET_TYPE_MASK (0xFF000000)
2317 1.1 thorpej #define FCP_TARGET_TYPE_SHIFT (24)
2318 1.1 thorpej
2319 1.1 thorpej
2320 1.1 thorpej /****************************************************************************/
2321 1.1 thorpej /* Link Service Response messages */
2322 1.1 thorpej /****************************************************************************/
2323 1.1 thorpej
2324 1.1 thorpej typedef struct _MSG_LINK_SERVICE_RSP_REQUEST
2325 1.1 thorpej {
2326 1.1 thorpej U8 RspFlags; /* 00h */
2327 1.1 thorpej U8 RspLength; /* 01h */
2328 1.1 thorpej U8 ChainOffset; /* 02h */
2329 1.1 thorpej U8 Function; /* 03h */
2330 1.1 thorpej U16 Reserved1; /* 04h */
2331 1.1 thorpej U8 Reserved2; /* 06h */
2332 1.1 thorpej U8 MsgFlags; /* 07h */
2333 1.1 thorpej U32 MsgContext; /* 08h */
2334 1.1 thorpej U32 Rctl_Did; /* 0Ch */
2335 1.1 thorpej U32 Csctl_Sid; /* 10h */
2336 1.1 thorpej U32 Type_Fctl; /* 14h */
2337 1.1 thorpej U16 SeqCnt; /* 18h */
2338 1.1 thorpej U8 Dfctl; /* 1Ah */
2339 1.1 thorpej U8 SeqId; /* 1Bh */
2340 1.1 thorpej U16 Rxid; /* 1Ch */
2341 1.1 thorpej U16 Oxid; /* 1Eh */
2342 1.1 thorpej U32 Parameter; /* 20h */
2343 1.1 thorpej SGE_SIMPLE_UNION SGL; /* 24h */
2344 1.1 thorpej } MSG_LINK_SERVICE_RSP_REQUEST, MPI_POINTER PTR_MSG_LINK_SERVICE_RSP_REQUEST,
2345 1.1 thorpej LinkServiceRspRequest_t, MPI_POINTER pLinkServiceRspRequest_t;
2346 1.1 thorpej
2347 1.1 thorpej #define LINK_SERVICE_RSP_FLAGS_IMMEDIATE (0x80)
2348 1.1 thorpej #define LINK_SERVICE_RSP_FLAGS_PORT_MASK (0x01)
2349 1.1 thorpej
2350 1.1 thorpej
2351 1.1 thorpej /* Link Service Response Reply */
2352 1.1 thorpej typedef struct _MSG_LINK_SERVICE_RSP_REPLY
2353 1.1 thorpej {
2354 1.1 thorpej U16 Reserved; /* 00h */
2355 1.1 thorpej U8 MsgLength; /* 02h */
2356 1.1 thorpej U8 Function; /* 03h */
2357 1.1 thorpej U16 Reserved1; /* 04h */
2358 1.1 thorpej U8 Reserved_0100_InitiatorIndex; /* 06h */ /* obsolete InitiatorIndex */
2359 1.1 thorpej U8 MsgFlags; /* 07h */
2360 1.1 thorpej U32 MsgContext; /* 08h */
2361 1.1 thorpej U16 Reserved3; /* 0Ch */
2362 1.1 thorpej U16 IOCStatus; /* 0Eh */
2363 1.1 thorpej U32 IOCLogInfo; /* 10h */
2364 1.1 thorpej U32 InitiatorIndex; /* 14h */
2365 1.1 thorpej } MSG_LINK_SERVICE_RSP_REPLY, MPI_POINTER PTR_MSG_LINK_SERVICE_RSP_REPLY,
2366 1.1 thorpej LinkServiceRspReply_t, MPI_POINTER pLinkServiceRspReply_t;
2367 1.1 thorpej
2368 1.1 thorpej
2369 1.1 thorpej /****************************************************************************/
2370 1.1 thorpej /* Extended Link Service Send messages */
2371 1.1 thorpej /****************************************************************************/
2372 1.1 thorpej
2373 1.1 thorpej typedef struct _MSG_EXLINK_SERVICE_SEND_REQUEST
2374 1.1 thorpej {
2375 1.1 thorpej U8 SendFlags; /* 00h */
2376 1.1 thorpej U8 Reserved; /* 01h */
2377 1.1 thorpej U8 ChainOffset; /* 02h */
2378 1.1 thorpej U8 Function; /* 03h */
2379 1.1 thorpej U32 MsgFlags_Did; /* 04h */
2380 1.1 thorpej U32 MsgContext; /* 08h */
2381 1.1 thorpej U32 ElsCommandCode; /* 0Ch */
2382 1.1 thorpej SGE_SIMPLE_UNION SGL; /* 10h */
2383 1.1 thorpej } MSG_EXLINK_SERVICE_SEND_REQUEST, MPI_POINTER PTR_MSG_EXLINK_SERVICE_SEND_REQUEST,
2384 1.1 thorpej ExLinkServiceSendRequest_t, MPI_POINTER pExLinkServiceSendRequest_t;
2385 1.1 thorpej
2386 1.1 thorpej #define EX_LINK_SERVICE_SEND_DID_MASK (0x00FFFFFF)
2387 1.1 thorpej #define EX_LINK_SERVICE_SEND_DID_SHIFT (0)
2388 1.1 thorpej #define EX_LINK_SERVICE_SEND_MSGFLAGS_MASK (0xFF000000)
2389 1.1 thorpej #define EX_LINK_SERVICE_SEND_MSGFLAGS_SHIFT (24)
2390 1.1 thorpej
2391 1.1 thorpej
2392 1.1 thorpej /* Extended Link Service Send Reply */
2393 1.1 thorpej typedef struct _MSG_EXLINK_SERVICE_SEND_REPLY
2394 1.1 thorpej {
2395 1.1 thorpej U16 Reserved; /* 00h */
2396 1.1 thorpej U8 MsgLength; /* 02h */
2397 1.1 thorpej U8 Function; /* 03h */
2398 1.1 thorpej U16 Reserved1; /* 04h */
2399 1.1 thorpej U8 Reserved2; /* 06h */
2400 1.1 thorpej U8 MsgFlags; /* 07h */
2401 1.1 thorpej U32 MsgContext; /* 08h */
2402 1.1 thorpej U16 Reserved3; /* 0Ch */
2403 1.1 thorpej U16 IOCStatus; /* 0Eh */
2404 1.1 thorpej U32 IOCLogInfo; /* 10h */
2405 1.1 thorpej U32 ResponseLength; /* 14h */
2406 1.1 thorpej } MSG_EXLINK_SERVICE_SEND_REPLY, MPI_POINTER PTR_MSG_EXLINK_SERVICE_SEND_REPLY,
2407 1.1 thorpej ExLinkServiceSendReply_t, MPI_POINTER pExLinkServiceSendReply_t;
2408 1.1 thorpej
2409 1.1 thorpej /****************************************************************************/
2410 1.1 thorpej /* FC Abort messages */
2411 1.1 thorpej /****************************************************************************/
2412 1.1 thorpej
2413 1.1 thorpej typedef struct _MSG_FC_ABORT_REQUEST
2414 1.1 thorpej {
2415 1.1 thorpej U8 AbortFlags; /* 00h */
2416 1.1 thorpej U8 AbortType; /* 01h */
2417 1.1 thorpej U8 ChainOffset; /* 02h */
2418 1.1 thorpej U8 Function; /* 03h */
2419 1.1 thorpej U16 Reserved1; /* 04h */
2420 1.1 thorpej U8 Reserved2; /* 06h */
2421 1.1 thorpej U8 MsgFlags; /* 07h */
2422 1.1 thorpej U32 MsgContext; /* 08h */
2423 1.1 thorpej U32 TransactionContextToAbort; /* 0Ch */
2424 1.1 thorpej } MSG_FC_ABORT_REQUEST, MPI_POINTER PTR_MSG_FC_ABORT_REQUEST,
2425 1.1 thorpej FcAbortRequest_t, MPI_POINTER pFcAbortRequest_t;
2426 1.1 thorpej
2427 1.1 thorpej #define FC_ABORT_FLAG_PORT_MASK (0x01)
2428 1.1 thorpej
2429 1.1 thorpej #define FC_ABORT_TYPE_ALL_FC_BUFFERS (0x00)
2430 1.1 thorpej #define FC_ABORT_TYPE_EXACT_FC_BUFFER (0x01)
2431 1.1 thorpej #define FC_ABORT_TYPE_CT_SEND_REQUEST (0x02)
2432 1.1 thorpej #define FC_ABORT_TYPE_EXLINKSEND_REQUEST (0x03)
2433 1.1 thorpej
2434 1.1 thorpej /* FC Abort Reply */
2435 1.1 thorpej typedef struct _MSG_FC_ABORT_REPLY
2436 1.1 thorpej {
2437 1.1 thorpej U16 Reserved; /* 00h */
2438 1.1 thorpej U8 MsgLength; /* 02h */
2439 1.1 thorpej U8 Function; /* 03h */
2440 1.1 thorpej U16 Reserved1; /* 04h */
2441 1.1 thorpej U8 Reserved2; /* 06h */
2442 1.1 thorpej U8 MsgFlags; /* 07h */
2443 1.1 thorpej U32 MsgContext; /* 08h */
2444 1.1 thorpej U16 Reserved3; /* 0Ch */
2445 1.1 thorpej U16 IOCStatus; /* 0Eh */
2446 1.1 thorpej U32 IOCLogInfo; /* 10h */
2447 1.1 thorpej } MSG_FC_ABORT_REPLY, MPI_POINTER PTR_MSG_FC_ABORT_REPLY,
2448 1.1 thorpej FcAbortReply_t, MPI_POINTER pFcAbortReply_t;
2449 1.1 thorpej
2450 1.1 thorpej
2451 1.1 thorpej /****************************************************************************/
2452 1.1 thorpej /* FC Common Transport Send messages */
2453 1.1 thorpej /****************************************************************************/
2454 1.1 thorpej
2455 1.1 thorpej typedef struct _MSG_FC_COMMON_TRANSPORT_SEND_REQUEST
2456 1.1 thorpej {
2457 1.1 thorpej U8 SendFlags; /* 00h */
2458 1.1 thorpej U8 Reserved; /* 01h */
2459 1.1 thorpej U8 ChainOffset; /* 02h */
2460 1.1 thorpej U8 Function; /* 03h */
2461 1.1 thorpej U32 MsgFlags_Did; /* 04h */
2462 1.1 thorpej U32 MsgContext; /* 08h */
2463 1.1 thorpej U16 CTCommandCode; /* 0Ch */
2464 1.1 thorpej U8 FsType; /* 0Eh */
2465 1.1 thorpej U8 Reserved1; /* 0Fh */
2466 1.1 thorpej SGE_SIMPLE_UNION SGL; /* 10h */
2467 1.1 thorpej } MSG_FC_COMMON_TRANSPORT_SEND_REQUEST,
2468 1.1 thorpej MPI_POINTER PTR_MSG_FC_COMMON_TRANSPORT_SEND_REQUEST,
2469 1.1 thorpej FcCommonTransportSendRequest_t, MPI_POINTER pFcCommonTransportSendRequest_t;
2470 1.1 thorpej
2471 1.1 thorpej #define MPI_FC_CT_SEND_DID_MASK (0x00FFFFFF)
2472 1.1 thorpej #define MPI_FC_CT_SEND_DID_SHIFT (0)
2473 1.1 thorpej #define MPI_FC_CT_SEND_MSGFLAGS_MASK (0xFF000000)
2474 1.1 thorpej #define MPI_FC_CT_SEND_MSGFLAGS_SHIFT (24)
2475 1.1 thorpej
2476 1.1 thorpej
2477 1.1 thorpej /* FC Common Transport Send Reply */
2478 1.1 thorpej typedef struct _MSG_FC_COMMON_TRANSPORT_SEND_REPLY
2479 1.1 thorpej {
2480 1.1 thorpej U16 Reserved; /* 00h */
2481 1.1 thorpej U8 MsgLength; /* 02h */
2482 1.1 thorpej U8 Function; /* 03h */
2483 1.1 thorpej U16 Reserved1; /* 04h */
2484 1.1 thorpej U8 Reserved2; /* 06h */
2485 1.1 thorpej U8 MsgFlags; /* 07h */
2486 1.1 thorpej U32 MsgContext; /* 08h */
2487 1.1 thorpej U16 Reserved3; /* 0Ch */
2488 1.1 thorpej U16 IOCStatus; /* 0Eh */
2489 1.1 thorpej U32 IOCLogInfo; /* 10h */
2490 1.1 thorpej U32 ResponseLength; /* 14h */
2491 1.1 thorpej } MSG_FC_COMMON_TRANSPORT_SEND_REPLY, MPI_POINTER PTR_MSG_FC_COMMON_TRANSPORT_SEND_REPLY,
2492 1.1 thorpej FcCommonTransportSendReply_t, MPI_POINTER pFcCommonTransportSendReply_t;
2493 1.1 thorpej
2494 1.1 thorpej
2495 1.1 thorpej /****************************************************************************/
2496 1.1 thorpej /* FC Primitive Send messages */
2497 1.1 thorpej /****************************************************************************/
2498 1.1 thorpej
2499 1.1 thorpej typedef struct _MSG_FC_PRIMITIVE_SEND_REQUEST
2500 1.1 thorpej {
2501 1.1 thorpej U8 SendFlags; /* 00h */
2502 1.1 thorpej U8 Reserved; /* 01h */
2503 1.1 thorpej U8 ChainOffset; /* 02h */
2504 1.1 thorpej U8 Function; /* 03h */
2505 1.1 thorpej U16 Reserved1; /* 04h */
2506 1.1 thorpej U8 Reserved2; /* 06h */
2507 1.1 thorpej U8 MsgFlags; /* 07h */
2508 1.1 thorpej U32 MsgContext; /* 08h */
2509 1.1 thorpej U8 FcPrimitive[4]; /* 0Ch */
2510 1.1 thorpej } MSG_FC_PRIMITIVE_SEND_REQUEST, MPI_POINTER PTR_MSG_FC_PRIMITIVE_SEND_REQUEST,
2511 1.1 thorpej FcPrimitiveSendRequest_t, MPI_POINTER pFcPrimitiveSendRequest_t;
2512 1.1 thorpej
2513 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_PORT_MASK (0x01)
2514 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_RESET_LINK (0x04)
2515 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_STOP_SEND (0x08)
2516 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_SEND_ONCE (0x10)
2517 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_SEND_AROUND (0x20)
2518 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_UNTIL_FULL (0x40)
2519 1.1 thorpej #define MPI_FC_PRIM_SEND_FLAGS_FOREVER (0x80)
2520 1.1 thorpej
2521 1.1 thorpej /* FC Primitive Send Reply */
2522 1.1 thorpej typedef struct _MSG_FC_PRIMITIVE_SEND_REPLY
2523 1.1 thorpej {
2524 1.1 thorpej U8 SendFlags; /* 00h */
2525 1.1 thorpej U8 Reserved; /* 01h */
2526 1.1 thorpej U8 MsgLength; /* 02h */
2527 1.1 thorpej U8 Function; /* 03h */
2528 1.1 thorpej U16 Reserved1; /* 04h */
2529 1.1 thorpej U8 Reserved2; /* 06h */
2530 1.1 thorpej U8 MsgFlags; /* 07h */
2531 1.1 thorpej U32 MsgContext; /* 08h */
2532 1.1 thorpej U16 Reserved3; /* 0Ch */
2533 1.1 thorpej U16 IOCStatus; /* 0Eh */
2534 1.1 thorpej U32 IOCLogInfo; /* 10h */
2535 1.1 thorpej } MSG_FC_PRIMITIVE_SEND_REPLY, MPI_POINTER PTR_MSG_FC_PRIMITIVE_SEND_REPLY,
2536 1.1 thorpej FcPrimitiveSendReply_t, MPI_POINTER pFcPrimitiveSendReply_t;
2537 1.1 thorpej
2538 1.1 thorpej #endif
2539 1.1 thorpej
2540 1.1 thorpej
2541 1.1 thorpej /*
2542 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
2543 1.1 thorpej *
2544 1.1 thorpej * Redistribution and use in source and binary forms, with or without
2545 1.1 thorpej * modification, are permitted provided that the following conditions
2546 1.1 thorpej * are met:
2547 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
2548 1.1 thorpej * notice immediately at the beginning of the file, without modification,
2549 1.1 thorpej * this list of conditions, and the following disclaimer.
2550 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
2551 1.1 thorpej * derived from this software without specific prior written permission.
2552 1.1 thorpej *
2553 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2554 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2555 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2556 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2557 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2560 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2561 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2562 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2563 1.1 thorpej * SUCH DAMAGE.
2564 1.1 thorpej *
2565 1.1 thorpej *
2566 1.1 thorpej * Name: MPI_INIT.H
2567 1.1 thorpej * Title: MPI initiator mode messages and structures
2568 1.1 thorpej * Creation Date: June 8, 2000
2569 1.1 thorpej *
2570 1.1 thorpej * MPI Version: 01.02.04
2571 1.1 thorpej *
2572 1.1 thorpej * Version History
2573 1.1 thorpej * ---------------
2574 1.1 thorpej *
2575 1.1 thorpej * Date Version Description
2576 1.1 thorpej * -------- -------- ------------------------------------------------------
2577 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
2578 1.1 thorpej * 05-24-00 00.10.02 Added SenseBufferLength to _MSG_SCSI_IO_REPLY.
2579 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
2580 1.1 thorpej * 06-08-00 01.00.02 Added MPI_SCSI_RSP_INFO_ definitions.
2581 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work.
2582 1.1 thorpej * 12-04-00 01.01.02 Added MPI_SCSIIO_CONTROL_NO_DISCONNECT.
2583 1.1 thorpej * 02-20-01 01.01.03 Started using MPI_POINTER.
2584 1.1 thorpej * 03-27-01 01.01.04 Added structure offset comments.
2585 1.1 thorpej * 04-10-01 01.01.05 Added new MsgFlag for MSG_SCSI_TASK_MGMT.
2586 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
2587 1.1 thorpej * 08-29-01 01.02.02 Added MPI_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET.
2588 1.1 thorpej * Added MPI_SCSI_STATE_QUEUE_TAG_REJECTED for
2589 1.1 thorpej * MSG_SCSI_IO_REPLY.
2590 1.1 thorpej * 09-28-01 01.02.03 Added structures and defines for SCSI Enclosure
2591 1.1 thorpej * Processor messages.
2592 1.1 thorpej * 10-04-01 01.02.04 Added defines for SEP request Action field.
2593 1.1 thorpej * --------------------------------------------------------------------------
2594 1.1 thorpej */
2595 1.1 thorpej
2596 1.1 thorpej #ifndef MPI_INIT_H
2597 1.1 thorpej #define MPI_INIT_H
2598 1.1 thorpej
2599 1.1 thorpej
2600 1.1 thorpej /*****************************************************************************
2601 1.1 thorpej *
2602 1.1 thorpej * S C S I I n i t i a t o r M e s s a g e s
2603 1.1 thorpej *
2604 1.1 thorpej *****************************************************************************/
2605 1.1 thorpej
2606 1.1 thorpej /****************************************************************************/
2607 1.1 thorpej /* SCSI IO messages and assocaited structures */
2608 1.1 thorpej /****************************************************************************/
2609 1.1 thorpej
2610 1.1 thorpej typedef struct _MSG_SCSI_IO_REQUEST
2611 1.1 thorpej {
2612 1.1 thorpej U8 TargetID; /* 00h */
2613 1.1 thorpej U8 Bus; /* 01h */
2614 1.1 thorpej U8 ChainOffset; /* 02h */
2615 1.1 thorpej U8 Function; /* 03h */
2616 1.1 thorpej U8 CDBLength; /* 04h */
2617 1.1 thorpej U8 SenseBufferLength; /* 05h */
2618 1.1 thorpej U8 Reserved; /* 06h */
2619 1.1 thorpej U8 MsgFlags; /* 07h */
2620 1.1 thorpej U32 MsgContext; /* 08h */
2621 1.1 thorpej U8 LUN[8]; /* 0Ch */
2622 1.1 thorpej U32 Control; /* 14h */
2623 1.1 thorpej U8 CDB[16]; /* 18h */
2624 1.1 thorpej U32 DataLength; /* 28h */
2625 1.1 thorpej U32 SenseBufferLowAddr; /* 2Ch */
2626 1.1 thorpej SGE_IO_UNION SGL; /* 30h */
2627 1.1 thorpej } MSG_SCSI_IO_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_REQUEST,
2628 1.1 thorpej SCSIIORequest_t, MPI_POINTER pSCSIIORequest_t;
2629 1.1 thorpej
2630 1.1 thorpej
2631 1.1 thorpej /* SCSIO MsgFlags bits */
2632 1.1 thorpej
2633 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH (0x01)
2634 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_32 (0x00)
2635 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_64 (0x01)
2636 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_LOCATION (0x02)
2637 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_LOC_HOST (0x00)
2638 1.1 thorpej #define MPI_SCSIIO_MSGFLGS_SENSE_LOC_IOC (0x02)
2639 1.1 thorpej
2640 1.1 thorpej /* SCSIIO LUN fields */
2641 1.1 thorpej
2642 1.1 thorpej #define MPI_SCSIIO_LUN_FIRST_LEVEL_ADDRESSING (0x0000FFFF)
2643 1.1 thorpej #define MPI_SCSIIO_LUN_SECOND_LEVEL_ADDRESSING (0xFFFF0000)
2644 1.1 thorpej #define MPI_SCSIIO_LUN_THIRD_LEVEL_ADDRESSING (0x0000FFFF)
2645 1.1 thorpej #define MPI_SCSIIO_LUN_FOURTH_LEVEL_ADDRESSING (0xFFFF0000)
2646 1.1 thorpej #define MPI_SCSIIO_LUN_LEVEL_1_WORD (0xFF00)
2647 1.1 thorpej #define MPI_SCSIIO_LUN_LEVEL_1_DWORD (0x0000FF00)
2648 1.1 thorpej
2649 1.1 thorpej /* SCSIO Control bits */
2650 1.1 thorpej
2651 1.1 thorpej #define MPI_SCSIIO_CONTROL_DATADIRECTION_MASK (0x03000000)
2652 1.1 thorpej #define MPI_SCSIIO_CONTROL_NODATATRANSFER (0x00000000)
2653 1.1 thorpej #define MPI_SCSIIO_CONTROL_WRITE (0x01000000)
2654 1.1 thorpej #define MPI_SCSIIO_CONTROL_READ (0x02000000)
2655 1.1 thorpej
2656 1.1 thorpej #define MPI_SCSIIO_CONTROL_ADDCDBLEN_MASK (0x3C000000)
2657 1.1 thorpej #define MPI_SCSIIO_CONTROL_ADDCDBLEN_SHIFT (26)
2658 1.1 thorpej
2659 1.1 thorpej #define MPI_SCSIIO_CONTROL_TASKATTRIBUTE_MASK (0x00000700)
2660 1.1 thorpej #define MPI_SCSIIO_CONTROL_SIMPLEQ (0x00000000)
2661 1.1 thorpej #define MPI_SCSIIO_CONTROL_HEADOFQ (0x00000100)
2662 1.1 thorpej #define MPI_SCSIIO_CONTROL_ORDEREDQ (0x00000200)
2663 1.1 thorpej #define MPI_SCSIIO_CONTROL_ACAQ (0x00000400)
2664 1.1 thorpej #define MPI_SCSIIO_CONTROL_UNTAGGED (0x00000500)
2665 1.1 thorpej #define MPI_SCSIIO_CONTROL_NO_DISCONNECT (0x00000700)
2666 1.1 thorpej
2667 1.1 thorpej #define MPI_SCSIIO_CONTROL_TASKMANAGE_MASK (0x00FF0000)
2668 1.1 thorpej #define MPI_SCSIIO_CONTROL_OBSOLETE (0x00800000)
2669 1.1 thorpej #define MPI_SCSIIO_CONTROL_CLEAR_ACA_RSV (0x00400000)
2670 1.1 thorpej #define MPI_SCSIIO_CONTROL_TARGET_RESET (0x00200000)
2671 1.1 thorpej #define MPI_SCSIIO_CONTROL_LUN_RESET_RSV (0x00100000)
2672 1.1 thorpej #define MPI_SCSIIO_CONTROL_RESERVED (0x00080000)
2673 1.1 thorpej #define MPI_SCSIIO_CONTROL_CLR_TASK_SET_RSV (0x00040000)
2674 1.1 thorpej #define MPI_SCSIIO_CONTROL_ABORT_TASK_SET (0x00020000)
2675 1.1 thorpej #define MPI_SCSIIO_CONTROL_RESERVED2 (0x00010000)
2676 1.1 thorpej
2677 1.1 thorpej
2678 1.1 thorpej /* SCSIIO reply structure */
2679 1.1 thorpej typedef struct _MSG_SCSI_IO_REPLY
2680 1.1 thorpej {
2681 1.1 thorpej U8 TargetID; /* 00h */
2682 1.1 thorpej U8 Bus; /* 01h */
2683 1.1 thorpej U8 MsgLength; /* 02h */
2684 1.1 thorpej U8 Function; /* 03h */
2685 1.1 thorpej U8 CDBLength; /* 04h */
2686 1.1 thorpej U8 SenseBufferLength; /* 05h */
2687 1.1 thorpej U8 Reserved; /* 06h */
2688 1.1 thorpej U8 MsgFlags; /* 07h */
2689 1.1 thorpej U32 MsgContext; /* 08h */
2690 1.1 thorpej U8 SCSIStatus; /* 0Ch */
2691 1.1 thorpej U8 SCSIState; /* 0Dh */
2692 1.1 thorpej U16 IOCStatus; /* 0Eh */
2693 1.1 thorpej U32 IOCLogInfo; /* 10h */
2694 1.1 thorpej U32 TransferCount; /* 14h */
2695 1.1 thorpej U32 SenseCount; /* 18h */
2696 1.1 thorpej U32 ResponseInfo; /* 1Ch */
2697 1.1 thorpej } MSG_SCSI_IO_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_REPLY,
2698 1.1 thorpej SCSIIOReply_t, MPI_POINTER pSCSIIOReply_t;
2699 1.1 thorpej
2700 1.1 thorpej
2701 1.1 thorpej /* SCSIIO Reply SCSIStatus values (SAM-2 status codes) */
2702 1.1 thorpej
2703 1.1 thorpej #define MPI_SCSI_STATUS_SUCCESS (0x00)
2704 1.1 thorpej #define MPI_SCSI_STATUS_CHECK_CONDITION (0x02)
2705 1.1 thorpej #define MPI_SCSI_STATUS_CONDITION_MET (0x04)
2706 1.1 thorpej #define MPI_SCSI_STATUS_BUSY (0x08)
2707 1.1 thorpej #define MPI_SCSI_STATUS_INTERMEDIATE (0x10)
2708 1.1 thorpej #define MPI_SCSI_STATUS_INTERMEDIATE_CONDMET (0x14)
2709 1.1 thorpej #define MPI_SCSI_STATUS_RESERVATION_CONFLICT (0x18)
2710 1.1 thorpej #define MPI_SCSI_STATUS_COMMAND_TERMINATED (0x22)
2711 1.1 thorpej #define MPI_SCSI_STATUS_TASK_SET_FULL (0x28)
2712 1.1 thorpej #define MPI_SCSI_STATUS_ACA_ACTIVE (0x30)
2713 1.1 thorpej
2714 1.1 thorpej
2715 1.1 thorpej /* SCSIIO Reply SCSIState values */
2716 1.1 thorpej
2717 1.1 thorpej #define MPI_SCSI_STATE_AUTOSENSE_VALID (0x01)
2718 1.1 thorpej #define MPI_SCSI_STATE_AUTOSENSE_FAILED (0x02)
2719 1.1 thorpej #define MPI_SCSI_STATE_NO_SCSI_STATUS (0x04)
2720 1.1 thorpej #define MPI_SCSI_STATE_TERMINATED (0x08)
2721 1.1 thorpej #define MPI_SCSI_STATE_RESPONSE_INFO_VALID (0x10)
2722 1.1 thorpej #define MPI_SCSI_STATE_QUEUE_TAG_REJECTED (0x20)
2723 1.1 thorpej
2724 1.1 thorpej /* SCSIIO Reply ResponseInfo values */
2725 1.1 thorpej /* (FCP-1 RSP_CODE values and SPI-3 Packetized Failure codes) */
2726 1.1 thorpej
2727 1.1 thorpej #define MPI_SCSI_RSP_INFO_FUNCTION_COMPLETE (0x00000000)
2728 1.1 thorpej #define MPI_SCSI_RSP_INFO_FCP_BURST_LEN_ERROR (0x01000000)
2729 1.1 thorpej #define MPI_SCSI_RSP_INFO_CMND_FIELDS_INVALID (0x02000000)
2730 1.1 thorpej #define MPI_SCSI_RSP_INFO_FCP_DATA_RO_ERROR (0x03000000)
2731 1.1 thorpej #define MPI_SCSI_RSP_INFO_TASK_MGMT_UNSUPPORTED (0x04000000)
2732 1.1 thorpej #define MPI_SCSI_RSP_INFO_TASK_MGMT_FAILED (0x05000000)
2733 1.1 thorpej #define MPI_SCSI_RSP_INFO_SPI_LQ_INVALID_TYPE (0x06000000)
2734 1.1 thorpej
2735 1.1 thorpej
2736 1.1 thorpej /****************************************************************************/
2737 1.1 thorpej /* SCSI Task Management messages */
2738 1.1 thorpej /****************************************************************************/
2739 1.1 thorpej
2740 1.1 thorpej typedef struct _MSG_SCSI_TASK_MGMT
2741 1.1 thorpej {
2742 1.1 thorpej U8 TargetID; /* 00h */
2743 1.1 thorpej U8 Bus; /* 01h */
2744 1.1 thorpej U8 ChainOffset; /* 02h */
2745 1.1 thorpej U8 Function; /* 03h */
2746 1.1 thorpej U8 Reserved; /* 04h */
2747 1.1 thorpej U8 TaskType; /* 05h */
2748 1.1 thorpej U8 Reserved1; /* 06h */
2749 1.1 thorpej U8 MsgFlags; /* 07h */
2750 1.1 thorpej U32 MsgContext; /* 08h */
2751 1.1 thorpej U8 LUN[8]; /* 0Ch */
2752 1.1 thorpej U32 Reserved2[7]; /* 14h */
2753 1.1 thorpej U32 TaskMsgContext; /* 30h */
2754 1.1 thorpej } MSG_SCSI_TASK_MGMT, MPI_POINTER PTR_SCSI_TASK_MGMT,
2755 1.1 thorpej SCSITaskMgmt_t, MPI_POINTER pSCSITaskMgmt_t;
2756 1.1 thorpej
2757 1.1 thorpej /* TaskType values */
2758 1.1 thorpej
2759 1.1 thorpej #define MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK (0x01)
2760 1.1 thorpej #define MPI_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET (0x02)
2761 1.1 thorpej #define MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET (0x03)
2762 1.1 thorpej #define MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS (0x04)
2763 1.1 thorpej #define MPI_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET (0x05)
2764 1.1 thorpej
2765 1.1 thorpej /* MsgFlags bits */
2766 1.1 thorpej #define MPI_SCSITASKMGMT_MSGFLAGS_TARGET_RESET_OPTION (0x00)
2767 1.1 thorpej #define MPI_SCSITASKMGMT_MSGFLAGS_LIP_RESET_OPTION (0x02)
2768 1.1 thorpej #define MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION (0x04)
2769 1.1 thorpej
2770 1.1 thorpej /* SCSI Task Management Reply */
2771 1.1 thorpej typedef struct _MSG_SCSI_TASK_MGMT_REPLY
2772 1.1 thorpej {
2773 1.1 thorpej U8 TargetID; /* 00h */
2774 1.1 thorpej U8 Bus; /* 01h */
2775 1.1 thorpej U8 MsgLength; /* 02h */
2776 1.1 thorpej U8 Function; /* 03h */
2777 1.1 thorpej U8 Reserved; /* 04h */
2778 1.1 thorpej U8 TaskType; /* 05h */
2779 1.1 thorpej U8 Reserved1; /* 06h */
2780 1.1 thorpej U8 MsgFlags; /* 07h */
2781 1.1 thorpej U32 MsgContext; /* 08h */
2782 1.1 thorpej U8 Reserved2[2]; /* 0Ch */
2783 1.1 thorpej U16 IOCStatus; /* 0Eh */
2784 1.1 thorpej U32 IOCLogInfo; /* 10h */
2785 1.1 thorpej U32 TerminationCount; /* 14h */
2786 1.1 thorpej } MSG_SCSI_TASK_MGMT_REPLY, MPI_POINTER PTR_MSG_SCSI_TASK_MGMT_REPLY,
2787 1.1 thorpej SCSITaskMgmtReply_t, MPI_POINTER pSCSITaskMgmtReply_t;
2788 1.1 thorpej
2789 1.1 thorpej
2790 1.1 thorpej /****************************************************************************/
2791 1.1 thorpej /* SCSI Enclosure Processor messages */
2792 1.1 thorpej /****************************************************************************/
2793 1.1 thorpej
2794 1.1 thorpej typedef struct _MSG_SEP_REQUEST
2795 1.1 thorpej {
2796 1.1 thorpej U8 TargetID; /* 00h */
2797 1.1 thorpej U8 Bus; /* 01h */
2798 1.1 thorpej U8 ChainOffset; /* 02h */
2799 1.1 thorpej U8 Function; /* 03h */
2800 1.1 thorpej U8 Action; /* 04h */
2801 1.1 thorpej U8 Reserved1; /* 05h */
2802 1.1 thorpej U8 Reserved2; /* 06h */
2803 1.1 thorpej U8 MsgFlags; /* 07h */
2804 1.1 thorpej U32 MsgContext; /* 08h */
2805 1.1 thorpej U32 SlotStatus; /* 0Ch */
2806 1.1 thorpej } MSG_SEP_REQUEST, MPI_POINTER PTR_MSG_SEP_REQUEST,
2807 1.1 thorpej SEPRequest_t, MPI_POINTER pSEPRequest_t;
2808 1.1 thorpej
2809 1.1 thorpej /* Action defines */
2810 1.1 thorpej #define MPI_SEP_REQ_ACTION_WRITE_STATUS (0x00)
2811 1.1 thorpej #define MPI_SEP_REQ_ACTION_READ_STATUS (0x01)
2812 1.1 thorpej
2813 1.1 thorpej /* SlotStatus bits for MSG_SEP_REQUEST */
2814 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_NO_ERROR (0x00000001)
2815 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_DEV_FAULTY (0x00000002)
2816 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_DEV_REBUILDING (0x00000004)
2817 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_IN_FAILED_ARRAY (0x00000008)
2818 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_IN_CRITICAL_ARRAY (0x00000010)
2819 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_PARITY_CHECK (0x00000020)
2820 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT (0x00000040)
2821 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_UNCONFIGURED (0x00000080)
2822 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_HOT_SPARE (0x00000100)
2823 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_REBUILD_STOPPED (0x00000200)
2824 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_IDENTIFY_REQUEST (0x00020000)
2825 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_REQUEST_REMOVE (0x00040000)
2826 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_REQUEST_INSERT (0x00080000)
2827 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_DO_NOT_MOVE (0x00400000)
2828 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_B_ENABLE_BYPASS (0x04000000)
2829 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_A_ENABLE_BYPASS (0x08000000)
2830 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_DEV_OFF (0x10000000)
2831 1.1 thorpej #define MPI_SEP_REQ_SLOTSTATUS_SWAP_RESET (0x80000000)
2832 1.1 thorpej
2833 1.1 thorpej
2834 1.1 thorpej typedef struct _MSG_SEP_REPLY
2835 1.1 thorpej {
2836 1.1 thorpej U8 TargetID; /* 00h */
2837 1.1 thorpej U8 Bus; /* 01h */
2838 1.1 thorpej U8 MsgLength; /* 02h */
2839 1.1 thorpej U8 Function; /* 03h */
2840 1.1 thorpej U8 Action; /* 04h */
2841 1.1 thorpej U8 Reserved1; /* 05h */
2842 1.1 thorpej U8 Reserved2; /* 06h */
2843 1.1 thorpej U8 MsgFlags; /* 07h */
2844 1.1 thorpej U32 MsgContext; /* 08h */
2845 1.1 thorpej U16 Reserved3; /* 0Ch */
2846 1.1 thorpej U16 IOCStatus; /* 0Eh */
2847 1.1 thorpej U32 IOCLogInfo; /* 10h */
2848 1.1 thorpej U32 SlotStatus; /* 14h */
2849 1.1 thorpej } MSG_SEP_REPLY, MPI_POINTER PTR_MSG_SEP_REPLY,
2850 1.1 thorpej SEPReply_t, MPI_POINTER pSEPReply_t;
2851 1.1 thorpej
2852 1.1 thorpej /* SlotStatus bits for MSG_SEP_REPLY */
2853 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_NO_ERROR (0x00000001)
2854 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_DEV_FAULTY (0x00000002)
2855 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_DEV_REBUILDING (0x00000004)
2856 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_IN_FAILED_ARRAY (0x00000008)
2857 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_IN_CRITICAL_ARRAY (0x00000010)
2858 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_PARITY_CHECK (0x00000020)
2859 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_PREDICTED_FAULT (0x00000040)
2860 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_UNCONFIGURED (0x00000080)
2861 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_HOT_SPARE (0x00000100)
2862 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_REBUILD_STOPPED (0x00000200)
2863 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_REPORT (0x00010000)
2864 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_IDENTIFY_REQUEST (0x00020000)
2865 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_REMOVE_READY (0x00040000)
2866 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_INSERT_READY (0x00080000)
2867 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_DO_NOT_REMOVE (0x00400000)
2868 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_B_BYPASS_ENABLED (0x01000000)
2869 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_A_BYPASS_ENABLED (0x02000000)
2870 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_B_ENABLE_BYPASS (0x04000000)
2871 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_A_ENABLE_BYPASS (0x08000000)
2872 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_DEV_OFF (0x10000000)
2873 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_FAULT_SENSED (0x40000000)
2874 1.1 thorpej #define MPI_SEP_REPLY_SLOTSTATUS_SWAPPED (0x80000000)
2875 1.1 thorpej
2876 1.1 thorpej #endif
2877 1.1 thorpej
2878 1.1 thorpej /*
2879 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
2880 1.1 thorpej *
2881 1.1 thorpej * Redistribution and use in source and binary forms, with or without
2882 1.1 thorpej * modification, are permitted provided that the following conditions
2883 1.1 thorpej * are met:
2884 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
2885 1.1 thorpej * notice immediately at the beginning of the file, without modification,
2886 1.1 thorpej * this list of conditions, and the following disclaimer.
2887 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
2888 1.1 thorpej * derived from this software without specific prior written permission.
2889 1.1 thorpej *
2890 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2891 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2892 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2893 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2894 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2895 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2896 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2897 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2898 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2899 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2900 1.1 thorpej * SUCH DAMAGE.
2901 1.1 thorpej *
2902 1.1 thorpej *
2903 1.1 thorpej * Name: MPI_IOC.H
2904 1.1 thorpej * Title: MPI IOC, Port, Event, FW Download, and FW Upload messages
2905 1.1 thorpej * Creation Date: August 11, 2000
2906 1.1 thorpej *
2907 1.1 thorpej * MPI Version: 01.02.04
2908 1.1 thorpej *
2909 1.1 thorpej * Version History
2910 1.1 thorpej * ---------------
2911 1.1 thorpej *
2912 1.1 thorpej * Date Version Description
2913 1.1 thorpej * -------- -------- ------------------------------------------------------
2914 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
2915 1.1 thorpej * 05-24-00 00.10.02 Added _MSG_IOC_INIT_REPLY structure.
2916 1.1 thorpej * 06-06-00 01.00.01 Added CurReplyFrameSize field to _MSG_IOC_FACTS_REPLY.
2917 1.1 thorpej * 06-12-00 01.00.02 Added _MSG_PORT_ENABLE_REPLY structure.
2918 1.1 thorpej * Added _MSG_EVENT_ACK_REPLY structure.
2919 1.1 thorpej * Added _MSG_FW_DOWNLOAD_REPLY structure.
2920 1.1 thorpej * Added _MSG_TOOLBOX_REPLY structure.
2921 1.1 thorpej * 06-30-00 01.00.03 Added MaxLanBuckets to _PORT_FACT_REPLY structure.
2922 1.1 thorpej * 07-27-00 01.00.04 Added _EVENT_DATA structure definitions for _SCSI,
2923 1.1 thorpej * _LINK_STATUS, _LOOP_STATE and _LOGOUT.
2924 1.1 thorpej * 08-11-00 01.00.05 Switched positions of MsgLength and Function fields in
2925 1.1 thorpej * _MSG_EVENT_ACK_REPLY structure to match specification.
2926 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work.
2927 1.1 thorpej * Added a value for Manufacturer to WhoInit.
2928 1.1 thorpej * 12-04-00 01.01.02 Modified IOCFacts reply, added FWUpload messages, and
2929 1.1 thorpej * removed toolbox message.
2930 1.1 thorpej * 01-09-01 01.01.03 Added event enabled and disabled defines.
2931 1.1 thorpej * Added structures for FwHeader and DataHeader.
2932 1.1 thorpej * Added ImageType to FwUpload reply.
2933 1.1 thorpej * 02-20-01 01.01.04 Started using MPI_POINTER.
2934 1.1 thorpej * 02-27-01 01.01.05 Added event for RAID status change and its event data.
2935 1.1 thorpej * Added IocNumber field to MSG_IOC_FACTS_REPLY.
2936 1.1 thorpej * 03-27-01 01.01.06 Added defines for ProductId field of MPI_FW_HEADER.
2937 1.1 thorpej * Added structure offset comments.
2938 1.1 thorpej * 04-09-01 01.01.07 Added structure EVENT_DATA_EVENT_CHANGE.
2939 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
2940 1.1 thorpej * New format for FWVersion and ProductId in
2941 1.1 thorpej * MSG_IOC_FACTS_REPLY and MPI_FW_HEADER.
2942 1.1 thorpej * 08-31-01 01.02.02 Addded event MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE and
2943 1.1 thorpej * related structure and defines.
2944 1.1 thorpej * Added event MPI_EVENT_ON_BUS_TIMER_EXPIRED.
2945 1.1 thorpej * Added MPI_IOCINIT_FLAGS_DISCARD_FW_IMAGE.
2946 1.1 thorpej * Replaced a reserved field in MSG_IOC_FACTS_REPLY with
2947 1.1 thorpej * IOCExceptions and changed DataImageSize to reserved.
2948 1.1 thorpej * Added MPI_FW_DOWNLOAD_ITYPE_NVSTORE_DATA and
2949 1.1 thorpej * MPI_FW_UPLOAD_ITYPE_NVDATA.
2950 1.1 thorpej * 09-28-01 01.02.03 Modified Event Data for Integrated RAID.
2951 1.1 thorpej * 11-01-01 01.02.04 Added defines for MPI_EXT_IMAGE_HEADER ImageType field.
2952 1.1 thorpej * --------------------------------------------------------------------------
2953 1.1 thorpej */
2954 1.1 thorpej
2955 1.1 thorpej #ifndef MPI_IOC_H
2956 1.1 thorpej #define MPI_IOC_H
2957 1.1 thorpej
2958 1.1 thorpej
2959 1.1 thorpej /*****************************************************************************
2960 1.1 thorpej *
2961 1.1 thorpej * I O C M e s s a g e s
2962 1.1 thorpej *
2963 1.1 thorpej *****************************************************************************/
2964 1.1 thorpej
2965 1.1 thorpej /****************************************************************************/
2966 1.1 thorpej /* IOCInit message */
2967 1.1 thorpej /****************************************************************************/
2968 1.1 thorpej
2969 1.1 thorpej typedef struct _MSG_IOC_INIT
2970 1.1 thorpej {
2971 1.1 thorpej U8 WhoInit; /* 00h */
2972 1.1 thorpej U8 Reserved; /* 01h */
2973 1.1 thorpej U8 ChainOffset; /* 02h */
2974 1.1 thorpej U8 Function; /* 03h */
2975 1.1 thorpej U8 Flags; /* 04h */
2976 1.1 thorpej U8 MaxDevices; /* 05h */
2977 1.1 thorpej U8 MaxBuses; /* 06h */
2978 1.1 thorpej U8 MsgFlags; /* 07h */
2979 1.1 thorpej U32 MsgContext; /* 08h */
2980 1.1 thorpej U16 ReplyFrameSize; /* 0Ch */
2981 1.1 thorpej U8 Reserved1[2]; /* 0Eh */
2982 1.1 thorpej U32 HostMfaHighAddr; /* 10h */
2983 1.1 thorpej U32 SenseBufferHighAddr; /* 14h */
2984 1.1 thorpej } MSG_IOC_INIT, MPI_POINTER PTR_MSG_IOC_INIT,
2985 1.1 thorpej IOCInit_t, MPI_POINTER pIOCInit_t;
2986 1.1 thorpej
2987 1.1 thorpej /* WhoInit values */
2988 1.1 thorpej #define MPI_WHOINIT_NO_ONE (0x00)
2989 1.1 thorpej #define MPI_WHOINIT_SYSTEM_BIOS (0x01)
2990 1.1 thorpej #define MPI_WHOINIT_ROM_BIOS (0x02)
2991 1.1 thorpej #define MPI_WHOINIT_PCI_PEER (0x03)
2992 1.1 thorpej #define MPI_WHOINIT_HOST_DRIVER (0x04)
2993 1.1 thorpej #define MPI_WHOINIT_MANUFACTURER (0x05)
2994 1.1 thorpej
2995 1.1 thorpej /* Flags values */
2996 1.1 thorpej #define MPI_IOCINIT_FLAGS_DISCARD_FW_IMAGE (0x01)
2997 1.1 thorpej
2998 1.1 thorpej typedef struct _MSG_IOC_INIT_REPLY
2999 1.1 thorpej {
3000 1.1 thorpej U8 WhoInit; /* 00h */
3001 1.1 thorpej U8 Reserved; /* 01h */
3002 1.1 thorpej U8 MsgLength; /* 02h */
3003 1.1 thorpej U8 Function; /* 03h */
3004 1.1 thorpej U8 Flags; /* 04h */
3005 1.1 thorpej U8 MaxDevices; /* 05h */
3006 1.1 thorpej U8 MaxBuses; /* 06h */
3007 1.1 thorpej U8 MsgFlags; /* 07h */
3008 1.1 thorpej U32 MsgContext; /* 08h */
3009 1.1 thorpej U16 Reserved2; /* 0Ch */
3010 1.1 thorpej U16 IOCStatus; /* 0Eh */
3011 1.1 thorpej U32 IOCLogInfo; /* 10h */
3012 1.1 thorpej } MSG_IOC_INIT_REPLY, MPI_POINTER PTR_MSG_IOC_INIT_REPLY,
3013 1.1 thorpej IOCInitReply_t, MPI_POINTER pIOCInitReply_t;
3014 1.1 thorpej
3015 1.1 thorpej
3016 1.1 thorpej
3017 1.1 thorpej /****************************************************************************/
3018 1.1 thorpej /* IOC Facts message */
3019 1.1 thorpej /****************************************************************************/
3020 1.1 thorpej
3021 1.1 thorpej typedef struct _MSG_IOC_FACTS
3022 1.1 thorpej {
3023 1.1 thorpej U8 Reserved[2]; /* 00h */
3024 1.1 thorpej U8 ChainOffset; /* 01h */
3025 1.1 thorpej U8 Function; /* 02h */
3026 1.1 thorpej U8 Reserved1[3]; /* 03h */
3027 1.1 thorpej U8 MsgFlags; /* 04h */
3028 1.1 thorpej U32 MsgContext; /* 08h */
3029 1.1 thorpej } MSG_IOC_FACTS, MPI_POINTER PTR_IOC_FACTS,
3030 1.1 thorpej IOCFacts_t, MPI_POINTER pIOCFacts_t;
3031 1.1 thorpej
3032 1.1 thorpej typedef struct _MPI_FW_VERSION_STRUCT
3033 1.1 thorpej {
3034 1.1 thorpej U8 Dev; /* 00h */
3035 1.1 thorpej U8 Unit; /* 01h */
3036 1.1 thorpej U8 Minor; /* 02h */
3037 1.1 thorpej U8 Major; /* 03h */
3038 1.1 thorpej } MPI_FW_VERSION_STRUCT;
3039 1.1 thorpej
3040 1.1 thorpej typedef union _MPI_FW_VERSION
3041 1.1 thorpej {
3042 1.1 thorpej MPI_FW_VERSION_STRUCT Struct;
3043 1.1 thorpej U32 Word;
3044 1.1 thorpej } MPI_FW_VERSION;
3045 1.1 thorpej
3046 1.1 thorpej /* IOC Facts Reply */
3047 1.1 thorpej typedef struct _MSG_IOC_FACTS_REPLY
3048 1.1 thorpej {
3049 1.1 thorpej U16 MsgVersion; /* 00h */
3050 1.1 thorpej U8 MsgLength; /* 02h */
3051 1.1 thorpej U8 Function; /* 03h */
3052 1.1 thorpej U16 Reserved; /* 04h */
3053 1.1 thorpej U8 IOCNumber; /* 06h */
3054 1.1 thorpej U8 MsgFlags; /* 07h */
3055 1.1 thorpej U32 MsgContext; /* 08h */
3056 1.1 thorpej U16 IOCExceptions; /* 0Ch */
3057 1.1 thorpej U16 IOCStatus; /* 0Eh */
3058 1.1 thorpej U32 IOCLogInfo; /* 10h */
3059 1.1 thorpej U8 MaxChainDepth; /* 14h */
3060 1.1 thorpej U8 WhoInit; /* 15h */
3061 1.1 thorpej U8 BlockSize; /* 16h */
3062 1.1 thorpej U8 Flags; /* 17h */
3063 1.1 thorpej U16 ReplyQueueDepth; /* 18h */
3064 1.1 thorpej U16 RequestFrameSize; /* 1Ah */
3065 1.1 thorpej U16 Reserved_0101_FWVersion; /* 1Ch */ /* obsolete 16-bit FWVersion */
3066 1.1 thorpej U16 ProductID; /* 1Eh */
3067 1.1 thorpej U32 CurrentHostMfaHighAddr; /* 20h */
3068 1.1 thorpej U16 GlobalCredits; /* 24h */
3069 1.1 thorpej U8 NumberOfPorts; /* 26h */
3070 1.1 thorpej U8 EventState; /* 27h */
3071 1.1 thorpej U32 CurrentSenseBufferHighAddr; /* 28h */
3072 1.1 thorpej U16 CurReplyFrameSize; /* 2Ch */
3073 1.1 thorpej U8 MaxDevices; /* 2Eh */
3074 1.1 thorpej U8 MaxBuses; /* 2Fh */
3075 1.1 thorpej U32 FWImageSize; /* 30h */
3076 1.1 thorpej U32 Reserved4; /* 34h */
3077 1.1 thorpej MPI_FW_VERSION FWVersion; /* 38h */
3078 1.1 thorpej } MSG_IOC_FACTS_REPLY, MPI_POINTER PTR_MSG_IOC_FACTS_REPLY,
3079 1.1 thorpej IOCFactsReply_t, MPI_POINTER pIOCFactsReply_t;
3080 1.1 thorpej
3081 1.1 thorpej #define MPI_IOCFACTS_MSGVERSION_MAJOR_MASK (0xFF00)
3082 1.1 thorpej #define MPI_IOCFACTS_MSGVERSION_MINOR_MASK (0x00FF)
3083 1.1 thorpej
3084 1.1 thorpej #define MPI_IOCFACTS_EXCEPT_CONFIG_CHECKSUM_FAIL (0x0001)
3085 1.1 thorpej
3086 1.1 thorpej #define MPI_IOCFACTS_FLAGS_FW_DOWNLOAD_BOOT (0x01)
3087 1.1 thorpej
3088 1.1 thorpej #define MPI_IOCFACTS_EVENTSTATE_DISABLED (0x00)
3089 1.1 thorpej #define MPI_IOCFACTS_EVENTSTATE_ENABLED (0x01)
3090 1.1 thorpej
3091 1.1 thorpej
3092 1.1 thorpej
3093 1.1 thorpej /*****************************************************************************
3094 1.1 thorpej *
3095 1.1 thorpej * P o r t M e s s a g e s
3096 1.1 thorpej *
3097 1.1 thorpej *****************************************************************************/
3098 1.1 thorpej
3099 1.1 thorpej /****************************************************************************/
3100 1.1 thorpej /* Port Facts message and Reply */
3101 1.1 thorpej /****************************************************************************/
3102 1.1 thorpej
3103 1.1 thorpej typedef struct _MSG_PORT_FACTS
3104 1.1 thorpej {
3105 1.1 thorpej U8 Reserved[2]; /* 00h */
3106 1.1 thorpej U8 ChainOffset; /* 02h */
3107 1.1 thorpej U8 Function; /* 03h */
3108 1.1 thorpej U8 Reserved1[2]; /* 04h */
3109 1.1 thorpej U8 PortNumber; /* 06h */
3110 1.1 thorpej U8 MsgFlags; /* 07h */
3111 1.1 thorpej U32 MsgContext; /* 08h */
3112 1.1 thorpej } MSG_PORT_FACTS, MPI_POINTER PTR_MSG_PORT_FACTS,
3113 1.1 thorpej PortFacts_t, MPI_POINTER pPortFacts_t;
3114 1.1 thorpej
3115 1.1 thorpej typedef struct _MSG_PORT_FACTS_REPLY
3116 1.1 thorpej {
3117 1.1 thorpej U16 Reserved; /* 00h */
3118 1.1 thorpej U8 MsgLength; /* 02h */
3119 1.1 thorpej U8 Function; /* 03h */
3120 1.1 thorpej U16 Reserved1; /* 04h */
3121 1.1 thorpej U8 PortNumber; /* 06h */
3122 1.1 thorpej U8 MsgFlags; /* 07h */
3123 1.1 thorpej U32 MsgContext; /* 08h */
3124 1.1 thorpej U16 Reserved2; /* 0Ch */
3125 1.1 thorpej U16 IOCStatus; /* 0Eh */
3126 1.1 thorpej U32 IOCLogInfo; /* 10h */
3127 1.1 thorpej U8 Reserved3; /* 14h */
3128 1.1 thorpej U8 PortType; /* 15h */
3129 1.1 thorpej U16 MaxDevices; /* 16h */
3130 1.1 thorpej U16 PortSCSIID; /* 18h */
3131 1.1 thorpej U16 ProtocolFlags; /* 1Ah */
3132 1.1 thorpej U16 MaxPostedCmdBuffers; /* 1Ch */
3133 1.1 thorpej U16 MaxPersistentIDs; /* 1Eh */
3134 1.1 thorpej U16 MaxLanBuckets; /* 20h */
3135 1.1 thorpej U16 Reserved4; /* 22h */
3136 1.1 thorpej U32 Reserved5; /* 24h */
3137 1.1 thorpej } MSG_PORT_FACTS_REPLY, MPI_POINTER PTR_MSG_PORT_FACTS_REPLY,
3138 1.1 thorpej PortFactsReply_t, MPI_POINTER pPortFactsReply_t;
3139 1.1 thorpej
3140 1.1 thorpej
3141 1.1 thorpej /* PortTypes values */
3142 1.1 thorpej
3143 1.1 thorpej #define MPI_PORTFACTS_PORTTYPE_INACTIVE (0x00)
3144 1.1 thorpej #define MPI_PORTFACTS_PORTTYPE_SCSI (0x01)
3145 1.1 thorpej #define MPI_PORTFACTS_PORTTYPE_FC (0x10)
3146 1.1 thorpej
3147 1.1 thorpej /* ProtocolFlags values */
3148 1.1 thorpej
3149 1.1 thorpej #define MPI_PORTFACTS_PROTOCOL_LOGBUSADDR (0x01)
3150 1.1 thorpej #define MPI_PORTFACTS_PROTOCOL_LAN (0x02)
3151 1.1 thorpej #define MPI_PORTFACTS_PROTOCOL_TARGET (0x04)
3152 1.1 thorpej #define MPI_PORTFACTS_PROTOCOL_INITIATOR (0x08)
3153 1.1 thorpej
3154 1.1 thorpej
3155 1.1 thorpej /****************************************************************************/
3156 1.1 thorpej /* Port Enable Message */
3157 1.1 thorpej /****************************************************************************/
3158 1.1 thorpej
3159 1.1 thorpej typedef struct _MSG_PORT_ENABLE
3160 1.1 thorpej {
3161 1.1 thorpej U8 Reserved[2]; /* 00h */
3162 1.1 thorpej U8 ChainOffset; /* 02h */
3163 1.1 thorpej U8 Function; /* 03h */
3164 1.1 thorpej U8 Reserved1[2]; /* 04h */
3165 1.1 thorpej U8 PortNumber; /* 06h */
3166 1.1 thorpej U8 MsgFlags; /* 07h */
3167 1.1 thorpej U32 MsgContext; /* 08h */
3168 1.1 thorpej } MSG_PORT_ENABLE, MPI_POINTER PTR_MSG_PORT_ENABLE,
3169 1.1 thorpej PortEnable_t, MPI_POINTER pPortEnable_t;
3170 1.1 thorpej
3171 1.1 thorpej typedef struct _MSG_PORT_ENABLE_REPLY
3172 1.1 thorpej {
3173 1.1 thorpej U8 Reserved[2]; /* 00h */
3174 1.1 thorpej U8 MsgLength; /* 02h */
3175 1.1 thorpej U8 Function; /* 03h */
3176 1.1 thorpej U8 Reserved1[2]; /* 04h */
3177 1.1 thorpej U8 PortNumber; /* 05h */
3178 1.1 thorpej U8 MsgFlags; /* 07h */
3179 1.1 thorpej U32 MsgContext; /* 08h */
3180 1.1 thorpej U16 Reserved2; /* 0Ch */
3181 1.1 thorpej U16 IOCStatus; /* 0Eh */
3182 1.1 thorpej U32 IOCLogInfo; /* 10h */
3183 1.1 thorpej } MSG_PORT_ENABLE_REPLY, MPI_POINTER PTR_MSG_PORT_ENABLE_REPLY,
3184 1.1 thorpej PortEnableReply_t, MPI_POINTER pPortEnableReply_t;
3185 1.1 thorpej
3186 1.1 thorpej
3187 1.1 thorpej /*****************************************************************************
3188 1.1 thorpej *
3189 1.1 thorpej * E v e n t M e s s a g e s
3190 1.1 thorpej *
3191 1.1 thorpej *****************************************************************************/
3192 1.1 thorpej
3193 1.1 thorpej /****************************************************************************/
3194 1.1 thorpej /* Event Notification messages */
3195 1.1 thorpej /****************************************************************************/
3196 1.1 thorpej
3197 1.1 thorpej typedef struct _MSG_EVENT_NOTIFY
3198 1.1 thorpej {
3199 1.1 thorpej U8 Switch; /* 00h */
3200 1.1 thorpej U8 Reserved; /* 01h */
3201 1.1 thorpej U8 ChainOffset; /* 02h */
3202 1.1 thorpej U8 Function; /* 03h */
3203 1.1 thorpej U8 Reserved1[3]; /* 04h */
3204 1.1 thorpej U8 MsgFlags; /* 07h */
3205 1.1 thorpej U32 MsgContext; /* 08h */
3206 1.1 thorpej } MSG_EVENT_NOTIFY, MPI_POINTER PTR_MSG_EVENT_NOTIFY,
3207 1.1 thorpej EventNotification_t, MPI_POINTER pEventNotification_t;
3208 1.1 thorpej
3209 1.1 thorpej /* Event Notification Reply */
3210 1.1 thorpej
3211 1.1 thorpej typedef struct _MSG_EVENT_NOTIFY_REPLY
3212 1.1 thorpej {
3213 1.1 thorpej U16 EventDataLength; /* 00h */
3214 1.1 thorpej U8 MsgLength; /* 02h */
3215 1.1 thorpej U8 Function; /* 03h */
3216 1.1 thorpej U8 Reserved1[2]; /* 04h */
3217 1.1 thorpej U8 AckRequired; /* 06h */
3218 1.1 thorpej U8 MsgFlags; /* 07h */
3219 1.1 thorpej U32 MsgContext; /* 08h */
3220 1.1 thorpej U8 Reserved2[2]; /* 0Ch */
3221 1.1 thorpej U16 IOCStatus; /* 0Eh */
3222 1.1 thorpej U32 IOCLogInfo; /* 10h */
3223 1.1 thorpej U32 Event; /* 14h */
3224 1.1 thorpej U32 EventContext; /* 18h */
3225 1.1 thorpej U32 Data[1]; /* 1Ch */
3226 1.1 thorpej } MSG_EVENT_NOTIFY_REPLY, MPI_POINTER PTR_MSG_EVENT_NOTIFY_REPLY,
3227 1.1 thorpej EventNotificationReply_t, MPI_POINTER pEventNotificationReply_t;
3228 1.1 thorpej
3229 1.1 thorpej /* Event Acknowledge */
3230 1.1 thorpej
3231 1.1 thorpej typedef struct _MSG_EVENT_ACK
3232 1.1 thorpej {
3233 1.1 thorpej U8 Reserved[2]; /* 00h */
3234 1.1 thorpej U8 ChainOffset; /* 02h */
3235 1.1 thorpej U8 Function; /* 03h */
3236 1.1 thorpej U8 Reserved1[3]; /* 04h */
3237 1.1 thorpej U8 MsgFlags; /* 07h */
3238 1.1 thorpej U32 MsgContext; /* 08h */
3239 1.1 thorpej U32 Event; /* 0Ch */
3240 1.1 thorpej U32 EventContext; /* 10h */
3241 1.1 thorpej } MSG_EVENT_ACK, MPI_POINTER PTR_MSG_EVENT_ACK,
3242 1.1 thorpej EventAck_t, MPI_POINTER pEventAck_t;
3243 1.1 thorpej
3244 1.1 thorpej typedef struct _MSG_EVENT_ACK_REPLY
3245 1.1 thorpej {
3246 1.1 thorpej U8 Reserved[2]; /* 00h */
3247 1.1 thorpej U8 MsgLength; /* 02h */
3248 1.1 thorpej U8 Function; /* 03h */
3249 1.1 thorpej U8 Reserved1[3]; /* 04h */
3250 1.1 thorpej U8 MsgFlags; /* 07h */
3251 1.1 thorpej U32 MsgContext; /* 08h */
3252 1.1 thorpej U16 Reserved2; /* 0Ch */
3253 1.1 thorpej U16 IOCStatus; /* 0Eh */
3254 1.1 thorpej U32 IOCLogInfo; /* 10h */
3255 1.1 thorpej } MSG_EVENT_ACK_REPLY, MPI_POINTER PTR_MSG_EVENT_ACK_REPLY,
3256 1.1 thorpej EventAckReply_t, MPI_POINTER pEventAckReply_t;
3257 1.1 thorpej
3258 1.1 thorpej /* Switch */
3259 1.1 thorpej
3260 1.1 thorpej #define MPI_EVENT_NOTIFICATION_SWITCH_OFF (0x00)
3261 1.1 thorpej #define MPI_EVENT_NOTIFICATION_SWITCH_ON (0x01)
3262 1.1 thorpej
3263 1.1 thorpej /* Event */
3264 1.1 thorpej
3265 1.1 thorpej #define MPI_EVENT_NONE (0x00000000)
3266 1.1 thorpej #define MPI_EVENT_LOG_DATA (0x00000001)
3267 1.1 thorpej #define MPI_EVENT_STATE_CHANGE (0x00000002)
3268 1.1 thorpej #define MPI_EVENT_UNIT_ATTENTION (0x00000003)
3269 1.1 thorpej #define MPI_EVENT_IOC_BUS_RESET (0x00000004)
3270 1.1 thorpej #define MPI_EVENT_EXT_BUS_RESET (0x00000005)
3271 1.1 thorpej #define MPI_EVENT_RESCAN (0x00000006)
3272 1.1 thorpej #define MPI_EVENT_LINK_STATUS_CHANGE (0x00000007)
3273 1.1 thorpej #define MPI_EVENT_LOOP_STATE_CHANGE (0x00000008)
3274 1.1 thorpej #define MPI_EVENT_LOGOUT (0x00000009)
3275 1.1 thorpej #define MPI_EVENT_EVENT_CHANGE (0x0000000A)
3276 1.1 thorpej #define MPI_EVENT_INTEGRATED_RAID (0x0000000B)
3277 1.1 thorpej #define MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE (0x0000000C)
3278 1.1 thorpej #define MPI_EVENT_ON_BUS_TIMER_EXPIRED (0x0000000D)
3279 1.1 thorpej
3280 1.1 thorpej /* AckRequired field values */
3281 1.1 thorpej
3282 1.1 thorpej #define MPI_EVENT_NOTIFICATION_ACK_NOT_REQUIRED (0x00)
3283 1.1 thorpej #define MPI_EVENT_NOTIFICATION_ACK_REQUIRED (0x01)
3284 1.1 thorpej
3285 1.1 thorpej /* EventChange Event data */
3286 1.1 thorpej
3287 1.1 thorpej typedef struct _EVENT_DATA_EVENT_CHANGE
3288 1.1 thorpej {
3289 1.1 thorpej U8 EventState; /* 00h */
3290 1.1 thorpej U8 Reserved; /* 01h */
3291 1.1 thorpej U16 Reserved1; /* 02h */
3292 1.1 thorpej } EVENT_DATA_EVENT_CHANGE, MPI_POINTER PTR_EVENT_DATA_EVENT_CHANGE,
3293 1.1 thorpej EventDataEventChange_t, MPI_POINTER pEventDataEventChange_t;
3294 1.1 thorpej
3295 1.1 thorpej /* SCSI Event data for Port, Bus and Device forms */
3296 1.1 thorpej
3297 1.1 thorpej typedef struct _EVENT_DATA_SCSI
3298 1.1 thorpej {
3299 1.1 thorpej U8 TargetID; /* 00h */
3300 1.1 thorpej U8 BusPort; /* 01h */
3301 1.1 thorpej U16 Reserved; /* 02h */
3302 1.1 thorpej } EVENT_DATA_SCSI, MPI_POINTER PTR_EVENT_DATA_SCSI,
3303 1.1 thorpej EventDataScsi_t, MPI_POINTER pEventDataScsi_t;
3304 1.1 thorpej
3305 1.1 thorpej /* SCSI Device Status Change Event data */
3306 1.1 thorpej
3307 1.1 thorpej typedef struct _EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE
3308 1.1 thorpej {
3309 1.1 thorpej U8 TargetID; /* 00h */
3310 1.1 thorpej U8 Bus; /* 01h */
3311 1.1 thorpej U8 ReasonCode; /* 02h */
3312 1.1 thorpej U8 LUN; /* 03h */
3313 1.1 thorpej U8 ASC; /* 04h */
3314 1.1 thorpej U8 ASCQ; /* 05h */
3315 1.1 thorpej U16 Reserved; /* 06h */
3316 1.1 thorpej } EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE,
3317 1.1 thorpej MPI_POINTER PTR_EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE,
3318 1.1 thorpej MpiEventDataScsiDeviceStatusChange_t,
3319 1.1 thorpej MPI_POINTER pMpiEventDataScsiDeviceStatusChange_t;
3320 1.1 thorpej
3321 1.1 thorpej /* MPI SCSI Device Status Change Event data ReasonCode values */
3322 1.1 thorpej #define MPI_EVENT_SCSI_DEV_STAT_RC_ADDED (0x03)
3323 1.1 thorpej #define MPI_EVENT_SCSI_DEV_STAT_RC_NOT_RESPONDING (0x04)
3324 1.1 thorpej #define MPI_EVENT_SCSI_DEV_STAT_RC_SMART_DATA (0x05)
3325 1.1 thorpej
3326 1.1 thorpej /* MPI Link Status Change Event data */
3327 1.1 thorpej
3328 1.1 thorpej typedef struct _EVENT_DATA_LINK_STATUS
3329 1.1 thorpej {
3330 1.1 thorpej U8 State; /* 00h */
3331 1.1 thorpej U8 Reserved; /* 01h */
3332 1.1 thorpej U16 Reserved1; /* 02h */
3333 1.1 thorpej U8 Reserved2; /* 04h */
3334 1.1 thorpej U8 Port; /* 05h */
3335 1.1 thorpej U16 Reserved3; /* 06h */
3336 1.1 thorpej } EVENT_DATA_LINK_STATUS, MPI_POINTER PTR_EVENT_DATA_LINK_STATUS,
3337 1.1 thorpej EventDataLinkStatus_t, MPI_POINTER pEventDataLinkStatus_t;
3338 1.1 thorpej
3339 1.1 thorpej #define MPI_EVENT_LINK_STATUS_FAILURE (0x00000000)
3340 1.1 thorpej #define MPI_EVENT_LINK_STATUS_ACTIVE (0x00000001)
3341 1.1 thorpej
3342 1.1 thorpej /* MPI Loop State Change Event data */
3343 1.1 thorpej
3344 1.1 thorpej typedef struct _EVENT_DATA_LOOP_STATE
3345 1.1 thorpej {
3346 1.1 thorpej U8 Character4; /* 00h */
3347 1.1 thorpej U8 Character3; /* 01h */
3348 1.1 thorpej U8 Type; /* 02h */
3349 1.1 thorpej U8 Reserved; /* 03h */
3350 1.1 thorpej U8 Reserved1; /* 04h */
3351 1.1 thorpej U8 Port; /* 05h */
3352 1.1 thorpej U16 Reserved2; /* 06h */
3353 1.1 thorpej } EVENT_DATA_LOOP_STATE, MPI_POINTER PTR_EVENT_DATA_LOOP_STATE,
3354 1.1 thorpej EventDataLoopState_t, MPI_POINTER pEventDataLoopState_t;
3355 1.1 thorpej
3356 1.1 thorpej #define MPI_EVENT_LOOP_STATE_CHANGE_LIP (0x0001)
3357 1.1 thorpej #define MPI_EVENT_LOOP_STATE_CHANGE_LPE (0x0002)
3358 1.1 thorpej #define MPI_EVENT_LOOP_STATE_CHANGE_LPB (0x0003)
3359 1.1 thorpej
3360 1.1 thorpej /* MPI LOGOUT Event data */
3361 1.1 thorpej
3362 1.1 thorpej typedef struct _EVENT_DATA_LOGOUT
3363 1.1 thorpej {
3364 1.1 thorpej U32 NPortID; /* 00h */
3365 1.1 thorpej U8 Reserved; /* 04h */
3366 1.1 thorpej U8 Port; /* 05h */
3367 1.1 thorpej U16 Reserved1; /* 06h */
3368 1.1 thorpej } EVENT_DATA_LOGOUT, MPI_POINTER PTR_EVENT_DATA_LOGOUT,
3369 1.1 thorpej EventDataLogout_t, MPI_POINTER pEventDataLogout_t;
3370 1.1 thorpej
3371 1.1 thorpej /* MPI Integrated RAID Event data */
3372 1.1 thorpej
3373 1.1 thorpej typedef struct _EVENT_DATA_RAID
3374 1.1 thorpej {
3375 1.1 thorpej U8 VolumeID; /* 00h */
3376 1.1 thorpej U8 VolumeBus; /* 01h */
3377 1.1 thorpej U8 ReasonCode; /* 02h */
3378 1.1 thorpej U8 PhysDiskNum; /* 03h */
3379 1.1 thorpej U8 ASC; /* 04h */
3380 1.1 thorpej U8 ASCQ; /* 05h */
3381 1.1 thorpej U16 Reserved; /* 06h */
3382 1.1 thorpej U32 SettingsStatus; /* 08h */
3383 1.1 thorpej } EVENT_DATA_RAID, MPI_POINTER PTR_EVENT_DATA_RAID,
3384 1.1 thorpej MpiEventDataRaid_t, MPI_POINTER pMpiEventDataRaid_t;
3385 1.1 thorpej
3386 1.1 thorpej /* MPI Integrated RAID Event data ReasonCode values */
3387 1.1 thorpej #define MPI_EVENT_RAID_RC_VOLUME_CREATED (0x00)
3388 1.1 thorpej #define MPI_EVENT_RAID_RC_VOLUME_DELETED (0x01)
3389 1.1 thorpej #define MPI_EVENT_RAID_RC_VOLUME_SETTINGS_CHANGED (0x02)
3390 1.1 thorpej #define MPI_EVENT_RAID_RC_VOLUME_STATUS_CHANGED (0x03)
3391 1.1 thorpej #define MPI_EVENT_RAID_RC_VOLUME_PHYSDISK_CHANGED (0x04)
3392 1.1 thorpej #define MPI_EVENT_RAID_RC_PHYSDISK_CREATED (0x05)
3393 1.1 thorpej #define MPI_EVENT_RAID_RC_PHYSDISK_DELETED (0x06)
3394 1.1 thorpej #define MPI_EVENT_RAID_RC_PHYSDISK_SETTINGS_CHANGED (0x07)
3395 1.1 thorpej #define MPI_EVENT_RAID_RC_PHYSDISK_STATUS_CHANGED (0x08)
3396 1.1 thorpej #define MPI_EVENT_RAID_RC_DOMAIN_VAL_NEEDED (0x09)
3397 1.1 thorpej #define MPI_EVENT_RAID_RC_SMART_DATA (0x0A)
3398 1.1 thorpej #define MPI_EVENT_RAID_RC_REPLACE_ACTION_STARTED (0x0B)
3399 1.1 thorpej
3400 1.1 thorpej
3401 1.1 thorpej /*****************************************************************************
3402 1.1 thorpej *
3403 1.1 thorpej * F i r m w a r e L o a d M e s s a g e s
3404 1.1 thorpej *
3405 1.1 thorpej *****************************************************************************/
3406 1.1 thorpej
3407 1.1 thorpej /****************************************************************************/
3408 1.1 thorpej /* Firmware Download message and associated structures */
3409 1.1 thorpej /****************************************************************************/
3410 1.1 thorpej
3411 1.1 thorpej typedef struct _MSG_FW_DOWNLOAD
3412 1.1 thorpej {
3413 1.1 thorpej U8 ImageType; /* 00h */
3414 1.1 thorpej U8 Reserved; /* 01h */
3415 1.1 thorpej U8 ChainOffset; /* 02h */
3416 1.1 thorpej U8 Function; /* 03h */
3417 1.1 thorpej U8 Reserved1[3]; /* 04h */
3418 1.1 thorpej U8 MsgFlags; /* 07h */
3419 1.1 thorpej U32 MsgContext; /* 08h */
3420 1.1 thorpej SGE_MPI_UNION SGL; /* 0Ch */
3421 1.1 thorpej } MSG_FW_DOWNLOAD, MPI_POINTER PTR_MSG_FW_DOWNLOAD,
3422 1.1 thorpej FWDownload_t, MPI_POINTER pFWDownload_t;
3423 1.1 thorpej
3424 1.1 thorpej #define MPI_FW_DOWNLOAD_ITYPE_RESERVED (0x00)
3425 1.1 thorpej #define MPI_FW_DOWNLOAD_ITYPE_FW (0x01)
3426 1.1 thorpej #define MPI_FW_DOWNLOAD_ITYPE_BIOS (0x02)
3427 1.1 thorpej #define MPI_FW_DOWNLOAD_ITYPE_NVDATA (0x03)
3428 1.1 thorpej
3429 1.1 thorpej
3430 1.1 thorpej typedef struct _FWDownloadTCSGE
3431 1.1 thorpej {
3432 1.1 thorpej U8 Reserved; /* 00h */
3433 1.1 thorpej U8 ContextSize; /* 01h */
3434 1.1 thorpej U8 DetailsLength; /* 02h */
3435 1.1 thorpej U8 Flags; /* 03h */
3436 1.1 thorpej U32 Reserved_0100_Checksum; /* 04h */ /* obsolete Checksum */
3437 1.1 thorpej U32 ImageOffset; /* 08h */
3438 1.1 thorpej U32 ImageSize; /* 0Ch */
3439 1.1 thorpej } FW_DOWNLOAD_TCSGE, MPI_POINTER PTR_FW_DOWNLOAD_TCSGE,
3440 1.1 thorpej FWDownloadTCSGE_t, MPI_POINTER pFWDownloadTCSGE_t;
3441 1.1 thorpej
3442 1.1 thorpej /* Firmware Download reply */
3443 1.1 thorpej typedef struct _MSG_FW_DOWNLOAD_REPLY
3444 1.1 thorpej {
3445 1.1 thorpej U8 ImageType; /* 00h */
3446 1.1 thorpej U8 Reserved; /* 01h */
3447 1.1 thorpej U8 MsgLength; /* 02h */
3448 1.1 thorpej U8 Function; /* 03h */
3449 1.1 thorpej U8 Reserved1[3]; /* 04h */
3450 1.1 thorpej U8 MsgFlags; /* 07h */
3451 1.1 thorpej U32 MsgContext; /* 08h */
3452 1.1 thorpej U16 Reserved2; /* 0Ch */
3453 1.1 thorpej U16 IOCStatus; /* 0Eh */
3454 1.1 thorpej U32 IOCLogInfo; /* 10h */
3455 1.1 thorpej } MSG_FW_DOWNLOAD_REPLY, MPI_POINTER PTR_MSG_FW_DOWNLOAD_REPLY,
3456 1.1 thorpej FWDownloadReply_t, MPI_POINTER pFWDownloadReply_t;
3457 1.1 thorpej
3458 1.1 thorpej
3459 1.1 thorpej /****************************************************************************/
3460 1.1 thorpej /* Firmware Upload message and associated structures */
3461 1.1 thorpej /****************************************************************************/
3462 1.1 thorpej
3463 1.1 thorpej typedef struct _MSG_FW_UPLOAD
3464 1.1 thorpej {
3465 1.1 thorpej U8 ImageType; /* 00h */
3466 1.1 thorpej U8 Reserved; /* 01h */
3467 1.1 thorpej U8 ChainOffset; /* 02h */
3468 1.1 thorpej U8 Function; /* 03h */
3469 1.1 thorpej U8 Reserved1[3]; /* 04h */
3470 1.1 thorpej U8 MsgFlags; /* 07h */
3471 1.1 thorpej U32 MsgContext; /* 08h */
3472 1.1 thorpej SGE_MPI_UNION SGL; /* 0Ch */
3473 1.1 thorpej } MSG_FW_UPLOAD, MPI_POINTER PTR_MSG_FW_UPLOAD,
3474 1.1 thorpej FWUpload_t, MPI_POINTER pFWUpload_t;
3475 1.1 thorpej
3476 1.1 thorpej #define MPI_FW_UPLOAD_ITYPE_FW_IOC_MEM (0x00)
3477 1.1 thorpej #define MPI_FW_UPLOAD_ITYPE_FW_FLASH (0x01)
3478 1.1 thorpej #define MPI_FW_UPLOAD_ITYPE_BIOS_FLASH (0x02)
3479 1.1 thorpej #define MPI_FW_UPLOAD_ITYPE_NVDATA (0x03)
3480 1.1 thorpej
3481 1.1 thorpej typedef struct _FWUploadTCSGE
3482 1.1 thorpej {
3483 1.1 thorpej U8 Reserved; /* 00h */
3484 1.1 thorpej U8 ContextSize; /* 01h */
3485 1.1 thorpej U8 DetailsLength; /* 02h */
3486 1.1 thorpej U8 Flags; /* 03h */
3487 1.1 thorpej U32 Reserved1; /* 04h */
3488 1.1 thorpej U32 ImageOffset; /* 08h */
3489 1.1 thorpej U32 ImageSize; /* 0Ch */
3490 1.1 thorpej } FW_UPLOAD_TCSGE, MPI_POINTER PTR_FW_UPLOAD_TCSGE,
3491 1.1 thorpej FWUploadTCSGE_t, MPI_POINTER pFWUploadTCSGE_t;
3492 1.1 thorpej
3493 1.1 thorpej /* Firmware Upload reply */
3494 1.1 thorpej typedef struct _MSG_FW_UPLOAD_REPLY
3495 1.1 thorpej {
3496 1.1 thorpej U8 ImageType; /* 00h */
3497 1.1 thorpej U8 Reserved; /* 01h */
3498 1.1 thorpej U8 MsgLength; /* 02h */
3499 1.1 thorpej U8 Function; /* 03h */
3500 1.1 thorpej U8 Reserved1[3]; /* 04h */
3501 1.1 thorpej U8 MsgFlags; /* 07h */
3502 1.1 thorpej U32 MsgContext; /* 08h */
3503 1.1 thorpej U16 Reserved2; /* 0Ch */
3504 1.1 thorpej U16 IOCStatus; /* 0Eh */
3505 1.1 thorpej U32 IOCLogInfo; /* 10h */
3506 1.1 thorpej U32 ActualImageSize; /* 14h */
3507 1.1 thorpej } MSG_FW_UPLOAD_REPLY, MPI_POINTER PTR_MSG_FW_UPLOAD_REPLY,
3508 1.1 thorpej FWUploadReply_t, MPI_POINTER pFWUploadReply_t;
3509 1.1 thorpej
3510 1.1 thorpej
3511 1.1 thorpej typedef struct _MPI_FW_HEADER
3512 1.1 thorpej {
3513 1.1 thorpej U32 ArmBranchInstruction0; /* 00h */
3514 1.1 thorpej U32 Signature0; /* 04h */
3515 1.1 thorpej U32 Signature1; /* 08h */
3516 1.1 thorpej U32 Signature2; /* 0Ch */
3517 1.1 thorpej U32 ArmBranchInstruction1; /* 10h */
3518 1.1 thorpej U32 ArmBranchInstruction2; /* 14h */
3519 1.1 thorpej U32 Reserved; /* 18h */
3520 1.1 thorpej U32 Checksum; /* 1Ch */
3521 1.1 thorpej U16 VendorId; /* 20h */
3522 1.1 thorpej U16 ProductId; /* 22h */
3523 1.1 thorpej MPI_FW_VERSION FWVersion; /* 24h */
3524 1.1 thorpej U32 SeqCodeVersion; /* 28h */
3525 1.1 thorpej U32 ImageSize; /* 2Ch */
3526 1.1 thorpej U32 NextImageHeaderOffset; /* 30h */
3527 1.1 thorpej U32 LoadStartAddress; /* 34h */
3528 1.1 thorpej U32 IopResetVectorValue; /* 38h */
3529 1.1 thorpej U32 IopResetRegAddr; /* 3Ch */
3530 1.1 thorpej U32 VersionNameWhat; /* 40h */
3531 1.1 thorpej U8 VersionName[32]; /* 44h */
3532 1.1 thorpej U32 VendorNameWhat; /* 64h */
3533 1.1 thorpej U8 VendorName[32]; /* 68h */
3534 1.1 thorpej } MPI_FW_HEADER, MPI_POINTER PTR_MPI_FW_HEADER,
3535 1.1 thorpej MpiFwHeader_t, MPI_POINTER pMpiFwHeader_t;
3536 1.1 thorpej
3537 1.1 thorpej #define MPI_FW_HEADER_WHAT_SIGNATURE (0x29232840)
3538 1.1 thorpej
3539 1.1 thorpej /* defines for using the ProductId field */
3540 1.1 thorpej #define MPI_FW_HEADER_PID_TYPE_MASK (0xF000)
3541 1.1 thorpej #define MPI_FW_HEADER_PID_TYPE_SCSI (0x0000)
3542 1.1 thorpej #define MPI_FW_HEADER_PID_TYPE_FC (0x1000)
3543 1.1 thorpej
3544 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_MASK (0x0F00)
3545 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_INITIATOR_SCSI (0x0100)
3546 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_TARGET_INITIATOR_SCSI (0x0200)
3547 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_TARGET_SCSI (0x0300)
3548 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_IM_SCSI (0x0400)
3549 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_IS_SCSI (0x0500)
3550 1.1 thorpej #define MPI_FW_HEADER_PID_PROD_CTX_SCSI (0x0600)
3551 1.1 thorpej
3552 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_MASK (0x00FF)
3553 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1030A0_SCSI (0x0001)
3554 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1030B0_SCSI (0x0002)
3555 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1030B1_SCSI (0x0003)
3556 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1030C0_SCSI (0x0004)
3557 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1020A0_SCSI (0x0005)
3558 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1020B0_SCSI (0x0006)
3559 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1020B1_SCSI (0x0007)
3560 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1020C0_SCSI (0x0008)
3561 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1035A0_SCSI (0x0009)
3562 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_1035B0_SCSI (0x000A)
3563 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_909_FC (0x0000)
3564 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_919_FC (0x0001)
3565 1.1 thorpej #define MPI_FW_HEADER_PID_FAMILY_919X_FC (0x0002)
3566 1.1 thorpej
3567 1.1 thorpej typedef struct _MPI_EXT_IMAGE_HEADER
3568 1.1 thorpej {
3569 1.1 thorpej U8 ImageType; /* 00h */
3570 1.1 thorpej U8 Reserved; /* 01h */
3571 1.1 thorpej U16 Reserved1; /* 02h */
3572 1.1 thorpej U32 Checksum; /* 04h */
3573 1.1 thorpej U32 ImageSize; /* 08h */
3574 1.1 thorpej U32 NextImageHeaderOffset; /* 0Ch */
3575 1.1 thorpej U32 LoadStartAddress; /* 10h */
3576 1.1 thorpej U32 Reserved2; /* 14h */
3577 1.1 thorpej } MPI_EXT_IMAGE_HEADER, MPI_POINTER PTR_MPI_EXT_IMAGE_HEADER,
3578 1.1 thorpej MpiExtImageHeader_t, MPI_POINTER pMpiExtImageHeader_t;
3579 1.1 thorpej
3580 1.1 thorpej /* defines for the ImageType field */
3581 1.1 thorpej #define MPI_EXT_IMAGE_TYPE_UNSPECIFIED (0x00)
3582 1.1 thorpej #define MPI_EXT_IMAGE_TYPE_FW (0x01)
3583 1.1 thorpej #define MPI_EXT_IMAGE_TYPE_NVDATA (0x03)
3584 1.1 thorpej
3585 1.1 thorpej #endif
3586 1.1 thorpej
3587 1.1 thorpej /*
3588 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
3589 1.1 thorpej *
3590 1.1 thorpej * Redistribution and use in source and binary forms, with or without
3591 1.1 thorpej * modification, are permitted provided that the following conditions
3592 1.1 thorpej * are met:
3593 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
3594 1.1 thorpej * notice immediately at the beginning of the file, without modification,
3595 1.1 thorpej * this list of conditions, and the following disclaimer.
3596 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
3597 1.1 thorpej * derived from this software without specific prior written permission.
3598 1.1 thorpej *
3599 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3600 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3601 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3602 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
3603 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3604 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3605 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3606 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3607 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3608 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3609 1.1 thorpej * SUCH DAMAGE.
3610 1.1 thorpej *
3611 1.1 thorpej *
3612 1.1 thorpej * Name: MPI_LAN.H
3613 1.1 thorpej * Title: MPI LAN messages and structures
3614 1.1 thorpej * Creation Date: June 30, 2000
3615 1.1 thorpej *
3616 1.1 thorpej * MPI Version: 01.02.01
3617 1.1 thorpej *
3618 1.1 thorpej * Version History
3619 1.1 thorpej * ---------------
3620 1.1 thorpej *
3621 1.1 thorpej * Date Version Description
3622 1.1 thorpej * -------- -------- ------------------------------------------------------
3623 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
3624 1.1 thorpej * 05-24-00 00.10.02 Added LANStatus field to _MSG_LAN_SEND_REPLY.
3625 1.1 thorpej * Added LANStatus field to _MSG_LAN_RECEIVE_POST_REPLY.
3626 1.1 thorpej * Moved ListCount field in _MSG_LAN_RECEIVE_POST_REPLY.
3627 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
3628 1.1 thorpej * 06-12-00 01.00.02 Added MPI_ to BUCKETSTATUS_ definitions.
3629 1.1 thorpej * 06-22-00 01.00.03 Major changes to match new LAN definition in 1.0 spec.
3630 1.1 thorpej * 06-30-00 01.00.04 Added Context Reply definitions per revised proposal.
3631 1.1 thorpej * Changed transaction context usage to bucket/buffer.
3632 1.1 thorpej * 07-05-00 01.00.05 Removed LAN_RECEIVE_POST_BUCKET_CONTEXT_MASK definition
3633 1.1 thorpej * to lan private header file
3634 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work
3635 1.1 thorpej * 02-20-01 01.01.02 Started using MPI_POINTER.
3636 1.1 thorpej * 03-27-01 01.01.03 Added structure offset comments.
3637 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
3638 1.1 thorpej * --------------------------------------------------------------------------
3639 1.1 thorpej */
3640 1.1 thorpej
3641 1.1 thorpej #ifndef MPI_LAN_H
3642 1.1 thorpej #define MPI_LAN_H
3643 1.1 thorpej
3644 1.1 thorpej
3645 1.1 thorpej /******************************************************************************
3646 1.1 thorpej *
3647 1.1 thorpej * L A N M e s s a g e s
3648 1.1 thorpej *
3649 1.1 thorpej *******************************************************************************/
3650 1.1 thorpej
3651 1.1 thorpej /* LANSend messages */
3652 1.1 thorpej
3653 1.1 thorpej typedef struct _MSG_LAN_SEND_REQUEST
3654 1.1 thorpej {
3655 1.1 thorpej U16 Reserved; /* 00h */
3656 1.1 thorpej U8 ChainOffset; /* 02h */
3657 1.1 thorpej U8 Function; /* 03h */
3658 1.1 thorpej U16 Reserved2; /* 04h */
3659 1.1 thorpej U8 PortNumber; /* 06h */
3660 1.1 thorpej U8 MsgFlags; /* 07h */
3661 1.1 thorpej U32 MsgContext; /* 08h */
3662 1.1 thorpej SGE_MPI_UNION SG_List[1]; /* 0Ch */
3663 1.1 thorpej } MSG_LAN_SEND_REQUEST, MPI_POINTER PTR_MSG_LAN_SEND_REQUEST,
3664 1.1 thorpej LANSendRequest_t, MPI_POINTER pLANSendRequest_t;
3665 1.1 thorpej
3666 1.1 thorpej
3667 1.1 thorpej typedef struct _MSG_LAN_SEND_REPLY
3668 1.1 thorpej {
3669 1.1 thorpej U16 Reserved; /* 00h */
3670 1.1 thorpej U8 MsgLength; /* 02h */
3671 1.1 thorpej U8 Function; /* 03h */
3672 1.1 thorpej U8 Reserved2; /* 04h */
3673 1.1 thorpej U8 NumberOfContexts; /* 05h */
3674 1.1 thorpej U8 PortNumber; /* 06h */
3675 1.1 thorpej U8 MsgFlags; /* 07h */
3676 1.1 thorpej U32 MsgContext; /* 08h */
3677 1.1 thorpej U16 Reserved3; /* 0Ch */
3678 1.1 thorpej U16 IOCStatus; /* 0Eh */
3679 1.1 thorpej U32 IOCLogInfo; /* 10h */
3680 1.1 thorpej U32 BufferContext; /* 14h */
3681 1.1 thorpej } MSG_LAN_SEND_REPLY, MPI_POINTER PTR_MSG_LAN_SEND_REPLY,
3682 1.1 thorpej LANSendReply_t, MPI_POINTER pLANSendReply_t;
3683 1.1 thorpej
3684 1.1 thorpej
3685 1.1 thorpej /* LANReceivePost */
3686 1.1 thorpej
3687 1.1 thorpej typedef struct _MSG_LAN_RECEIVE_POST_REQUEST
3688 1.1 thorpej {
3689 1.1 thorpej U16 Reserved; /* 00h */
3690 1.1 thorpej U8 ChainOffset; /* 02h */
3691 1.1 thorpej U8 Function; /* 03h */
3692 1.1 thorpej U16 Reserved2; /* 04h */
3693 1.1 thorpej U8 PortNumber; /* 06h */
3694 1.1 thorpej U8 MsgFlags; /* 07h */
3695 1.1 thorpej U32 MsgContext; /* 08h */
3696 1.1 thorpej U32 BucketCount; /* 0Ch */
3697 1.1 thorpej SGE_MPI_UNION SG_List[1]; /* 10h */
3698 1.1 thorpej } MSG_LAN_RECEIVE_POST_REQUEST, MPI_POINTER PTR_MSG_LAN_RECEIVE_POST_REQUEST,
3699 1.1 thorpej LANReceivePostRequest_t, MPI_POINTER pLANReceivePostRequest_t;
3700 1.1 thorpej
3701 1.1 thorpej
3702 1.1 thorpej typedef struct _MSG_LAN_RECEIVE_POST_REPLY
3703 1.1 thorpej {
3704 1.1 thorpej U16 Reserved; /* 00h */
3705 1.1 thorpej U8 MsgLength; /* 02h */
3706 1.1 thorpej U8 Function; /* 03h */
3707 1.1 thorpej U8 Reserved2; /* 04h */
3708 1.1 thorpej U8 NumberOfContexts; /* 05h */
3709 1.1 thorpej U8 PortNumber; /* 06h */
3710 1.1 thorpej U8 MsgFlags; /* 07h */
3711 1.1 thorpej U32 MsgContext; /* 08h */
3712 1.1 thorpej U16 Reserved3; /* 0Ch */
3713 1.1 thorpej U16 IOCStatus; /* 0Eh */
3714 1.1 thorpej U32 IOCLogInfo; /* 10h */
3715 1.1 thorpej U32 BucketsRemaining; /* 14h */
3716 1.1 thorpej U32 PacketOffset; /* 18h */
3717 1.1 thorpej U32 PacketLength; /* 1Ch */
3718 1.1 thorpej U32 BucketContext[1]; /* 20h */
3719 1.1 thorpej } MSG_LAN_RECEIVE_POST_REPLY, MPI_POINTER PTR_MSG_LAN_RECEIVE_POST_REPLY,
3720 1.1 thorpej LANReceivePostReply_t, MPI_POINTER pLANReceivePostReply_t;
3721 1.1 thorpej
3722 1.1 thorpej
3723 1.1 thorpej /* LANReset */
3724 1.1 thorpej
3725 1.1 thorpej typedef struct _MSG_LAN_RESET_REQUEST
3726 1.1 thorpej {
3727 1.1 thorpej U16 Reserved; /* 00h */
3728 1.1 thorpej U8 ChainOffset; /* 02h */
3729 1.1 thorpej U8 Function; /* 03h */
3730 1.1 thorpej U16 Reserved2; /* 04h */
3731 1.1 thorpej U8 PortNumber; /* 05h */
3732 1.1 thorpej U8 MsgFlags; /* 07h */
3733 1.1 thorpej U32 MsgContext; /* 08h */
3734 1.1 thorpej } MSG_LAN_RESET_REQUEST, MPI_POINTER PTR_MSG_LAN_RESET_REQUEST,
3735 1.1 thorpej LANResetRequest_t, MPI_POINTER pLANResetRequest_t;
3736 1.1 thorpej
3737 1.1 thorpej
3738 1.1 thorpej typedef struct _MSG_LAN_RESET_REPLY
3739 1.1 thorpej {
3740 1.1 thorpej U16 Reserved; /* 00h */
3741 1.1 thorpej U8 MsgLength; /* 02h */
3742 1.1 thorpej U8 Function; /* 03h */
3743 1.1 thorpej U16 Reserved2; /* 04h */
3744 1.1 thorpej U8 PortNumber; /* 06h */
3745 1.1 thorpej U8 MsgFlags; /* 07h */
3746 1.1 thorpej U32 MsgContext; /* 08h */
3747 1.1 thorpej U16 Reserved3; /* 0Ch */
3748 1.1 thorpej U16 IOCStatus; /* 0Eh */
3749 1.1 thorpej U32 IOCLogInfo; /* 10h */
3750 1.1 thorpej } MSG_LAN_RESET_REPLY, MPI_POINTER PTR_MSG_LAN_RESET_REPLY,
3751 1.1 thorpej LANResetReply_t, MPI_POINTER pLANResetReply_t;
3752 1.1 thorpej
3753 1.1 thorpej
3754 1.1 thorpej /****************************************************************************/
3755 1.1 thorpej /* LAN Context Reply defines and macros */
3756 1.1 thorpej /****************************************************************************/
3757 1.1 thorpej
3758 1.1 thorpej #define LAN_REPLY_PACKET_LENGTH_MASK (0x0000FFFF)
3759 1.1 thorpej #define LAN_REPLY_PACKET_LENGTH_SHIFT (0)
3760 1.1 thorpej #define LAN_REPLY_BUCKET_CONTEXT_MASK (0x07FF0000)
3761 1.1 thorpej #define LAN_REPLY_BUCKET_CONTEXT_SHIFT (16)
3762 1.1 thorpej #define LAN_REPLY_BUFFER_CONTEXT_MASK (0x07FFFFFF)
3763 1.1 thorpej #define LAN_REPLY_BUFFER_CONTEXT_SHIFT (0)
3764 1.1 thorpej #define LAN_REPLY_FORM_MASK (0x18000000)
3765 1.1 thorpej #define LAN_REPLY_FORM_RECEIVE_SINGLE (0x00)
3766 1.1 thorpej #define LAN_REPLY_FORM_RECEIVE_MULTIPLE (0x01)
3767 1.1 thorpej #define LAN_REPLY_FORM_SEND_SINGLE (0x02)
3768 1.1 thorpej #define LAN_REPLY_FORM_MESSAGE_CONTEXT (0x03)
3769 1.1 thorpej #define LAN_REPLY_FORM_SHIFT (27)
3770 1.1 thorpej
3771 1.1 thorpej #define GET_LAN_PACKET_LENGTH(x) (((x) & LAN_REPLY_PACKET_LENGTH_MASK) \
3772 1.1 thorpej >> LAN_REPLY_PACKET_LENGTH_SHIFT)
3773 1.1 thorpej
3774 1.1 thorpej #define SET_LAN_PACKET_LENGTH(x, lth) \
3775 1.1 thorpej ((x) = ((x) & ~LAN_REPLY_PACKET_LENGTH_MASK) | \
3776 1.1 thorpej (((lth) << LAN_REPLY_PACKET_LENGTH_SHIFT) & \
3777 1.1 thorpej LAN_REPLY_PACKET_LENGTH_MASK))
3778 1.1 thorpej
3779 1.1 thorpej #define GET_LAN_BUCKET_CONTEXT(x) (((x) & LAN_REPLY_BUCKET_CONTEXT_MASK) \
3780 1.1 thorpej >> LAN_REPLY_BUCKET_CONTEXT_SHIFT)
3781 1.1 thorpej
3782 1.1 thorpej #define SET_LAN_BUCKET_CONTEXT(x, ctx) \
3783 1.1 thorpej ((x) = ((x) & ~LAN_REPLY_BUCKET_CONTEXT_MASK) | \
3784 1.1 thorpej (((ctx) << LAN_REPLY_BUCKET_CONTEXT_SHIFT) & \
3785 1.1 thorpej LAN_REPLY_BUCKET_CONTEXT_MASK))
3786 1.1 thorpej
3787 1.1 thorpej #define GET_LAN_BUFFER_CONTEXT(x) (((x) & LAN_REPLY_BUFFER_CONTEXT_MASK) \
3788 1.1 thorpej >> LAN_REPLY_BUFFER_CONTEXT_SHIFT)
3789 1.1 thorpej
3790 1.1 thorpej #define SET_LAN_BUFFER_CONTEXT(x, ctx) \
3791 1.1 thorpej ((x) = ((x) & ~LAN_REPLY_BUFFER_CONTEXT_MASK) | \
3792 1.1 thorpej (((ctx) << LAN_REPLY_BUFFER_CONTEXT_SHIFT) & \
3793 1.1 thorpej LAN_REPLY_BUFFER_CONTEXT_MASK))
3794 1.1 thorpej
3795 1.1 thorpej #define GET_LAN_FORM(x) (((x) & LAN_REPLY_FORM_MASK) \
3796 1.1 thorpej >> LAN_REPLY_FORM_SHIFT)
3797 1.1 thorpej
3798 1.1 thorpej #define SET_LAN_FORM(x, frm) \
3799 1.1 thorpej ((x) = ((x) & ~LAN_REPLY_FORM_MASK) | \
3800 1.1 thorpej (((frm) << LAN_REPLY_FORM_SHIFT) & \
3801 1.1 thorpej LAN_REPLY_FORM_MASK))
3802 1.1 thorpej
3803 1.1 thorpej
3804 1.1 thorpej /****************************************************************************/
3805 1.1 thorpej /* LAN Current Device State defines */
3806 1.1 thorpej /****************************************************************************/
3807 1.1 thorpej
3808 1.1 thorpej #define MPI_LAN_DEVICE_STATE_RESET (0x00)
3809 1.1 thorpej #define MPI_LAN_DEVICE_STATE_OPERATIONAL (0x01)
3810 1.1 thorpej
3811 1.1 thorpej
3812 1.1 thorpej /****************************************************************************/
3813 1.1 thorpej /* LAN Loopback defines */
3814 1.1 thorpej /****************************************************************************/
3815 1.1 thorpej
3816 1.1 thorpej #define MPI_LAN_TX_MODES_ENABLE_LOOPBACK_SUPPRESSION (0x01)
3817 1.1 thorpej
3818 1.1 thorpej #endif
3819 1.1 thorpej
3820 1.1 thorpej
3821 1.1 thorpej /*
3822 1.1 thorpej * Copyright (c) 2000, 2001 by LSI Logic Corporation
3823 1.1 thorpej *
3824 1.1 thorpej * Redistribution and use in source and binary forms, with or without
3825 1.1 thorpej * modification, are permitted provided that the following conditions
3826 1.1 thorpej * are met:
3827 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
3828 1.1 thorpej * notice immediately at the beginning of the file, without modification,
3829 1.1 thorpej * this list of conditions, and the following disclaimer.
3830 1.1 thorpej * 2. The name of the author may not be used to endorse or promote products
3831 1.1 thorpej * derived from this software without specific prior written permission.
3832 1.1 thorpej *
3833 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3834 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3835 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3836 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
3837 1.1 thorpej * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3838 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3839 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3840 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3841 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3842 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3843 1.1 thorpej * SUCH DAMAGE.
3844 1.1 thorpej *
3845 1.1 thorpej *
3846 1.1 thorpej * Name: MPI_TARG.H
3847 1.1 thorpej * Title: MPI Target mode messages and structures
3848 1.1 thorpej * Creation Date: June 22, 2000
3849 1.1 thorpej *
3850 1.1 thorpej * MPI Version: 01.02.04
3851 1.1 thorpej *
3852 1.1 thorpej * Version History
3853 1.1 thorpej * ---------------
3854 1.1 thorpej *
3855 1.1 thorpej * Date Version Description
3856 1.1 thorpej * -------- -------- ------------------------------------------------------
3857 1.1 thorpej * 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
3858 1.1 thorpej * 06-06-00 01.00.01 Update version number for 1.0 release.
3859 1.1 thorpej * 06-22-00 01.00.02 Added _MSG_TARGET_CMD_BUFFER_POST_REPLY structure.
3860 1.1 thorpej * Corrected DECSRIPTOR typo to DESCRIPTOR.
3861 1.1 thorpej * 11-02-00 01.01.01 Original release for post 1.0 work
3862 1.1 thorpej * Modified target mode to use IoIndex instead of
3863 1.1 thorpej * HostIndex and IocIndex. Added Alias.
3864 1.1 thorpej * 01-09-01 01.01.02 Added defines for TARGET_ASSIST_FLAGS_REPOST_CMD_BUFFER
3865 1.1 thorpej * and TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER.
3866 1.1 thorpej * 02-20-01 01.01.03 Started using MPI_POINTER.
3867 1.1 thorpej * Added structures for MPI_TARGET_SCSI_SPI_CMD_BUFFER and
3868 1.1 thorpej * MPI_TARGET_FCP_CMD_BUFFER.
3869 1.1 thorpej * 03-27-01 01.01.04 Added structure offset comments.
3870 1.1 thorpej * 08-08-01 01.02.01 Original release for v1.2 work.
3871 1.1 thorpej * 09-28-01 01.02.02 Added structure for MPI_TARGET_SCSI_SPI_STATUS_IU.
3872 1.1 thorpej * Added PriorityReason field to some replies and
3873 1.1 thorpej * defined more PriorityReason codes.
3874 1.1 thorpej * Added some defines for to support previous version
3875 1.1 thorpej * of MPI.
3876 1.1 thorpej * 10-04-01 01.02.03 Added PriorityReason to MSG_TARGET_ERROR_REPLY.
3877 1.1 thorpej * 11-01-01 01.02.04 Added define for TARGET_STATUS_SEND_FLAGS_HIGH_PRIORITY.
3878 1.1 thorpej * --------------------------------------------------------------------------
3879 1.1 thorpej */
3880 1.1 thorpej
3881 1.1 thorpej #ifndef MPI_TARG_H
3882 1.1 thorpej #define MPI_TARG_H
3883 1.1 thorpej
3884 1.1 thorpej
3885 1.1 thorpej /******************************************************************************
3886 1.1 thorpej *
3887 1.1 thorpej * S C S I T a r g e t M e s s a g e s
3888 1.1 thorpej *
3889 1.1 thorpej *******************************************************************************/
3890 1.1 thorpej
3891 1.1 thorpej typedef struct _CMD_BUFFER_DESCRIPTOR
3892 1.1 thorpej {
3893 1.1 thorpej U16 IoIndex; /* 00h */
3894 1.1 thorpej U16 Reserved; /* 02h */
3895 1.1 thorpej union /* 04h */
3896 1.1 thorpej {
3897 1.1 thorpej U32 PhysicalAddress32;
3898 1.1 thorpej U64 PhysicalAddress64;
3899 1.1 thorpej } _u;
3900 1.1 thorpej } CMD_BUFFER_DESCRIPTOR, MPI_POINTER PTR_CMD_BUFFER_DESCRIPTOR,
3901 1.1 thorpej CmdBufferDescriptor_t, MPI_POINTER pCmdBufferDescriptor_t;
3902 1.1 thorpej
3903 1.1 thorpej
3904 1.1 thorpej /****************************************************************************/
3905 1.1 thorpej /* Target Command Buffer Post Request */
3906 1.1 thorpej /****************************************************************************/
3907 1.1 thorpej
3908 1.1 thorpej typedef struct _MSG_TARGET_CMD_BUFFER_POST_REQUEST
3909 1.1 thorpej {
3910 1.1 thorpej U8 BufferPostFlags; /* 00h */
3911 1.1 thorpej U8 BufferCount; /* 01h */
3912 1.1 thorpej U8 ChainOffset; /* 02h */
3913 1.1 thorpej U8 Function; /* 03h */
3914 1.1 thorpej U8 BufferLength; /* 04h */
3915 1.1 thorpej U8 Reserved; /* 05h */
3916 1.1 thorpej U8 Reserved1; /* 06h */
3917 1.1 thorpej U8 MsgFlags; /* 07h */
3918 1.1 thorpej U32 MsgContext; /* 08h */
3919 1.1 thorpej CMD_BUFFER_DESCRIPTOR Buffer[1]; /* 0Ch */
3920 1.1 thorpej } MSG_TARGET_CMD_BUFFER_POST_REQUEST, MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_REQUEST,
3921 1.1 thorpej TargetCmdBufferPostRequest_t, MPI_POINTER pTargetCmdBufferPostRequest_t;
3922 1.1 thorpej
3923 1.1 thorpej #define CMD_BUFFER_POST_FLAGS_PORT_MASK (0x01)
3924 1.1 thorpej #define CMD_BUFFER_POST_FLAGS_ADDR_MODE_MASK (0x80)
3925 1.1 thorpej #define CMD_BUFFER_POST_FLAGS_ADDR_MODE_32 (0)
3926 1.1 thorpej #define CMD_BUFFER_POST_FLAGS_ADDR_MODE_64 (1)
3927 1.1 thorpej #define CMD_BUFFER_POST_FLAGS_64_BIT_ADDR (0x80)
3928 1.1 thorpej
3929 1.1 thorpej #define CMD_BUFFER_POST_IO_INDEX_MASK (0x00003FFF)
3930 1.1 thorpej #define CMD_BUFFER_POST_IO_INDEX_MASK_0100 (0x000003FF) /* obsolete */
3931 1.1 thorpej
3932 1.1 thorpej
3933 1.1 thorpej typedef struct _MSG_TARGET_CMD_BUFFER_POST_REPLY
3934 1.1 thorpej {
3935 1.1 thorpej U8 BufferPostFlags; /* 00h */
3936 1.1 thorpej U8 BufferCount; /* 01h */
3937 1.1 thorpej U8 MsgLength; /* 02h */
3938 1.1 thorpej U8 Function; /* 03h */
3939 1.1 thorpej U8 BufferLength; /* 04h */
3940 1.1 thorpej U8 Reserved; /* 05h */
3941 1.1 thorpej U8 Reserved1; /* 06h */
3942 1.1 thorpej U8 MsgFlags; /* 07h */
3943 1.1 thorpej U32 MsgContext; /* 08h */
3944 1.1 thorpej U16 Reserved2; /* 0Ch */
3945 1.1 thorpej U16 IOCStatus; /* 0Eh */
3946 1.1 thorpej U32 IOCLogInfo; /* 10h */
3947 1.1 thorpej } MSG_TARGET_CMD_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_REPLY,
3948 1.1 thorpej TargetCmdBufferPostReply_t, MPI_POINTER pTargetCmdBufferPostReply_t;
3949 1.1 thorpej
3950 1.1 thorpej /* the following structure is obsolete as of MPI v1.2 */
3951 1.1 thorpej typedef struct _MSG_PRIORITY_CMD_RECEIVED_REPLY
3952 1.1 thorpej {
3953 1.1 thorpej U16 Reserved; /* 00h */
3954 1.1 thorpej U8 MsgLength; /* 02h */
3955 1.1 thorpej U8 Function; /* 03h */
3956 1.1 thorpej U16 Reserved1; /* 04h */
3957 1.1 thorpej U8 Reserved2; /* 06h */
3958 1.1 thorpej U8 MsgFlags; /* 07h */
3959 1.1 thorpej U32 MsgContext; /* 08h */
3960 1.1 thorpej U8 PriorityReason; /* 0Ch */
3961 1.1 thorpej U8 Reserved3; /* 0Dh */
3962 1.1 thorpej U16 IOCStatus; /* 0Eh */
3963 1.1 thorpej U32 IOCLogInfo; /* 10h */
3964 1.1 thorpej U32 ReplyWord; /* 14h */
3965 1.1 thorpej } MSG_PRIORITY_CMD_RECEIVED_REPLY, MPI_POINTER PTR_MSG_PRIORITY_CMD_RECEIVED_REPLY,
3966 1.1 thorpej PriorityCommandReceivedReply_t, MPI_POINTER pPriorityCommandReceivedReply_t;
3967 1.1 thorpej
3968 1.1 thorpej #define PRIORITY_REASON_NO_DISCONNECT (0x00)
3969 1.1 thorpej #define PRIORITY_REASON_SCSI_TASK_MANAGEMENT (0x01)
3970 1.1 thorpej #define PRIORITY_REASON_CMD_PARITY_ERR (0x02)
3971 1.1 thorpej #define PRIORITY_REASON_MSG_OUT_PARITY_ERR (0x03)
3972 1.1 thorpej #define PRIORITY_REASON_LQ_CRC_ERR (0x04)
3973 1.1 thorpej #define PRIORITY_REASON_CMD_CRC_ERR (0x05)
3974 1.1 thorpej #define PRIORITY_REASON_PROTOCOL_ERR (0x06)
3975 1.1 thorpej #define PRIORITY_REASON_DATA_OUT_PARITY_ERR (0x07)
3976 1.1 thorpej #define PRIORITY_REASON_DATA_OUT_CRC_ERR (0x08)
3977 1.1 thorpej #define PRIORITY_REASON_UNKNOWN (0xFF)
3978 1.1 thorpej
3979 1.1 thorpej
3980 1.1 thorpej typedef struct _MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY
3981 1.1 thorpej {
3982 1.1 thorpej U16 Reserved; /* 00h */
3983 1.1 thorpej U8 MsgLength; /* 02h */
3984 1.1 thorpej U8 Function; /* 03h */
3985 1.1 thorpej U16 Reserved1; /* 04h */
3986 1.1 thorpej U8 Reserved2; /* 06h */
3987 1.1 thorpej U8 MsgFlags; /* 07h */
3988 1.1 thorpej U32 MsgContext; /* 08h */
3989 1.1 thorpej U8 PriorityReason; /* 0Ch */
3990 1.1 thorpej U8 Reserved3; /* 0Dh */
3991 1.1 thorpej U16 IOCStatus; /* 0Eh */
3992 1.1 thorpej U32 IOCLogInfo; /* 10h */
3993 1.1 thorpej U32 ReplyWord; /* 14h */
3994 1.1 thorpej } MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY,
3995 1.1 thorpej MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY,
3996 1.1 thorpej TargetCmdBufferPostErrorReply_t, MPI_POINTER pTargetCmdBufferPostErrorReply_t;
3997 1.1 thorpej
3998 1.1 thorpej
3999 1.1 thorpej typedef struct _MPI_TARGET_FCP_CMD_BUFFER
4000 1.1 thorpej {
4001 1.1 thorpej U8 FcpLun[8]; /* 00h */
4002 1.1 thorpej U8 FcpCntl[4]; /* 08h */
4003 1.1 thorpej U8 FcpCdb[16]; /* 0Ch */
4004 1.1 thorpej U32 FcpDl; /* 1Ch */
4005 1.1 thorpej } MPI_TARGET_FCP_CMD_BUFFER, MPI_POINTER PTR_MPI_TARGET_FCP_CMD_BUFFER,
4006 1.1 thorpej MpiTargetFcpCmdBuffer, MPI_POINTER pMpiTargetFcpCmdBuffer;
4007 1.1 thorpej
4008 1.1 thorpej
4009 1.1 thorpej typedef struct _MPI_TARGET_SCSI_SPI_CMD_BUFFER
4010 1.1 thorpej {
4011 1.1 thorpej /* SPI L_Q information unit */
4012 1.1 thorpej U8 L_QType; /* 00h */
4013 1.1 thorpej U8 Reserved; /* 01h */
4014 1.1 thorpej U16 Tag; /* 02h */
4015 1.1 thorpej U8 LogicalUnitNumber[8]; /* 04h */
4016 1.1 thorpej U32 DataLength; /* 0Ch */
4017 1.1 thorpej /* SPI command information unit */
4018 1.1 thorpej U8 ReservedFirstByteOfCommandIU; /* 10h */
4019 1.1 thorpej U8 TaskAttribute; /* 11h */
4020 1.1 thorpej U8 TaskManagementFlags; /* 12h */
4021 1.1 thorpej U8 AdditionalCDBLength; /* 13h */
4022 1.1 thorpej U8 CDB[16]; /* 14h */
4023 1.1 thorpej } MPI_TARGET_SCSI_SPI_CMD_BUFFER,
4024 1.1 thorpej MPI_POINTER PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER,
4025 1.1 thorpej MpiTargetScsiSpiCmdBuffer, MPI_POINTER pMpiTargetScsiSpiCmdBuffer;
4026 1.1 thorpej
4027 1.1 thorpej
4028 1.1 thorpej /****************************************************************************/
4029 1.1 thorpej /* Target Assist Request */
4030 1.1 thorpej /****************************************************************************/
4031 1.1 thorpej
4032 1.1 thorpej typedef struct _MSG_TARGET_ASSIST_REQUEST
4033 1.1 thorpej {
4034 1.1 thorpej U8 StatusCode; /* 00h */
4035 1.1 thorpej U8 TargetAssistFlags; /* 01h */
4036 1.1 thorpej U8 ChainOffset; /* 02h */
4037 1.1 thorpej U8 Function; /* 03h */
4038 1.1 thorpej U16 QueueTag; /* 04h */
4039 1.1 thorpej U8 Reserved; /* 06h */
4040 1.1 thorpej U8 MsgFlags; /* 07h */
4041 1.1 thorpej U32 MsgContext; /* 08h */
4042 1.1 thorpej U32 ReplyWord; /* 0Ch */
4043 1.1 thorpej U8 LUN[8]; /* 10h */
4044 1.1 thorpej U32 RelativeOffset; /* 18h */
4045 1.1 thorpej U32 DataLength; /* 1Ch */
4046 1.1 thorpej SGE_IO_UNION SGL[1]; /* 20h */
4047 1.1 thorpej } MSG_TARGET_ASSIST_REQUEST, MPI_POINTER PTR_MSG_TARGET_ASSIST_REQUEST,
4048 1.1 thorpej TargetAssistRequest_t, MPI_POINTER pTargetAssistRequest_t;
4049 1.1 thorpej
4050 1.1 thorpej #define TARGET_ASSIST_FLAGS_DATA_DIRECTION (0x01)
4051 1.1 thorpej #define TARGET_ASSIST_FLAGS_AUTO_STATUS (0x02)
4052 1.1 thorpej #define TARGET_ASSIST_FLAGS_HIGH_PRIORITY (0x04)
4053 1.1 thorpej #define TARGET_ASSIST_FLAGS_REPOST_CMD_BUFFER (0x80)
4054 1.1 thorpej
4055 1.1 thorpej
4056 1.1 thorpej typedef struct _MSG_TARGET_ERROR_REPLY
4057 1.1 thorpej {
4058 1.1 thorpej U16 Reserved; /* 00h */
4059 1.1 thorpej U8 MsgLength; /* 02h */
4060 1.1 thorpej U8 Function; /* 03h */
4061 1.1 thorpej U16 Reserved1; /* 04h */
4062 1.1 thorpej U8 Reserved2; /* 06h */
4063 1.1 thorpej U8 MsgFlags; /* 07h */
4064 1.1 thorpej U32 MsgContext; /* 08h */
4065 1.1 thorpej U8 PriorityReason; /* 0Ch */
4066 1.1 thorpej U8 Reserved3; /* 0Dh */
4067 1.1 thorpej U16 IOCStatus; /* 0Eh */
4068 1.1 thorpej U32 IOCLogInfo; /* 10h */
4069 1.1 thorpej U32 ReplyWord; /* 14h */
4070 1.1 thorpej U32 TransferCount; /* 18h */
4071 1.1 thorpej } MSG_TARGET_ERROR_REPLY, MPI_POINTER PTR_MSG_TARGET_ERROR_REPLY,
4072 1.1 thorpej TargetErrorReply_t, MPI_POINTER pTargetErrorReply_t;
4073 1.1 thorpej
4074 1.1 thorpej
4075 1.1 thorpej /****************************************************************************/
4076 1.1 thorpej /* Target Status Send Request */
4077 1.1 thorpej /****************************************************************************/
4078 1.1 thorpej
4079 1.1 thorpej typedef struct _MSG_TARGET_STATUS_SEND_REQUEST
4080 1.1 thorpej {
4081 1.1 thorpej U8 StatusCode; /* 00h */
4082 1.1 thorpej U8 StatusFlags; /* 01h */
4083 1.1 thorpej U8 ChainOffset; /* 02h */
4084 1.1 thorpej U8 Function; /* 03h */
4085 1.1 thorpej U16 QueueTag; /* 04h */
4086 1.1 thorpej U8 Reserved; /* 06h */
4087 1.1 thorpej U8 MsgFlags; /* 07h */
4088 1.1 thorpej U32 MsgContext; /* 08h */
4089 1.1 thorpej U32 ReplyWord; /* 0Ch */
4090 1.1 thorpej U8 LUN[8]; /* 10h */
4091 1.1 thorpej SGE_SIMPLE_UNION StatusDataSGE; /* 18h */
4092 1.1 thorpej } MSG_TARGET_STATUS_SEND_REQUEST, MPI_POINTER PTR_MSG_TARGET_STATUS_SEND_REQUEST,
4093 1.1 thorpej TargetStatusSendRequest_t, MPI_POINTER pTargetStatusSendRequest_t;
4094 1.1 thorpej
4095 1.1 thorpej #define TARGET_STATUS_SEND_FLAGS_AUTO_GOOD_STATUS (0x01)
4096 1.1 thorpej #define TARGET_STATUS_SEND_FLAGS_HIGH_PRIORITY (0x04)
4097 1.1 thorpej #define TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER (0x80)
4098 1.1 thorpej
4099 1.1 thorpej typedef struct _MPI_TARGET_FCP_RSP_BUFFER
4100 1.1 thorpej {
4101 1.1 thorpej U8 Reserved0[8]; /* 00h */
4102 1.1 thorpej U8 FcpStatus; /* 08h */
4103 1.1 thorpej U8 FcpFlags; /* 09h */
4104 1.1 thorpej U8 Reserved1[2]; /* 0Ah */
4105 1.1 thorpej U32 FcpResid; /* 0Ch */
4106 1.1 thorpej U32 FcpSenseLength; /* 10h */
4107 1.1 thorpej U32 FcpResponseLength; /* 14h */
4108 1.1 thorpej U8 FcpResponseData[8]; /* 18h */
4109 1.1 thorpej U8 FcpSenseData[32]; /* Pad to 64 bytes */ /* 20h */
4110 1.1 thorpej } MPI_TARGET_FCP_RSP_BUFFER, MPI_POINTER PTR_MPI_TARGET_FCP_RSP_BUFFER,
4111 1.1 thorpej MpiTargetFcpRspBuffer, MPI_POINTER pMpiTargetFcpRspBuffer;
4112 1.1 thorpej
4113 1.1 thorpej typedef struct _MPI_TARGET_SCSI_SPI_STATUS_IU
4114 1.1 thorpej {
4115 1.1 thorpej U8 Reserved0; /* 00h */
4116 1.1 thorpej U8 Reserved1; /* 01h */
4117 1.1 thorpej U8 Valid; /* 02h */
4118 1.1 thorpej U8 Status; /* 03h */
4119 1.1 thorpej U32 SenseDataListLength; /* 04h */
4120 1.1 thorpej U32 PktFailuresListLength; /* 08h */
4121 1.1 thorpej U8 SenseData[52]; /* Pad the IU to 64 bytes */ /* 0Ch */
4122 1.1 thorpej } MPI_TARGET_SCSI_SPI_STATUS_IU, MPI_POINTER PTR_MPI_TARGET_SCSI_SPI_STATUS_IU,
4123 1.1 thorpej TargetScsiSpiStatusIU_t, MPI_POINTER pTargetScsiSpiStatusIU_t;
4124 1.1 thorpej
4125 1.1 thorpej /****************************************************************************/
4126 1.1 thorpej /* Target Mode Abort Request */
4127 1.1 thorpej /****************************************************************************/
4128 1.1 thorpej
4129 1.1 thorpej typedef struct _MSG_TARGET_MODE_ABORT_REQUEST
4130 1.1 thorpej {
4131 1.1 thorpej U8 AbortType; /* 00h */
4132 1.1 thorpej U8 Reserved; /* 01h */
4133 1.1 thorpej U8 ChainOffset; /* 02h */
4134 1.1 thorpej U8 Function; /* 03h */
4135 1.1 thorpej U16 Reserved1; /* 04h */
4136 1.1 thorpej U8 Reserved2; /* 06h */
4137 1.1 thorpej U8 MsgFlags; /* 07h */
4138 1.1 thorpej U32 MsgContext; /* 08h */
4139 1.1 thorpej U32 ReplyWord; /* 0Ch */
4140 1.1 thorpej U32 MsgContextToAbort; /* 10h */
4141 1.1 thorpej } MSG_TARGET_MODE_ABORT, MPI_POINTER PTR_MSG_TARGET_MODE_ABORT,
4142 1.1 thorpej TargetModeAbort_t, MPI_POINTER pTargetModeAbort_t;
4143 1.1 thorpej
4144 1.1 thorpej #define TARGET_MODE_ABORT_TYPE_ALL_CMD_BUFFERS (0x00)
4145 1.1 thorpej #define TARGET_MODE_ABORT_TYPE_ALL_IO (0x01)
4146 1.1 thorpej #define TARGET_MODE_ABORT_TYPE_EXACT_IO (0x02)
4147 1.1 thorpej #define TARGET_MODE_ABORT_TYPE_EXACT_IO_REQUEST (0x03)
4148 1.1 thorpej
4149 1.1 thorpej /* Target Mode Abort Reply */
4150 1.1 thorpej
4151 1.1 thorpej typedef struct _MSG_TARGET_MODE_ABORT_REPLY
4152 1.1 thorpej {
4153 1.1 thorpej U16 Reserved; /* 00h */
4154 1.1 thorpej U8 MsgLength; /* 02h */
4155 1.1 thorpej U8 Function; /* 03h */
4156 1.1 thorpej U16 Reserved1; /* 04h */
4157 1.1 thorpej U8 Reserved2; /* 06h */
4158 1.1 thorpej U8 MsgFlags; /* 07h */
4159 1.1 thorpej U32 MsgContext; /* 08h */
4160 1.1 thorpej U16 Reserved3; /* 0Ch */
4161 1.1 thorpej U16 IOCStatus; /* 0Eh */
4162 1.1 thorpej U32 IOCLogInfo; /* 10h */
4163 1.1 thorpej U32 AbortCount; /* 14h */
4164 1.1 thorpej } MSG_TARGET_MODE_ABORT_REPLY, MPI_POINTER PTR_MSG_TARGET_MODE_ABORT_REPLY,
4165 1.1 thorpej TargetModeAbortReply_t, MPI_POINTER pTargetModeAbortReply_t;
4166 1.1 thorpej
4167 1.1 thorpej
4168 1.1 thorpej /****************************************************************************/
4169 1.1 thorpej /* Target Mode Context Reply */
4170 1.1 thorpej /****************************************************************************/
4171 1.1 thorpej
4172 1.1 thorpej #define TARGET_MODE_REPLY_IO_INDEX_MASK (0x00003FFF)
4173 1.1 thorpej #define TARGET_MODE_REPLY_IO_INDEX_SHIFT (0)
4174 1.1 thorpej #define TARGET_MODE_REPLY_INITIATOR_INDEX_MASK (0x03FFC000)
4175 1.1 thorpej #define TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT (14)
4176 1.1 thorpej #define TARGET_MODE_REPLY_ALIAS_MASK (0x0C000000)
4177 1.1 thorpej #define TARGET_MODE_REPLY_ALIAS_SHIFT (26)
4178 1.1 thorpej #define TARGET_MODE_REPLY_PORT_MASK (0x10000000)
4179 1.1 thorpej #define TARGET_MODE_REPLY_PORT_SHIFT (28)
4180 1.1 thorpej
4181 1.1 thorpej
4182 1.1 thorpej #define GET_IO_INDEX(x) (((x) & TARGET_MODE_REPLY_IO_INDEX_MASK) \
4183 1.1 thorpej >> TARGET_MODE_REPLY_IO_INDEX_SHIFT)
4184 1.1 thorpej
4185 1.1 thorpej #define SET_IO_INDEX(t, i) \
4186 1.1 thorpej ((t) = ((t) & ~TARGET_MODE_REPLY_IO_INDEX_MASK) | \
4187 1.1 thorpej (((i) << TARGET_MODE_REPLY_IO_INDEX_SHIFT) & \
4188 1.1 thorpej TARGET_MODE_REPLY_IO_INDEX_MASK))
4189 1.1 thorpej
4190 1.1 thorpej #define GET_INITIATOR_INDEX(x) (((x) & TARGET_MODE_REPLY_INITIATOR_INDEX_MASK) \
4191 1.1 thorpej >> TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT)
4192 1.1 thorpej
4193 1.1 thorpej #define SET_INITIATOR_INDEX(t, ii) \
4194 1.1 thorpej ((t) = ((t) & ~TARGET_MODE_REPLY_INITIATOR_INDEX_MASK) | \
4195 1.1 thorpej (((ii) << TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT) & \
4196 1.1 thorpej TARGET_MODE_REPLY_INITIATOR_INDEX_MASK))
4197 1.1 thorpej
4198 1.1 thorpej #define GET_ALIAS(x) (((x) & TARGET_MODE_REPLY_ALIAS_MASK) \
4199 1.1 thorpej >> TARGET_MODE_REPLY_ALIAS_SHIFT)
4200 1.1 thorpej
4201 1.1 thorpej #define SET_ALIAS(t, a) ((t) = ((t) & ~TARGET_MODE_REPLY_ALIAS_MASK) | \
4202 1.1 thorpej (((a) << TARGET_MODE_REPLY_ALIAS_SHIFT) & \
4203 1.1 thorpej TARGET_MODE_REPLY_ALIAS_MASK))
4204 1.1 thorpej
4205 1.1 thorpej #define GET_PORT(x) (((x) & TARGET_MODE_REPLY_PORT_MASK) \
4206 1.1 thorpej >> TARGET_MODE_REPLY_PORT_SHIFT)
4207 1.1 thorpej
4208 1.1 thorpej #define SET_PORT(t, p) ((t) = ((t) & ~TARGET_MODE_REPLY_PORT_MASK) | \
4209 1.1 thorpej (((p) << TARGET_MODE_REPLY_PORT_SHIFT) & \
4210 1.1 thorpej TARGET_MODE_REPLY_PORT_MASK))
4211 1.1 thorpej
4212 1.1 thorpej /* the following obsolete values are for MPI v1.0 support */
4213 1.1 thorpej #define TARGET_MODE_REPLY_0100_MASK_HOST_INDEX (0x000003FF)
4214 1.1 thorpej #define TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX (0)
4215 1.1 thorpej #define TARGET_MODE_REPLY_0100_MASK_IOC_INDEX (0x001FF800)
4216 1.1 thorpej #define TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX (11)
4217 1.1 thorpej #define TARGET_MODE_REPLY_0100_PORT_MASK (0x00400000)
4218 1.1 thorpej #define TARGET_MODE_REPLY_0100_PORT_SHIFT (22)
4219 1.1 thorpej #define TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX (0x1F800000)
4220 1.1 thorpej #define TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX (23)
4221 1.1 thorpej
4222 1.1 thorpej #define GET_HOST_INDEX_0100(x) (((x) & TARGET_MODE_REPLY_0100_MASK_HOST_INDEX) \
4223 1.1 thorpej >> TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX)
4224 1.1 thorpej
4225 1.1 thorpej #define SET_HOST_INDEX_0100(t, hi) \
4226 1.1 thorpej ((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_HOST_INDEX) | \
4227 1.1 thorpej (((hi) << TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX) & \
4228 1.1 thorpej TARGET_MODE_REPLY_0100_MASK_HOST_INDEX))
4229 1.1 thorpej
4230 1.1 thorpej #define GET_IOC_INDEX_0100(x) (((x) & TARGET_MODE_REPLY_0100_MASK_IOC_INDEX) \
4231 1.1 thorpej >> TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX)
4232 1.1 thorpej
4233 1.1 thorpej #define SET_IOC_INDEX_0100(t, ii) \
4234 1.1 thorpej ((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_IOC_INDEX) | \
4235 1.1 thorpej (((ii) << TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX) & \
4236 1.1 thorpej TARGET_MODE_REPLY_0100_MASK_IOC_INDEX))
4237 1.1 thorpej
4238 1.1 thorpej #define GET_INITIATOR_INDEX_0100(x) \
4239 1.1 thorpej (((x) & TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX) \
4240 1.1 thorpej >> TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX)
4241 1.1 thorpej
4242 1.1 thorpej #define SET_INITIATOR_INDEX_0100(t, ii) \
4243 1.1 thorpej ((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX) | \
4244 1.1 thorpej (((ii) << TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX) & \
4245 1.1 thorpej TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX))
4246 1.1 thorpej
4247 1.1 thorpej
4248 1.1 thorpej #endif
4249 1.1 thorpej
4250