Building environment for USB storage

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1061 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-10-22 16:20:18 +00:00
parent 998ec27c83
commit 61af3cf5a4
11 changed files with 378 additions and 135 deletions
File diff suppressed because it is too large Load Diff
+139
View File
@@ -0,0 +1,139 @@
/************************************************************************************
* include/nuttx/usb_bulk.h
*
* Copyright (C) 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* References:
* "Universal Serial Bus Mass Storage Class, Specification Overview,"
* Revision 1.2, USB Implementer's Forum, June 23, 2003.
*
* "Universal Serial Bus Mass Storage Class, Bulk-Only Transport,"
* Revision 1.0, USB Implementer's Forum, September 31, 1999.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************************/
#ifndef __NUTTX_USB_BULK_H
#define __NUTTX_USB_BULK_H
/************************************************************************************
* Included Files
************************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
/************************************************************************************
* Definitions
************************************************************************************/
/* Mass storage requests */
#define USBSTRG_TYPE_SETUPIN (USB_DIR_IN|USB_REQ_TYPE_CLASS|USB_REQ_RECIPIENT_INTERFACE)
#define USBSTRG_TYPE_SETUPOUT (USB_DIR_OUT|USB_REQ_TYPE_CLASS|USB_REQ_RECIPIENT_INTERFACE)
#define USBSTRG_REQ_MSRESET (0xff) /* Reset mass storage device and interface */
#define USBSTRG_REQ_GETMAXLUN (0xfe) /* Return number LUNs supported */
/* Mass storage subclass codes */
#define USBSTRG_SUBCLASS_RBC (0x01) /* Reduced block commands (e.g., flash devices) */
#define SUBSTRG_SUBCLASS_SFF1 (0x02) /* SFF-8020i/MMC-2 (ATAPI) (e.g., C/DVD) */
#define SUBSTRG_SUBCLASS_QIC (0x03) /* QIC-157 (e.g., tape device) */
#define SUBSTRG_SUBCLASS_UFI (0x04) /* e.g. floppy device */
#define SUBSTRG_SUBCLASS_SFF2 (0x05) /* SFF-8070i (e.g. floppy disk) */
#define SUBSTRG_SUBCLASS_SCSI (0x06) /* SCSI transparent */
/* Mass storage transport protocols */
#define USBSTRG_PROTO_CBI0 (0x00) /* CBI transport with command completion interrupt */
#define USBSTRG_PROTO_CBI1 (0x01) /* CBI transport without command completion interrupt */
#define USBSTRG_PROTO_BULKONLY (0x50) /* Bulk only transport */
/* Common Block Wrapper (CBW) */
#define USBSTRG_CBW_SIZEOF (31)
#define USBSTRG_CBW_SIGNATURE (0x43425355) /* Little endian USBC */
#define USBSTRG_CBWFLAG_IN (0x80) /* Bit 7=1: Direction = IN */
#define USBSTRG_MAXCDBLEN (16) /* Max length of SCSI Command Data Block */
/* Command Status Wrapper (CSW) */
#define USBSTRG_CSW_SIZEOF (13)
#define USBSTRG_CSW_SIGNATURE (0x53425355) /* Little endian 'USBS' */
#define USBSTRG_CSWSTATUS_PASS (0)
#define USBSTRG_CSWSTATUS_FAIL (1)
#define USBSTRG_CSWSTATUS_PHASEERROR (2)
/************************************************************************************
* Public Types
************************************************************************************/
/* Command Block Wrapper (CBW) */
struct usbstrg_cbw_s
{
ubyte signature[4]; /* 'USBC' = 0x43425355 */
ubyte tag[4]; /* Depends on command id */
ubyte datlen[4]; /* Number of bytes that host expects to transfer */
ubyte flags; /* Bit 7: Direction=IN (other obsolete or reserved) */
ubyte lun; /* LUN (normally 0) */
ubyte cdblen; /* len of cdb[] */
ubyte cdb[USBSTRG_MAXCDBLEN]; /* Command Data Block */
};
/* Command Status Wrapper (CSW) */
struct usbstrg_csw_s
{
ubyte signature[4]; /* 'USBS' = 0x53425355 */
ubyte tag[4]; /* Same tag as original command */
ubyte residue[4]; /* Amount not transferred */
ubyte status; /* Status of transfer */
};
/************************************************************************************
* Private Data
************************************************************************************/
/************************************************************************************
* Public Data
************************************************************************************/
/************************************************************************************
* Private Functions
************************************************************************************/
/************************************************************************************
* Public Functions
************************************************************************************/
#endif // __NUTTX_USB_BULK_H
+97
View File
@@ -341,6 +341,103 @@ EXTERN int usbdev_unregister(FAR struct usbdevclass_driver_s *driver);
EXTERN int usbdev_serialinitialize(int minor);
/****************************************************************************
* Name: usbstrg_configure
*
* Description:
* One-time initialization of the USB storage driver. The initialization
* sequence is as follows:
*
* 1. Call usbstrg_configure to perform one-time initialization specifying
* the number of luns.
* 2. Call usbstrg_bindlun to configure each supported LUN
* 3. Call usbstrg_exportluns when all LUNs are configured
*
* Input Parameters:
* nluns - the number of LUNs that will be registered
* handle - Location to return a handle that is used in other API calls.
*
* Returned Value:
* 0 on success; a negated errno on failure
*
****************************************************************************/
EXTERN int usbstrg_configure(unsigned int nluns, void **handle);
/****************************************************************************
* Name: usbstrg_bindlun
*
* Description:
* Bind the block driver specified by drvrpath to a USB storage LUN.
*
* Input Parameters:
* handle - The handle returned by a previous call to usbstrg_configure().
* drvrpath - the full path to the block driver
* startsector - A sector offset into the block driver to the start of the
* partition on drvrpath (0 if no partitions)
* nsectors - The number of sectors in the partition (if 0, all sectors
* to the end of the media will be exported).
* lunno - the LUN to bind to
*
* Returned Value:
* 0 on success; a negated errno on failure.
*
****************************************************************************/
EXTERN int usbstrg_bindlun(FAR void *handle, FAR const char *drvrpath,
unsigned int lunno, off_t startsector, size_t nsectors,
boolean readonly);
/****************************************************************************
* Name: usbstrg_unbindlun
*
* Description:
* Un-bind the block driver for the specified LUN
*
* Input Parameters:
* handle - The handle returned by a previous call to usbstrg_configure().
* lun - the LUN to unbind from
*
* Returned Value:
* 0 on success; a negated errno on failure.
*
****************************************************************************/
EXTERN int usbstrg_unbindlun(FAR void *handle, unsigned int lunno);
/****************************************************************************
* Name: usbstrg_exportluns
*
* Description:
* After all of the LUNs have been bound, this function may be called
* in order to export those LUNs in the USB storage device.
*
* Input Parameters:
* handle - The handle returned by a previous call to usbstrg_configure().
*
* Returned Value:
* 0 on success; a negated errno on failure
*
****************************************************************************/
EXTERN int usbstrg_exportluns(FAR void *handle);
/****************************************************************************
* Name: usbstrg_uninitialize
*
* Description:
* Un-initialize the USB storage class driver
*
* Input Parameters:
* handle - The handle returned by a previous call to usbstrg_configure().
*
* Returned Value:
* None
*
****************************************************************************/
EXTERN void usbstrg_uninitialize(FAR void *handle);
#undef EXTERN
#if defined(__cplusplus)
}
+114 -115
View File
@@ -226,121 +226,120 @@
#define USBSTRG_TRACEERR_ALLOCDEVSTRUCT 0x0002
#define USBSTRG_TRACEERR_ALLOCIOBUFFER 0x0003
#define USBSTRG_TRACEERR_ALREADYCONFIGURED 0x0004
#define USBSTRG_TRACEERR_ALREADYINIT 0x0005
#define USBSTRG_TRACEERR_ALREADYUNINIT 0x0006
#define USBSTRG_TRACEERR_BADREQUEST 0x0007
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS2 0x0008
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS3 0x0009
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS4 0x000a
#define USBSTRG_TRACEERR_BINLUNINVALIDARGS1 0x000b
#define USBSTRG_TRACEERR_BLKDRVEOPEN 0x000c
#define USBSTRG_TRACEERR_CMDBADLUN 0x000d
#define USBSTRG_TRACEERR_CMDFINISHRESIDUE 0x000e
#define USBSTRG_TRACEERR_CMDFINISHRQEMPTY 0x000f
#define USBSTRG_TRACEERR_CMDFINISHSHORTPKT 0x0010
#define USBSTRG_TRACEERR_CMDFINISHSUBMIT 0x0011
#define USBSTRG_TRACEERR_CMDFINSHDIR 0x0012
#define USBSTRG_TRACEERR_CMDFINSHSUBMIT 0x0013
#define USBSTRG_TRACEERR_CMDPARSEWRREQLISTEMPTY 0x0014
#define USBSTRG_TRACEERR_CMDREADREADFAIL 0x0015
#define USBSTRG_TRACEERR_CMDREADSUBMIT 0x0016
#define USBSTRG_TRACEERR_CMDREADWRRQEMPTY 0x0017
#define USBSTRG_TRACEERR_CMDSTATUSRDREQLISTEMPTY 0x0018
#define USBSTRG_TRACEERR_CMDUNEVIOLATION 0x0019
#define USBSTRG_TRACEERR_CMDWRITERDSUBMIT 0x001a
#define USBSTRG_TRACEERR_CMDWRITERDRQEMPTY 0x001b
#define USBSTRG_TRACEERR_CMDWRITEWRITEFAIL 0x001c
#define USBSTRG_TRACEERR_CONFIGIDBAD 0x001d
#define USBSTRG_TRACEERR_CONFIGNONE 0x001e
#define USBSTRG_TRACEERR_DEVREGISTER 0x001f
#define USBSTRG_TRACEERR_DISCONNECTINVALIDARGS 0x0020
#define USBSTRG_TRACEERR_EP0NOTBOUND1 0x0021
#define USBSTRG_TRACEERR_EP0NOTBOUND2 0x0022
#define USBSTRG_TRACEERR_EP0NOTBOUND3 0x0023
#define USBSTRG_TRACEERR_EPBULKINALLOCFAIL 0x0024
#define USBSTRG_TRACEERR_EPBULKINCONFIGFAIL 0x0025
#define USBSTRG_TRACEERR_EPBULKOUTALLOCFAIL 0x0026
#define USBSTRG_TRACEERR_EPBULKOUTCONFIGFAIL 0x0027
#define USBSTRG_TRACEERR_EPRESPQ 0x0028
#define USBSTRG_TRACEERR_EXPORTLUNSINVALIDARGS 0x0029
#define USBSTRG_TRACEERR_GETMAXLUNNDX 0x002a
#define USBSTRG_TRACEERR_GETUNKNOWNDESC 0x002b
#define USBSTRG_TRACEERR_IDLERDREQLISTEMPTY 0x002c
#define USBSTRG_TRACEERR_IDLERDSUBMIT 0x002d
#define USBSTRG_TRACEERR_INQUIRYFLAGS 0x002e
#define USBSTRG_TRACEERR_INTERNALCONFUSION1 0x002f
#define USBSTRG_TRACEERR_INTERNALCONFUSION2 0x0030
#define USBSTRG_TRACEERR_INVALIDCBWCONTENT 0x0031
#define USBSTRG_TRACEERR_INVALIDCBWSIGNATURE 0x0032
#define USBSTRG_TRACEERR_INVALIDSTATE 0x0033
#define USBSTRG_TRACEERR_LUNALREADYBOUND 0x0034
#define USBSTRG_TRACEERR_LUNNOTBOUND 0x0035
#define USBSTRG_TRACEERR_MODEPAGEFLAGS 0x0036
#define USBSTRG_TRACEERR_MODESENSE10FLAGS 0x0037
#define USBSTRG_TRACEERR_MODESENSE6FLAGS 0x0038
#define USBSTRG_TRACEERR_MSRESETNDX 0x0039
#define USBSTRG_TRACEERR_NOGEOMETRY 0x003a
#define USBSTRG_TRACEERR_NOTCONFIGURED 0x003b
#define USBSTRG_TRACEERR_NOTREMOVABLE 0x003c
#define USBSTRG_TRACEERR_PCSAVED 0x003d
#define USBSTRG_TRACEERR_PHASEERROR1 0x003e
#define USBSTRG_TRACEERR_PHASEERROR2 0x003f
#define USBSTRG_TRACEERR_PHASEERROR3 0x0040
#define USBSTRG_TRACEERR_PREVENTMEDIUMREMOVALFLAGS 0x0041
#define USBSTRG_TRACEERR_PREVENTMEDIUMREMOVALPREVENT 0x0042
#define USBSTRG_TRACEERR_RDALLOCREQ 0x0043
#define USBSTRG_TRACEERR_RDCOMPLETEINVALIDARGS 0x0044
#define USBSTRG_TRACEERR_RDCOMPLETERDSUBMIT 0x0045
#define USBSTRG_TRACEERR_RDSHUTDOWN 0x0046
#define USBSTRG_TRACEERR_RDSUBMIT 0x0047
#define USBSTRG_TRACEERR_RDUNEXPECTED 0x0048
#define USBSTRG_TRACEERR_READ10FLAGS 0x0049
#define USBSTRG_TRACEERR_READ10LBARANGE 0x004a
#define USBSTRG_TRACEERR_READ10MEDIANOTPRESENT 0x004b
#define USBSTRG_TRACEERR_READ12FLAGS 0x004c
#define USBSTRG_TRACEERR_READ12LBARANGE 0x004d
#define USBSTRG_TRACEERR_READ12MEDIANOTPRESENT 0x004e
#define USBSTRG_TRACEERR_READ6FLAGS 0x004f
#define USBSTRG_TRACEERR_READ6LBARANGE 0x0050
#define USBSTRG_TRACEERR_READ6MEDIANOTPRESENT 0x0051
#define USBSTRG_TRACEERR_READCAPACITYFLAGS 0x0052
#define USBSTRG_TRACEERR_REALLOCIOBUFFER 0x0053
#define USBSTRG_TRACEERR_REQRESULT 0x0054
#define USBSTRG_TRACEERR_SETCONFIGINVALIDARGS 0x0055
#define USBSTRG_TRACEERR_SETUPINVALIDARGS 0x0056
#define USBSTRG_TRACEERR_SNDCSWFAIL 0x0057
#define USBSTRG_TRACEERR_SNDPHERROR 0x0058
#define USBSTRG_TRACEERR_SNDSTATUSSUBMIT 0x0059
#define USBSTRG_TRACEERR_SYNCCACHEMEDIANOTPRESENT 0x005a
#define USBSTRG_TRACEERR_THREADCREATE 0x005b
#define USBSTRG_TRACEERR_TOOMANYLUNS 0x005c
#define USBSTRG_TRACEERR_UNBINDINVALIDARGS 0x005d
#define USBSTRG_TRACEERR_UNBINDLUNINVALIDARGS1 0x005e
#define USBSTRG_TRACEERR_UNBINDLUNINVALIDARGS2 0x005f
#define USBSTRG_TRACEERR_UNINITIALIZEINVALIDARGS 0x0060
#define USBSTRG_TRACEERR_UNSUPPORTEDSTDREQ 0x0061
#define USBSTRG_TRACEERR_VERIFY10FLAGS 0x0062
#define USBSTRG_TRACEERR_VERIFY10LBARANGE 0x0063
#define USBSTRG_TRACEERR_VERIFY10MEDIANOTPRESENT 0x0064
#define USBSTRG_TRACEERR_VERIFY10NOBLOCKS 0x0065
#define USBSTRG_TRACEERR_VERIFY10READFAIL 0x0066
#define USBSTRG_TRACEERR_WRALLOCREQ 0x0067
#define USBSTRG_TRACEERR_SNDPHERROR 0x0068
#define USBSTRG_TRACEERR_WRCOMPLETEINVALIDARGS 0x0069
#define USBSTRG_TRACEERR_WRITE10FLAGS 0x006a
#define USBSTRG_TRACEERR_WRITE10LBARANGE 0x006b
#define USBSTRG_TRACEERR_WRITE10MEDIANOTPRESENT 0x006c
#define USBSTRG_TRACEERR_WRITE10READONLY 0x006d
#define USBSTRG_TRACEERR_WRITE12FLAGS 0x006e
#define USBSTRG_TRACEERR_WRITE12LBARANGE 0x006f
#define USBSTRG_TRACEERR_WRITE12MEDIANOTPRESENT 0x0070
#define USBSTRG_TRACEERR_WRITE12READONLY 0x0071
#define USBSTRG_TRACEERR_WRITE6FLAGS 0x0072
#define USBSTRG_TRACEERR_WRITE6LBARANGE 0x0073
#define USBSTRG_TRACEERR_WRITE6MEDIANOTPRESENT 0x0074
#define USBSTRG_TRACEERR_WRITE6READONLY 0x0075
#define USBSTRG_TRACEERR_WRSHUTDOWN 0x0076
#define USBSTRG_TRACEERR_WRUNEXPECTED 0x0077
#define USBSTRG_TRACEERR_ALREADYUNINIT 0x0005
#define USBSTRG_TRACEERR_BADREQUEST 0x0006
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS2 0x0007
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS3 0x0008
#define USBSTRG_TRACEERR_BINDLUNINVALIDARGS4 0x0009
#define USBSTRG_TRACEERR_BINLUNINVALIDARGS1 0x000a
#define USBSTRG_TRACEERR_BLKDRVEOPEN 0x000b
#define USBSTRG_TRACEERR_CMDBADLUN 0x000c
#define USBSTRG_TRACEERR_CMDFINISHRESIDUE 0x000d
#define USBSTRG_TRACEERR_CMDFINISHRQEMPTY 0x000e
#define USBSTRG_TRACEERR_CMDFINISHSHORTPKT 0x000f
#define USBSTRG_TRACEERR_CMDFINISHSUBMIT 0x0010
#define USBSTRG_TRACEERR_CMDFINSHDIR 0x0011
#define USBSTRG_TRACEERR_CMDFINSHSUBMIT 0x0012
#define USBSTRG_TRACEERR_CMDPARSEWRREQLISTEMPTY 0x0013
#define USBSTRG_TRACEERR_CMDREADREADFAIL 0x0014
#define USBSTRG_TRACEERR_CMDREADSUBMIT 0x0015
#define USBSTRG_TRACEERR_CMDREADWRRQEMPTY 0x0016
#define USBSTRG_TRACEERR_CMDSTATUSRDREQLISTEMPTY 0x0017
#define USBSTRG_TRACEERR_CMDUNEVIOLATION 0x0018
#define USBSTRG_TRACEERR_CMDWRITERDSUBMIT 0x0019
#define USBSTRG_TRACEERR_CMDWRITERDRQEMPTY 0x001a
#define USBSTRG_TRACEERR_CMDWRITEWRITEFAIL 0x001b
#define USBSTRG_TRACEERR_CONFIGIDBAD 0x001c
#define USBSTRG_TRACEERR_CONFIGNONE 0x001d
#define USBSTRG_TRACEERR_DEVREGISTER 0x001e
#define USBSTRG_TRACEERR_DISCONNECTINVALIDARGS 0x001f
#define USBSTRG_TRACEERR_EP0NOTBOUND1 0x0020
#define USBSTRG_TRACEERR_EP0NOTBOUND2 0x0021
#define USBSTRG_TRACEERR_EP0NOTBOUND3 0x0022
#define USBSTRG_TRACEERR_EPBULKINALLOCFAIL 0x0023
#define USBSTRG_TRACEERR_EPBULKINCONFIGFAIL 0x0024
#define USBSTRG_TRACEERR_EPBULKOUTALLOCFAIL 0x0025
#define USBSTRG_TRACEERR_EPBULKOUTCONFIGFAIL 0x0026
#define USBSTRG_TRACEERR_EPRESPQ 0x0027
#define USBSTRG_TRACEERR_EXPORTLUNSINVALIDARGS 0x0028
#define USBSTRG_TRACEERR_GETMAXLUNNDX 0x0029
#define USBSTRG_TRACEERR_GETUNKNOWNDESC 0x002a
#define USBSTRG_TRACEERR_IDLERDREQLISTEMPTY 0x002b
#define USBSTRG_TRACEERR_IDLERDSUBMIT 0x002c
#define USBSTRG_TRACEERR_INQUIRYFLAGS 0x002d
#define USBSTRG_TRACEERR_INTERNALCONFUSION1 0x002e
#define USBSTRG_TRACEERR_INTERNALCONFUSION2 0x002f
#define USBSTRG_TRACEERR_INVALIDCBWCONTENT 0x0030
#define USBSTRG_TRACEERR_INVALIDCBWSIGNATURE 0x0031
#define USBSTRG_TRACEERR_INVALIDSTATE 0x0032
#define USBSTRG_TRACEERR_LUNALREADYBOUND 0x0033
#define USBSTRG_TRACEERR_LUNNOTBOUND 0x0034
#define USBSTRG_TRACEERR_MODEPAGEFLAGS 0x0035
#define USBSTRG_TRACEERR_MODESENSE10FLAGS 0x0036
#define USBSTRG_TRACEERR_MODESENSE6FLAGS 0x0037
#define USBSTRG_TRACEERR_MSRESETNDX 0x0038
#define USBSTRG_TRACEERR_NOGEOMETRY 0x0039
#define USBSTRG_TRACEERR_NOTCONFIGURED 0x003a
#define USBSTRG_TRACEERR_NOTREMOVABLE 0x003b
#define USBSTRG_TRACEERR_PCSAVED 0x003c
#define USBSTRG_TRACEERR_PHASEERROR1 0x003d
#define USBSTRG_TRACEERR_PHASEERROR2 0x003e
#define USBSTRG_TRACEERR_PHASEERROR3 0x003f
#define USBSTRG_TRACEERR_PREVENTMEDIUMREMOVALFLAGS 0x0040
#define USBSTRG_TRACEERR_PREVENTMEDIUMREMOVALPREVENT 0x0041
#define USBSTRG_TRACEERR_RDALLOCREQ 0x0042
#define USBSTRG_TRACEERR_RDCOMPLETEINVALIDARGS 0x0043
#define USBSTRG_TRACEERR_RDCOMPLETERDSUBMIT 0x0044
#define USBSTRG_TRACEERR_RDSHUTDOWN 0x0045
#define USBSTRG_TRACEERR_RDSUBMIT 0x0046
#define USBSTRG_TRACEERR_RDUNEXPECTED 0x0047
#define USBSTRG_TRACEERR_READ10FLAGS 0x0048
#define USBSTRG_TRACEERR_READ10LBARANGE 0x0049
#define USBSTRG_TRACEERR_READ10MEDIANOTPRESENT 0x004a
#define USBSTRG_TRACEERR_READ12FLAGS 0x004b
#define USBSTRG_TRACEERR_READ12LBARANGE 0x004c
#define USBSTRG_TRACEERR_READ12MEDIANOTPRESENT 0x004d
#define USBSTRG_TRACEERR_READ6FLAGS 0x004e
#define USBSTRG_TRACEERR_READ6LBARANGE 0x004f
#define USBSTRG_TRACEERR_READ6MEDIANOTPRESENT 0x0050
#define USBSTRG_TRACEERR_READCAPACITYFLAGS 0x0051
#define USBSTRG_TRACEERR_REALLOCIOBUFFER 0x0052
#define USBSTRG_TRACEERR_REQRESULT 0x0053
#define USBSTRG_TRACEERR_SETCONFIGINVALIDARGS 0x0054
#define USBSTRG_TRACEERR_SETUPINVALIDARGS 0x0055
#define USBSTRG_TRACEERR_SNDCSWFAIL 0x0056
#define USBSTRG_TRACEERR_SNDPHERROR 0x0057
#define USBSTRG_TRACEERR_SNDSTATUSSUBMIT 0x0058
#define USBSTRG_TRACEERR_SYNCCACHEMEDIANOTPRESENT 0x0059
#define USBSTRG_TRACEERR_THREADCREATE 0x005a
#define USBSTRG_TRACEERR_TOOMANYLUNS 0x005b
#define USBSTRG_TRACEERR_UNBINDINVALIDARGS 0x005c
#define USBSTRG_TRACEERR_UNBINDLUNINVALIDARGS1 0x005d
#define USBSTRG_TRACEERR_UNBINDLUNINVALIDARGS2 0x005e
#define USBSTRG_TRACEERR_UNINITIALIZEINVALIDARGS 0x005f
#define USBSTRG_TRACEERR_UNSUPPORTEDSTDREQ 0x0060
#define USBSTRG_TRACEERR_VERIFY10FLAGS 0x0061
#define USBSTRG_TRACEERR_VERIFY10LBARANGE 0x0062
#define USBSTRG_TRACEERR_VERIFY10MEDIANOTPRESENT 0x0063
#define USBSTRG_TRACEERR_VERIFY10NOBLOCKS 0x0064
#define USBSTRG_TRACEERR_VERIFY10READFAIL 0x0065
#define USBSTRG_TRACEERR_WRALLOCREQ 0x0066
#define USBSTRG_TRACEERR_SNDPHERROR 0x0067
#define USBSTRG_TRACEERR_WRCOMPLETEINVALIDARGS 0x0068
#define USBSTRG_TRACEERR_WRITE10FLAGS 0x0069
#define USBSTRG_TRACEERR_WRITE10LBARANGE 0x006a
#define USBSTRG_TRACEERR_WRITE10MEDIANOTPRESENT 0x006b
#define USBSTRG_TRACEERR_WRITE10READONLY 0x006c
#define USBSTRG_TRACEERR_WRITE12FLAGS 0x006d
#define USBSTRG_TRACEERR_WRITE12LBARANGE 0x006e
#define USBSTRG_TRACEERR_WRITE12MEDIANOTPRESENT 0x006f
#define USBSTRG_TRACEERR_WRITE12READONLY 0x0070
#define USBSTRG_TRACEERR_WRITE6FLAGS 0x0071
#define USBSTRG_TRACEERR_WRITE6LBARANGE 0x0072
#define USBSTRG_TRACEERR_WRITE6MEDIANOTPRESENT 0x0073
#define USBSTRG_TRACEERR_WRITE6READONLY 0x0074
#define USBSTRG_TRACEERR_WRSHUTDOWN 0x0075
#define USBSTRG_TRACEERR_WRUNEXPECTED 0x0076
/****************************************************************************
* Public Types