| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- //*****************************************************************************
- //
- // usbdesc.c - USB descriptor parsing functions.
- //
- // Copyright (c) 2008-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 Sitaraware USB Library and reused from revision 6288
- // of the Stellaris USB Library.
- //
- //*****************************************************************************
- #include "hw_types.h"
- #include "usblib.h"
- //*****************************************************************************
- //
- // Assumptions:
- // ------------
- //
- // The following assumptions are made in this module. From reading chapter 9
- // of the USB 2.0 specification, these appear to be perfectly valid.
- //
- // 1. The interface number, bInterfaceNumber in the interface descriptor, is
- // a zero based index and takes values between 0 and
- // (pConfigDescriptor->bNumInterfaces - 1) inclusive.
- // 2. Similarly, the alternate setting number, bAlternateSetting in the
- // interface descriptor, is a zero based index.
- // 3. Interface descriptors are ordered by interface number in the
- // configuration descriptor.
- // 4. If alternate settings are available for an interface, the interface
- // descriptors are ordered by alternate setting value bAlternateSetting.
- // 5. Although the endpoints associated with a given interface must follow
- // their associated interface descriptor, it is possible for other,
- // device specific descriptors to be found between an interface descriptor
- // and its endpoints or between endpoint descriptors for the same
- // interface.
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- //! \addtogroup general_usblib_api
- //! @{
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- //! Determines the number of individual descriptors of a particular type within
- //! a supplied buffer.
- //!
- //! \param psDesc points to the first byte of a block of standard USB
- //! descriptors.
- //! \param ulSize is the number of bytes of descriptor data found at pointer
- //! \e psDesc.
- //! \param ulType identifies the type of descriptor that is to be counted. If
- //! the value is \b USB_DESC_ANY, the function returns the total number of
- //! descriptors regardless of type.
- //!
- //! This function can be used to count the number of descriptors of a
- //! particular type within a block of descriptors. The caller can provide a
- //! specific type value which the function matches against the second byte of
- //! each descriptor or, alternatively, can specify \b USB_DESC_ANY to have the
- //! function count all descriptors regardless of their type.
- //!
- //! \return Returns the number of descriptors found in the supplied block of
- //! data.
- //
- //*****************************************************************************
- unsigned int
- USBDescGetNum(tDescriptorHeader *psDesc, unsigned int ulSize,
- unsigned int ulType)
- {
- tDescriptorHeader *psDescCheck;
- unsigned int ulTotLength;
- unsigned int ulCount;
- //
- // Set up for our descriptor counting loop.
- //
- psDescCheck = psDesc;
- ulTotLength = 0;
- ulCount = 0;
- //
- // Keep looking through the supplied data until we reach the end.
- //
- while(ulTotLength < ulSize)
- {
- //
- // Does this descriptor match the type passed (if a specific type
- // has been specified)?
- //
- if((ulType == USB_DESC_ANY) ||
- (psDescCheck->bDescriptorType == (unsigned char)(ulType & 0xFF)))
- {
- ulCount++;
- }
- //
- // Move on to the next descriptor.
- //
- ulTotLength += (unsigned int)psDescCheck->bLength;
- psDescCheck = NEXT_USB_DESCRIPTOR(psDescCheck);
- }
- //
- // Return the descriptor count to the caller.
- //
- return(ulCount);
- }
- //*****************************************************************************
- //
- //! Determines the number of individual descriptors of a particular type within
- //! a supplied buffer.
- //!
- //! \param psDesc points to the first byte of a block of standard USB
- //! descriptors.
- //! \param ulSize is the number of bytes of descriptor data found at pointer
- //! \e psDesc.
- //! \param ulType identifies the type of descriptor that is to be found. If
- //! the value is \b USB_DESC_ANY, the function returns a pointer to the n-th
- //! descriptor regardless of type.
- //! \param ulIndex is the zero based index of the descriptor whose pointer is
- //! to be returned. For example, passing value 1 in \e ulIndex returns the
- //! second matching descriptor.
- //!
- //! Return a pointer to the n-th descriptor of a particular type found in the
- //! block of \e ulSize bytes starting at \e psDesc.
- //!
- //! \return Returns a pointer to the header of the required descriptor if
- //! found or NULL otherwise.
- //
- //*****************************************************************************
- tDescriptorHeader *
- USBDescGet(tDescriptorHeader *psDesc, unsigned int ulSize,
- unsigned int ulType, unsigned int ulIndex)
- {
- tDescriptorHeader *psDescCheck;
- unsigned int ulTotLength;
- unsigned int ulCount;
- //
- // Set up for our descriptor counting loop.
- //
- psDescCheck = psDesc;
- ulTotLength = 0;
- ulCount = 0;
- //
- // Keep looking through the supplied data until we reach the end.
- //
- while(ulTotLength < ulSize)
- {
- //
- // Does this descriptor match the type passed (if a specific type
- // has been specified)?
- //
- if((ulType == USB_DESC_ANY) ||
- (psDescCheck->bDescriptorType == (unsigned char)(ulType & 0xFF)))
- {
- //
- // We found a matching descriptor. If our count matches the
- // supplied index, we are done so return the pointer.
- //
- if(ulCount == ulIndex)
- {
- return(psDescCheck);
- }
- //
- // We have not found enough descriptors yet to satisfy the supplied
- // index so increment our count and continue.
- //
- ulCount++;
- }
- //
- // Move on to the next descriptor.
- //
- ulTotLength += (unsigned int)psDescCheck->bLength;
- psDescCheck = NEXT_USB_DESCRIPTOR(psDescCheck);
- }
- //
- // If we get here, we reached the end of the data without finding the
- // required descriptor. Return NULL.
- //
- return((tDescriptorHeader *)0);
- }
- //*****************************************************************************
- //
- //! Determines the number of different alternate configurations for a given
- //! interface within a configuration descriptor.
- //!
- //! \param psConfig points to the first byte of a standard USB configuration
- //! descriptor.
- //! \param ucInterfaceNumber is the interface number for which the number of
- //! alternate configurations is to be counted.
- //!
- //! This function can be used to count the number of alternate settings for a
- //! specific interface within a configuration.
- //!
- //! \return Returns the number of alternate versions of the specified interface
- //! or 0 if the interface number supplied cannot be found in the config
- //! descriptor.
- //
- //*****************************************************************************
- unsigned int
- USBDescGetNumAlternateInterfaces(tConfigDescriptor *psConfig,
- unsigned char ucInterfaceNumber)
- {
- tDescriptorHeader *psDescCheck;
- unsigned int ulTotLength;
- unsigned int ulCount;
- //
- // Set up for our descriptor counting loop.
- //
- psDescCheck = (tDescriptorHeader *)psConfig;
- ulTotLength = 0;
- ulCount = 0;
- //
- // Keep looking through the supplied data until we reach the end.
- //
- while(ulTotLength < (unsigned int)psConfig->wTotalLength)
- {
- //
- // Is this an interface descriptor with the required interface number?
- //
- if((psDescCheck->bDescriptorType == USB_DTYPE_INTERFACE) &&
- (((tInterfaceDescriptor *)psDescCheck)->bInterfaceNumber ==
- ucInterfaceNumber))
- {
- //
- // Yes - increment our count.
- //
- ulCount++;
- }
- //
- // Move on to the next descriptor.
- //
- ulTotLength += (unsigned int)psDescCheck->bLength;
- psDescCheck = NEXT_USB_DESCRIPTOR(psDescCheck);
- }
- //
- // Return the descriptor count to the caller.
- //
- return(ulCount);
- }
- //*****************************************************************************
- //
- //! Returns a pointer to the n-th interface descriptor in a config descriptor
- //! with the supplied interface number.
- //!
- //! \param psConfig points to the first byte of a standard USB configuration
- //! descriptor.
- //! \param ucInterfaceNumber is the interface number of the descriptor that is
- //! being queried.
- //! \param ulIndex is the zero based index of the descriptor to return.
- //!
- //! This function returns a pointer to the n-th interface descriptor in the
- //! supplied configuration which has the requested interface number. It may be
- //! used by a client to retrieve the descriptors for each alternate setting
- //! of a given interface within the configuration passed.
- //!
- //! \return Returns a pointer to the n-th interface descriptor with interface
- //! number as specified or NULL of this descriptor does not exist.
- //
- //*****************************************************************************
- static tInterfaceDescriptor *
- USBDescGetAlternateInterface(tConfigDescriptor *psConfig,
- unsigned char ucInterfaceNumber,
- unsigned int ulIndex)
- {
- tDescriptorHeader *psDescCheck;
- unsigned int ulTotLength;
- unsigned int ulCount;
- //
- // Set up for our descriptor counting loop.
- //
- psDescCheck = (tDescriptorHeader *)psConfig;
- ulTotLength = 0;
- ulCount = 0;
- //
- // Keep looking through the supplied data until we reach the end.
- //
- while(ulTotLength < (unsigned int)psConfig->wTotalLength)
- {
- //
- // Does this descriptor match the type passed (if a specific type
- // has been specified)?
- //
- if((psDescCheck->bDescriptorType == USB_DTYPE_INTERFACE) &&
- (((tInterfaceDescriptor *)psDescCheck)->bInterfaceNumber ==
- ucInterfaceNumber))
- {
- //
- // This is an interface descriptor for interface ucInterfaceNumber.
- // Determine if this is the n-th one we have found and, if so,
- // return its pointer.
- //
- if(ulCount == ulIndex)
- {
- //
- // Found it - return the pointer.
- //
- return((tInterfaceDescriptor *)psDescCheck);
- }
- //
- // Increment our count of matching descriptors found and go back
- // to look for another since we have not yet reached the n-th
- // match.
- //
- ulCount++;
- }
- //
- // Move on to the next descriptor.
- //
- ulTotLength += (unsigned int)psDescCheck->bLength;
- psDescCheck = NEXT_USB_DESCRIPTOR(psDescCheck);
- }
- //
- // If we drop out the end of the loop, we did not find the requested
- // descriptor so return NULL.
- //
- return((tInterfaceDescriptor *)0);
- }
- //*****************************************************************************
- //
- //! Returns a pointer to the n-th interface descriptor in a configuration
- //! descriptor that applies to the supplied alternate setting number.
- //!
- //! \param psConfig points to the first byte of a standard USB configuration
- //! descriptor.
- //! \param ulIndex is the zero based index of the interface that is to be
- //! found. If ulAlt is set to a value other than \b USB_DESC_ANY, this will be
- //! equivalent to the interface number being searched for.
- //! \param ulAlt is the alternate setting number which is to be
- //! searched for. If this value is \b USB_DESC_ANY, the alternate setting
- //! is ignored and all interface descriptors are considered in the search.
- //!
- //! Return a pointer to the n-th interface descriptor found in the supplied
- //! configuration descriptor. If \e ulAlt is not \b USB_DESC_ANY, only
- //! interface descriptors which are part of the supplied alternate setting are
- //! considered in the search otherwise all interface descriptors are
- //! considered.
- //!
- //! Note that, although alternate settings can be applied on an interface-by-
- //! interface basis, the number of interfaces offered is fixed for a given
- //! config descriptor. Hence, this function will correctly find the unique
- //! interface descriptor for that interface's alternate setting number ulAlt
- //! if ulIndex is set to the required interface number and ulAlt is set to a
- //! valid alternate setting number for that interface.
- //!
- //! \return Returns a pointer to the required interface descriptor if
- //! found or NULL otherwise.
- //
- //*****************************************************************************
- tInterfaceDescriptor *
- USBDescGetInterface(tConfigDescriptor *psConfig, unsigned int ulIndex,
- unsigned int ulAlt)
- {
- //
- // If we are being told to ignore the alternate configuration, this boils
- // down to a very simple query.
- //
- if(ulAlt == USB_DESC_ANY)
- {
- //
- // Return the ulIndex-th interface descriptor we find in the
- // configuration descriptor.
- //
- return((tInterfaceDescriptor *)USBDescGet(
- (tDescriptorHeader *)psConfig,
- (unsigned int)psConfig->wTotalLength,
- USB_DTYPE_INTERFACE, ulIndex));
- }
- else
- {
- //
- // In this case, a specific alternate setting number is required.
- // Given that interface numbers are zero based indices, we can
- // pass the supplied ulIndex parameter directly as the interface
- // number to USBDescGetAlternateInterface to retrieve the requested
- // interface descriptor pointer.
- //
- return(USBDescGetAlternateInterface(psConfig, ulIndex, ulAlt));
- }
- }
- //*****************************************************************************
- //
- //! Return a pointer to the n-th endpoint descriptor in the supplied
- //! interface descriptor.
- //!
- //! \param psInterface points to the first byte of a standard USB interface
- //! descriptor.
- //! \param ulIndex is the zero based index of the endpoint that is to be
- //! found.
- //! \param ulSize contains the maximum number of bytes that the function may
- //! search beyond \e psInterface while looking for the requested endpoint
- //! descriptor.
- //!
- //! Return a pointer to the n-th endpoint descriptor found in the supplied
- //! interface descriptor. If the \e ulIndex parameter is invalid (greater
- //! than or equal to the bNumEndpoints field of the interface descriptor) or
- //! the endpoint cannot be found within \e ulSize bytes of the interface
- //! descriptor pointer, the function will return NULL.
- //!
- //! Note that, although the USB 2.0 specification states that endpoint
- //! descriptors must follow the interface descriptor that they relate to, it
- //! also states that device specific descriptors should follow any standard
- //! descriptor that they relate to. As a result, we cannot assume that each
- //! interface descriptor will be followed by nothing but an ordered list of
- //! its own endpoints and, hence, the function needs to be provided ulSize to
- //! limit the search range.
- //!
- //! \return Returns a pointer to the requested endpoint descriptor if
- //! found or NULL otherwise.
- //
- //*****************************************************************************
- tEndpointDescriptor *
- USBDescGetInterfaceEndpoint(tInterfaceDescriptor *psInterface,
- unsigned int ulIndex, unsigned int ulSize)
- {
- //
- // Is the index passed valid?
- //
- if(ulIndex >= psInterface->bNumEndpoints)
- {
- //
- // It's out of bounds so return a NULL.
- //
- return((tEndpointDescriptor *)0);
- }
- else
- {
- //
- // Endpoint index is valid so find the descriptor.
- //
- return((tEndpointDescriptor *)USBDescGet(
- (tDescriptorHeader *)psInterface,
- ulSize, USB_DTYPE_ENDPOINT, ulIndex));
- }
- }
- //*****************************************************************************
- //
- // Close the Doxygen group.
- //! @}
- //
- //*****************************************************************************
|