mpi.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:27k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Copyright (c) 2000-2001 LSI Logic Corporation.
  3.  *
  4.  *
  5.  *           Name:  MPI.H
  6.  *          Title:  MPI Message independent structures and definitions
  7.  *  Creation Date:  July 27, 2000
  8.  *
  9.  *    MPI Version:  01.01.07
  10.  *
  11.  *  Version History
  12.  *  ---------------
  13.  *
  14.  *  Date      Version   Description
  15.  *  --------  --------  ------------------------------------------------------
  16.  *  05-08-00  00.10.01  Original release for 0.10 spec dated 4/26/2000.
  17.  *  05-24-00  00.10.02  Added MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH definition.
  18.  *  06-06-00  01.00.01  Update MPI_VERSION_MAJOR and MPI_VERSION_MINOR.
  19.  *  06-22-00  01.00.02  Added MPI_IOCSTATUS_LAN_ definitions.
  20.  *                      Removed LAN_SUSPEND function definition.
  21.  *                      Added MPI_MSGFLAGS_CONTINUATION_REPLY definition.
  22.  *  06-30-00  01.00.03  Added MPI_CONTEXT_REPLY_TYPE_LAN definition.
  23.  *                      Added MPI_GET/SET_CONTEXT_REPLY_TYPE macros.
  24.  *  07-27-00  01.00.04  Added MPI_FAULT_ definitions.
  25.  *                      Removed MPI_IOCSTATUS_MSG/DATA_XFER_ERROR definitions.
  26.  *                      Added MPI_IOCSTATUS_INTERNAL_ERROR definition.
  27.  *                      Added MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH.
  28.  *  11-02-00  01.01.01  Original release for post 1.0 work.
  29.  *  12-04-00  01.01.02  Added new function codes.
  30.  *  01-09-01  01.01.03  Added more definitions to the system interface section
  31.  *                      Added MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT.
  32.  *  01-25-01  01.01.04  Changed MPI_VERSION_MINOR from 0x00 to 0x01.
  33.  *  02-20-01  01.01.05  Started using MPI_POINTER.
  34.  *                      Fixed value for MPI_DIAG_RW_ENABLE.
  35.  *                      Added defines for MPI_DIAG_PREVENT_IOC_BOOT and
  36.  *                      MPI_DIAG_CLEAR_FLASH_BAD_SIG.
  37.  *                      Obsoleted MPI_IOCSTATUS_TARGET_FC_ defines.
  38.  *  02-27-01  01.01.06  Removed MPI_HOST_INDEX_REGISTER define.
  39.  *                      Added function codes for RAID.
  40.  *  04-09-01  01.01.07  Added alternate define for MPI_DOORBELL_ACTIVE,
  41.  *                      MPI_DOORBELL_USED, to better match the spec.
  42.  *  --------------------------------------------------------------------------
  43.  */
  44. #ifndef MPI_H
  45. #define MPI_H
  46. /*****************************************************************************
  47. *
  48. *        M P I    V e r s i o n    D e f i n i t i o n s
  49. *
  50. *****************************************************************************/
  51. #define MPI_VERSION_MAJOR                   (0x01)
  52. #define MPI_VERSION_MINOR                   (0x01)
  53. #define MPI_VERSION            ((MPI_VERSION_MAJOR << 8) | MPI_VERSION_MINOR)
  54. /* Note: The major versions of 0xe0 through 0xff are reserved */
  55. /*****************************************************************************
  56. *
  57. *        I O C    S t a t e    D e f i n i t i o n s
  58. *
  59. *****************************************************************************/
  60. #define MPI_IOC_STATE_RESET                 (0x00000000)
  61. #define MPI_IOC_STATE_READY                 (0x10000000)
  62. #define MPI_IOC_STATE_OPERATIONAL           (0x20000000)
  63. #define MPI_IOC_STATE_FAULT                 (0x40000000)
  64. #define MPI_IOC_STATE_MASK                  (0xF0000000)
  65. #define MPI_IOC_STATE_SHIFT                 (28)
  66. /* Fault state codes (product independent range 0x8000-0xFFFF) */
  67. #define MPI_FAULT_REQUEST_MESSAGE_PCI_PARITY_ERROR  (0x8111)
  68. #define MPI_FAULT_REQUEST_MESSAGE_PCI_BUS_FAULT     (0x8112)
  69. #define MPI_FAULT_REPLY_MESSAGE_PCI_PARITY_ERROR    (0x8113)
  70. #define MPI_FAULT_REPLY_MESSAGE_PCI_BUS_FAULT       (0x8114)
  71. #define MPI_FAULT_DATA_SEND_PCI_PARITY_ERROR        (0x8115)
  72. #define MPI_FAULT_DATA_SEND_PCI_BUS_FAULT           (0x8116)
  73. #define MPI_FAULT_DATA_RECEIVE_PCI_PARITY_ERROR     (0x8117)
  74. #define MPI_FAULT_DATA_RECEIVE_PCI_BUS_FAULT        (0x8118)
  75. /*****************************************************************************
  76. *
  77. *        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
  78. *
  79. *****************************************************************************/
  80. /* S y s t e m    D o o r b e l l */
  81. #define MPI_DOORBELL_OFFSET                 (0x00000000)
  82. #define MPI_DOORBELL_ACTIVE                 (0x08000000) /* DoorbellUsed */
  83. #define MPI_DOORBELL_USED                   (MPI_DOORBELL_ACTIVE)
  84. #define MPI_DOORBELL_ACTIVE_SHIFT           (27)
  85. #define MPI_DOORBELL_WHO_INIT_MASK          (0x07000000)
  86. #define MPI_DOORBELL_WHO_INIT_SHIFT         (24)
  87. #define MPI_DOORBELL_FUNCTION_MASK          (0xFF000000)
  88. #define MPI_DOORBELL_FUNCTION_SHIFT         (24)
  89. #define MPI_DOORBELL_ADD_DWORDS_MASK        (0x00FF0000)
  90. #define MPI_DOORBELL_ADD_DWORDS_SHIFT       (16)
  91. #define MPI_DOORBELL_DATA_MASK              (0x0000FFFF)
  92. #define MPI_WRITE_SEQUENCE_OFFSET           (0x00000004)
  93. #define MPI_WRSEQ_KEY_VALUE_MASK            (0x0000000F)
  94. #define MPI_WRSEQ_1ST_KEY_VALUE             (0x04)
  95. #define MPI_WRSEQ_2ND_KEY_VALUE             (0x0B)
  96. #define MPI_WRSEQ_3RD_KEY_VALUE             (0x02)
  97. #define MPI_WRSEQ_4TH_KEY_VALUE             (0x07)
  98. #define MPI_WRSEQ_5TH_KEY_VALUE             (0x0D)
  99. #define MPI_DIAGNOSTIC_OFFSET               (0x00000008)
  100. #define MPI_DIAG_CLEAR_FLASH_BAD_SIG        (0x00000400)
  101. #define MPI_DIAG_PREVENT_IOC_BOOT           (0x00000200)
  102. #define MPI_DIAG_DRWE                       (0x00000080)
  103. #define MPI_DIAG_FLASH_BAD_SIG              (0x00000040)
  104. #define MPI_DIAG_RESET_HISTORY              (0x00000020)
  105. #define MPI_DIAG_RW_ENABLE                  (0x00000010)
  106. #define MPI_DIAG_RESET_ADAPTER              (0x00000004)
  107. #define MPI_DIAG_DISABLE_ARM                (0x00000002)
  108. #define MPI_DIAG_MEM_ENABLE                 (0x00000001)
  109. #define MPI_TEST_BASE_ADDRESS_OFFSET        (0x0000000C)
  110. #define MPI_DIAG_RW_DATA_OFFSET             (0x00000010)
  111. #define MPI_DIAG_RW_ADDRESS_OFFSET          (0x00000014)
  112. #define MPI_HOST_INTERRUPT_STATUS_OFFSET    (0x00000030)
  113. #define MPI_HIS_IOP_DOORBELL_STATUS         (0x80000000)
  114. #define MPI_HIS_REPLY_MESSAGE_INTERRUPT     (0x00000008)
  115. #define MPI_HIS_DOORBELL_INTERRUPT          (0x00000001)
  116. #define MPI_HOST_INTERRUPT_MASK_OFFSET      (0x00000034)
  117. #define MPI_HIM_RIM                         (0x00000008)
  118. #define MPI_HIM_DIM                         (0x00000001)
  119. #define MPI_REQUEST_QUEUE_OFFSET            (0x00000040)
  120. #define MPI_REQUEST_POST_FIFO_OFFSET        (0x00000040)
  121. #define MPI_REPLY_QUEUE_OFFSET              (0x00000044)
  122. #define MPI_REPLY_POST_FIFO_OFFSET          (0x00000044)
  123. #define MPI_REPLY_FREE_FIFO_OFFSET          (0x00000044)
  124. /*****************************************************************************
  125. *
  126. *        M e s s a g e    F r a m e    D e s c r i p t o r s
  127. *
  128. *****************************************************************************/
  129. #define MPI_REQ_MF_DESCRIPTOR_NB_MASK       (0x00000003)
  130. #define MPI_REQ_MF_DESCRIPTOR_F_BIT         (0x00000004)
  131. #define MPI_REQ_MF_DESCRIPTOR_ADDRESS_MASK  (0xFFFFFFF8)
  132. #define MPI_ADDRESS_REPLY_A_BIT             (0x80000000)
  133. #define MPI_ADDRESS_REPLY_ADDRESS_MASK      (0x7FFFFFFF)
  134. #define MPI_CONTEXT_REPLY_A_BIT             (0x80000000)
  135. #define MPI_CONTEXT_REPLY_TYPE_MASK         (0x60000000)
  136. #define MPI_CONTEXT_REPLY_TYPE_SCSI_INIT    (0x00)
  137. #define MPI_CONTEXT_REPLY_TYPE_SCSI_TARGET  (0x01)
  138. #define MPI_CONTEXT_REPLY_TYPE_LAN          (0x02)
  139. #define MPI_CONTEXT_REPLY_TYPE_SHIFT        (29)
  140. #define MPI_CONTEXT_REPLY_CONTEXT_MASK      (0x1FFFFFFF)
  141. /****************************************************************************/
  142. /* Context Reply macros                                                     */
  143. /****************************************************************************/
  144. #define MPI_GET_CONTEXT_REPLY_TYPE(x)  (((x) & MPI_CONTEXT_REPLY_TYPE_MASK) 
  145.                                           >> MPI_CONTEXT_REPLY_TYPE_SHIFT)
  146. #define MPI_SET_CONTEXT_REPLY_TYPE(x, typ)                                  
  147.             ((x) = ((x) & ~MPI_CONTEXT_REPLY_TYPE_MASK) |                   
  148.                             (((typ) << MPI_CONTEXT_REPLY_TYPE_SHIFT) &      
  149.                                         MPI_CONTEXT_REPLY_TYPE_MASK))
  150. /*****************************************************************************
  151. *
  152. *        M e s s a g e    F u n c t i o n s
  153. *              0x80 -> 0x8F reserved for private message use per product
  154. *
  155. *
  156. *****************************************************************************/
  157. #define MPI_FUNCTION_SCSI_IO_REQUEST                (0x00)
  158. #define MPI_FUNCTION_SCSI_TASK_MGMT                 (0x01)
  159. #define MPI_FUNCTION_IOC_INIT                       (0x02)
  160. #define MPI_FUNCTION_IOC_FACTS                      (0x03)
  161. #define MPI_FUNCTION_CONFIG                         (0x04)
  162. #define MPI_FUNCTION_PORT_FACTS                     (0x05)
  163. #define MPI_FUNCTION_PORT_ENABLE                    (0x06)
  164. #define MPI_FUNCTION_EVENT_NOTIFICATION             (0x07)
  165. #define MPI_FUNCTION_EVENT_ACK                      (0x08)
  166. #define MPI_FUNCTION_FW_DOWNLOAD                    (0x09)
  167. #define MPI_FUNCTION_TARGET_CMD_BUFFER_POST         (0x0A)
  168. #define MPI_FUNCTION_TARGET_ASSIST                  (0x0B)
  169. #define MPI_FUNCTION_TARGET_STATUS_SEND             (0x0C)
  170. #define MPI_FUNCTION_TARGET_MODE_ABORT              (0x0D)
  171. #define MPI_FUNCTION_TARGET_FC_BUF_POST_LINK_SRVC   (0x0E) /* obsolete name */
  172. #define MPI_FUNCTION_TARGET_FC_RSP_LINK_SRVC        (0x0F) /* obsolete name */
  173. #define MPI_FUNCTION_TARGET_FC_EX_SEND_LINK_SRVC    (0x10) /* obsolete name */
  174. #define MPI_FUNCTION_TARGET_FC_ABORT                (0x11) /* obsolete name */
  175. #define MPI_FUNCTION_FC_LINK_SRVC_BUF_POST          (0x0E)
  176. #define MPI_FUNCTION_FC_LINK_SRVC_RSP               (0x0F)
  177. #define MPI_FUNCTION_FC_EX_LINK_SRVC_SEND           (0x10)
  178. #define MPI_FUNCTION_FC_ABORT                       (0x11)
  179. #define MPI_FUNCTION_FW_UPLOAD                      (0x12)
  180. #define MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND       (0x13)
  181. #define MPI_FUNCTION_FC_PRIMITIVE_SEND              (0x14)
  182. #define MPI_FUNCTION_RAID_VOLUME                    (0x15)
  183. #define MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH       (0x16)
  184. #define MPI_FUNCTION_LAN_SEND                       (0x20)
  185. #define MPI_FUNCTION_LAN_RECEIVE                    (0x21)
  186. #define MPI_FUNCTION_LAN_RESET                      (0x22)
  187. #define MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET         (0x40)
  188. #define MPI_FUNCTION_IO_UNIT_RESET                  (0x41)
  189. #define MPI_FUNCTION_HANDSHAKE                      (0x42)
  190. #define MPI_FUNCTION_REPLY_FRAME_REMOVAL            (0x43)
  191. /*****************************************************************************
  192. *
  193. *        S c a t t e r    G a t h e r    E l e m e n t s
  194. *
  195. *****************************************************************************/
  196. /****************************************************************************/
  197. /*  Simple element structures                                               */
  198. /****************************************************************************/
  199. typedef struct _SGE_SIMPLE32
  200. {
  201.     U32                     FlagsLength;
  202.     U32                     Address;
  203. } SGE_SIMPLE32, MPI_POINTER PTR_SGE_SIMPLE32,
  204.   SGESimple32_t, MPI_POINTER pSGESimple32_t;
  205. typedef struct _SGE_SIMPLE64
  206. {
  207.     U32                     FlagsLength;
  208.     U64                     Address;
  209. } SGE_SIMPLE64, MPI_POINTER PTR_SGE_SIMPLE64,
  210.   SGESimple64_t, MPI_POINTER pSGESimple64_t;
  211. typedef struct _SGE_SIMPLE_UNION
  212. {
  213.     U32                     FlagsLength;
  214.     union
  215.     {
  216.         U32                 Address32;
  217.         U64                 Address64;
  218.     }u;
  219. } SGESimpleUnion_t, MPI_POINTER pSGESimpleUnion_t,
  220.   SGE_SIMPLE_UNION, MPI_POINTER PTR_SGE_SIMPLE_UNION;
  221. /****************************************************************************/
  222. /*  Chain element structures                                                */
  223. /****************************************************************************/
  224. typedef struct _SGE_CHAIN32
  225. {
  226.     U16                     Length;
  227.     U8                      NextChainOffset;
  228.     U8                      Flags;
  229.     U32                     Address;
  230. } SGE_CHAIN32, MPI_POINTER PTR_SGE_CHAIN32,
  231.   SGEChain32_t, MPI_POINTER pSGEChain32_t;
  232. typedef struct _SGE_CHAIN64
  233. {
  234.     U16                     Length;
  235.     U8                      NextChainOffset;
  236.     U8                      Flags;
  237.     U64                     Address;
  238. } SGE_CHAIN64, MPI_POINTER PTR_SGE_CHAIN64,
  239.   SGEChain64_t, MPI_POINTER pSGEChain64_t;
  240. typedef struct _SGE_CHAIN_UNION
  241. {
  242.     U16                     Length;
  243.     U8                      NextChainOffset;
  244.     U8                      Flags;
  245.     union
  246.     {
  247.         U32                 Address32;
  248.         U64                 Address64;
  249.     }u;
  250. } SGE_CHAIN_UNION, MPI_POINTER PTR_SGE_CHAIN_UNION,
  251.   SGEChainUnion_t, MPI_POINTER pSGEChainUnion_t;
  252. /****************************************************************************/
  253. /*  Transaction Context element                                             */
  254. /****************************************************************************/
  255. typedef struct _SGE_TRANSACTION32
  256. {
  257.     U8                      Reserved;
  258.     U8                      ContextSize;
  259.     U8                      DetailsLength;
  260.     U8                      Flags;
  261.     U32                     TransactionContext[1];
  262.     U32                     TransactionDetails[1];
  263. } SGE_TRANSACTION32, MPI_POINTER PTR_SGE_TRANSACTION32,
  264.   SGETransaction32_t, MPI_POINTER pSGETransaction32_t;
  265. typedef struct _SGE_TRANSACTION64
  266. {
  267.     U8                      Reserved;
  268.     U8                      ContextSize;
  269.     U8                      DetailsLength;
  270.     U8                      Flags;
  271.     U32                     TransactionContext[2];
  272.     U32                     TransactionDetails[1];
  273. } SGE_TRANSACTION64, MPI_POINTER PTR_SGE_TRANSACTION64,
  274.   SGETransaction64_t, MPI_POINTER pSGETransaction64_t;
  275. typedef struct _SGE_TRANSACTION96
  276. {
  277.     U8                      Reserved;
  278.     U8                      ContextSize;
  279.     U8                      DetailsLength;
  280.     U8                      Flags;
  281.     U32                     TransactionContext[3];
  282.     U32                     TransactionDetails[1];
  283. } SGE_TRANSACTION96, MPI_POINTER PTR_SGE_TRANSACTION96,
  284.   SGETransaction96_t, MPI_POINTER pSGETransaction96_t;
  285. typedef struct _SGE_TRANSACTION128
  286. {
  287.     U8                      Reserved;
  288.     U8                      ContextSize;
  289.     U8                      DetailsLength;
  290.     U8                      Flags;
  291.     U32                     TransactionContext[4];
  292.     U32                     TransactionDetails[1];
  293. } SGE_TRANSACTION128, MPI_POINTER PTR_SGE_TRANSACTION128,
  294.   SGETransaction_t128, MPI_POINTER pSGETransaction_t128;
  295. typedef struct _SGE_TRANSACTION_UNION
  296. {
  297.     U8                      Reserved;
  298.     U8                      ContextSize;
  299.     U8                      DetailsLength;
  300.     U8                      Flags;
  301.     union
  302.     {
  303.         U32                 TransactionContext32[1];
  304.         U32                 TransactionContext64[2];
  305.         U32                 TransactionContext96[3];
  306.         U32                 TransactionContext128[4];
  307.     }u;
  308.     U32                     TransactionDetails[1];
  309. } SGE_TRANSACTION_UNION, MPI_POINTER PTR_SGE_TRANSACTION_UNION,
  310.   SGETransactionUnion_t, MPI_POINTER pSGETransactionUnion_t;
  311. /****************************************************************************/
  312. /*  SGE IO types union  for IO SGL's                                        */
  313. /****************************************************************************/
  314. typedef struct _SGE_IO_UNION
  315. {
  316.     union
  317.     {
  318.         SGE_SIMPLE_UNION    Simple;
  319.         SGE_CHAIN_UNION     Chain;
  320.     } u;
  321. } SGE_IO_UNION, MPI_POINTER PTR_SGE_IO_UNION,
  322.   SGEIOUnion_t, MPI_POINTER pSGEIOUnion_t;
  323. /****************************************************************************/
  324. /*  SGE union for SGL's with Simple and Transaction elements                */
  325. /****************************************************************************/
  326. typedef struct _SGE_TRANS_SIMPLE_UNION
  327. {
  328.     union
  329.     {
  330.         SGE_SIMPLE_UNION        Simple;
  331.         SGE_TRANSACTION_UNION   Transaction;
  332.     } u;
  333. } SGE_TRANS_SIMPLE_UNION, MPI_POINTER PTR_SGE_TRANS_SIMPLE_UNION,
  334.   SGETransSimpleUnion_t, MPI_POINTER pSGETransSimpleUnion_t;
  335. /****************************************************************************/
  336. /*  All SGE types union                                                     */
  337. /****************************************************************************/
  338. typedef struct _SGE_MPI_UNION
  339. {
  340.     union
  341.     {
  342.         SGE_SIMPLE_UNION        Simple;
  343.         SGE_CHAIN_UNION         Chain;
  344.         SGE_TRANSACTION_UNION   Transaction;
  345.     } u;
  346. } SGE_MPI_UNION, MPI_POINTER PTR_SGE_MPI_UNION,
  347.   MPI_SGE_UNION_t, MPI_POINTER pMPI_SGE_UNION_t,
  348.   SGEAllUnion_t, MPI_POINTER pSGEAllUnion_t;
  349. /****************************************************************************/
  350. /*  SGE field definition and masks                                          */
  351. /****************************************************************************/
  352. /* Flags field bit definitions */
  353. #define MPI_SGE_FLAGS_LAST_ELEMENT              (0x80)
  354. #define MPI_SGE_FLAGS_END_OF_BUFFER             (0x40)
  355. #define MPI_SGE_FLAGS_ELEMENT_TYPE_MASK         (0x30)
  356. #define MPI_SGE_FLAGS_LOCAL_ADDRESS             (0x08)
  357. #define MPI_SGE_FLAGS_DIRECTION                 (0x04)
  358. #define MPI_SGE_FLAGS_ADDRESS_SIZE              (0x02)
  359. #define MPI_SGE_FLAGS_END_OF_LIST               (0x01)
  360. #define MPI_SGE_FLAGS_SHIFT                     (24)
  361. #define MPI_SGE_LENGTH_MASK                     (0x00FFFFFF)
  362. #define MPI_SGE_CHAIN_LENGTH_MASK               (0x0000FFFF)
  363. /* Element Type */
  364. #define MPI_SGE_FLAGS_TRANSACTION_ELEMENT       (0x00)
  365. #define MPI_SGE_FLAGS_SIMPLE_ELEMENT            (0x10)
  366. #define MPI_SGE_FLAGS_CHAIN_ELEMENT             (0x30)
  367. #define MPI_SGE_FLAGS_ELEMENT_MASK              (0x30)
  368. /* Address location */
  369. #define MPI_SGE_FLAGS_SYSTEM_ADDRESS            (0x00)
  370. /* Direction */
  371. #define MPI_SGE_FLAGS_IOC_TO_HOST               (0x00)
  372. #define MPI_SGE_FLAGS_HOST_TO_IOC               (0x04)
  373. /* Address Size */
  374. #define MPI_SGE_FLAGS_32_BIT_ADDRESSING         (0x00)
  375. #define MPI_SGE_FLAGS_64_BIT_ADDRESSING         (0x02)
  376. /* Context Size */
  377. #define MPI_SGE_FLAGS_32_BIT_CONTEXT            (0x00)
  378. #define MPI_SGE_FLAGS_64_BIT_CONTEXT            (0x02)
  379. #define MPI_SGE_FLAGS_96_BIT_CONTEXT            (0x04)
  380. #define MPI_SGE_FLAGS_128_BIT_CONTEXT           (0x06)
  381. #define MPI_SGE_CHAIN_OFFSET_MASK               (0x00FF0000)
  382. #define MPI_SGE_CHAIN_OFFSET_SHIFT              (16)
  383. /****************************************************************************/
  384. /*  SGE operation Macros                                                    */
  385. /****************************************************************************/
  386.          /* SIMPLE FlagsLength manipulations... */
  387. #define  MPI_SGE_SET_FLAGS(f)           ((U32)(f) << MPI_SGE_FLAGS_SHIFT)
  388. #define  MPI_SGE_GET_FLAGS(fl)          (((fl) & ~MPI_SGE_LENGTH_MASK) >> MPI_SGE_FLAGS_SHIFT)
  389. #define  MPI_SGE_LENGTH(fl)             ((fl) & MPI_SGE_LENGTH_MASK)
  390. #define  MPI_SGE_CHAIN_LENGTH(fl)       ((fl) & MPI_SGE_CHAIN_LENGTH_MASK)
  391. #define  MPI_SGE_SET_FLAGS_LENGTH(f,l)  (MPI_SGE_SET_FLAGS(f) | MPI_SGE_LENGTH(l))
  392. #define  MPI_pSGE_GET_FLAGS(psg)        MPI_SGE_GET_FLAGS((psg)->FlagsLength)
  393. #define  MPI_pSGE_GET_LENGTH(psg)       MPI_SGE_LENGTH((psg)->FlagsLength)
  394. #define  MPI_pSGE_SET_FLAGS_LENGTH(psg,f,l)  (psg)->FlagsLength = MPI_SGE_SET_FLAGS_LENGTH(f,l)
  395.          /* CAUTION - The following are READ-MODIFY-WRITE! */
  396. #define  MPI_pSGE_SET_FLAGS(psg,f)      (psg)->FlagsLength |= MPI_SGE_SET_FLAGS(f)
  397. #define  MPI_pSGE_SET_LENGTH(psg,l)     (psg)->FlagsLength |= MPI_SGE_LENGTH(l)
  398. #define  MPI_GET_CHAIN_OFFSET(x) ((x&MPI_SGE_CHAIN_OFFSET_MASK)>>MPI_SGE_CHAIN_OFFSET_SHIFT)
  399. /*****************************************************************************
  400. *
  401. *        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
  402. *
  403. *****************************************************************************/
  404. /****************************************************************************/
  405. /* Standard message request header for all request messages                 */
  406. /****************************************************************************/
  407. typedef struct _MSG_REQUEST_HEADER
  408. {
  409.     U8                      Reserved[2];      /* function specific */
  410.     U8                      ChainOffset;
  411.     U8                      Function;
  412.     U8                      Reserved1[3];     /* function specific */
  413.     U8                      MsgFlags;
  414.     U32                     MsgContext;
  415. } MSG_REQUEST_HEADER, MPI_POINTER PTR_MSG_REQUEST_HEADER,
  416.   MPIHeader_t, MPI_POINTER pMPIHeader_t;
  417. /****************************************************************************/
  418. /*  Default Reply                                                           */
  419. /****************************************************************************/
  420. typedef struct _MSG_DEFAULT_REPLY
  421. {
  422.     U8                      Reserved[2];      /* function specific */
  423.     U8                      MsgLength;
  424.     U8                      Function;
  425.     U8                      Reserved1[3];     /* function specific */
  426.     U8                      MsgFlags;
  427.     U32                     MsgContext;
  428.     U8                      Reserved2[2];     /* function specific */
  429.     U16                     IOCStatus;
  430.     U32                     IOCLogInfo;
  431. } MSG_DEFAULT_REPLY, MPI_POINTER PTR_MSG_DEFAULT_REPLY,
  432.   MPIDefaultReply_t, MPI_POINTER pMPIDefaultReply_t;
  433. /* MsgFlags definition for all replies */
  434. #define MPI_MSGFLAGS_CONTINUATION_REPLY         (0x80)
  435. /*****************************************************************************
  436. *
  437. *               I O C    S t a t u s   V a l u e s
  438. *
  439. *****************************************************************************/
  440. /****************************************************************************/
  441. /*  Common IOCStatus values for all replies                                 */
  442. /****************************************************************************/
  443. #define MPI_IOCSTATUS_SUCCESS                  (0x0000)
  444. #define MPI_IOCSTATUS_INVALID_FUNCTION         (0x0001)
  445. #define MPI_IOCSTATUS_BUSY                     (0x0002)
  446. #define MPI_IOCSTATUS_INVALID_SGL              (0x0003)
  447. #define MPI_IOCSTATUS_INTERNAL_ERROR           (0x0004)
  448. #define MPI_IOCSTATUS_RESERVED                 (0x0005)
  449. #define MPI_IOCSTATUS_INSUFFICIENT_RESOURCES   (0x0006)
  450. #define MPI_IOCSTATUS_INVALID_FIELD            (0x0007)
  451. #define MPI_IOCSTATUS_INVALID_STATE            (0x0008)
  452. /****************************************************************************/
  453. /*  Config IOCStatus values                                                 */
  454. /****************************************************************************/
  455. #define MPI_IOCSTATUS_CONFIG_INVALID_ACTION    (0x0020)
  456. #define MPI_IOCSTATUS_CONFIG_INVALID_TYPE      (0x0021)
  457. #define MPI_IOCSTATUS_CONFIG_INVALID_PAGE      (0x0022)
  458. #define MPI_IOCSTATUS_CONFIG_INVALID_DATA      (0x0023)
  459. #define MPI_IOCSTATUS_CONFIG_NO_DEFAULTS       (0x0024)
  460. #define MPI_IOCSTATUS_CONFIG_CANT_COMMIT       (0x0025)
  461. /****************************************************************************/
  462. /*  SCSIIO Reply (SPI & FCP) initiator values                               */
  463. /****************************************************************************/
  464. #define MPI_IOCSTATUS_SCSI_RECOVERED_ERROR     (0x0040)
  465. #define MPI_IOCSTATUS_SCSI_INVALID_BUS         (0x0041)
  466. #define MPI_IOCSTATUS_SCSI_INVALID_TARGETID    (0x0042)
  467. #define MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE    (0x0043)
  468. #define MPI_IOCSTATUS_SCSI_DATA_OVERRUN        (0x0044)
  469. #define MPI_IOCSTATUS_SCSI_DATA_UNDERRUN       (0x0045)
  470. #define MPI_IOCSTATUS_SCSI_IO_DATA_ERROR       (0x0046)
  471. #define MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR      (0x0047)
  472. #define MPI_IOCSTATUS_SCSI_TASK_TERMINATED     (0x0048)
  473. #define MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH   (0x0049)
  474. #define MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED    (0x004A)
  475. #define MPI_IOCSTATUS_SCSI_IOC_TERMINATED      (0x004B)
  476. #define MPI_IOCSTATUS_SCSI_EXT_TERMINATED      (0x004C)
  477. /****************************************************************************/
  478. /*  SCSI (SPI & FCP) target values                                          */
  479. /****************************************************************************/
  480. #define MPI_IOCSTATUS_TARGET_PRIORITY_IO         (0x0060)
  481. #define MPI_IOCSTATUS_TARGET_INVALID_PORT        (0x0061)
  482. #define MPI_IOCSTATUS_TARGET_INVALID_IOCINDEX    (0x0062)
  483. #define MPI_IOCSTATUS_TARGET_ABORTED             (0x0063)
  484. #define MPI_IOCSTATUS_TARGET_NO_CONN_RETRYABLE   (0x0064)
  485. #define MPI_IOCSTATUS_TARGET_NO_CONNECTION       (0x0065)
  486. #define MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH (0x006A)
  487. #define MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT   (0x006B)
  488. /****************************************************************************/
  489. /*  Additional FCP target values                                            */
  490. /****************************************************************************/
  491. #define MPI_IOCSTATUS_TARGET_FC_ABORTED         (0x0066)    /* obsolete */
  492. #define MPI_IOCSTATUS_TARGET_FC_RX_ID_INVALID   (0x0067)    /* obsolete */
  493. #define MPI_IOCSTATUS_TARGET_FC_DID_INVALID     (0x0068)    /* obsolete */
  494. #define MPI_IOCSTATUS_TARGET_FC_NODE_LOGGED_OUT (0x0069)    /* obsolete */
  495. /****************************************************************************/
  496. /*  Fibre Channel Direct Access values                                      */
  497. /****************************************************************************/
  498. #define MPI_IOCSTATUS_FC_ABORTED                (0x0066)
  499. #define MPI_IOCSTATUS_FC_RX_ID_INVALID          (0x0067)
  500. #define MPI_IOCSTATUS_FC_DID_INVALID            (0x0068)
  501. #define MPI_IOCSTATUS_FC_NODE_LOGGED_OUT        (0x0069)
  502. /****************************************************************************/
  503. /*  LAN values                                                              */
  504. /****************************************************************************/
  505. #define MPI_IOCSTATUS_LAN_DEVICE_NOT_FOUND      (0x0080)
  506. #define MPI_IOCSTATUS_LAN_DEVICE_FAILURE        (0x0081)
  507. #define MPI_IOCSTATUS_LAN_TRANSMIT_ERROR        (0x0082)
  508. #define MPI_IOCSTATUS_LAN_TRANSMIT_ABORTED      (0x0083)
  509. #define MPI_IOCSTATUS_LAN_RECEIVE_ERROR         (0x0084)
  510. #define MPI_IOCSTATUS_LAN_RECEIVE_ABORTED       (0x0085)
  511. #define MPI_IOCSTATUS_LAN_PARTIAL_PACKET        (0x0086)
  512. #define MPI_IOCSTATUS_LAN_CANCELED              (0x0087)
  513. /****************************************************************************/
  514. /*  IOCStatus flag to indicate that log info is available                   */
  515. /****************************************************************************/
  516. #define MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE   (0x8000)
  517. #define MPI_IOCSTATUS_MASK                      (0x7FFF)
  518. /****************************************************************************/
  519. /*  LogInfo Types                                                           */
  520. /****************************************************************************/
  521. #define MPI_IOCLOGINFO_TYPE_MASK                (0xF0000000)
  522. #define MPI_IOCLOGINFO_TYPE_NONE                (0x0)
  523. #define MPI_IOCLOGINFO_TYPE_SCSI                (0x1)
  524. #define MPI_IOCLOGINFO_TYPE_FC                  (0x2)
  525. #define MPI_IOCLOGINFO_LOG_DATA_MASK            (0x0FFFFFFF)
  526. #endif