scsi.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_SCSI_H
  2. #define _LINUX_SCSI_H
  3. /*
  4.  * This header file contains public constants and structures used by
  5.  * the scsi code for linux.
  6.  */
  7. /*
  8.     $Header: /usr/src/linux/include/linux/RCS/scsi.h,v 1.3 1993/09/24 12:20:33 drew Exp $
  9.     For documentation on the OPCODES, MESSAGES, and SENSE values,
  10.     please consult the SCSI standard.
  11. */
  12. /*
  13.  *      SCSI opcodes
  14.  */
  15. #define TEST_UNIT_READY       0x00
  16. #define REZERO_UNIT           0x01
  17. #define REQUEST_SENSE         0x03
  18. #define FORMAT_UNIT           0x04
  19. #define READ_BLOCK_LIMITS     0x05
  20. #define REASSIGN_BLOCKS       0x07
  21. #define READ_6                0x08
  22. #define WRITE_6               0x0a
  23. #define SEEK_6                0x0b
  24. #define READ_REVERSE          0x0f
  25. #define WRITE_FILEMARKS       0x10
  26. #define SPACE                 0x11
  27. #define INQUIRY               0x12
  28. #define RECOVER_BUFFERED_DATA 0x14
  29. #define MODE_SELECT           0x15
  30. #define RESERVE               0x16
  31. #define RELEASE               0x17
  32. #define COPY                  0x18
  33. #define ERASE                 0x19
  34. #define MODE_SENSE            0x1a
  35. #define START_STOP            0x1b
  36. #define RECEIVE_DIAGNOSTIC    0x1c
  37. #define SEND_DIAGNOSTIC       0x1d
  38. #define ALLOW_MEDIUM_REMOVAL  0x1e
  39. #define SET_WINDOW            0x24
  40. #define READ_CAPACITY         0x25
  41. #define READ_10               0x28
  42. #define WRITE_10              0x2a
  43. #define SEEK_10               0x2b
  44. #define WRITE_VERIFY          0x2e
  45. #define VERIFY                0x2f
  46. #define SEARCH_HIGH           0x30
  47. #define SEARCH_EQUAL          0x31
  48. #define SEARCH_LOW            0x32
  49. #define SET_LIMITS            0x33
  50. #define PRE_FETCH             0x34
  51. #define READ_POSITION         0x34
  52. #define SYNCHRONIZE_CACHE     0x35
  53. #define LOCK_UNLOCK_CACHE     0x36
  54. #define READ_DEFECT_DATA      0x37
  55. #define MEDIUM_SCAN           0x38
  56. #define COMPARE               0x39
  57. #define COPY_VERIFY           0x3a
  58. #define WRITE_BUFFER          0x3b
  59. #define READ_BUFFER           0x3c
  60. #define UPDATE_BLOCK          0x3d
  61. #define READ_LONG             0x3e
  62. #define WRITE_LONG            0x3f
  63. #define CHANGE_DEFINITION     0x40
  64. #define WRITE_SAME            0x41
  65. #define READ_TOC              0x43
  66. #define LOG_SELECT            0x4c
  67. #define LOG_SENSE             0x4d
  68. #define MODE_SELECT_10        0x55
  69. #define RESERVE_10            0x56
  70. #define RELEASE_10            0x57
  71. #define MODE_SENSE_10         0x5a
  72. #define PERSISTENT_RESERVE_IN 0x5e
  73. #define PERSISTENT_RESERVE_OUT 0x5f
  74. #define MOVE_MEDIUM           0xa5
  75. #define READ_12               0xa8
  76. #define WRITE_12              0xaa
  77. #define WRITE_VERIFY_12       0xae
  78. #define SEARCH_HIGH_12        0xb0
  79. #define SEARCH_EQUAL_12       0xb1
  80. #define SEARCH_LOW_12         0xb2
  81. #define READ_ELEMENT_STATUS   0xb8
  82. #define SEND_VOLUME_TAG       0xb6
  83. #define WRITE_LONG_2          0xea
  84. #define SCSI_RETRY_10(c) ((c) == READ_6 || (c) == WRITE_6 || (c) == SEEK_6)
  85. /*
  86.  *  Status codes
  87.  */
  88. #define GOOD                 0x00
  89. #define CHECK_CONDITION      0x01
  90. #define CONDITION_GOOD       0x02
  91. #define BUSY                 0x04
  92. #define INTERMEDIATE_GOOD    0x08
  93. #define INTERMEDIATE_C_GOOD  0x0a
  94. #define RESERVATION_CONFLICT 0x0c
  95. #define COMMAND_TERMINATED   0x11
  96. #define QUEUE_FULL           0x14
  97. #define STATUS_MASK          0x3e
  98. /*
  99.  *  SENSE KEYS
  100.  */
  101. #define NO_SENSE            0x00
  102. #define RECOVERED_ERROR     0x01
  103. #define NOT_READY           0x02
  104. #define MEDIUM_ERROR        0x03
  105. #define HARDWARE_ERROR      0x04
  106. #define ILLEGAL_REQUEST     0x05
  107. #define UNIT_ATTENTION      0x06
  108. #define DATA_PROTECT        0x07
  109. #define BLANK_CHECK         0x08
  110. #define COPY_ABORTED        0x0a
  111. #define ABORTED_COMMAND     0x0b
  112. #define VOLUME_OVERFLOW     0x0d
  113. #define MISCOMPARE          0x0e
  114. /*
  115.  *  DEVICE TYPES
  116.  */
  117. #define TYPE_DISK           0x00
  118. #define TYPE_TAPE           0x01
  119. #define TYPE_PRINTER        0x02
  120. #define TYPE_PROCESSOR      0x03    /* HP scanners use this */
  121. #define TYPE_WORM           0x04    /* Treated as ROM by our system */
  122. #define TYPE_ROM            0x05
  123. #define TYPE_SCANNER        0x06
  124. #define TYPE_MOD            0x07    /* Magneto-optical disk - 
  125.      * - treated as TYPE_DISK */
  126. #define TYPE_MEDIUM_CHANGER 0x08
  127. #define TYPE_COMM           0x09    /* Communications device */
  128. #define TYPE_ENCLOSURE      0x0d    /* Enclosure Services Device */
  129. #define TYPE_NO_LUN         0x7f
  130. /*
  131.  * standard mode-select header prepended to all mode-select commands
  132.  *
  133.  * moved here from cdrom.h -- kraxel
  134.  */
  135. struct ccs_modesel_head
  136. {
  137.     u_char  _r1;    /* reserved */
  138.     u_char  medium; /* device-specific medium type */
  139.     u_char  _r2;    /* reserved */
  140.     u_char  block_desc_length; /* block descriptor length */
  141.     u_char  density; /* device-specific density code */
  142.     u_char  number_blocks_hi; /* number of blocks in this block desc */
  143.     u_char  number_blocks_med;
  144.     u_char  number_blocks_lo;
  145.     u_char  _r3;
  146.     u_char  block_length_hi; /* block length for blocks in this desc */
  147.     u_char  block_length_med;
  148.     u_char  block_length_lo;
  149. };
  150. /*
  151.  *  MESSAGE CODES
  152.  */
  153. #define COMMAND_COMPLETE    0x00
  154. #define EXTENDED_MESSAGE    0x01
  155. #define     EXTENDED_MODIFY_DATA_POINTER    0x00
  156. #define     EXTENDED_SDTR                   0x01
  157. #define     EXTENDED_EXTENDED_IDENTIFY      0x02    /* SCSI-I only */
  158. #define     EXTENDED_WDTR                   0x03
  159. #define SAVE_POINTERS       0x02
  160. #define RESTORE_POINTERS    0x03
  161. #define DISCONNECT          0x04
  162. #define INITIATOR_ERROR     0x05
  163. #define ABORT               0x06
  164. #define MESSAGE_REJECT      0x07
  165. #define NOP                 0x08
  166. #define MSG_PARITY_ERROR    0x09
  167. #define LINKED_CMD_COMPLETE 0x0a
  168. #define LINKED_FLG_CMD_COMPLETE 0x0b
  169. #define BUS_DEVICE_RESET    0x0c
  170. #define INITIATE_RECOVERY   0x0f            /* SCSI-II only */
  171. #define RELEASE_RECOVERY    0x10            /* SCSI-II only */
  172. #define SIMPLE_QUEUE_TAG    0x20
  173. #define HEAD_OF_QUEUE_TAG   0x21
  174. #define ORDERED_QUEUE_TAG   0x22
  175. /*
  176.  * Here are some scsi specific ioctl commands which are sometimes useful.
  177.  */
  178. /* These are a few other constants  only used by scsi  devices */
  179. /* Note that include/linux/cdrom.h also defines IOCTL 0x5300 - 0x5395 */
  180. #define SCSI_IOCTL_GET_IDLUN 0x5382 /* conflicts with CDROMAUDIOBUFSIZ */
  181. /* Used to turn on and off tagged queuing for scsi devices */
  182. #define SCSI_IOCTL_TAGGED_ENABLE 0x5383
  183. #define SCSI_IOCTL_TAGGED_DISABLE 0x5384
  184. /* Used to obtain the host number of a device. */
  185. #define SCSI_IOCTL_PROBE_HOST 0x5385
  186. /* Used to get the bus number for a device */
  187. #define SCSI_IOCTL_GET_BUS_NUMBER 0x5386
  188. /* Used to get the PCI location of a device */
  189. #define SCSI_IOCTL_GET_PCI 0x5387
  190. /*
  191.  * Overrides for Emacs so that we follow Linus's tabbing style.
  192.  * Emacs will notice this stuff at the end of the file and automatically
  193.  * adjust the settings for this buffer only.  This must remain at the end
  194.  * of the file.
  195.  * ---------------------------------------------------------------------------
  196.  * Local variables:
  197.  * c-indent-level: 4 
  198.  * c-brace-imaginary-offset: 0
  199.  * c-brace-offset: -4
  200.  * c-argdecl-indent: 4
  201.  * c-label-offset: -4
  202.  * c-continued-statement-offset: 4
  203.  * c-continued-brace-offset: 0
  204.  * indent-tabs-mode: nil
  205.  * tab-width: 8
  206.  * End:
  207.  */
  208. #endif