transport.h 5.2 KB

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