2011-12-19 15:24:09 -04:00
|
|
|
/****************************************************************************
|
2012-01-24 17:51:26 -04:00
|
|
|
* drivers/usbdev/composite.h
|
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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
#ifndef __DRIVERS_USBDEV_COMPOSITE_H
|
|
|
|
#define __DRIVERS_USBDEV_COMPOSITE_H 1
|
2011-12-19 15:24:09 -04:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
#include <nuttx/usb/usb.h>
|
2011-12-19 15:24:09 -04:00
|
|
|
#include <nuttx/usb/usbdev_trace.h>
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
#ifdef CONFIG_USBDEV_COMPOSITE
|
|
|
|
|
2012-01-25 19:04:17 -04:00
|
|
|
#ifdef CONFIG_CDCACM_COMPOSITE
|
|
|
|
# include <nuttx/usb/cdcacm.h>
|
2012-01-25 15:27:20 -04:00
|
|
|
# include "cdcacm.h"
|
|
|
|
#endif
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#ifdef CONFIG_USBMSC_COMPOSITE
|
2012-01-26 10:24:15 -04:00
|
|
|
# include "usbmsc.h"
|
2012-01-25 15:27:20 -04:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
****************************************************************************/
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_USBDEV_TRACE_NRECORDS
|
|
|
|
# define CONFIG_USBDEV_TRACE_NRECORDS 128
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_USBDEV_TRACE_INITIALIDSET
|
|
|
|
# define CONFIG_USBDEV_TRACE_INITIALIDSET 0
|
|
|
|
#endif
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
/* Packet sizes */
|
|
|
|
|
|
|
|
#ifndef CONFIG_COMPOSITE_EP0MAXPACKET
|
|
|
|
# define CONFIG_COMPOSITE_EP0MAXPACKET 64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Vendor and product IDs and strings */
|
|
|
|
|
|
|
|
#ifndef CONFIG_COMPOSITE_COMPOSITE
|
|
|
|
# ifndef CONFIG_COMPOSITE_VENDORID
|
|
|
|
# warning "CONFIG_COMPOSITE_VENDORID not defined"
|
2012-01-25 15:27:20 -04:00
|
|
|
# define CONFIG_COMPOSITE_VENDORID 0x03eb
|
2012-01-24 17:51:26 -04:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef CONFIG_COMPOSITE_PRODUCTID
|
|
|
|
# warning "CONFIG_COMPOSITE_PRODUCTID not defined"
|
2012-01-25 15:27:20 -04:00
|
|
|
# define CONFIG_COMPOSITE_PRODUCTID 0x2022
|
2012-01-24 17:51:26 -04:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef CONFIG_COMPOSITE_VERSIONNO
|
2012-01-25 15:27:20 -04:00
|
|
|
# define CONFIG_COMPOSITE_VERSIONNO (0x0101)
|
2012-01-24 17:51:26 -04:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef CONFIG_COMPOSITE_VENDORSTR
|
|
|
|
# warning "No Vendor string specified"
|
|
|
|
# define CONFIG_COMPOSITE_VENDORSTR "NuttX"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef CONFIG_COMPOSITE_PRODUCTSTR
|
|
|
|
# warning "No Product string specified"
|
|
|
|
# define CONFIG_COMPOSITE_PRODUCTSTR "Composite Device"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# undef CONFIG_COMPOSITE_SERIALSTR
|
|
|
|
# define CONFIG_COMPOSITE_SERIALSTR "0101"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef CONFIG_COMPOSITE_CONFIGSTR
|
|
|
|
#define CONFIG_COMPOSITE_CONFIGSTR "Composite"
|
|
|
|
|
2012-01-25 15:27:20 -04:00
|
|
|
/* Constituent devices ******************************************************/
|
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#undef DEV1_IS_CDCACM
|
|
|
|
#undef DEV1_IS_USBMSC
|
2012-01-25 15:27:20 -04:00
|
|
|
|
2012-01-25 16:17:59 -04:00
|
|
|
#undef DEV2_IS_CDCACM
|
|
|
|
#undef DEV2_IS_USBMSC
|
2012-01-25 15:27:20 -04:00
|
|
|
|
|
|
|
/* Pick the first device in the composite. At present, this may only be
|
|
|
|
* the CDC serial device or the mass storage device.
|
|
|
|
*/
|
|
|
|
|
2012-01-25 19:04:17 -04:00
|
|
|
#if defined(CONFIG_CDCACM_COMPOSITE)
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV1_IS_CDCACM 1
|
2012-01-25 19:04:17 -04:00
|
|
|
# define DEV1_MKCFGDESC cdcacm_mkcfgdesc
|
2012-01-25 15:27:20 -04:00
|
|
|
# define DEV1_CLASSOBJECT board_cdcclassobject
|
2012-01-25 19:04:17 -04:00
|
|
|
# define DEV1_NCONFIGS CDCACM_NCONFIGS
|
|
|
|
# define DEV1_CONFIGID CDCACM_CONFIGID
|
|
|
|
# define DEV1_FIRSTINTERFACE CONFIG_CDCACM_IFNOBASE
|
|
|
|
# define DEV1_NINTERFACES CDCACM_NINTERFACES
|
|
|
|
# define DEV1_FIRSTSTRID CONFIG_CDCACM_STRBASE
|
|
|
|
# define DEV1_NSTRIDS (CDCACM_LASTSTRID-CONFIG_CDCACM_STRBASE)
|
|
|
|
# define DEV1_CFGDESCSIZE SIZEOF_CDCACM_CFGDESC
|
|
|
|
#elif defined(CONFIG_CDCACM_COMPOSITE)
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV1_IS_USBMSC 1
|
|
|
|
# define DEV1_MKCFGDESC usbmsc_mkcfgdesc
|
2012-01-25 15:27:20 -04:00
|
|
|
# define DEV1_CLASSOBJECT board_mscclassobject
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV1_NCONFIGS USBMSC_NCONFIGS
|
|
|
|
# define DEV1_CONFIGID USBMSC_CONFIGID
|
|
|
|
# define DEV1_FIRSTINTERFACE CONFIG_USBMSC_IFNOBASE
|
|
|
|
# define DEV1_NINTERFACES USBMSC_NINTERFACES
|
|
|
|
# define DEV1_FIRSTSTRID CONFIG_USBMSC_IFNOBASE
|
|
|
|
# define DEV1_NSTRIDS (USBMSC_LASTSTRID-CONFIG_USBMSC_STRBASE)
|
|
|
|
# define DEV1_CFGDESCSIZE SIZEOF_USBMSC_CFGDESC
|
2012-01-25 15:27:20 -04:00
|
|
|
#else
|
|
|
|
# error "No members of the composite defined"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Pick the second device in the composite. At present, this may only be
|
|
|
|
* the CDC serial device or the mass storage device.
|
|
|
|
*/
|
|
|
|
|
2012-01-25 19:04:17 -04:00
|
|
|
#if defined(CONFIG_CDCACM_COMPOSITE) && !defined(DEV1_IS_CDCACM)
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV2_IS_CDCACM 1
|
2012-01-25 19:04:17 -04:00
|
|
|
# define DEV2_MKCFGDESC cdcacm_mkcfgdesc
|
2012-01-25 15:27:20 -04:00
|
|
|
# define DEV2_CLASSOBJECT board_cdcclassobject
|
2012-01-25 19:04:17 -04:00
|
|
|
# define DEV2_NCONFIGS CDCACM_NCONFIGS
|
|
|
|
# define DEV2_CONFIGID CDCACM_CONFIGID
|
|
|
|
# define DEV2_FIRSTINTERFACE CONFIG_CDCACM_IFNOBASE
|
|
|
|
# define DEV2_NINTERFACES CDCACM_NINTERFACES
|
|
|
|
# define DEV2_FIRSTSTRID CONFIG_CDCACM_STRBASE
|
|
|
|
# define DEV2_NSTRIDS (CDCACM_LASTSTRID-CONFIG_CDCACM_STRBASE)
|
|
|
|
# define DEV2_CFGDESCSIZE SIZEOF_CDCACM_CFGDESC
|
|
|
|
#elif defined(CONFIG_CDCACM_COMPOSITE) && !defined(DEV1_IS_USBMSC)
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV2_IS_USBMSC 1
|
|
|
|
# define DEV2_MKCFGDESC usbmsc_mkcfgdesc
|
2012-01-25 15:27:20 -04:00
|
|
|
# define DEV2_CLASSOBJECT board_mscclassobject
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV2_NCONFIGS USBMSC_NCONFIGS
|
|
|
|
# define DEV2_CONFIGID USBMSC_CONFIGID
|
|
|
|
# define DEV2_FIRSTINTERFACE CONFIG_USBMSC_IFNOBASE
|
|
|
|
# define DEV2_NINTERFACES USBMSC_NINTERFACES
|
2012-01-25 19:04:17 -04:00
|
|
|
# define DEV2_FIRSTSTRID CONFIG_CDCACM_STRBASE
|
2012-01-25 16:17:59 -04:00
|
|
|
# define DEV2_NSTRIDS (USBMSC_LASTSTRID-CONFIG_USBMSC_STRBASE)
|
|
|
|
# define DEV2_CFGDESCSIZE SIZEOF_USBMSC_CFGDESC
|
2012-01-25 15:27:20 -04:00
|
|
|
#else
|
|
|
|
# error "Insufficient members of the composite defined"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Verify interface configuration */
|
|
|
|
|
|
|
|
#if DEV1_FIRSTINTERFACE != 0
|
|
|
|
# warning "The first interface number should be zero"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (DEV1_FIRSTINTERFACE + DEV2_NINTERFACES) != DEV2_FIRSTINTERFACE
|
|
|
|
# warning "Interface numbers are not contiguous"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Total size of the configuration descriptor: */
|
|
|
|
|
|
|
|
#define COMPOSITE_CFGDESCSIZE (USB_SIZEOF_CFGDESC + DEV1_CFGDESCSIZE + DEV2_CFGDESCSIZE)
|
|
|
|
|
|
|
|
/* The total number of interfaces */
|
|
|
|
|
|
|
|
#define COMPOSITE_NINTERFACES (DEV1_NINTERFACES + DEV2_NINTERFACES)
|
|
|
|
|
|
|
|
/* Composite configuration ID value */
|
|
|
|
|
|
|
|
#if DEV1_NCONFIGS != 1 || DEV1_CONFIGID != 1
|
|
|
|
# error "DEV1: Only a single configuration is supported"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DEV2_NCONFIGS != 1 || DEV2_CONFIGID != 1
|
|
|
|
# error "DEV2: Only a single configuration is supported"
|
|
|
|
#endif
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
/* Descriptors **************************************************************/
|
2012-01-25 15:27:20 -04:00
|
|
|
/* These settings are not modifiable via the NuttX configuration */
|
|
|
|
|
|
|
|
#define COMPOSITE_CONFIGIDNONE (0) /* Config ID = 0 means to return to address mode */
|
|
|
|
#define COMPOSITE_NCONFIGS (1) /* The number of configurations supported */
|
|
|
|
#define COMPOSITE_CONFIGID (1) /* The only supported configuration ID */
|
|
|
|
|
|
|
|
/* String language */
|
|
|
|
|
|
|
|
#define COMPOSITE_STR_LANGUAGE (0x0409) /* en-us */
|
2012-01-24 17:51:26 -04:00
|
|
|
|
|
|
|
/* Descriptor strings */
|
|
|
|
|
|
|
|
#define COMPOSITE_MANUFACTURERSTRID (1)
|
|
|
|
#define COMPOSITE_PRODUCTSTRID (2)
|
|
|
|
#define COMPOSITE_SERIALSTRID (3)
|
|
|
|
#define COMPOSITE_CONFIGSTRID (4)
|
|
|
|
|
2012-01-25 15:27:20 -04:00
|
|
|
/* Everpresent MIN/MAX macros ***********************************************/
|
|
|
|
|
|
|
|
#ifndef MIN
|
|
|
|
# define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX
|
|
|
|
# define MAX(a,b) ((a) > (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2011-12-19 15:24:09 -04:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-25 15:27:20 -04:00
|
|
|
extern const char g_compvendorstr[];
|
|
|
|
extern const char g_compproductstr[];
|
|
|
|
extern const char g_compserialstr[];
|
|
|
|
|
2011-12-19 15:24:09 -04:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
/****************************************************************************
|
2012-01-25 16:17:59 -04:00
|
|
|
* Name: usbmsc_mkstrdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
|
|
|
* Description:
|
2012-01-24 17:51:26 -04:00
|
|
|
* Construct a string descriptor
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
2012-01-24 17:51:26 -04:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int composite_mkstrdesc(uint8_t id, struct usb_strdesc_s *strdesc);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: composite_getepdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
2012-01-24 17:51:26 -04:00
|
|
|
* Description:
|
|
|
|
* Return a pointer to the composite device descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_COMPOSITE_COMPOSITE
|
|
|
|
FAR const struct usb_devdesc_s *composite_getdevdesc(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: composite_mkcfgdesc
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Construct the composite configuration descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
|
|
|
int16_t composite_mkcfgdesc(uint8_t *buf, uint8_t speed, uint8_t type);
|
|
|
|
#else
|
|
|
|
int16_t composite_mkcfgdesc(uint8_t *buf);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: composite_getqualdesc
|
2011-12-19 15:24:09 -04:00
|
|
|
*
|
2012-01-24 17:51:26 -04:00
|
|
|
* Description:
|
|
|
|
* Return a pointer to the composite qual descriptor
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
|
|
|
FAR const struct usb_qualdesc_s *composite_getqualdesc(void);
|
|
|
|
#endif
|
2011-12-19 15:24:09 -04:00
|
|
|
|
2012-01-24 17:51:26 -04:00
|
|
|
#endif /* CONFIG_USBDEV_COMPOSITE */
|
|
|
|
#endif /* __DRIVERS_USBDEV_COMPOSITE_H */
|