| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- //*****************************************************************************
- //
- // usbdcomp.h - USB composite device class driver.
- //
- // Copyright (c) 2010 Texas Instruments Incorporated. All rights reserved.
- // Software License Agreement
- //
- // Texas Instruments (TI) is supplying this software for use solely and
- // exclusively on TI's microcontroller products. The software is owned by
- // TI and/or its suppliers, and is protected under applicable copyright
- // laws. You may not combine this software with "viral" open-source
- // software in order to form a larger program.
- //
- // THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
- // NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
- // NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
- // CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
- // DAMAGES, FOR ANY REASON WHATSOEVER.
- //
- // This is part of AM1808 StarterWare USB Library and reused from revision 6288
- // of the Stellaris USB Library.
- //
- //*****************************************************************************
- #ifndef __USBDCOMP_H__
- #define __USBDCOMP_H__
- //*****************************************************************************
- //
- // If building with a C++ compiler, make all of the definitions in this header
- // have a C binding.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- //*****************************************************************************
- //
- // Return to default packing when using the IAR Embedded Workbench compiler.
- //
- //*****************************************************************************
- #if defined(ewarm) || defined(__IAR_SYSTEMS_ICC__)
- #pragma pack()
- #endif
- //*****************************************************************************
- //
- //! \addtogroup composite_device_class_api
- //! @{
- //
- //*****************************************************************************
- //
- // Defines a single entry in a table of device types supported by the composite
- // device.
- //
- typedef struct
- {
- //
- // This is set internally by the composite class so it can be left
- // uninitialized by the application.
- //
- const tDeviceInfo *pDeviceInfo;
- //
- // This should be the header to the configuration header for a class.
- //
- const tConfigHeader *psConfigHeader;
- //
- // The offset to this devices interface, filled in by the composite class.
- //
- unsigned char ucIfaceOffset;
- } tUSBDCompositeEntry;
- //*****************************************************************************
- //
- // PRIVATE
- //
- // This structure defines the private instance data and state variables for the
- // composite device class. The memory for this structure is pointed to by
- // the psPrivateData field in the tUSBDCompositeDevice structure passed on
- // USBDCompositeInit() and should not be modified by any code outside of the
- // composite device code.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- // Saves which USB controller is in use.
- //
- unsigned int ulUSBBase;
- //
- // The device information pointer.
- //
- tDeviceInfo *psDevInfo;
- //
- // This is the configuration descriptor for this instance.
- //
- tConfigDescriptor sConfigDescriptor;
- //
- // This is the device descriptor for this instance.
- //
- tDeviceDescriptor sDeviceDescriptor;
- //
- // The configuration header for this instance.
- //
- tConfigHeader sCompConfigHeader;
- //
- // These are the configuration sections that will be built from the
- // Configuration Descriptor header and the descriptors from the devices
- // that are part of this composite device.
- //
- tConfigSection psCompSections[2];
- tConfigSection *ppsCompSections[2];
- //
- // The size and pointer to the data used by the instance.
- //
- unsigned int ulDataSize;
- unsigned char *pucData;
- }
- tCompositeInstance;
- //*****************************************************************************
- //
- //! This type is used by an application to describe and instance of a device
- //! and an instance data pointer for that class. The psDevice pointer should
- //! be a pointer to a valid device class to include in the composite device.
- //! The pvInstance pointer should be a pointer to an instance pointer for the
- //! device in the psDevice pointer.
- //!
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! This is the top level device information structure.
- //
- const tDeviceInfo *psDevice;
- //
- //! This is the instance data for the device structure.
- //
- void *pvInstance;
- }
- tCompositeEntry;
- //*****************************************************************************
- //
- //! The structure used by the application to define operating parameters for
- //! the composite device class.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! The vendor ID that this device is to present in the device descriptor.
- //
- unsigned short usVID;
- //
- //! The product ID that this device is to present in the device descriptor.
- //
- unsigned short usPID;
- //
- //! The maximum power consumption of the device, expressed in mA.
- //
- unsigned short usMaxPowermA;
- //
- //! Indicates whether the device is self or bus-powered and whether or not
- //! it supports remote wake up. Valid values are USB_CONF_ATTR_SELF_PWR or
- //! USB_CONF_ATTR_BUS_PWR, optionally ORed with USB_CONF_ATTR_RWAKE.
- //
- unsigned char ucPwrAttributes;
- //
- //! A pointer to the callback function which will be called to notify
- //! the application of events relating to the operation of the composite
- //! device.
- //
- tUSBCallback pfnCallback;
- //
- //! A pointer to the string descriptor array for this device. This array
- //! must contain the following string descriptor pointers in this order.
- //! Language descriptor, Manufacturer name string (language 1), Product
- //! name string (language 1), Serial number string (language 1), Composite
- //! device interface description string (language 1), Configuration
- //! description string (language 1).
- //!
- //! If supporting more than 1 language, the descriptor block (except for
- //! string descriptor 0) must be repeated for each language defined in the
- //! language descriptor.
- //!
- //
- const unsigned char * const *ppStringDescriptors;
- //
- //! The number of descriptors provided in the ppStringDescriptors
- //! array. This must be 1 + ((5 + (number of strings)) *
- //! (number of languages)).
- //
- unsigned int ulNumStringDescriptors;
- //
- //! The number of devices in the psDevices array.
- //
- unsigned int ulNumDevices;
- //
- //! This application supplied array holds the the top level device class
- //! information as well as the Instance data for that class.
- //
- tCompositeEntry *psDevices;
- //
- //! A pointer to RAM work space for this device instance. The client
- //! must fill in this field with a pointer to at least
- //! sizeof(tCompositeInstance) bytes of read/write storage that the
- //! library can use for driver work space. This memory must remain
- //! accessible for as int as the composite device is in use and must not
- //! be modified by any code outside the composite class driver.
- //
- tCompositeInstance *psPrivateData;
- }
- tUSBDCompositeDevice;
- //*****************************************************************************
- //
- // Return to default packing when using the IAR Embedded Workbench compiler.
- //
- //*****************************************************************************
- #if defined(ewarm) || defined(__IAR_SYSTEMS_ICC__)
- #pragma pack()
- #endif
- //*****************************************************************************
- //
- // Composite specific device class driver events
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- // API Function Prototypes
- //
- //*****************************************************************************
- extern void *USBDCompositeInit(unsigned int ulIndex,
- tUSBDCompositeDevice *psCompDevice,
- unsigned int ulSize,
- unsigned char *pucData);
- extern void USBDCompositeTerm(void *pvInstance);
- //*****************************************************************************
- //
- // Close the Doxygen group.
- //! @}
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- // Mark the end of the C bindings section for C++ compilers.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- }
- #endif
- #endif
|