scsireg.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /* $OpenBSD: scsireg.h,v 1.2 2013/10/29 21:49:07 miod Exp $ */
  2. /* $NetBSD: scsireg.h,v 1.2 2013/01/22 15:48:40 tsutsui Exp $ */
  3. /*
  4. * Copyright (c) 1990, 1992, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * This code is derived from software contributed to Berkeley by
  8. * Van Jacobson of Lawrence Berkeley Laboratory.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. Neither the name of the University nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32. * SUCH DAMAGE.
  33. *
  34. * @(#)scsireg.h 8.1 (Berkeley) 6/10/93
  35. */
  36. /*
  37. * MB89352 SCSI Protocol Controller Hardware Description.
  38. */
  39. struct scsidevice {
  40. volatile u_char scsi_bdid, p0, p1, p2; /* 000 */
  41. volatile u_char scsi_sctl, p3, p4, p5; /* 004 */
  42. #define SCTL_DISABLE 0x80
  43. #define SCTL_CTRLRST 0x40
  44. #define SCTL_DIAG 0x20
  45. #define SCTL_ABRT_ENAB 0x10
  46. #define SCTL_PARITY_ENAB 0x08
  47. #define SCTL_SEL_ENAB 0x04
  48. #define SCTL_RESEL_ENAB 0x02
  49. #define SCTL_INTR_ENAB 0x01
  50. volatile u_char scsi_scmd, p6, p7, p8; /* 008 */
  51. #define SCMD_RST 0x10
  52. #define SCMD_ICPT_XFR 0x08
  53. #define SCMD_PROG_XFR 0x04
  54. #define SCMD_PAD 0x01 /* if initiator */
  55. #define SCMD_PERR_STOP 0x01 /* if target */
  56. /* command codes */
  57. #define SCMD_BUS_REL 0x00
  58. #define SCMD_SELECT 0x20
  59. #define SCMD_RST_ATN 0x40
  60. #define SCMD_SET_ATN 0x60
  61. #define SCMD_XFR 0x80
  62. #define SCMD_XFR_PAUSE 0xa0
  63. #define SCMD_RST_ACK 0xc0
  64. #define SCMD_SET_ACK 0xe0
  65. volatile u_char scsi_tmod, p9, p10, p11; /* 00C */
  66. #define TMOD_SYNC 0x80
  67. volatile u_char scsi_ints, p12, p13, p14; /* 010 */
  68. #define INTS_SEL 0x80
  69. #define INTS_RESEL 0x40
  70. #define INTS_DISCON 0x20
  71. #define INTS_CMD_DONE 0x10
  72. #define INTS_SRV_REQ 0x08
  73. #define INTS_TIMEOUT 0x04
  74. #define INTS_HARD_ERR 0x02
  75. #define INTS_RST 0x01
  76. volatile u_char scsi_psns, p15, p16, p17; /* 014 */
  77. #define PSNS_REQ 0x80
  78. #define PSNS_ACK 0x40
  79. #define PSNS_ATN 0x20
  80. #define PSNS_SEL 0x10
  81. #define PSNS_BSY 0x08
  82. #define scsi_sdgc scsi_psns
  83. #define SDGC_XFER_ENAB 0x20
  84. volatile u_char scsi_ssts, p18, p19, p20; /* 018 */
  85. #define SSTS_INITIATOR 0x80
  86. #define SSTS_TARGET 0x40
  87. #define SSTS_BUSY 0x20
  88. #define SSTS_XFR 0x10
  89. #define SSTS_ACTIVE (SSTS_INITIATOR|SSTS_XFR)
  90. #define SSTS_RST 0x08
  91. #define SSTS_TCZERO 0x04
  92. #define SSTS_DREG_FULL 0x02
  93. #define SSTS_DREG_EMPTY 0x01
  94. volatile u_char scsi_serr, p21, p22, p23; /* 01C */
  95. #define SERR_SCSI_PAR 0x80
  96. #define SERR_SPC_PAR 0x40
  97. #define SERR_XFER_OUT 0x20
  98. #define SERR_TC_PAR 0x08
  99. #define SERR_PHASE_ERR 0x04
  100. #define SERR_SHORT_XFR 0x02
  101. #define SERR_OFFSET 0x01
  102. volatile u_char scsi_pctl, p24, p25, p26; /* 020 */
  103. #define PCTL_BFINT_ENAB 0x80
  104. volatile u_char scsi_mbc, p27, p28, p29; /* 024 */
  105. volatile u_char scsi_dreg, p30, p31, p32; /* 028 */
  106. volatile u_char scsi_temp, p33, p34, p35; /* 02C */
  107. volatile u_char scsi_tch, p36, p37, p38; /* 030 */
  108. volatile u_char scsi_tcm, p39, p40, p41; /* 034 */
  109. volatile u_char scsi_tcl, p42, p43, p44; /* 038 */
  110. volatile u_char scsi_exbf, p45, p46, p47; /* 03C */
  111. };
  112. /* psns/pctl phase lines as bits */
  113. #define PHASE_MSG 0x04
  114. #define PHASE_CD 0x02 /* =1 if 'command' */
  115. #define PHASE_IO 0x01 /* =1 if data inbound */
  116. /* Phase lines as values */
  117. #define PHASE 0x07 /* mask for psns/pctl phase */
  118. #define DATA_OUT_PHASE 0x00
  119. #define DATA_IN_PHASE 0x01
  120. #define CMD_PHASE 0x02
  121. #define STATUS_PHASE 0x03
  122. #define BUS_FREE_PHASE 0x04
  123. #define ARB_SEL_PHASE 0x05 /* Fuji chip combines arbitration with sel. */
  124. #define MESG_OUT_PHASE 0x06
  125. #define MESG_IN_PHASE 0x07
  126. /* SCSI Messages */
  127. #define MSG_CMD_COMPLETE 0x00
  128. #define MSG_EXT_MESSAGE 0x01
  129. #define MSG_SAVE_DATA_PTR 0x02
  130. #define MSG_RESTORE_PTR 0x03
  131. #define MSG_DISCONNECT 0x04
  132. #define MSG_INIT_DETECT_ERROR 0x05
  133. #define MSG_ABORT 0x06
  134. #define MSG_REJECT 0x07
  135. #define MSG_NOOP 0x08
  136. #define MSG_PARITY_ERROR 0x09
  137. #define MSG_BUS_DEVICE_RESET 0x0C
  138. #define MSG_IDENTIFY 0x80
  139. #define MSG_IDENTIFY_DR 0xc0 /* (disconnect/reconnect allowed) */
  140. #define MSG_SYNC_REQ 0x01
  141. /* SCSI Commands */
  142. #define CMD_TEST_UNIT_READY 0x00
  143. #define CMD_REQUEST_SENSE 0x03
  144. #define CMD_INQUIRY 0x12
  145. #define CMD_SEND_DIAGNOSTIC 0x1D
  146. #define CMD_REWIND 0x01
  147. #define CMD_FORMAT_UNIT 0x04
  148. #define CMD_READ_BLOCK_LIMITS 0x05
  149. #define CMD_REASSIGN_BLOCKS 0x07
  150. #define CMD_READ 0x08
  151. #define CMD_WRITE 0x0A
  152. #define CMD_WRITE_FILEMARK 0x10
  153. #define CMD_SPACE 0x11
  154. #define CMD_MODE_SELECT 0x15
  155. #define CMD_RELEASE_UNIT 0x17
  156. #define CMD_ERASE 0x19
  157. #define CMD_MODE_SENSE 0x1A
  158. #define CMD_LOADUNLOAD 0x1B
  159. #define CMD_RECEIVE_DIAG 0x1C
  160. #define CMD_SEND_DIAG 0x1D
  161. #define CMD_P_A_MEDIA_REMOVAL 0x1E
  162. #define CMD_READ_CAPACITY 0x25
  163. #define CMD_READ_EXT 0x28
  164. #define CMD_WRITE_EXT 0x2A
  165. #define CMD_READ_DEFECT_DATA 0x37
  166. #define SD_MANUFAC_DEFECTS 0x14000000
  167. #define SD_GROWN_DEFECTS 0x0c000000
  168. #define CMD_READ_BUFFER 0x3B
  169. #define CMD_WRITE_BUFFER 0x3C
  170. #define CMD_READ_FULL 0xF0
  171. #define CMD_MEDIA_TEST 0xF1
  172. #define CMD_ACCESS_LOG 0xF2
  173. #define CMD_WRITE_FULL 0xFC
  174. #define CMD_MANAGE_PRIMARY 0xFD
  175. #define CMD_EXECUTE_DATA 0xFE
  176. /* SCSI status bits */
  177. #define STS_CHECKCOND 0x02 /* Check Condition (ie., read sense) */
  178. #define STS_CONDMET 0x04 /* Condition Met (ie., search worked) */
  179. #define STS_BUSY 0x08
  180. #define STS_INTERMED 0x10 /* Intermediate status sent */
  181. #define STS_EXT 0x80 /* Extended status valid */
  182. /* command descriptor blocks */
  183. struct scsi_cdb6 {
  184. u_char cmd; /* command code */
  185. u_char lun: 3, /* logical unit on ctlr */
  186. lbah: 5; /* msb of read/write logical block addr */
  187. u_char lbam; /* middle byte of l.b.a. */
  188. u_char lbal; /* lsb of l.b.a. */
  189. u_char len; /* transfer length */
  190. u_char xtra;
  191. };
  192. struct scsi_cdb10 {
  193. u_char cmd; /* command code */
  194. u_char lun: 3, /* logical unit on ctlr */
  195. : 4,
  196. rel: 1; /* l.b.a. is relative addr if =1 */
  197. u_char lbah; /* msb of read/write logical block addr */
  198. u_char lbahm; /* high middle byte of l.b.a. */
  199. u_char lbalm; /* low middle byte of l.b.a. */
  200. u_char lbal; /* lsb of l.b.a. */
  201. u_char reserved;
  202. u_char lenh; /* msb transfer length */
  203. u_char lenl; /* lsb transfer length */
  204. u_char xtra;
  205. };
  206. /* basic sense data */
  207. struct scsi_sense {
  208. u_char valid: 1, /* l.b.a. is valid */
  209. class: 3,
  210. code: 4;
  211. u_char vu: 4, /* vendor unique */
  212. lbah: 4;
  213. u_char lbam;
  214. u_char lbal;
  215. };
  216. struct scsi_xsense {
  217. u_char valid: 1, /* l.b.a. is valid */
  218. class: 3,
  219. code: 4;
  220. u_char segment;
  221. u_char filemark: 1,
  222. eom: 1,
  223. ili: 1, /* illegal length indicator */
  224. rsvd: 1,
  225. key: 4;
  226. u_char info1;
  227. u_char info2;
  228. u_char info3;
  229. u_char info4;
  230. u_char len; /* additional sense length */
  231. };
  232. /* inquiry data */
  233. struct scsi_inquiry {
  234. u_char type;
  235. u_char qual;
  236. u_char version;
  237. u_char rsvd;
  238. u_char len;
  239. char class[3];
  240. char vendor_id[8];
  241. char product_id[16];
  242. char rev[4];
  243. };
  244. struct scsi_generic_cdb {
  245. int len; /* cdb length (in bytes) */
  246. u_char cdb[28]; /* cdb to use on next read/write */
  247. };