transport.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /* Driver for USB Mass Storage compliant devices
  2. * Transport Functions Header File
  3. *
  4. * $Id: transport.h,v 1.18 2002/04/21 02:57:59 mdharm Exp $
  5. *
  6. * Current development and maintenance by:
  7. * (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
  8. *
  9. * This driver is based on the 'USB Mass Storage Class' document. This
  10. * describes in detail the protocol used to communicate with such
  11. * devices. Clearly, the designers had SCSI and ATAPI commands in
  12. * mind when they created this document. The commands are all very
  13. * similar to commands in the SCSI-II and ATAPI specifications.
  14. *
  15. * It is important to note that in a number of cases this class
  16. * exhibits class-specific exemptions from the USB specification.
  17. * Notably the usage of NAK, STALL and ACK differs from the norm, in
  18. * that they are used to communicate wait, failed and OK on commands.
  19. *
  20. * Also, for certain devices, the interrupt endpoint is used to convey
  21. * status of a command.
  22. *
  23. * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
  24. * information about this driver.
  25. *
  26. * This program is free software; you can redistribute it and/or modify it
  27. * under the terms of the GNU General Public License as published by the
  28. * Free Software Foundation; either version 2, or (at your option) any
  29. * later version.
  30. *
  31. * This program is distributed in the hope that it will be useful, but
  32. * WITHOUT ANY WARRANTY; without even the implied warranty of
  33. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  34. * General Public License for more details.
  35. *
  36. * You should have received a copy of the GNU General Public License along
  37. * with this program; if not, write to the Free Software Foundation, Inc.,
  38. * 675 Mass Ave, Cambridge, MA 02139, USA.
  39. */
  40. #ifndef _TRANSPORT_H_
  41. #define _TRANSPORT_H_
  42. #include <linux/config.h>
  43. #include <linux/blkdev.h>
  44. /* Protocols */
  45. #define US_PR_CBI 0x00 /* Control/Bulk/Interrupt */
  46. #define US_PR_CB 0x01 /* Control/Bulk w/o interrupt */
  47. #define US_PR_BULK 0x50 /* bulk only */
  48. #ifdef CONFIG_USB_STORAGE_USBAT
  49. #define US_PR_SCM_ATAPI 0x80 /* SCM-ATAPI bridge */
  50. #endif
  51. #ifdef CONFIG_USB_STORAGE_SDDR09
  52. #define US_PR_EUSB_SDDR09 0x81 /* SCM-SCSI bridge for SDDR-09 */
  53. #endif
  54. #ifdef CONFIG_USB_STORAGE_SDDR55
  55. #define US_PR_SDDR55 0x82 /* SDDR-55 (made up) */
  56. #endif
  57. #define US_PR_DPCM_USB 0xf0 /* Combination CB/SDDR09 */
  58. #ifdef CONFIG_USB_STORAGE_FREECOM
  59. #define US_PR_FREECOM 0xf1 /* Freecom */
  60. #endif
  61. #ifdef CONFIG_USB_STORAGE_DATAFAB
  62. #define US_PR_DATAFAB 0xf2 /* Datafab chipsets */
  63. #endif
  64. #ifdef CONFIG_USB_STORAGE_JUMPSHOT
  65. #define US_PR_JUMPSHOT 0xf3 /* Lexar Jumpshot */
  66. #endif
  67. #define US_PR_DEVICE 0xff /* Use device's value */
  68. /*
  69. * Bulk only data structures
  70. */
  71. /* command block wrapper */
  72. struct bulk_cb_wrap {
  73. __le32 Signature; /* contains 'USBC' */
  74. __u32 Tag; /* unique per command id */
  75. __le32 DataTransferLength; /* size of data */
  76. __u8 Flags; /* direction in bit 0 */
  77. __u8 Lun; /* LUN normally 0 */
  78. __u8 Length; /* of of the CDB */
  79. __u8 CDB[16]; /* max command */
  80. };
  81. #define US_BULK_CB_WRAP_LEN 31
  82. #define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
  83. #define US_BULK_FLAG_IN 1
  84. #define US_BULK_FLAG_OUT 0
  85. /* command status wrapper */
  86. struct bulk_cs_wrap {
  87. __le32 Signature; /* should = 'USBS' */
  88. __u32 Tag; /* same as original command */
  89. __le32 Residue; /* amount not transferred */
  90. __u8 Status; /* see below */
  91. __u8 Filler[18];
  92. };
  93. #define US_BULK_CS_WRAP_LEN 13
  94. #define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
  95. #define US_BULK_STAT_OK 0
  96. #define US_BULK_STAT_FAIL 1
  97. #define US_BULK_STAT_PHASE 2
  98. /* bulk-only class specific requests */
  99. #define US_BULK_RESET_REQUEST 0xff
  100. #define US_BULK_GET_MAX_LUN 0xfe
  101. /*
  102. * usb_stor_bulk_transfer_xxx() return codes, in order of severity
  103. */
  104. #define USB_STOR_XFER_GOOD 0 /* good transfer */
  105. #define USB_STOR_XFER_SHORT 1 /* transferred less than expected */
  106. #define USB_STOR_XFER_STALLED 2 /* endpoint stalled */
  107. #define USB_STOR_XFER_LONG 3 /* device tried to send too much */
  108. #define USB_STOR_XFER_ERROR 4 /* transfer died in the middle */
  109. /*
  110. * Transport return codes
  111. */
  112. #define USB_STOR_TRANSPORT_GOOD 0 /* Transport good, command good */
  113. #define USB_STOR_TRANSPORT_FAILED 1 /* Transport good, command failed */
  114. #define USB_STOR_TRANSPORT_NO_SENSE 2 /* Command failed, no auto-sense */
  115. #define USB_STOR_TRANSPORT_ERROR 3 /* Transport bad (i.e. device dead) */
  116. /*
  117. * We used to have USB_STOR_XFER_ABORTED and USB_STOR_TRANSPORT_ABORTED
  118. * return codes. But now the transport and low-level transfer routines
  119. * treat an abort as just another error (-ENOENT for a cancelled URB).
  120. * It is up to the invoke_transport() function to test for aborts and
  121. * distinguish them from genuine communication errors.
  122. */
  123. /*
  124. * CBI accept device specific command
  125. */
  126. #define US_CBI_ADSC 0
  127. extern int usb_stor_CBI_transport(struct scsi_cmnd *, struct us_data*);
  128. extern int usb_stor_CB_transport(struct scsi_cmnd *, struct us_data*);
  129. extern int usb_stor_CB_reset(struct us_data*);
  130. extern int usb_stor_Bulk_transport(struct scsi_cmnd *, struct us_data*);
  131. extern int usb_stor_Bulk_max_lun(struct us_data*);
  132. extern int usb_stor_Bulk_reset(struct us_data*);
  133. extern void usb_stor_invoke_transport(struct scsi_cmnd *, struct us_data*);
  134. extern void usb_stor_stop_transport(struct us_data*);
  135. extern int usb_stor_control_msg(struct us_data *us, unsigned int pipe,
  136. u8 request, u8 requesttype, u16 value, u16 index,
  137. void *data, u16 size, int timeout);
  138. extern int usb_stor_clear_halt(struct us_data *us, unsigned int pipe);
  139. extern int usb_stor_ctrl_transfer(struct us_data *us, unsigned int pipe,
  140. u8 request, u8 requesttype, u16 value, u16 index,
  141. void *data, u16 size);
  142. extern int usb_stor_bulk_transfer_buf(struct us_data *us, unsigned int pipe,
  143. void *buf, unsigned int length, unsigned int *act_len);
  144. extern int usb_stor_bulk_transfer_sg(struct us_data *us, unsigned int pipe,
  145. void *buf, unsigned int length, int use_sg, int *residual);
  146. extern int usb_stor_port_reset(struct us_data *us);
  147. #endif