1 /* Driver for USB Mass Storage compliant devices
 
   2  * Transport Functions Header File
 
   4  * $Id: transport.h,v 1.18 2002/04/21 02:57:59 mdharm Exp $
 
   6  * Current development and maintenance by:
 
   7  *   (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
 
   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.
 
  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.
 
  20  * Also, for certain devices, the interrupt endpoint is used to convey
 
  21  * status of a command.
 
  23  * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
 
  24  * information about this driver.
 
  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
 
  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.
 
  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.
 
  44 #include <linux/config.h>
 
  45 #include <linux/blkdev.h>
 
  49 #define US_PR_CBI       0x00            /* Control/Bulk/Interrupt */
 
  50 #define US_PR_CB        0x01            /* Control/Bulk w/o interrupt */
 
  51 #define US_PR_BULK      0x50            /* bulk only */
 
  52 #ifdef CONFIG_USB_STORAGE_USBAT
 
  53 #define US_PR_SCM_ATAPI 0x80            /* SCM-ATAPI bridge */
 
  55 #ifdef CONFIG_USB_STORAGE_SDDR09
 
  56 #define US_PR_EUSB_SDDR09       0x81    /* SCM-SCSI bridge for SDDR-09 */
 
  58 #ifdef CONFIG_USB_STORAGE_SDDR55
 
  59 #define US_PR_SDDR55    0x82            /* SDDR-55 (made up) */
 
  61 #define US_PR_DPCM_USB  0xf0            /* Combination CB/SDDR09 */
 
  63 #ifdef CONFIG_USB_STORAGE_FREECOM
 
  64 #define US_PR_FREECOM   0xf1            /* Freecom */
 
  67 #ifdef CONFIG_USB_STORAGE_DATAFAB
 
  68 #define US_PR_DATAFAB   0xf2            /* Datafab chipsets */
 
  71 #ifdef CONFIG_USB_STORAGE_JUMPSHOT
 
  72 #define US_PR_JUMPSHOT  0xf3            /* Lexar Jumpshot */
 
  75 #define US_PR_DEVICE    0xff            /* Use device's value */
 
  78  * Bulk only data structures
 
  81 /* command block wrapper */
 
  83         __le32  Signature;              /* contains 'USBC' */
 
  84         __u32   Tag;                    /* unique per command id */
 
  85         __le32  DataTransferLength;     /* size of data */
 
  86         __u8    Flags;                  /* direction in bit 0 */
 
  87         __u8    Lun;                    /* LUN normally 0 */
 
  88         __u8    Length;                 /* of of the CDB */
 
  89         __u8    CDB[16];                /* max command */
 
  92 #define US_BULK_CB_WRAP_LEN     31
 
  93 #define US_BULK_CB_SIGN         0x43425355      /*spells out USBC */
 
  94 #define US_BULK_FLAG_IN         1
 
  95 #define US_BULK_FLAG_OUT        0
 
  97 /* command status wrapper */
 
  99         __le32  Signature;              /* should = 'USBS' */
 
 100         __u32   Tag;                    /* same as original command */
 
 101         __le32  Residue;                /* amount not transferred */
 
 102         __u8    Status;                 /* see below */
 
 106 #define US_BULK_CS_WRAP_LEN     13
 
 107 #define US_BULK_CS_SIGN         0x53425355      /* spells out 'USBS' */
 
 108 #define US_BULK_STAT_OK         0
 
 109 #define US_BULK_STAT_FAIL       1
 
 110 #define US_BULK_STAT_PHASE      2
 
 112 /* bulk-only class specific requests */
 
 113 #define US_BULK_RESET_REQUEST   0xff
 
 114 #define US_BULK_GET_MAX_LUN     0xfe
 
 117  * usb_stor_bulk_transfer_xxx() return codes, in order of severity
 
 120 #define USB_STOR_XFER_GOOD      0       /* good transfer                 */
 
 121 #define USB_STOR_XFER_SHORT     1       /* transferred less than expected */
 
 122 #define USB_STOR_XFER_STALLED   2       /* endpoint stalled              */
 
 123 #define USB_STOR_XFER_LONG      3       /* device tried to send too much */
 
 124 #define USB_STOR_XFER_ERROR     4       /* transfer died in the middle   */
 
 127  * Transport return codes
 
 130 #define USB_STOR_TRANSPORT_GOOD    0   /* Transport good, command good     */
 
 131 #define USB_STOR_TRANSPORT_FAILED  1   /* Transport good, command failed   */
 
 132 #define USB_STOR_TRANSPORT_NO_SENSE 2  /* Command failed, no auto-sense    */
 
 133 #define USB_STOR_TRANSPORT_ERROR   3   /* Transport bad (i.e. device dead) */
 
 136  * We used to have USB_STOR_XFER_ABORTED and USB_STOR_TRANSPORT_ABORTED
 
 137  * return codes.  But now the transport and low-level transfer routines
 
 138  * treat an abort as just another error (-ENOENT for a cancelled URB).
 
 139  * It is up to the invoke_transport() function to test for aborts and
 
 140  * distinguish them from genuine communication errors.
 
 144  * CBI accept device specific command
 
 147 #define US_CBI_ADSC             0
 
 149 extern int usb_stor_CBI_transport(struct scsi_cmnd *, struct us_data*);
 
 151 extern int usb_stor_CB_transport(struct scsi_cmnd *, struct us_data*);
 
 152 extern int usb_stor_CB_reset(struct us_data*);
 
 154 extern int usb_stor_Bulk_transport(struct scsi_cmnd *, struct us_data*);
 
 155 extern int usb_stor_Bulk_max_lun(struct us_data*);
 
 156 extern int usb_stor_Bulk_reset(struct us_data*);
 
 158 extern void usb_stor_invoke_transport(struct scsi_cmnd *, struct us_data*);
 
 159 extern void usb_stor_stop_transport(struct us_data*);
 
 161 extern int usb_stor_control_msg(struct us_data *us, unsigned int pipe,
 
 162                 u8 request, u8 requesttype, u16 value, u16 index,
 
 163                 void *data, u16 size, int timeout);
 
 164 extern int usb_stor_clear_halt(struct us_data *us, unsigned int pipe);
 
 166 extern int usb_stor_ctrl_transfer(struct us_data *us, unsigned int pipe,
 
 167                 u8 request, u8 requesttype, u16 value, u16 index,
 
 168                 void *data, u16 size);
 
 169 extern int usb_stor_bulk_transfer_buf(struct us_data *us, unsigned int pipe,
 
 170                 void *buf, unsigned int length, unsigned int *act_len);
 
 171 extern int usb_stor_bulk_transfer_sg(struct us_data *us, unsigned int pipe,
 
 172                 void *buf, unsigned int length, int use_sg, int *residual);
 
 174 extern int usb_stor_port_reset(struct us_data *us);