mpi_raid.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /*
  2. * Copyright (c) 2001-2007 LSI Logic Corporation.
  3. *
  4. *
  5. * Name: mpi_raid.h
  6. * Title: MPI RAID message and structures
  7. * Creation Date: February 27, 2001
  8. *
  9. * mpi_raid.h Version: 01.05.03
  10. *
  11. * Version History
  12. * ---------------
  13. *
  14. * Date Version Description
  15. * -------- -------- ------------------------------------------------------
  16. * 02-27-01 01.01.01 Original release for this file.
  17. * 03-27-01 01.01.02 Added structure offset comments.
  18. * 08-08-01 01.02.01 Original release for v1.2 work.
  19. * 09-28-01 01.02.02 Major rework for MPI v1.2 Integrated RAID changes.
  20. * 10-04-01 01.02.03 Added ActionData defines for
  21. * MPI_RAID_ACTION_DELETE_VOLUME action.
  22. * 11-01-01 01.02.04 Added define for MPI_RAID_ACTION_ADATA_DO_NOT_SYNC.
  23. * 03-14-02 01.02.05 Added define for MPI_RAID_ACTION_ADATA_LOW_LEVEL_INIT.
  24. * 05-07-02 01.02.06 Added define for MPI_RAID_ACTION_ACTIVATE_VOLUME,
  25. * MPI_RAID_ACTION_INACTIVATE_VOLUME, and
  26. * MPI_RAID_ACTION_ADATA_INACTIVATE_ALL.
  27. * 07-12-02 01.02.07 Added structures for Mailbox request and reply.
  28. * 11-15-02 01.02.08 Added missing MsgContext field to MSG_MAILBOX_REQUEST.
  29. * 04-01-03 01.02.09 New action data option flag for
  30. * MPI_RAID_ACTION_DELETE_VOLUME.
  31. * 05-11-04 01.03.01 Original release for MPI v1.3.
  32. * 08-19-04 01.05.01 Original release for MPI v1.5.
  33. * 01-15-05 01.05.02 Added defines for the two new RAID Actions for
  34. * _SET_RESYNC_RATE and _SET_DATA_SCRUB_RATE.
  35. * 02-28-07 01.05.03 Added new RAID Action, Device FW Update Mode, and
  36. * associated defines.
  37. * --------------------------------------------------------------------------
  38. */
  39. #ifndef MPI_RAID_H
  40. #define MPI_RAID_H
  41. /******************************************************************************
  42. *
  43. * R A I D M e s s a g e s
  44. *
  45. *******************************************************************************/
  46. /****************************************************************************/
  47. /* RAID Action Request */
  48. /****************************************************************************/
  49. typedef struct _MSG_RAID_ACTION
  50. {
  51. U8 Action; /* 00h */
  52. U8 Reserved1; /* 01h */
  53. U8 ChainOffset; /* 02h */
  54. U8 Function; /* 03h */
  55. U8 VolumeID; /* 04h */
  56. U8 VolumeBus; /* 05h */
  57. U8 PhysDiskNum; /* 06h */
  58. U8 MsgFlags; /* 07h */
  59. U32 MsgContext; /* 08h */
  60. U32 Reserved2; /* 0Ch */
  61. U32 ActionDataWord; /* 10h */
  62. SGE_SIMPLE_UNION ActionDataSGE; /* 14h */
  63. } MSG_RAID_ACTION_REQUEST, MPI_POINTER PTR_MSG_RAID_ACTION_REQUEST,
  64. MpiRaidActionRequest_t , MPI_POINTER pMpiRaidActionRequest_t;
  65. /* RAID Action request Action values */
  66. #define MPI_RAID_ACTION_STATUS (0x00)
  67. #define MPI_RAID_ACTION_INDICATOR_STRUCT (0x01)
  68. #define MPI_RAID_ACTION_CREATE_VOLUME (0x02)
  69. #define MPI_RAID_ACTION_DELETE_VOLUME (0x03)
  70. #define MPI_RAID_ACTION_DISABLE_VOLUME (0x04)
  71. #define MPI_RAID_ACTION_ENABLE_VOLUME (0x05)
  72. #define MPI_RAID_ACTION_QUIESCE_PHYS_IO (0x06)
  73. #define MPI_RAID_ACTION_ENABLE_PHYS_IO (0x07)
  74. #define MPI_RAID_ACTION_CHANGE_VOLUME_SETTINGS (0x08)
  75. #define MPI_RAID_ACTION_PHYSDISK_OFFLINE (0x0A)
  76. #define MPI_RAID_ACTION_PHYSDISK_ONLINE (0x0B)
  77. #define MPI_RAID_ACTION_CHANGE_PHYSDISK_SETTINGS (0x0C)
  78. #define MPI_RAID_ACTION_CREATE_PHYSDISK (0x0D)
  79. #define MPI_RAID_ACTION_DELETE_PHYSDISK (0x0E)
  80. #define MPI_RAID_ACTION_FAIL_PHYSDISK (0x0F)
  81. #define MPI_RAID_ACTION_REPLACE_PHYSDISK (0x10)
  82. #define MPI_RAID_ACTION_ACTIVATE_VOLUME (0x11)
  83. #define MPI_RAID_ACTION_INACTIVATE_VOLUME (0x12)
  84. #define MPI_RAID_ACTION_SET_RESYNC_RATE (0x13)
  85. #define MPI_RAID_ACTION_SET_DATA_SCRUB_RATE (0x14)
  86. #define MPI_RAID_ACTION_DEVICE_FW_UPDATE_MODE (0x15)
  87. /* ActionDataWord defines for use with MPI_RAID_ACTION_CREATE_VOLUME action */
  88. #define MPI_RAID_ACTION_ADATA_DO_NOT_SYNC (0x00000001)
  89. #define MPI_RAID_ACTION_ADATA_LOW_LEVEL_INIT (0x00000002)
  90. /* ActionDataWord defines for use with MPI_RAID_ACTION_DELETE_VOLUME action */
  91. #define MPI_RAID_ACTION_ADATA_KEEP_PHYS_DISKS (0x00000000)
  92. #define MPI_RAID_ACTION_ADATA_DEL_PHYS_DISKS (0x00000001)
  93. #define MPI_RAID_ACTION_ADATA_KEEP_LBA0 (0x00000000)
  94. #define MPI_RAID_ACTION_ADATA_ZERO_LBA0 (0x00000002)
  95. /* ActionDataWord defines for use with MPI_RAID_ACTION_ACTIVATE_VOLUME action */
  96. #define MPI_RAID_ACTION_ADATA_INACTIVATE_ALL (0x00000001)
  97. /* ActionDataWord defines for use with MPI_RAID_ACTION_SET_RESYNC_RATE action */
  98. #define MPI_RAID_ACTION_ADATA_RESYNC_RATE_MASK (0x000000FF)
  99. /* ActionDataWord defines for use with MPI_RAID_ACTION_SET_DATA_SCRUB_RATE action */
  100. #define MPI_RAID_ACTION_ADATA_DATA_SCRUB_RATE_MASK (0x000000FF)
  101. /* ActionDataWord defines for use with MPI_RAID_ACTION_DEVICE_FW_UPDATE_MODE action */
  102. #define MPI_RAID_ACTION_ADATA_ENABLE_FW_UPDATE (0x00000001)
  103. #define MPI_RAID_ACTION_ADATA_MASK_FW_UPDATE_TIMEOUT (0x0000FF00)
  104. #define MPI_RAID_ACTION_ADATA_SHIFT_FW_UPDATE_TIMEOUT (8)
  105. /* RAID Action reply message */
  106. typedef struct _MSG_RAID_ACTION_REPLY
  107. {
  108. U8 Action; /* 00h */
  109. U8 Reserved; /* 01h */
  110. U8 MsgLength; /* 02h */
  111. U8 Function; /* 03h */
  112. U8 VolumeID; /* 04h */
  113. U8 VolumeBus; /* 05h */
  114. U8 PhysDiskNum; /* 06h */
  115. U8 MsgFlags; /* 07h */
  116. U32 MsgContext; /* 08h */
  117. U16 ActionStatus; /* 0Ch */
  118. U16 IOCStatus; /* 0Eh */
  119. U32 IOCLogInfo; /* 10h */
  120. U32 VolumeStatus; /* 14h */
  121. U32 ActionData; /* 18h */
  122. } MSG_RAID_ACTION_REPLY, MPI_POINTER PTR_MSG_RAID_ACTION_REPLY,
  123. MpiRaidActionReply_t, MPI_POINTER pMpiRaidActionReply_t;
  124. /* RAID Volume reply ActionStatus values */
  125. #define MPI_RAID_ACTION_ASTATUS_SUCCESS (0x0000)
  126. #define MPI_RAID_ACTION_ASTATUS_INVALID_ACTION (0x0001)
  127. #define MPI_RAID_ACTION_ASTATUS_FAILURE (0x0002)
  128. #define MPI_RAID_ACTION_ASTATUS_IN_PROGRESS (0x0003)
  129. /* RAID Volume reply RAID Volume Indicator structure */
  130. typedef struct _MPI_RAID_VOL_INDICATOR
  131. {
  132. U64 TotalBlocks; /* 00h */
  133. U64 BlocksRemaining; /* 08h */
  134. } MPI_RAID_VOL_INDICATOR, MPI_POINTER PTR_MPI_RAID_VOL_INDICATOR,
  135. MpiRaidVolIndicator_t, MPI_POINTER pMpiRaidVolIndicator_t;
  136. /****************************************************************************/
  137. /* SCSI IO RAID Passthrough Request */
  138. /****************************************************************************/
  139. typedef struct _MSG_SCSI_IO_RAID_PT_REQUEST
  140. {
  141. U8 PhysDiskNum; /* 00h */
  142. U8 Reserved1; /* 01h */
  143. U8 ChainOffset; /* 02h */
  144. U8 Function; /* 03h */
  145. U8 CDBLength; /* 04h */
  146. U8 SenseBufferLength; /* 05h */
  147. U8 Reserved2; /* 06h */
  148. U8 MsgFlags; /* 07h */
  149. U32 MsgContext; /* 08h */
  150. U8 LUN[8]; /* 0Ch */
  151. U32 Control; /* 14h */
  152. U8 CDB[16]; /* 18h */
  153. U32 DataLength; /* 28h */
  154. U32 SenseBufferLowAddr; /* 2Ch */
  155. SGE_IO_UNION SGL; /* 30h */
  156. } MSG_SCSI_IO_RAID_PT_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REQUEST,
  157. SCSIIORaidPassthroughRequest_t, MPI_POINTER pSCSIIORaidPassthroughRequest_t;
  158. /* SCSI IO RAID Passthrough reply structure */
  159. typedef struct _MSG_SCSI_IO_RAID_PT_REPLY
  160. {
  161. U8 PhysDiskNum; /* 00h */
  162. U8 Reserved1; /* 01h */
  163. U8 MsgLength; /* 02h */
  164. U8 Function; /* 03h */
  165. U8 CDBLength; /* 04h */
  166. U8 SenseBufferLength; /* 05h */
  167. U8 Reserved2; /* 06h */
  168. U8 MsgFlags; /* 07h */
  169. U32 MsgContext; /* 08h */
  170. U8 SCSIStatus; /* 0Ch */
  171. U8 SCSIState; /* 0Dh */
  172. U16 IOCStatus; /* 0Eh */
  173. U32 IOCLogInfo; /* 10h */
  174. U32 TransferCount; /* 14h */
  175. U32 SenseCount; /* 18h */
  176. U32 ResponseInfo; /* 1Ch */
  177. } MSG_SCSI_IO_RAID_PT_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REPLY,
  178. SCSIIORaidPassthroughReply_t, MPI_POINTER pSCSIIORaidPassthroughReply_t;
  179. /****************************************************************************/
  180. /* Mailbox reqeust structure */
  181. /****************************************************************************/
  182. typedef struct _MSG_MAILBOX_REQUEST
  183. {
  184. U16 Reserved1;
  185. U8 ChainOffset;
  186. U8 Function;
  187. U16 Reserved2;
  188. U8 Reserved3;
  189. U8 MsgFlags;
  190. U32 MsgContext;
  191. U8 Command[10];
  192. U16 Reserved4;
  193. SGE_IO_UNION SGL;
  194. } MSG_MAILBOX_REQUEST, MPI_POINTER PTR_MSG_MAILBOX_REQUEST,
  195. MailboxRequest_t, MPI_POINTER pMailboxRequest_t;
  196. /* Mailbox reply structure */
  197. typedef struct _MSG_MAILBOX_REPLY
  198. {
  199. U16 Reserved1; /* 00h */
  200. U8 MsgLength; /* 02h */
  201. U8 Function; /* 03h */
  202. U16 Reserved2; /* 04h */
  203. U8 Reserved3; /* 06h */
  204. U8 MsgFlags; /* 07h */
  205. U32 MsgContext; /* 08h */
  206. U16 MailboxStatus; /* 0Ch */
  207. U16 IOCStatus; /* 0Eh */
  208. U32 IOCLogInfo; /* 10h */
  209. U32 Reserved4; /* 14h */
  210. } MSG_MAILBOX_REPLY, MPI_POINTER PTR_MSG_MAILBOX_REPLY,
  211. MailboxReply_t, MPI_POINTER pMailboxReply_t;
  212. #endif