summaryrefslogtreecommitdiff
path: root/apps/system
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-09-25 18:50:14 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-09-25 18:50:14 -0600
commit97ef769f2d180b5809c2f9513cf4bb66de1f2595 (patch)
treeae801e098a52399edee7d6a322c486a92b5fd499 /apps/system
parent54cd9689cccad1949c067f40d500491851799221 (diff)
downloadnuttx-97ef769f2d180b5809c2f9513cf4bb66de1f2595.tar.gz
nuttx-97ef769f2d180b5809c2f9513cf4bb66de1f2595.tar.bz2
nuttx-97ef769f2d180b5809c2f9513cf4bb66de1f2595.zip
Mov apps/examples/composite to apps/system/composite; convert configs/stm3210e-eval/composite to use kconfig-frontend tools -- untested
Diffstat (limited to 'apps/system')
-rw-r--r--apps/system/Kconfig8
-rw-r--r--apps/system/Make.defs4
-rw-r--r--apps/system/Makefile5
-rw-r--r--apps/system/composite/.gitignore11
-rw-r--r--apps/system/composite/Kconfig156
-rw-r--r--apps/system/composite/Makefile117
-rwxr-xr-xapps/system/composite/README.txt76
-rw-r--r--apps/system/composite/composite.h255
-rw-r--r--apps/system/composite/composite_main.c850
9 files changed, 1478 insertions, 4 deletions
diff --git a/apps/system/Kconfig b/apps/system/Kconfig
index c2eec877b..82741e572 100644
--- a/apps/system/Kconfig
+++ b/apps/system/Kconfig
@@ -3,10 +3,14 @@
# see misc/tools/kconfig-language.txt.
#
-menu "USB CDC/ACM Class Commands"
+menu "USB CDC/ACM Device Commands"
source "$APPSDIR/system/cdcacm/Kconfig"
endmenu
+menu "USB Composite Device Commands"
+source "$APPSDIR/system/composite/Kconfig"
+endmenu
+
menu "Custom Free Memory Command"
source "$APPSDIR/system/free/Kconfig"
endmenu
@@ -55,7 +59,7 @@ menu "Stack Monitor"
source "$APPSDIR/system/stackmonitor/Kconfig"
endmenu
-menu "USB Mass Storage Class Commands"
+menu "USB Mass Storage Device Commands"
source "$APPSDIR/system/usbmsc/Kconfig"
endmenu
diff --git a/apps/system/Make.defs b/apps/system/Make.defs
index a314220aa..7c7b886fe 100644
--- a/apps/system/Make.defs
+++ b/apps/system/Make.defs
@@ -38,6 +38,10 @@ ifeq ($(CONFIG_SYSTEM_CDCACM),y)
CONFIGURED_APPS += system/cdcacm
endif
+ifeq ($(CONFIG_SYSTEM_COMPOSITE),y)
+CONFIGURED_APPS += system/composite
+endif
+
ifeq ($(CONFIG_SYSTEM_FREE),y)
CONFIGURED_APPS += system/free
endif
diff --git a/apps/system/Makefile b/apps/system/Makefile
index 46ceccdda..d3438793b 100644
--- a/apps/system/Makefile
+++ b/apps/system/Makefile
@@ -37,8 +37,9 @@
# Sub-directories containing system task
-SUBDIRS = cdcacm flash_eraseall free i2c install poweroff ramtest ramtron
-SUBDIRS += readline sdcard stackmonitor sysinfo usbmonitor usbmsc zmodem
+SUBDIRS = cdcacm composite flash_eraseall free i2c install poweroff
+SUBDIRS += ramtest ramtron readline sdcard stackmonitor sysinfo usbmonitor
+SUBDIRS += usbmsc zmodem
# Create the list of installed runtime modules (INSTALLED_DIRS)
diff --git a/apps/system/composite/.gitignore b/apps/system/composite/.gitignore
new file mode 100644
index 000000000..fa1ec7579
--- /dev/null
+++ b/apps/system/composite/.gitignore
@@ -0,0 +1,11 @@
+/Make.dep
+/.depend
+/.built
+/*.asm
+/*.obj
+/*.rel
+/*.lst
+/*.sym
+/*.adb
+/*.lib
+/*.src
diff --git a/apps/system/composite/Kconfig b/apps/system/composite/Kconfig
new file mode 100644
index 000000000..c2850637d
--- /dev/null
+++ b/apps/system/composite/Kconfig
@@ -0,0 +1,156 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config SYSTEM_COMPOSITE
+ bool "USB composite class controls"
+ default n
+ depends on USBDEV_COMPOSITE && !KERNEL_BUILD
+ ---help---
+ Enable the USB composite class controls. These controls include:
+
+ conn: Connect the mass storage device to the host
+ disconn: Disconnect the mass storage device to the host
+
+if SYSTEM_COMPOSITE
+if USBMSC_COMPOSITE
+
+config SYSTEM_COMPOSITE_NLUNS
+ int "Number of LUNs"
+ default 1
+ ---help---
+ Defines the number of logical units (LUNs) exported by the USB
+ storage driver. Each LUN corresponds to one exported block driver
+ (or partition of a block driver). May be 1, 2, or 3. Default is 1.
+
+config SYSTEM_COMPOSITE_DEVMINOR1
+ int "LUN1 Minor Device Number"
+ default 0
+ ---help---
+ The minor device number of the block driver for the first LUN. For
+ example, N in /dev/mmcsdN. Used for registering the block driver.
+ Default is zero.
+
+config SYSTEM_COMPOSITE_DEVPATH1
+ string "LUN1 Device Path"
+ default "/dev/mmcsd0"
+ ---help---
+ The full path to the registered block driver. Default is
+ "/dev/mmcsd0"
+
+config SYSTEM_COMPOSITE_DEVMINOR2
+ int "LUN2 Minor Device Number"
+ default 1
+ ---help---
+ The minor device number of the block driver for the second LUN. For
+ example, N in /dev/mmcsdN. Used for registering the block driver.
+ Ignored if SYSTEM_COMPOSITE_NLUNS < 2. Default is one.
+
+config SYSTEM_COMPOSITE_DEVPATH2
+ string "LUN2 Device Path"
+ default "/dev/mmcsd1"
+ ---help---
+ The full path to the registered block driver. Ignored if
+ SYSTEM_COMPOSITE_NLUNS < 2. Default is "/dev/mmcsd1"
+
+config SYSTEM_COMPOSITE_DEVMINOR3
+ int "LUN3 Minor Device Number"
+ default 2
+ ---help---
+ The minor device number of the block driver for the third LUN. For
+ example, N in /dev/mmcsdN. Used for registering the block driver.
+ Ignored if SYSTEM_COMPOSITE_NLUNS < 2. Default is two.
+
+config SYSTEM_COMPOSITE_DEVPATH3
+ string "LUN3 Device Path"
+ default "/dev/mmcsd2"
+ ---help---
+ The full path to the registered block driver. Ignored if
+ SYSTEM_COMPOSITE_NLUNS < 2. Default is "/dev/mmcsd2"
+
+endif # USBMSC_COMPOSITE
+
+if CDCACM_COMPOSITE
+
+config SYSTEM_COMPOSITE_TTYUSB
+ int "USB serial device minor number
+ default 0
+ ---help---
+ The minor number of the USB serial device. Default is zero
+ (corresponding to /dev/ttyUSB0 or /dev/ttyACM0).
+
+config SYSTEM_COMPOSITE_SERDEV
+ string "USB serial device path"
+ default "/dev/ttyACM0"
+ ---help---
+ The string corresponding to SYSTEM_COMPOSITE_TTYUSB. If
+ SYSTEM_COMPOSITE_TTYUSB is zero, then this would be "/dev/ttyUSB0"
+ (for the PL2303 emulation) or "/dev/ttyACM0" (for the CDC/ACM serial
+ device).
+
+config SYSTEM_COMPOSITE_BUFSIZE
+ int "Serial I/O buffer size"
+ default 256
+ ---help---
+ The size of the serial I/O buffer in bytes. Default 256 bytes.
+
+endif # CDCACM_COMPOSITE
+
+if USBDEV_TRACE || DEBUG_USB
+
+config SYSTEM_COMPOSITE_TRACEINIT
+ bool "USB Trace Initialization"
+ default n
+ ---help---
+ If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
+ then the add-on code will also manage the USB trace output. The
+ amount of trace output can be controlled this configuration value:
+ This setting will show USB initialization events
+
+config SYSTEM_COMPOSITE_TRACECLASS
+ bool "USB Trace Class"
+ default n
+ ---help---
+ If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
+ then the add-on code will also manage the USB trace output. The
+ amount of trace output can be controlled this configuration value:
+ This setting will show USB class driver events
+
+config SYSTEM_COMPOSITE_TRACETRANSFERS
+ bool "USB Trace Transfers"
+ default n
+ ---help---
+ If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
+ then the add-on code will also manage the USB trace output. The
+ amount of trace output can be controlled this configuration value:
+ This setting will show USB data transfer events
+
+config SYSTEM_COMPOSITE_TRACECONTROLLER
+ bool "USB Trace Device Controller Events"
+ default n
+ ---help---
+ If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
+ then the add-on code will also manage the USB trace output. The
+ amount of trace output can be controlled this configuration value:
+ This setting will show USB device controller events
+
+config SYSTEM_COMPOSITE_TRACEINTERRUPTS
+ bool "USB Trace Device Controller Interrupt Events"
+ default n
+ ---help---
+ If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
+ then the add-on code will also manage the USB trace output. The
+ amount of trace output can be controlled this configuration value:
+ This setting will show USB device controller interrupt-related events.
+
+endif # USBDEV_TRACE || DEBUG_USB
+
+config SYSTEM_COMPOSITE_DEBUGMM
+ bool "Memory usage debug"
+ default n
+ ---help---
+ Enables some debug tests to check for memory usage and memory leaks.
+
+endif
+
diff --git a/apps/system/composite/Makefile b/apps/system/composite/Makefile
new file mode 100644
index 000000000..83d36d5e8
--- /dev/null
+++ b/apps/system/composite/Makefile
@@ -0,0 +1,117 @@
+############################################################################
+# apps/system/composite/Makefile
+#
+# Copyright (C) 2012 Gregory Nutt. All rights reserved.
+# Author: Gregory Nutt <gnutt@nuttx.org>
+#
+# 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.
+#
+############################################################################
+
+-include $(TOPDIR)/.config
+-include $(TOPDIR)/Make.defs
+include $(APPDIR)/Make.defs
+
+# USB device mass storage add-on
+
+ASRCS =
+CSRCS = composite_main.c
+
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+COBJS = $(CSRCS:.c=$(OBJEXT))
+
+SRCS = $(ASRCS) $(CSRCS)
+OBJS = $(AOBJS) $(COBJS)
+
+ifeq ($(CONFIG_WINDOWS_NATIVE),y)
+ BIN = ..\..\libapps$(LIBEXT)
+else
+ifeq ($(WINTOOL),y)
+ BIN = ..\\..\\libapps$(LIBEXT)
+else
+ BIN = ../../libapps$(LIBEXT)
+endif
+endif
+
+ROOTDEPPATH = --dep-path .
+
+# USB storage built-in application info
+
+APPNAME1 = conn
+PRIORITY1 = SCHED_PRIORITY_DEFAULT
+STACKSIZE1 = 2048
+
+APPNAME2 = disconn
+PRIORITY2 = SCHED_PRIORITY_DEFAULT
+STACKSIZE2 = 2048
+
+# Common build
+
+VPATH =
+
+all: .built
+.PHONY: context clean depend distclean
+
+$(AOBJS): %$(OBJEXT): %.S
+ $(call ASSEMBLE, $<, $@)
+
+$(COBJS): %$(OBJEXT): %.c
+ $(call COMPILE, $<, $@)
+
+.built: $(OBJS)
+ $(call ARCHIVE, $(BIN), $(OBJS))
+ @touch .built
+
+ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
+$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME1)_main.bdat: $(DEPCONFIG) Makefile
+ $(call REGISTER,$(APPNAME1),$(PRIORITY1),$(STACKSIZE1),$(APPNAME1)_main)
+
+$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME2)_main.bdat: $(DEPCONFIG) Makefile
+ $(call REGISTER,$(APPNAME2),$(PRIORITY2),$(STACKSIZE2),$(APPNAME2)_main)
+
+context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME1)_main.bdat $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME2)_main.bdat
+else
+context:
+endif
+
+.depend: Makefile $(SRCS)
+ @$(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @touch $@
+
+depend: .depend
+
+clean:
+ $(call DELFILE, .built)
+ $(call CLEAN)
+
+distclean: clean
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
+
+-include Make.dep
+
diff --git a/apps/system/composite/README.txt b/apps/system/composite/README.txt
new file mode 100755
index 000000000..14d912f1c
--- /dev/null
+++ b/apps/system/composite/README.txt
@@ -0,0 +1,76 @@
+system/composite
+^^^^^^^^^^^^^^^^^^
+
+ This logic adds a NXH command to control a USB composite device. The only
+ supported composite is CDC/ACM serial with a USB mass storage device.
+
+ Required overall configuration:
+
+ CONFIG_USBDEV=y - USB device support
+ CONFIG_USBDEV_COMPOSITE=y - USB composite device support
+ CONFIG_COMPOSITE_IAD=y - Interface associate descriptor needed
+
+ CONFIG_CDCACM=y - USB CDC/ACM serial device support
+ CONFIG_CDCACM_COMPOSITE=y - USB CDC/ACM serial composite device support
+ CONFIG_CDCACM_IFNOBASE=0 - CDC/ACM interfaces start with number 0
+ CONFIG_CDCACM_STRBASE=4 - Base of string numbers (not really needed)
+ CONFIG_CDCACM_EPINTIN=1 - Endpoint numbers must be unique
+ CONFIG_CDCACM_EPBULKIN=2
+ CONFIG_CDCACM_EPBULKOUT=3
+
+ CONFIG_USBMSC - USB mass storage device support
+ CONFIG_USBMSC_COMPOSITE=y - USB mass storage composite device support
+ CONFIG_USBMSC_IFNOBASE=2 - USB mass storage interfaces start with number 2
+ CONFIG_USBMSC_STRBASE=4 - Base of string numbers (needed)
+ CONFIG_USBMSC_EPBULKOUT=4 - Endpoint numbers must be unique
+ CONFIG_USBMSC_EPBULKIN=5
+
+ CONFIG_NSH_BUILTIN_APPS
+ This add-on can be built as two NSH "built-in" commands if this option
+ is selected: 'conn' will connect the USB composite device; 'msdis'
+ will disconnect the USB composite device.
+
+ Configuration options unique to this add-on:
+
+ CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+ Enables some debug tests to check for memory usage and memory leaks.
+
+ CONFIG_SYSTEM_COMPOSITE_NLUNS
+ Defines the number of logical units (LUNs) exported by the USB storage
+ driver. Each LUN corresponds to one exported block driver (or partition
+ of a block driver). May be 1, 2, or 3. Default is 1.
+ CONFIG_SYSTEM_COMPOSITE_DEVMINOR1
+ The minor device number of the block driver for the first LUN. For
+ example, N in /dev/mmcsdN. Used for registering the block driver. Default
+ is zero.
+ CONFIG_SYSTEM_COMPOSITE_DEVPATH1
+ The full path to the registered block driver. Default is "/dev/mmcsd0"
+ CONFIG_SYSTEM_COMPOSITE_DEVMINOR2 and CONFIG_SYSTEM_COMPOSITE_DEVPATH2
+ Similar parameters that would have to be provided if CONFIG_SYSTEM_COMPOSITE_NLUNS
+ is 2 or 3. No defaults.
+ CONFIG_SYSTEM_COMPOSITE_DEVMINOR3 and CONFIG_SYSTEM_COMPOSITE_DEVPATH2
+ Similar parameters that would have to be provided if CONFIG_SYSTEM_COMPOSITE_NLUNS
+ is 3. No defaults.
+
+ CONFIG_SYSTEM_COMPOSITE_TTYUSB - The minor number of the USB serial device.
+ Default is zero (corresponding to /dev/ttyUSB0 or /dev/ttyACM0). Default is zero.
+ CCONFIG_SYSTEM_COMPOSITE_SERDEV - The string corresponding to
+ CONFIG_SYSTEM_COMPOSITE_TTYUSB. The default is "/dev/ttyUSB0" (for the PL2303
+ emulation) or "/dev/ttyACM0" (for the CDC/ACM serial device).
+ CONFIG_SYSTEM_COMPOSITE_BUFSIZE - The size of the serial I/O buffer in
+ bytes. Default 256 bytes.
+
+ If CONFIG_USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), then
+ the add-on code will also manage the USB trace output. The amount of trace output
+ can be controlled using:
+
+ CONFIG_SYSTEM_COMPOSITE_TRACEINIT
+ Show initialization events
+ CONFIG_SYSTEM_COMPOSITE_TRACECLASS
+ Show class driver events
+ CONFIG_SYSTEM_COMPOSITE_TRACETRANSFERS
+ Show data transfer events
+ CONFIG_SYSTEM_COMPOSITE_TRACECONTROLLER
+ Show controller events
+ CONFIG_SYSTEM_COMPOSITE_TRACEINTERRUPTS
+ Show interrupt-related events.
diff --git a/apps/system/composite/composite.h b/apps/system/composite/composite.h
new file mode 100644
index 000000000..699dcf05e
--- /dev/null
+++ b/apps/system/composite/composite.h
@@ -0,0 +1,255 @@
+/****************************************************************************
+ * system/composite/composite.h
+ *
+ * Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
+ *
+ * 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 __SYSTEM_COMPOSITE_COMPOSITE_H
+#define __SYSTEM_COMPOSITE_COMPOSITE_H
+
+/****************************************************************************
+ * Included Files
+ ****************************************************************************/
+
+#include <nuttx/config.h>
+#include <stdlib.h>
+
+/****************************************************************************
+ * Pre-Processor Definitions
+ ****************************************************************************/
+/* Configuration ************************************************************/
+/* OS/Driver configuration checkes */
+
+#ifndef CONFIG_USBDEV
+# error "USB device support is not enabled (CONFIG_USBDEV)"
+#endif
+
+#ifndef CONFIG_USBDEV_COMPOSITE
+# error "USB composite device support is not enabled (CONFIG_USBDEV_COMPOSITE)"
+#endif
+
+#ifndef CONFIG_CDCACM
+# error "USB CDC/ACM serial device support is not enabled (CONFIG_CDCACM)"
+#endif
+
+#ifndef CONFIG_CDCACM_COMPOSITE
+# error "USB CDC/ACM serial composite device support is not enabled (CONFIG_CDCACM_COMPOSITE)"
+#endif
+
+#ifndef CONFIG_USBMSC
+# error "USB mass storage device support is not enabled (CONFIG_USBMSC)"
+#endif
+
+#ifndef CONFIG_USBMSC_COMPOSITE
+# error "USB mass storage composite device support is not enabled (CONFIG_USBMSC_COMPOSITE)"
+#endif
+
+/* Add-on Mass Storagte Class default values */
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_NLUNS
+# define CONFIG_SYSTEM_COMPOSITE_NLUNS 1
+#endif
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_DEVMINOR1
+# define CONFIG_SYSTEM_COMPOSITE_DEVMINOR1 0
+#endif
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_DEVPATH1
+# define CONFIG_SYSTEM_COMPOSITE_DEVPATH1 "/dev/mmcsd0"
+#endif
+
+#if CONFIG_SYSTEM_COMPOSITE_NLUNS > 1
+# ifndef CONFIG_SYSTEM_COMPOSITE_DEVMINOR2
+# error "CONFIG_SYSTEM_COMPOSITE_DEVMINOR2 for LUN=2"
+# endif
+# ifndef CONFIG_SYSTEM_COMPOSITE_DEVPATH2
+# error "CONFIG_SYSTEM_COMPOSITE_DEVPATH2 for LUN=2"
+# endif
+# if CONFIG_SYSTEM_COMPOSITE_NLUNS > 2
+# ifndef CONFIG_SYSTEM_COMPOSITE_DEVMINOR3
+# error "CONFIG_SYSTEM_COMPOSITE_DEVMINOR2 for LUN=3"
+# endif
+# ifndef CONFIG_SYSTEM_COMPOSITE_DEVPATH2
+# error "CONFIG_SYSTEM_COMPOSITE_DEVPATH2 for LUN=3"
+# endif
+# if CONFIG_SYSTEM_COMPOSITE_NLUNS > 3
+# error "CONFIG_SYSTEM_COMPOSITE_NLUNS must be {1,2,3}"
+# endif
+# endif
+#endif
+
+/* Add-on CDC/ACM default values */
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_TTYUSB
+# define CONFIG_SYSTEM_COMPOSITE_TTYUSB 0
+#endif
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_SERDEV
+# if CONFIG_SYSTEM_COMPOSITE_TTYUSB != 0
+# error "Serial device unknown (CONFIG_SYSTEM_COMPOSITE_SERDEV)"
+# elif defined(CONFIG_CDCACM)
+# define CONFIG_SYSTEM_COMPOSITE_SERDEV "/dev/ttyACM0"
+# else
+# define CONFIG_SYSTEM_COMPOSITE_SERDEV "/dev/ttyUSB0"
+# endif
+#endif
+
+#ifndef CONFIG_SYSTEM_COMPOSITE_BUFSIZE
+# define CONFIG_SYSTEM_COMPOSITE_BUFSIZE 256
+#endif
+
+/* Trace initialization *****************************************************/
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_TRACEINIT
+# define TRACE_INIT_BITS (TRACE_INIT_BIT)
+#else
+# define TRACE_INIT_BITS (0)
+#endif
+
+#define TRACE_ERROR_BITS (TRACE_DEVERROR_BIT|TRACE_CLSERROR_BIT)
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_TRACECLASS
+# define TRACE_CLASS_BITS (TRACE_CLASS_BIT|TRACE_CLASSAPI_BIT|TRACE_CLASSSTATE_BIT)
+#else
+# define TRACE_CLASS_BITS (0)
+#endif
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_TRACETRANSFERS
+# define TRACE_TRANSFER_BITS (TRACE_OUTREQQUEUED_BIT|TRACE_INREQQUEUED_BIT|TRACE_READ_BIT|\
+ TRACE_WRITE_BIT|TRACE_COMPLETE_BIT)
+#else
+# define TRACE_TRANSFER_BITS (0)
+#endif
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_TRACECONTROLLER
+# define TRACE_CONTROLLER_BITS (TRACE_EP_BIT|TRACE_DEV_BIT)
+#else
+# define TRACE_CONTROLLER_BITS (0)
+#endif
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_TRACEINTERRUPTS
+# define TRACE_INTERRUPT_BITS (TRACE_INTENTRY_BIT|TRACE_INTDECODE_BIT|TRACE_INTEXIT_BIT)
+#else
+# define TRACE_INTERRUPT_BITS (0)
+#endif
+
+#define TRACE_BITSET (TRACE_INIT_BITS|TRACE_ERROR_BITS|TRACE_CLASS_BITS|\
+ TRACE_TRANSFER_BITS|TRACE_CONTROLLER_BITS|TRACE_INTERRUPT_BITS)
+
+/* Debug ********************************************************************/
+
+#ifdef CONFIG_CPP_HAVE_VARARGS
+# ifdef CONFIG_DEBUG
+# define message(...) lowsyslog(__VA_ARGS__)
+# define msgflush()
+# else
+# define message(...) printf(__VA_ARGS__)
+# define msgflush() fflush(stdout)
+# endif
+#else
+# ifdef CONFIG_DEBUG
+# define message lowsyslog
+# define msgflush()
+# else
+# define message printf
+# define msgflush() fflush(stdout)
+# endif
+#endif
+
+/****************************************************************************
+ * Public Types
+ ****************************************************************************/
+
+/* All global variables used by this add-on are packed into a structure in
+ * order to avoid name collisions.
+ */
+
+struct composite_state_s
+{
+ /* This is the handle that references to this particular USB composite
+ * driver instance. It is only needed if the add-on is built using
+ * CONFIG_NSH_BUILTIN_APPS. In this case, the value of the driver handle
+ * must be remembered between the 'conn' and 'disconn' commands.
+ */
+
+ FAR void *cmphandle; /* Composite device handle */
+ FAR void *mschandle; /* Mass storage device handle */
+
+ /* Serial file descriptors */
+
+#if !defined(CONFIG_NSH_BUILTIN_APPS) || defined(CONFIG_DISABLE_SIGNALS)
+ int outfd; /* Blocking write-only */
+ int infd; /* Non-blockig read-only */
+#endif
+
+ /* Heap usage samples. These are useful for checking USB storage memory
+ * usage and for tracking down memoryh leaks.
+ */
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+ struct mallinfo mmstart; /* Memory usage before the connection */
+ struct mallinfo mmprevious; /* The last memory usage sample */
+ struct mallinfo mmcurrent; /* The current memory usage sample */
+#endif
+
+ /* Serial I/O buffer */
+
+#if !defined(CONFIG_NSH_BUILTIN_APPS) || defined(CONFIG_DISABLE_SIGNALS)
+ uint8_t serbuf[CONFIG_SYSTEM_COMPOSITE_BUFSIZE];
+#endif
+};
+
+/****************************************************************************
+ * Public Data
+ ****************************************************************************/
+
+/* All global variables used by this add-on are packed into a structure in
+ * order to avoid name collisions.
+ */
+
+extern struct composite_state_s g_composite;
+
+/****************************************************************************
+ * Public Functions
+ ****************************************************************************/
+
+/****************************************************************************
+ * Name: composite_archinitialize
+ *
+ * Description:
+ * Perform architecture specific initialization.
+ *
+ ****************************************************************************/
+
+extern int composite_archinitialize(void);
+
+#endif /* __SYSTEM_COMPOSITE_COMPOSITE_H */
diff --git a/apps/system/composite/composite_main.c b/apps/system/composite/composite_main.c
new file mode 100644
index 000000000..b34d38b99
--- /dev/null
+++ b/apps/system/composite/composite_main.c
@@ -0,0 +1,850 @@
+/****************************************************************************
+ * system/composite/composite_main.c
+ *
+ * Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
+ *
+ * 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 <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <errno.h>
+#include <debug.h>
+
+#include <nuttx/usb/usbdev.h>
+#include <nuttx/usb/composite.h>
+#include <nuttx/usb/cdcacm.h>
+#include <nuttx/usb/usbmsc.h>
+#include <nuttx/usb/usbdev_trace.h>
+
+#include "composite.h"
+
+/****************************************************************************
+ * Definitions
+ ****************************************************************************/
+
+/****************************************************************************
+ * Private Data
+ ****************************************************************************/
+
+/* All global variables used by this add-on are packed into a structure in
+ * order to avoid name collisions.
+ */
+
+struct composite_state_s g_composite;
+
+/****************************************************************************
+ * Private Functions
+ ****************************************************************************/
+
+/****************************************************************************
+ * Name: show_memory_usage
+ ****************************************************************************/
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+static void show_memory_usage(struct mallinfo *mmbefore,
+ struct mallinfo *mmafter)
+{
+ int diff;
+
+ message(" total used free largest\n");
+ message("Before:%11d%11d%11d%11d\n",
+ mmbefore->arena, mmbefore->uordblks, mmbefore->fordblks, mmbefore->mxordblk);
+ message("After: %11d%11d%11d%11d\n",
+ mmafter->arena, mmafter->uordblks, mmafter->fordblks, mmafter->mxordblk);
+
+ diff = mmbefore->uordblks - mmafter->uordblks;
+ if (diff < 0)
+ {
+ message("Change:%11d allocated\n", -diff);
+ }
+ else if (diff > 0)
+ {
+ message("Change:%11d freed\n", diff);
+ }
+}
+#else
+# define show_memory_usage(mm1, mm2)
+#endif
+
+/****************************************************************************
+ * Name: check_test_memory_usage
+ ****************************************************************************/
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+static void check_test_memory_usage(FAR const char *msg)
+{
+ /* Get the current memory usage */
+
+#ifdef CONFIG_CAN_PASS_STRUCTS
+ g_composite.mmcurrent = mallinfo();
+#else
+ (void)mallinfo(&g_composite.mmcurrent);
+#endif
+
+ /* Show the change from the previous time */
+
+ message("\%s:\n", msg);
+ show_memory_usage(&g_composite.mmprevious, &g_composite.mmcurrent);
+
+ /* Set up for the next test */
+
+#ifdef CONFIG_CAN_PASS_STRUCTS
+ g_composite.mmprevious = g_composite.mmcurrent;
+#else
+ memcpy(&g_composite.mmprevious, &g_composite.mmcurrent, sizeof(struct mallinfo));
+#endif
+}
+#else
+# define check_test_memory_usage(msg)
+#endif
+
+/****************************************************************************
+ * Name: check_test_memory_usage
+ ****************************************************************************/
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+static void final_memory_usage(FAR const char *msg)
+{
+ /* Get the current memory usage */
+
+#ifdef CONFIG_CAN_PASS_STRUCTS
+ g_composite.mmcurrent = mallinfo();
+#else
+ (void)mallinfo(&g_composite.mmcurrent);
+#endif
+
+ /* Show the change from the previous time */
+
+ message("\n%s:\n", msg);
+ show_memory_usage(&g_composite.mmstart, &g_composite.mmcurrent);
+}
+#else
+# define final_memory_usage(msg)
+#endif
+
+/****************************************************************************
+ * Name: composite_enumerate
+ ****************************************************************************/
+
+#ifdef CONFIG_USBDEV_TRACE
+static int composite_enumerate(struct usbtrace_s *trace, void *arg)
+{
+ switch (trace->event)
+ {
+ case TRACE_DEVINIT:
+ message("USB controller initialization: %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVUNINIT:
+ message("USB controller un-initialization: %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVREGISTER:
+ message("usbdev_register(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVUNREGISTER:
+ message("usbdev_unregister(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPCONFIGURE:
+ message("Endpoint configure(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPDISABLE:
+ message("Endpoint disable(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPALLOCREQ:
+ message("Endpoint allocreq(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPFREEREQ:
+ message("Endpoint freereq(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPALLOCBUFFER:
+ message("Endpoint allocbuffer(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPFREEBUFFER:
+ message("Endpoint freebuffer(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPSUBMIT:
+ message("Endpoint submit(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPCANCEL:
+ message("Endpoint cancel(): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPSTALL:
+ message("Endpoint stall(true): %04x\n", trace->value);
+ break;
+
+ case TRACE_EPRESUME:
+ message("Endpoint stall(false): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVALLOCEP:
+ message("Device allocep(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVFREEEP:
+ message("Device freeep(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVGETFRAME:
+ message("Device getframe(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVWAKEUP:
+ message("Device wakeup(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVSELFPOWERED:
+ message("Device selfpowered(): %04x\n", trace->value);
+ break;
+
+ case TRACE_DEVPULLUP:
+ message("Device pullup(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSBIND:
+ message("Class bind(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSUNBIND:
+ message("Class unbind(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSDISCONNECT:
+ message("Class disconnect(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSSETUP:
+ message("Class setup(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSSUSPEND:
+ message("Class suspend(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSRESUME:
+ message("Class resume(): %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSRDCOMPLETE:
+ message("Class RD request complete: %04x\n", trace->value);
+ break;
+
+ case TRACE_CLASSWRCOMPLETE:
+ message("Class WR request complete: %04x\n", trace->value);
+ break;
+
+ default:
+ switch (TRACE_ID(trace->event))
+ {
+ case TRACE_CLASSAPI_ID: /* Other class driver system API calls */
+ message("Class API call %d: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_CLASSSTATE_ID: /* Track class driver state changes */
+ message("Class state %d: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_INTENTRY_ID: /* Interrupt handler entry */
+ message("Interrrupt %d entry: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_INTDECODE_ID: /* Decoded interrupt trace->event */
+ message("Interrrupt decode %d: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_INTEXIT_ID: /* Interrupt handler exit */
+ message("Interrrupt %d exit: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_OUTREQQUEUED_ID: /* Request queued for OUT endpoint */
+ message("EP%d OUT request queued: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_INREQQUEUED_ID: /* Request queued for IN endpoint */
+ message("EP%d IN request queued: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_READ_ID: /* Read (OUT) action */
+ message("EP%d OUT read: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_WRITE_ID: /* Write (IN) action */
+ message("EP%d IN write: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_COMPLETE_ID: /* Request completed */
+ message("EP%d request complete: %04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_DEVERROR_ID: /* USB controller driver error event */
+ message("Controller error: %02x:%04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ case TRACE_CLSERROR_ID: /* USB class driver error event */
+ message("Class error: %02x:%04x\n", TRACE_DATA(trace->event), trace->value);
+ break;
+
+ default:
+ message("Unrecognized event: %02x:%02x:%04x\n",
+ TRACE_ID(trace->event) >> 8, TRACE_DATA(trace->event), trace->value);
+ break;
+ }
+ }
+ return OK;
+}
+#endif
+
+/****************************************************************************
+ * Name: dumptrace
+ *
+ * Description:
+ * Dump collected trace data.
+ *
+ ****************************************************************************/
+
+#ifdef CONFIG_USBDEV_TRACE
+static int dumptrace(void)
+{
+ int ret;
+
+ ret = usbtrace_enumerate(composite_enumerate, NULL);
+ if (ret < 0)
+ {
+ message("dumptrace: usbtrace_enumerate failed: %d\n", -ret);
+ }
+ return ret;
+}
+#else
+# define dumptrace() (OK)
+#endif
+
+/****************************************************************************
+ * Name: open_serial
+ ****************************************************************************/
+
+#if !defined(CONFIG_NSH_BUILTIN_APPS) && !defined(CONFIG_DISABLE_SIGNALS)
+static int open_serial(void)
+{
+ int errcode;
+#ifdef CONFIG_USBDEV_TRACE
+ int ret;
+#endif
+
+ /* Open the USB serial device for writing (blocking) */
+
+ do
+ {
+ message("open_serial: Opening USB serial driver\n");
+ g_composite.outfd = open(CONFIG_SYSTEM_COMPOSITE_SERDEV, O_WRONLY);
+ if (g_composite.outfd < 0)
+ {
+ errcode = errno;
+ message("open_serial: ERROR: Failed to open %s for writing: %d\n",
+ CONFIG_SYSTEM_COMPOSITE_SERDEV, errcode);
+
+ /* ENOTCONN means that the USB device is not yet connected */
+
+ if (errcode == ENOTCONN)
+ {
+ message("open_serial: Not connected. Wait and try again.\n");
+ sleep(5);
+ }
+ else
+ {
+ /* Give up on other errors */
+
+ message("open_serial: Aborting\n");
+ return -errcode;
+ }
+ }
+
+ /* If USB tracing is enabled, then dump all collected trace data to
+ * stdout.
+ */
+
+#ifdef CONFIG_USBDEV_TRACE
+ ret = dumptrace();
+ if (ret < 0)
+ {
+ return ret;
+ }
+#endif
+ }
+ while (g_composite.outfd < 0);
+
+ /* Open the USB serial device for reading (non-blocking) */
+
+ g_composite.infd = open(CONFIG_SYSTEM_COMPOSITE_SERDEV, O_RDONLY|O_NONBLOCK);
+ if (g_composite.infd < 0)
+ {
+ errcode = errno;
+ message("open_serial: ERROR: Failed to open%s for reading: %d\n",
+ CONFIG_SYSTEM_COMPOSITE_SERDEV, errcode);
+ close(g_composite.outfd);
+ return -errcode;
+ }
+
+ message("open_serial: Successfully opened the serial driver\n");
+ return OK;
+}
+#endif
+
+/****************************************************************************
+ * Name: echo_serial
+ ****************************************************************************/
+
+static int echo_serial(void)
+{
+ ssize_t bytesread;
+ ssize_t byteswritten;
+ int errcode;
+
+ /* Read data */
+
+ bytesread = read(g_composite.infd, g_composite.serbuf, CONFIG_SYSTEM_COMPOSITE_BUFSIZE);
+ if (bytesread < 0)
+ {
+ errcode = errno;
+ if (errcode != EAGAIN)
+ {
+ message("echo_serial: ERROR: read failed: %d\n", errcode);
+ return -errcode;
+ }
+ return OK;
+ }
+
+ /* Echo data */
+
+ byteswritten = write(g_composite.outfd, g_composite.serbuf, bytesread);
+ if (byteswritten < 0)
+ {
+ errcode = errno;
+ message("echo_serial: ERROR: write failed: %d\n", errcode);
+ return -errcode;
+ }
+ else if (byteswritten != bytesread)
+ {
+ message("echo_serial: ERROR: read size: %d write size: %d\n",
+ bytesread, byteswritten);
+ }
+ return OK;
+}
+
+/****************************************************************************
+ * Public Functions
+ ****************************************************************************/
+
+/****************************************************************************
+ * Name: board_mscclassobject
+ *
+ * Description:
+ * If the mass storage class driver is part of composite device, then
+ * its instantiation and configuration is a multi-step, board-specific,
+ * process (See comments for usbmsc_configure below). In this case,
+ * board-specific logic must provide board_mscclassobject().
+ *
+ * board_mscclassobject() is called from the composite driver. It must
+ * encapsulate the instantiation and configuration of the mass storage
+ * class and the return the mass storage device's class driver instance
+ * to the composite dirver.
+ *
+ * Input Parameters:
+ * classdev - The location to return the mass storage class' device
+ * instance.
+ *
+ * Returned Value:
+ * 0 on success; a negated errno on failure
+ *
+ ****************************************************************************/
+
+int board_mscclassobject(FAR struct usbdevclass_driver_s **classdev)
+{
+ int ret;
+
+ DEBUGASSERT(g_composite.mschandle == NULL);
+
+ /* Initialize USB trace output IDs */
+
+ usbtrace_enable(TRACE_BITSET);
+ check_test_memory_usage("After usbtrace_enable()");
+
+ /* Configure the mass storage device */
+
+ message("board_mscclassobject: Configuring with NLUNS=%d\n", CONFIG_SYSTEM_COMPOSITE_NLUNS);
+ ret = usbmsc_configure(CONFIG_SYSTEM_COMPOSITE_NLUNS, &g_composite.mschandle);
+ if (ret < 0)
+ {
+ message("board_mscclassobject: usbmsc_configure failed: %d\n", -ret);
+ return ret;
+ }
+ message("board_mscclassobject: MSC handle=%p\n", g_composite.mschandle);
+ check_test_memory_usage("After usbmsc_configure()");
+
+ /* Bind the LUN(s) */
+
+ message("board_mscclassobject: Bind LUN=0 to %s\n", CONFIG_SYSTEM_COMPOSITE_DEVPATH1);
+ ret = usbmsc_bindlun(g_composite.mschandle, CONFIG_SYSTEM_COMPOSITE_DEVPATH1, 0, 0, 0, false);
+ if (ret < 0)
+ {
+ message("board_mscclassobject: usbmsc_bindlun failed for LUN 1 using %s: %d\n",
+ CONFIG_SYSTEM_COMPOSITE_DEVPATH1, -ret);
+ usbmsc_uninitialize(g_composite.mschandle);
+ return ret;
+ }
+ check_test_memory_usage("After usbmsc_bindlun()");
+
+#if CONFIG_SYSTEM_COMPOSITE_NLUNS > 1
+
+ message("board_mscclassobject: Bind LUN=1 to %s\n", CONFIG_SYSTEM_COMPOSITE_DEVPATH2);
+ ret = usbmsc_bindlun(g_composite.mschandle, CONFIG_SYSTEM_COMPOSITE_DEVPATH2, 1, 0, 0, false);
+ if (ret < 0)
+ {
+ message("board_mscclassobject: usbmsc_bindlun failed for LUN 2 using %s: %d\n",
+ CONFIG_SYSTEM_COMPOSITE_DEVPATH2, -ret);
+ usbmsc_uninitialize(g_composite.mschandle);
+ return ret;
+ }
+ check_test_memory_usage("After usbmsc_bindlun() #2");
+
+#if CONFIG_SYSTEM_COMPOSITE_NLUNS > 2
+
+ message("board_mscclassobject: Bind LUN=2 to %s\n", CONFIG_SYSTEM_COMPOSITE_DEVPATH3);
+ ret = usbmsc_bindlun(g_composite.mschandle, CONFIG_SYSTEM_COMPOSITE_DEVPATH3, 2, 0, 0, false);
+ if (ret < 0)
+ {
+ message("board_mscclassobject: usbmsc_bindlun failed for LUN 3 using %s: %d\n",
+ CONFIG_SYSTEM_COMPOSITE_DEVPATH3, -ret);
+ usbmsc_uninitialize(g_composite.mschandle);
+ return ret;
+ }
+ check_test_memory_usage("After usbmsc_bindlun() #3");
+
+#endif
+#endif
+
+ /* Get the mass storage device's class object */
+
+ ret = usbmsc_classobject(g_composite.mschandle, classdev);
+ if (ret < 0)
+ {
+ message("board_mscclassobject: usbmsc_classobject failed: %d\n", -ret);
+ usbmsc_uninitialize(g_composite.mschandle);
+ }
+ check_test_memory_usage("After usbmsc_classobject()");
+ return ret;
+}
+
+/****************************************************************************
+ * Name: board_mscuninitialize
+ *
+ * Description:
+ * Un-initialize the USB storage class driver. This is just an application-
+ * specific wrapper aboutn usbmsc_unitialize() that is called form the composite
+ * device logic.
+ *
+ * Input Parameters:
+ * classdev - The class driver instrance previously give to the composite
+ * driver by board_mscclassobject().
+ *
+ * Returned Value:
+ * None
+ *
+ ****************************************************************************/
+
+void board_mscuninitialize(FAR struct usbdevclass_driver_s *classdev)
+{
+ DEBUGASSERT(g_composite.mschandle != NULL);
+ usbmsc_uninitialize(g_composite.mschandle);
+}
+
+/****************************************************************************
+ * Name: board_cdcclassobject
+ *
+ * Description:
+ * If the CDC serial class driver is part of composite device, then
+ * board-specific logic must provide board_cdcclassobject(). In the simplest
+ * case, board_cdcclassobject() is simply a wrapper around cdcacm_classobject()
+ * that provides the correct device minor number.
+ *
+ * Input Parameters:
+ * classdev - The location to return the CDC serial class' device
+ * instance.
+ *
+ * Returned Value:
+ * 0 on success; a negated errno on failure
+ *
+ ****************************************************************************/
+
+int board_cdcclassobject(FAR struct usbdevclass_driver_s **classdev)
+{
+ int ret;
+
+ /* Initialize the USB serial driver */
+
+ message("board_cdcclassobject: Initializing USB serial driver\n");
+ ret = cdcacm_classobject(CONFIG_SYSTEM_COMPOSITE_TTYUSB, classdev);
+ if (ret < 0)
+ {
+ message("board_cdcclassobject: ERROR: Failed to create the USB serial device: %d\n", -ret);
+ }
+ return ret;
+}
+
+/****************************************************************************
+ * Name: board_cdcuninitialize
+ *
+ * Description:
+ * Un-initialize the USB serial class driver. This is just an application-
+ * specific wrapper aboutn cdcadm_unitialize() that is called form the composite
+ * device logic.
+ *
+ * Input Parameters:
+ * classdev - The class driver instrance previously give to the composite
+ * driver by board_cdcclassobject().
+ *
+ * Returned Value:
+ * None
+ *
+ ****************************************************************************/
+
+void board_cdcuninitialize(FAR struct usbdevclass_driver_s *classdev)
+{
+ DEBUGASSERT(classdev != NULL);
+ cdcacm_uninitialize(classdev);
+}
+
+/****************************************************************************
+ * conn_main
+ *
+ * Description:
+ * This is the main program that configures the USB mass storage device
+ * and exports the LUN(s). If CONFIG_NSH_BUILTIN_APPS is defined
+ * in the NuttX configuration, then this program can be executed by
+ * entering the "msconn" command at the NSH console.
+ *
+ ****************************************************************************/
+
+int conn_main(int argc, char *argv[])
+{
+ int ret;
+
+ /* If this program is implemented as the NSH 'msconn' command, then we need to
+ * do a little error checking to assure that we are not being called re-entrantly.
+ */
+
+#ifdef CONFIG_NSH_BUILTIN_APPS
+
+ /* Check if there is a non-NULL USB mass storage device handle (meaning that the
+ * USB mass storage device is already configured).
+ */
+
+ if (g_composite.cmphandle)
+ {
+ message("conn_main: ERROR: Already connected\n");
+ return 1;
+ }
+#endif
+
+#ifdef CONFIG_SYSTEM_COMPOSITE_DEBUGMM
+# ifdef CONFIG_CAN_PASS_STRUCTS
+ g_composite.mmstart = mallinfo();
+ g_composite.mmprevious = g_composite.mmstart;
+# else
+ (void)mallinfo(&g_composite.mmstart);
+ memcpy(&g_composite.mmprevious, &g_composite.mmstart, sizeof(struct mallinfo));
+# endif
+#endif
+
+ /* Perform architecture-specific initialization */
+
+ message("conn_main: Performing architecture-specific intialization\n");
+ ret = composite_archinitialize();
+ if (ret < 0)
+ {
+ message("conn_main: composite_archinitialize failed: %d\n", -ret);
+ return 1;
+ }
+ check_test_memory_usage("After composite_archinitialize()");
+
+ /* Initialize the USB composite device device */
+
+ g_composite.cmphandle = composite_initialize();
+ if (!g_composite.cmphandle)
+ {
+ message("conn_main: composite_initialize failed\n");
+ return 1;
+ }
+ check_test_memory_usage("After composite_initialize()");
+
+#if CONFIG_USBDEV_TRACE && CONFIG_USBDEV_TRACE_INITIALIDSET != 0
+ /* If USB tracing is enabled and tracing of initial USB events is specified,
+ * then dump all collected trace data to stdout
+ */
+
+ sleep(5);
+ ret = dumptrace();
+ if (ret < 0)
+ {
+ goto errout;
+ }
+#endif
+
+ /* It this program was configued as an NSH command, then just exit now.
+ * Also, if signals are not enabled (and, hence, sleep() is not supported.
+ * then we have not real option but to exit now.
+ */
+
+#if !defined(CONFIG_NSH_BUILTIN_APPS) && !defined(CONFIG_DISABLE_SIGNALS)
+
+ /* Otherwise, this thread will hang around and monitor the USB activity */
+
+ /* Open the serial driver */
+
+ ret = open_serial();
+ if (ret < 0)
+ {
+ goto errout;
+ }
+
+ /* Now looping */
+
+ for (;;)
+ {
+ /* Sleep for a bit */
+
+ msgflush();
+ sleep(5);
+
+ /* Echo any serial data */
+
+ ret = echo_serial();
+ if (ret < 0)
+ {
+ goto errout;
+ }
+
+ /* Dump trace data */
+
+# ifdef CONFIG_USBDEV_TRACE
+ message("\n" "conn_main: USB TRACE DATA:\n");
+ ret = dumptrace();
+ if (ret < 0)
+ {
+ goto errout;
+ }
+ check_test_memory_usage("After usbtrace_enumerate()");
+# else
+ message("conn_main: Still alive\n");
+# endif
+ }
+#else
+
+ message("conn_main: Connected\n");
+ check_test_memory_usage("After composite device connection");
+#endif
+
+ /* Dump debug memory usage */
+
+ message("conn_main: Exiting\n");
+#if !defined(CONFIG_NSH_BUILTIN_APPS) && !defined(CONFIG_DISABLE_SIGNALS)
+ close(g_composite.infd);
+ close(g_composite.outfd);
+#endif
+#ifdef CONFIG_NSH_BUILTIN_APPS
+#endif
+ final_memory_usage("Final memory usage");
+ return 0;
+
+errout:
+#if !defined(CONFIG_NSH_BUILTIN_APPS) && !defined(CONFIG_DISABLE_SIGNALS)
+ close(g_composite.infd);
+ close(g_composite.outfd);
+#endif
+ composite_uninitialize(g_composite.cmphandle);
+ final_memory_usage("Final memory usage");
+ return 1;
+}
+
+/****************************************************************************
+ * disconn_main
+ *
+ * Description:
+ * This is a program entry point that will disconnet the USB mass storage
+ * device. This program is only available if CONFIG_NSH_BUILTIN_APPS
+ * is defined in the NuttX configuration. In that case, this program can
+ * be executed by entering the "msdis" command at the NSH console.
+ *
+ ****************************************************************************/
+
+#ifdef CONFIG_NSH_BUILTIN_APPS
+int disconn_main(int argc, char *argv[])
+{
+ /* First check if the USB mass storage device is already connected */
+
+ if (!g_composite.cmphandle)
+ {
+ message("disconn_main: ERROR: Not connected\n");
+ return 1;
+ }
+ check_test_memory_usage("Since MS connection");
+
+ /* Then disconnect the device and uninitialize the USB mass storage driver */
+
+ composite_uninitialize(g_composite.cmphandle);
+ g_composite.mschandle = NULL;
+ message("disconn_main: Disconnected\n");
+ check_test_memory_usage("After composite_uninitialize()");
+
+ /* Dump debug memory usage */
+
+ final_memory_usage("Final memory usage");
+ return 0;
+}
+#endif