mpi_raid.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /*
  2. * Copyright (c) 2001-2005 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.02
  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. * --------------------------------------------------------------------------
  36. */
  37. #ifndef MPI_RAID_H
  38. #define MPI_RAID_H
  39. /******************************************************************************
  40. *
  41. * R A I D M e s s a g e s
  42. *
  43. *******************************************************************************/
  44. /****************************************************************************/
  45. /* RAID Action Request */
  46. /****************************************************************************/
  47. typedef struct _MSG_RAID_ACTION
  48. {
  49. U8 Action; /* 00h */
  50. U8 Reserved1; /* 01h */
  51. U8 ChainOffset; /* 02h */
  52. U8 Function; /* 03h */
  53. U8 VolumeID; /* 04h */
  54. U8 VolumeBus; /* 05h */
  55. U8 PhysDiskNum; /* 06h */
  56. U8 MsgFlags; /* 07h */
  57. U32 MsgContext; /* 08h */
  58. U32 Reserved2; /* 0Ch */
  59. U32 ActionDataWord; /* 10h */
  60. SGE_SIMPLE_UNION ActionDataSGE; /* 14h */
  61. } MSG_RAID_ACTION_REQUEST, MPI_POINTER PTR_MSG_RAID_ACTION_REQUEST,
  62. MpiRaidActionRequest_t , MPI_POINTER pMpiRaidActionRequest_t;
  63. /* RAID Action request Action values */
  64. #define MPI_RAID_ACTION_STATUS (0x00)
  65. #define MPI_RAID_ACTION_INDICATOR_STRUCT (0x01)
  66. #define MPI_RAID_ACTION_CREATE_VOLUME (0x02)
  67. #define MPI_RAID_ACTION_DELETE_VOLUME (0x03)
  68. #define MPI_RAID_ACTION_DISABLE_VOLUME (0x04)
  69. #define MPI_RAID_ACTION_ENABLE_VOLUME (0x05)
  70. #define MPI_RAID_ACTION_QUIESCE_PHYS_IO (0x06)
  71. #define MPI_RAID_ACTION_ENABLE_PHYS_IO (0x07)
  72. #define MPI_RAID_ACTION_CHANGE_VOLUME_SETTINGS (0x08)
  73. #define MPI_RAID_ACTION_PHYSDISK_OFFLINE (0x0A)
  74. #define MPI_RAID_ACTION_PHYSDISK_ONLINE (0x0B)
  75. #define MPI_RAID_ACTION_CHANGE_PHYSDISK_SETTINGS (0x0C)
  76. #define MPI_RAID_ACTION_CREATE_PHYSDISK (0x0D)
  77. #define MPI_RAID_ACTION_DELETE_PHYSDISK (0x0E)
  78. #define MPI_RAID_ACTION_FAIL_PHYSDISK (0x0F)
  79. #define MPI_RAID_ACTION_REPLACE_PHYSDISK (0x10)
  80. #define MPI_RAID_ACTION_ACTIVATE_VOLUME (0x11)
  81. #define MPI_RAID_ACTION_INACTIVATE_VOLUME (0x12)
  82. #define MPI_RAID_ACTION_SET_RESYNC_RATE (0x13)
  83. #define MPI_RAID_ACTION_SET_DATA_SCRUB_RATE (0x14)
  84. /* ActionDataWord defines for use with MPI_RAID_ACTION_CREATE_VOLUME action */
  85. #define MPI_RAID_ACTION_ADATA_DO_NOT_SYNC (0x00000001)
  86. #define MPI_RAID_ACTION_ADATA_LOW_LEVEL_INIT (0x00000002)
  87. /* ActionDataWord defines for use with MPI_RAID_ACTION_DELETE_VOLUME action */
  88. #define MPI_RAID_ACTION_ADATA_KEEP_PHYS_DISKS (0x00000000)
  89. #define MPI_RAID_ACTION_ADATA_DEL_PHYS_DISKS (0x00000001)
  90. #define MPI_RAID_ACTION_ADATA_KEEP_LBA0 (0x00000000)
  91. #define MPI_RAID_ACTION_ADATA_ZERO_LBA0 (0x00000002)
  92. /* ActionDataWord defines for use with MPI_RAID_ACTION_ACTIVATE_VOLUME action */
  93. #define MPI_RAID_ACTION_ADATA_INACTIVATE_ALL (0x00000001)
  94. /* ActionDataWord defines for use with MPI_RAID_ACTION_SET_RESYNC_RATE action */
  95. #define MPI_RAID_ACTION_ADATA_RESYNC_RATE_MASK (0x000000FF)
  96. /* ActionDataWord defines for use with MPI_RAID_ACTION_SET_DATA_SCRUB_RATE action */
  97. #define MPI_RAID_ACTION_ADATA_DATA_SCRUB_RATE_MASK (0x000000FF)
  98. /* RAID Action reply message */
  99. typedef struct _MSG_RAID_ACTION_REPLY
  100. {
  101. U8 Action; /* 00h */
  102. U8 Reserved; /* 01h */
  103. U8 MsgLength; /* 02h */
  104. U8 Function; /* 03h */
  105. U8 VolumeID; /* 04h */
  106. U8 VolumeBus; /* 05h */
  107. U8 PhysDiskNum; /* 06h */
  108. U8 MsgFlags; /* 07h */
  109. U32 MsgContext; /* 08h */
  110. U16 ActionStatus; /* 0Ch */
  111. U16 IOCStatus; /* 0Eh */
  112. U32 IOCLogInfo; /* 10h */
  113. U32 VolumeStatus; /* 14h */
  114. U32 ActionData; /* 18h */
  115. } MSG_RAID_ACTION_REPLY, MPI_POINTER PTR_MSG_RAID_ACTION_REPLY,
  116. MpiRaidActionReply_t, MPI_POINTER pMpiRaidActionReply_t;
  117. /* RAID Volume reply ActionStatus values */
  118. #define MPI_RAID_ACTION_ASTATUS_SUCCESS (0x0000)
  119. #define MPI_RAID_ACTION_ASTATUS_INVALID_ACTION (0x0001)
  120. #define MPI_RAID_ACTION_ASTATUS_FAILURE (0x0002)
  121. #define MPI_RAID_ACTION_ASTATUS_IN_PROGRESS (0x0003)
  122. /* RAID Volume reply RAID Volume Indicator structure */
  123. typedef struct _MPI_RAID_VOL_INDICATOR
  124. {
  125. U64 TotalBlocks; /* 00h */
  126. U64 BlocksRemaining; /* 08h */
  127. } MPI_RAID_VOL_INDICATOR, MPI_POINTER PTR_MPI_RAID_VOL_INDICATOR,
  128. MpiRaidVolIndicator_t, MPI_POINTER pMpiRaidVolIndicator_t;
  129. /****************************************************************************/
  130. /* SCSI IO RAID Passthrough Request */
  131. /****************************************************************************/
  132. typedef struct _MSG_SCSI_IO_RAID_PT_REQUEST
  133. {
  134. U8 PhysDiskNum; /* 00h */
  135. U8 Reserved1; /* 01h */
  136. U8 ChainOffset; /* 02h */
  137. U8 Function; /* 03h */
  138. U8 CDBLength; /* 04h */
  139. U8 SenseBufferLength; /* 05h */
  140. U8 Reserved2; /* 06h */
  141. U8 MsgFlags; /* 07h */
  142. U32 MsgContext; /* 08h */
  143. U8 LUN[8]; /* 0Ch */
  144. U32 Control; /* 14h */
  145. U8 CDB[16]; /* 18h */
  146. U32 DataLength; /* 28h */
  147. U32 SenseBufferLowAddr; /* 2Ch */
  148. SGE_IO_UNION SGL; /* 30h */
  149. } MSG_SCSI_IO_RAID_PT_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REQUEST,
  150. SCSIIORaidPassthroughRequest_t, MPI_POINTER pSCSIIORaidPassthroughRequest_t;
  151. /* SCSI IO RAID Passthrough reply structure */
  152. typedef struct _MSG_SCSI_IO_RAID_PT_REPLY
  153. {
  154. U8 PhysDiskNum; /* 00h */
  155. U8 Reserved1; /* 01h */
  156. U8 MsgLength; /* 02h */
  157. U8 Function; /* 03h */
  158. U8 CDBLength; /* 04h */
  159. U8 SenseBufferLength; /* 05h */
  160. U8 Reserved2; /* 06h */
  161. U8 MsgFlags; /* 07h */
  162. U32 MsgContext; /* 08h */
  163. U8 SCSIStatus; /* 0Ch */
  164. U8 SCSIState; /* 0Dh */
  165. U16 IOCStatus; /* 0Eh */
  166. U32 IOCLogInfo; /* 10h */
  167. U32 TransferCount; /* 14h */
  168. U32 SenseCount; /* 18h */
  169. U32 ResponseInfo; /* 1Ch */
  170. } MSG_SCSI_IO_RAID_PT_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REPLY,
  171. SCSIIORaidPassthroughReply_t, MPI_POINTER pSCSIIORaidPassthroughReply_t;
  172. /****************************************************************************/
  173. /* Mailbox reqeust structure */
  174. /****************************************************************************/
  175. typedef struct _MSG_MAILBOX_REQUEST
  176. {
  177. U16 Reserved1;
  178. U8 ChainOffset;
  179. U8 Function;
  180. U16 Reserved2;
  181. U8 Reserved3;
  182. U8 MsgFlags;
  183. U32 MsgContext;
  184. U8 Command[10];
  185. U16 Reserved4;
  186. SGE_IO_UNION SGL;
  187. } MSG_MAILBOX_REQUEST, MPI_POINTER PTR_MSG_MAILBOX_REQUEST,
  188. MailboxRequest_t, MPI_POINTER pMailboxRequest_t;
  189. /* Mailbox reply structure */
  190. typedef struct _MSG_MAILBOX_REPLY
  191. {
  192. U16 Reserved1; /* 00h */
  193. U8 MsgLength; /* 02h */
  194. U8 Function; /* 03h */
  195. U16 Reserved2; /* 04h */
  196. U8 Reserved3; /* 06h */
  197. U8 MsgFlags; /* 07h */
  198. U32 MsgContext; /* 08h */
  199. U16 MailboxStatus; /* 0Ch */
  200. U16 IOCStatus; /* 0Eh */
  201. U32 IOCLogInfo; /* 10h */
  202. U32 Reserved4; /* 14h */
  203. } MSG_MAILBOX_REPLY, MPI_POINTER PTR_MSG_MAILBOX_REPLY,
  204. MailboxReply_t, MPI_POINTER pMailboxReply_t;
  205. #endif