2011-12-19 15:24:09 -04:00
|
|
|
/****************************************************************************
|
2012-01-26 10:24:15 -04:00
|
|
|
* drivers/usbdev/usbmsc_descriptors.c
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
2012-01-24 17:51:26 -04:00
|
|
|
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/usb/usb.h>
|
|
|
|
#include <nuttx/usb/usbdev_trace.h>
|
|
|
|
|
2012-01-26 10:24:15 -04:00
|
|
|
#include "usbmsc.h"
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-24 17:51:26 -04:00
|
|
|
* Pre-processor Definitions
|
2011-12-19 15:24:09 -04:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
/* Descriptors **************************************************************/
|
2012-01-24 17:51:26 -04:00
|
|
|
/* Device descriptor. If the USB mass storage device is configured as part
|
|
|
|
* of a composite device, then the device descriptor will be provided by the
|
|
|
|
* composite device logic.
|
|
|
|
*/
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2011-12-19 15:24:09 -04:00
|
|
|
static const struct usb_devdesc_s g_devdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_DEVDESC, /* len */
|
|
|
|
USB_DESC_TYPE_DEVICE, /* type */
|
|
|
|
{LSBYTE(0x0200), MSBYTE(0x0200)}, /* usb */
|
2012-01-31 10:15:36 -04:00
|
|
|
USB_CLASS_PER_INTERFACE, /* classid */
|
2011-12-19 15:24:09 -04:00
|
|
|
0, /* subclass */
|
|
|
|
0, /* protocol */
|
2012-01-25 16:17:59 -04:00
|
|
|
CONFIG_USBMSC_EP0MAXPACKET, /* maxpacketsize */
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* vendor */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(CONFIG_USBMSC_VENDORID),
|
|
|
|
MSBYTE(CONFIG_USBMSC_VENDORID)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
|
|
|
{ /* product */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(CONFIG_USBMSC_PRODUCTID),
|
|
|
|
MSBYTE(CONFIG_USBMSC_PRODUCTID) },
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* device */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(CONFIG_USBMSC_VERSIONNO),
|
|
|
|
MSBYTE(CONFIG_USBMSC_VERSIONNO)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_MANUFACTURERSTRID, /* imfgr */
|
|
|
|
USBMSC_PRODUCTSTRID, /* iproduct */
|
|
|
|
USBMSC_SERIALSTRID, /* serno */
|
|
|
|
USBMSC_NCONFIGS /* nconfigs */
|
2011-12-19 15:24:09 -04:00
|
|
|
};
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
/* Configuration descriptor If the USB mass storage device is configured as part
|
|
|
|
* of a composite device, then the configuration descriptor will be provided by the
|
|
|
|
* composite device logic.
|
|
|
|
*/
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2011-12-19 15:24:09 -04:00
|
|
|
static const struct usb_cfgdesc_s g_cfgdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_CFGDESC, /* len */
|
|
|
|
USB_DESC_TYPE_CONFIG, /* type */
|
2012-01-27 12:25:57 -04:00
|
|
|
{ /* totallen */
|
|
|
|
LSBYTE(SIZEOF_USBMSC_CFGDESC),
|
|
|
|
MSBYTE(SIZEOF_USBMSC_CFGDESC)
|
|
|
|
},
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_NINTERFACES, /* ninterfaces */
|
|
|
|
USBMSC_CONFIGID, /* cfgvalue */
|
|
|
|
USBMSC_CONFIGSTRID, /* icfg */
|
2011-12-19 15:24:09 -04:00
|
|
|
USB_CONFIG_ATTR_ONE|SELFPOWERED|REMOTEWAKEUP, /* attr */
|
|
|
|
(CONFIG_USBDEV_MAXPOWER + 1) / 2 /* mxpower */
|
|
|
|
};
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
/* Single interface descriptor */
|
|
|
|
|
|
|
|
static const struct usb_ifdesc_s g_ifdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_IFDESC, /* len */
|
|
|
|
USB_DESC_TYPE_INTERFACE, /* type */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_INTERFACEID, /* ifno */
|
|
|
|
USBMSC_ALTINTERFACEID, /* alt */
|
|
|
|
USBMSC_NENDPOINTS, /* neps */
|
2012-01-31 10:15:36 -04:00
|
|
|
USB_CLASS_MASS_STORAGE, /* classid */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_SUBCLASS_SCSI, /* subclass */
|
|
|
|
USBMSC_PROTO_BULKONLY, /* protocol */
|
|
|
|
USBMSC_INTERFACESTRID /* iif */
|
2011-12-19 15:24:09 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Endpoint descriptors */
|
|
|
|
|
|
|
|
static const struct usb_epdesc_s g_fsepbulkoutdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_EPDESC, /* len */
|
|
|
|
USB_DESC_TYPE_ENDPOINT, /* type */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_EPOUTBULK_ADDR, /* addr */
|
|
|
|
USBMSC_EPOUTBULK_ATTR, /* attr */
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* maxpacket */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(USBMSC_FSBULKMAXPACKET),
|
|
|
|
MSBYTE(USBMSC_FSBULKMAXPACKET)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
|
|
|
0 /* interval */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct usb_epdesc_s g_fsepbulkindesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_EPDESC, /* len */
|
|
|
|
USB_DESC_TYPE_ENDPOINT, /* type */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_EPINBULK_ADDR, /* addr */
|
|
|
|
USBMSC_EPINBULK_ATTR, /* attr */
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* maxpacket */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(USBMSC_FSBULKMAXPACKET),
|
|
|
|
MSBYTE(USBMSC_FSBULKMAXPACKET)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
|
|
|
0 /* interval */
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2011-12-19 15:24:09 -04:00
|
|
|
static const struct usb_qualdesc_s g_qualdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_QUALDESC, /* len */
|
|
|
|
USB_DESC_TYPE_DEVICEQUALIFIER, /* type */
|
|
|
|
{ /* usb */
|
|
|
|
LSBYTE(0x0200),
|
|
|
|
MSBYTE(0x0200)
|
|
|
|
},
|
2012-01-31 10:15:36 -04:00
|
|
|
USB_CLASS_PER_INTERFACE, /* classid */
|
2011-12-19 15:24:09 -04:00
|
|
|
0, /* subclass */
|
|
|
|
0, /* protocol */
|
2012-01-25 16:17:59 -04:00
|
|
|
CONFIG_USBMSC_EP0MAXPACKET, /* mxpacketsize */
|
|
|
|
USBMSC_NCONFIGS, /* nconfigs */
|
2011-12-19 15:24:09 -04:00
|
|
|
0, /* reserved */
|
|
|
|
};
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
static const struct usb_epdesc_s g_hsepbulkoutdesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_EPDESC, /* len */
|
|
|
|
USB_DESC_TYPE_ENDPOINT, /* type */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_EPOUTBULK_ADDR, /* addr */
|
|
|
|
USBMSC_EPOUTBULK_ATTR, /* attr */
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* maxpacket */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(USBMSC_HSBULKMAXPACKET),
|
|
|
|
MSBYTE(USBMSC_HSBULKMAXPACKET)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
|
|
|
0 /* interval */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct usb_epdesc_s g_hsepbulkindesc =
|
|
|
|
{
|
|
|
|
USB_SIZEOF_EPDESC, /* len */
|
|
|
|
USB_DESC_TYPE_ENDPOINT, /* type */
|
2012-01-25 16:17:59 -04:00
|
|
|
USBMSC_EPINBULK_ADDR, /* addr */
|
|
|
|
USBMSC_EPINBULK_ATTR, /* attr */
|
2011-12-19 15:24:09 -04:00
|
|
|
{ /* maxpacket */
|
2012-01-25 16:17:59 -04:00
|
|
|
LSBYTE(USBMSC_HSBULKMAXPACKET),
|
|
|
|
MSBYTE(USBMSC_HSBULKMAXPACKET)
|
2011-12-19 15:24:09 -04:00
|
|
|
},
|
|
|
|
0 /* interval */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
/* Strings ******************************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2012-01-25 18:20:48 -04:00
|
|
|
const char g_mscvendorstr[] = CONFIG_USBMSC_VENDORSTR;
|
2012-01-25 16:17:59 -04:00
|
|
|
const char g_mscproductstr[] = CONFIG_USBMSC_PRODUCTSTR;
|
|
|
|
const char g_mscserialstr[] = CONFIG_USBMSC_SERIALSTR;
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_mkstrdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Construct a string descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
int usbmsc_mkstrdesc(uint8_t id, struct usb_strdesc_s *strdesc)
|
2011-12-19 15:24:09 -04:00
|
|
|
{
|
|
|
|
const char *str;
|
|
|
|
int len;
|
|
|
|
int ndata;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (id)
|
|
|
|
{
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2011-12-19 15:24:09 -04:00
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
/* Descriptor 0 is the language id */
|
|
|
|
|
|
|
|
strdesc->len = 4;
|
|
|
|
strdesc->type = USB_DESC_TYPE_STRING;
|
2012-01-25 16:17:59 -04:00
|
|
|
strdesc->data[0] = LSBYTE(USBMSC_STR_LANGUAGE);
|
|
|
|
strdesc->data[1] = MSBYTE(USBMSC_STR_LANGUAGE);
|
2011-12-19 15:24:09 -04:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_MANUFACTURERSTRID:
|
2012-01-25 18:20:48 -04:00
|
|
|
str = g_mscvendorstr;
|
2011-12-19 15:24:09 -04:00
|
|
|
break;
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_PRODUCTSTRID:
|
2012-01-25 18:20:48 -04:00
|
|
|
str = g_mscproductstr;
|
2011-12-19 15:24:09 -04:00
|
|
|
break;
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_SERIALSTRID:
|
2012-01-25 18:20:48 -04:00
|
|
|
str = g_mscserialstr;
|
2011-12-19 15:24:09 -04:00
|
|
|
break;
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
/* case USBMSC_CONFIGSTRID: */
|
|
|
|
case USBMSC_INTERFACESTRID:
|
|
|
|
str = CONFIG_USBMSC_CONFIGSTR;
|
2011-12-19 15:24:09 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The string is utf16-le. The poor man's utf-8 to utf16-le
|
|
|
|
* conversion below will only handle 7-bit en-us ascii
|
|
|
|
*/
|
|
|
|
|
|
|
|
len = strlen(str);
|
|
|
|
for (i = 0, ndata = 0; i < len; i++, ndata += 2)
|
|
|
|
{
|
|
|
|
strdesc->data[ndata] = str[i];
|
|
|
|
strdesc->data[ndata+1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
strdesc->len = ndata+2;
|
|
|
|
strdesc->type = USB_DESC_TYPE_STRING;
|
|
|
|
return strdesc->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_getepdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return a pointer to the raw device descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
|
|
|
FAR const struct usb_devdesc_s *usbmsc_getdevdesc(void)
|
2011-12-19 15:24:09 -04:00
|
|
|
{
|
|
|
|
return &g_devdesc;
|
|
|
|
}
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_getepdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return a pointer to the raw endpoint descriptor (used for configuring
|
|
|
|
* endpoints)
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
FAR const struct usb_epdesc_s *usbmsc_getepdesc(enum usbmsc_epdesc_e epid)
|
2011-12-19 15:24:09 -04:00
|
|
|
{
|
|
|
|
switch (epid)
|
|
|
|
{
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_EPFSBULKOUT: /* Full speed bulk OUT endpoint descriptor */
|
2011-12-19 15:24:09 -04:00
|
|
|
return &g_fsepbulkoutdesc;
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_EPFSBULKIN: /* Full speed bulk IN endpoint descriptor */
|
2011-12-19 15:24:09 -04:00
|
|
|
return &g_fsepbulkindesc;
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_EPHSBULKOUT: /* High speed bulk OUT endpoint descriptor */
|
2011-12-19 15:24:09 -04:00
|
|
|
return &g_hsepbulkoutdesc;
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
case USBMSC_EPHSBULKIN: /* High speed bulk IN endpoint descriptor */
|
2011-12-19 15:24:09 -04:00
|
|
|
return &g_hsepbulkindesc;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_mkcfgdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Construct the configuration descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
2012-01-25 16:17:59 -04:00
|
|
|
int16_t usbmsc_mkcfgdesc(uint8_t *buf, uint8_t speed, uint8_t type)
|
2011-12-19 15:24:09 -04:00
|
|
|
#else
|
2012-01-25 16:17:59 -04:00
|
|
|
int16_t usbmsc_mkcfgdesc(uint8_t *buf)
|
2011-12-19 15:24:09 -04:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
|
|
|
FAR const struct usb_epdesc_s *epdesc;
|
|
|
|
bool hispeed = (speed == USB_SPEED_HIGH);
|
|
|
|
uint16_t bulkmxpacket;
|
|
|
|
#endif
|
|
|
|
|
2012-01-27 12:25:57 -04:00
|
|
|
/* Configuration descriptor. If the USB mass storage device is
|
|
|
|
* configured as part of a composite device, then the configuration
|
2012-01-24 17:51:26 -04:00
|
|
|
* descriptor will be provided by the composite device logic.
|
2011-12-19 15:24:09 -04:00
|
|
|
*/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifndef CONFIG_USBMSC_COMPOSITE
|
2012-01-27 12:25:57 -04:00
|
|
|
memcpy(buf, &g_cfgdesc, USB_SIZEOF_CFGDESC);
|
2011-12-19 15:24:09 -04:00
|
|
|
buf += USB_SIZEOF_CFGDESC;
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
/* Copy the canned interface descriptor */
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
memcpy(buf, &g_ifdesc, USB_SIZEOF_IFDESC);
|
|
|
|
buf += USB_SIZEOF_IFDESC;
|
|
|
|
|
|
|
|
/* Make the two endpoint configurations */
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
|
|
|
/* Check for switches between high and full speed */
|
|
|
|
|
|
|
|
hispeed = (speed == USB_SPEED_HIGH);
|
|
|
|
if (type == USB_DESC_TYPE_OTHERSPEEDCONFIG)
|
|
|
|
{
|
|
|
|
hispeed = !hispeed;
|
|
|
|
}
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
bulkmxpacket = USBMSC_BULKMAXPACKET(hispeed);
|
|
|
|
epdesc = USBMSC_EPBULKINDESC(hispeed);
|
2011-12-19 15:24:09 -04:00
|
|
|
memcpy(buf, epdesc, USB_SIZEOF_EPDESC);
|
|
|
|
buf += USB_SIZEOF_EPDESC;
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
epdesc = USBMSC_EPBULKOUTDESC(hispeed);
|
2011-12-19 15:24:09 -04:00
|
|
|
memcpy(buf, epdesc, USB_SIZEOF_EPDESC);
|
|
|
|
#else
|
|
|
|
memcpy(buf, &g_fsepbulkoutdesc, USB_SIZEOF_EPDESC);
|
|
|
|
buf += USB_SIZEOF_EPDESC;
|
|
|
|
memcpy(buf, &g_fsepbulkindesc, USB_SIZEOF_EPDESC);
|
|
|
|
#endif
|
|
|
|
|
2012-01-27 12:25:57 -04:00
|
|
|
return SIZEOF_USBMSC_CFGDESC;
|
2011-12-19 15:24:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_getqualdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return a pointer to the raw qual descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#if !defined(CONFIG_USBMSC_COMPOSITE) && defined(CONFIG_USBDEV_DUALSPEED)
|
|
|
|
FAR const struct usb_qualdesc_s *usbmsc_getqualdesc(void)
|
2011-12-19 15:24:09 -04:00
|
|
|
{
|
|
|
|
return &g_qualdesc;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|