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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Copyright (c) 2000-2001 LSI Logic Corporation.
  3.  *
  4.  *
  5.  *           Name:  MPI_INIT.H
  6.  *          Title:  MPI initiator mode messages and structures
  7.  *  Creation Date:  June 8, 2000
  8.  *
  9.  *    MPI Version:  01.01.05
  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 SenseBufferLength to _MSG_SCSI_IO_REPLY.
  18.  *  06-06-00  01.00.01  Update version number for 1.0 release.
  19.  *  06-08-00  01.00.02  Added MPI_SCSI_RSP_INFO_ definitions.
  20.  *  11-02-00  01.01.01  Original release for post 1.0 work.
  21.  *  12-04-00  01.01.02  Added MPI_SCSIIO_CONTROL_NO_DISCONNECT.
  22.  *  02-20-01  01.01.03  Started using MPI_POINTER.
  23.  *  03-27-01  01.01.04  Added structure offset comments.
  24.  *  04-10-01  01.01.05  Added new MsgFlag for MSG_SCSI_TASK_MGMT.
  25.  *  --------------------------------------------------------------------------
  26.  */
  27. #ifndef MPI_INIT_H
  28. #define MPI_INIT_H
  29. /*****************************************************************************
  30. *
  31. *               S C S I    I n i t i a t o r    M e s s a g e s
  32. *
  33. *****************************************************************************/
  34. /****************************************************************************/
  35. /*  SCSI IO messages and assocaited structures                              */
  36. /****************************************************************************/
  37. typedef struct _MSG_SCSI_IO_REQUEST
  38. {
  39.     U8                      TargetID;           /* 00h */
  40.     U8                      Bus;                /* 01h */
  41.     U8                      ChainOffset;        /* 02h */
  42.     U8                      Function;           /* 03h */
  43.     U8                      CDBLength;          /* 04h */
  44.     U8                      SenseBufferLength;  /* 05h */
  45.     U8                      Reserved;           /* 06h */
  46.     U8                      MsgFlags;           /* 07h */
  47.     U32                     MsgContext;         /* 08h */
  48.     U8                      LUN[8];             /* 0Ch */
  49.     U32                     Control;            /* 14h */
  50.     U8                      CDB[16];            /* 18h */
  51.     U32                     DataLength;         /* 28h */
  52.     U32                     SenseBufferLowAddr; /* 2Ch */
  53.     SGE_IO_UNION            SGL;                /* 30h */
  54. } MSG_SCSI_IO_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_REQUEST,
  55.   SCSIIORequest_t, MPI_POINTER pSCSIIORequest_t;
  56. /* SCSIO MsgFlags bits */
  57. #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH          (0x01)
  58. #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_32       (0x00)
  59. #define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_64       (0x01)
  60. #define MPI_SCSIIO_MSGFLGS_SENSE_LOCATION       (0x02)
  61. #define MPI_SCSIIO_MSGFLGS_SENSE_LOC_HOST       (0x00)
  62. #define MPI_SCSIIO_MSGFLGS_SENSE_LOC_IOC        (0x02)
  63. /* SCSIIO LUN fields */
  64. #define MPI_SCSIIO_LUN_FIRST_LEVEL_ADDRESSING   (0x0000FFFF)
  65. #define MPI_SCSIIO_LUN_SECOND_LEVEL_ADDRESSING  (0xFFFF0000)
  66. #define MPI_SCSIIO_LUN_THIRD_LEVEL_ADDRESSING   (0x0000FFFF)
  67. #define MPI_SCSIIO_LUN_FOURTH_LEVEL_ADDRESSING  (0xFFFF0000)
  68. #define MPI_SCSIIO_LUN_LEVEL_1_WORD             (0xFF00)
  69. #define MPI_SCSIIO_LUN_LEVEL_1_DWORD            (0x0000FF00)
  70. /* SCSIO Control bits */
  71. #define MPI_SCSIIO_CONTROL_DATADIRECTION_MASK   (0x03000000)
  72. #define MPI_SCSIIO_CONTROL_NODATATRANSFER       (0x00000000)
  73. #define MPI_SCSIIO_CONTROL_WRITE                (0x01000000)
  74. #define MPI_SCSIIO_CONTROL_READ                 (0x02000000)
  75. #define MPI_SCSIIO_CONTROL_ADDCDBLEN_MASK       (0x3C000000)
  76. #define MPI_SCSIIO_CONTROL_ADDCDBLEN_SHIFT      (26)
  77. #define MPI_SCSIIO_CONTROL_TASKATTRIBUTE_MASK   (0x00000700)
  78. #define MPI_SCSIIO_CONTROL_SIMPLEQ              (0x00000000)
  79. #define MPI_SCSIIO_CONTROL_HEADOFQ              (0x00000100)
  80. #define MPI_SCSIIO_CONTROL_ORDEREDQ             (0x00000200)
  81. #define MPI_SCSIIO_CONTROL_ACAQ                 (0x00000400)
  82. #define MPI_SCSIIO_CONTROL_UNTAGGED             (0x00000500)
  83. #define MPI_SCSIIO_CONTROL_NO_DISCONNECT        (0x00000700)
  84. #define MPI_SCSIIO_CONTROL_TASKMANAGE_MASK      (0x00FF0000)
  85. #define MPI_SCSIIO_CONTROL_OBSOLETE             (0x00800000)
  86. #define MPI_SCSIIO_CONTROL_CLEAR_ACA_RSV        (0x00400000)
  87. #define MPI_SCSIIO_CONTROL_TARGET_RESET         (0x00200000)
  88. #define MPI_SCSIIO_CONTROL_LUN_RESET_RSV        (0x00100000)
  89. #define MPI_SCSIIO_CONTROL_RESERVED             (0x00080000)
  90. #define MPI_SCSIIO_CONTROL_CLR_TASK_SET_RSV     (0x00040000)
  91. #define MPI_SCSIIO_CONTROL_ABORT_TASK_SET       (0x00020000)
  92. #define MPI_SCSIIO_CONTROL_RESERVED2            (0x00010000)
  93. /* SCSIIO reply structure */
  94. typedef struct _MSG_SCSI_IO_REPLY
  95. {
  96.     U8                      TargetID;           /* 00h */
  97.     U8                      Bus;                /* 01h */
  98.     U8                      MsgLength;          /* 02h */
  99.     U8                      Function;           /* 03h */
  100.     U8                      CDBLength;          /* 04h */
  101.     U8                      SenseBufferLength;  /* 05h */
  102.     U8                      Reserved;           /* 06h */
  103.     U8                      MsgFlags;           /* 07h */
  104.     U32                     MsgContext;         /* 08h */
  105.     U8                      SCSIStatus;         /* 0Ch */
  106.     U8                      SCSIState;          /* 0Dh */
  107.     U16                     IOCStatus;          /* 0Eh */
  108.     U32                     IOCLogInfo;         /* 10h */
  109.     U32                     TransferCount;      /* 14h */
  110.     U32                     SenseCount;         /* 18h */
  111.     U32                     ResponseInfo;       /* 1Ch */
  112. } MSG_SCSI_IO_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_REPLY,
  113.   SCSIIOReply_t, MPI_POINTER pSCSIIOReply_t;
  114. /* SCSIIO Reply SCSIStatus values (SAM-2 status codes) */
  115. #define MPI_SCSI_STATUS_SUCCESS                 (0x00)
  116. #define MPI_SCSI_STATUS_CHECK_CONDITION         (0x02)
  117. #define MPI_SCSI_STATUS_CONDITION_MET           (0x04)
  118. #define MPI_SCSI_STATUS_BUSY                    (0x08)
  119. #define MPI_SCSI_STATUS_INTERMEDIATE            (0x10)
  120. #define MPI_SCSI_STATUS_INTERMEDIATE_CONDMET    (0x14)
  121. #define MPI_SCSI_STATUS_RESERVATION_CONFLICT    (0x18)
  122. #define MPI_SCSI_STATUS_COMMAND_TERMINATED      (0x22)
  123. #define MPI_SCSI_STATUS_TASK_SET_FULL           (0x28)
  124. #define MPI_SCSI_STATUS_ACA_ACTIVE              (0x30)
  125. /* SCSIIO Reply SCSIState values */
  126. #define MPI_SCSI_STATE_AUTOSENSE_VALID          (0x01)
  127. #define MPI_SCSI_STATE_AUTOSENSE_FAILED         (0x02)
  128. #define MPI_SCSI_STATE_NO_SCSI_STATUS           (0x04)
  129. #define MPI_SCSI_STATE_TERMINATED               (0x08)
  130. #define MPI_SCSI_STATE_RESPONSE_INFO_VALID      (0x10)
  131. /* SCSIIO Reply ResponseInfo values */
  132. /* (FCP-1 RSP_CODE values and SPI-3 Packetized Failure codes) */
  133. #define MPI_SCSI_RSP_INFO_FUNCTION_COMPLETE     (0x00000000)
  134. #define MPI_SCSI_RSP_INFO_FCP_BURST_LEN_ERROR   (0x01000000)
  135. #define MPI_SCSI_RSP_INFO_CMND_FIELDS_INVALID   (0x02000000)
  136. #define MPI_SCSI_RSP_INFO_FCP_DATA_RO_ERROR     (0x03000000)
  137. #define MPI_SCSI_RSP_INFO_TASK_MGMT_UNSUPPORTED (0x04000000)
  138. #define MPI_SCSI_RSP_INFO_TASK_MGMT_FAILED      (0x05000000)
  139. #define MPI_SCSI_RSP_INFO_SPI_LQ_INVALID_TYPE   (0x06000000)
  140. /****************************************************************************/
  141. /*  SCSI Task Management messages                                           */
  142. /****************************************************************************/
  143. typedef struct _MSG_SCSI_TASK_MGMT
  144. {
  145.     U8                      TargetID;           /* 00h */
  146.     U8                      Bus;                /* 01h */
  147.     U8                      ChainOffset;        /* 02h */
  148.     U8                      Function;           /* 03h */
  149.     U8                      Reserved;           /* 04h */
  150.     U8                      TaskType;           /* 05h */
  151.     U8                      Reserved1;          /* 06h */
  152.     U8                      MsgFlags;           /* 07h */
  153.     U32                     MsgContext;         /* 08h */
  154.     U8                      LUN[8];             /* 0Ch */
  155.     U32                     Reserved2[7];       /* 14h */
  156.     U32                     TaskMsgContext;     /* 30h */
  157. } MSG_SCSI_TASK_MGMT, MPI_POINTER PTR_SCSI_TASK_MGMT,
  158.   SCSITaskMgmt_t, MPI_POINTER pSCSITaskMgmt_t;
  159. /* TaskType values */
  160. #define MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK            (0x01)
  161. #define MPI_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET         (0x02)
  162. #define MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET          (0x03)
  163. #define MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS             (0x04)
  164. /* MsgFlags bits */
  165. #define MPI_SCSITASKMGMT_MSGFLAGS_TARGET_RESET_OPTION   (0x00)
  166. #define MPI_SCSITASKMGMT_MSGFLAGS_LIP_RESET_OPTION      (0x02)
  167. #define MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION (0x04)
  168. /* SCSI Task Management Reply */
  169. typedef struct _MSG_SCSI_TASK_MGMT_REPLY
  170. {
  171.     U8                      TargetID;           /* 00h */
  172.     U8                      Bus;                /* 01h */
  173.     U8                      MsgLength;          /* 02h */
  174.     U8                      Function;           /* 03h */
  175.     U8                      Reserved;           /* 04h */
  176.     U8                      TaskType;           /* 05h */
  177.     U8                      Reserved1;          /* 06h */
  178.     U8                      MsgFlags;           /* 07h */
  179.     U32                     MsgContext;         /* 08h */
  180.     U8                      Reserved2[2];       /* 0Ch */
  181.     U16                     IOCStatus;          /* 0Eh */
  182.     U32                     IOCLogInfo;         /* 10h */
  183.     U32                     TerminationCount;   /* 14h */
  184. } MSG_SCSI_TASK_MGMT_REPLY, MPI_POINTER PTR_MSG_SCSI_TASK_MGMT_REPLY,
  185.   SCSITaskMgmtReply_t, MPI_POINTER pSCSITaskMgmtReply_t;
  186. #endif