3      Copyright (C) Dean Camera, 2009. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, and distribute this software 
  13   and its documentation for any purpose and without fee is hereby 
  14   granted, provided that the above copyright notice appear in all 
  15   copies and that both that the copyright notice and this 
  16   permission notice and warranty disclaimer appear in supporting 
  17   documentation, and that the name of the author not be used in 
  18   advertising or publicity pertaining to distribution of the 
  19   software without specific, written prior permission. 
  21   The author disclaim all warranties with regard to this 
  22   software, including all implied warranties of merchantability 
  23   and fitness.  In no event shall the author be liable for any 
  24   special, indirect or consequential damages or any damages 
  25   whatsoever resulting from loss of use, data or profits, whether 
  26   in an action of contract, negligence or other tortious action, 
  27   arising out of or in connection with the use or performance of 
  33  *  Configuration descriptor parser API. This section of the library gives a friendly API which can be used in 
  34  *  host applications to easily parse an attached device's configuration descriptor so that endpoint, interface 
  35  *  and other descriptor data can be extracted and used as needed. 
  38 #ifndef __CONFIGDESCRIPTOR_H__ 
  39 #define __CONFIGDESCRIPTOR_H__ 
  44                 #include "../../../Common/Common.h" 
  45                 #include "../LowLevel/HostChapter9.h" 
  46                 #include "../HighLevel/StdDescriptors.h" 
  48         /* Enable C linkage for C++ Compilers: */ 
  49                 #if defined(__cplusplus) 
  53         /* Public Interface - May be used in end-application: */ 
  55                         /** Mask for determining the type of an endpoint from an endpoint descriptor. This should then be compared 
  56                          *  with the EP_TYPE_* masks to determine the exact type of the endpoint. 
  58                         #define EP_TYPE_MASK                       0x03 
  60                         /** Casts a pointer to a descriptor inside the configuration descriptor into a pointer to the given 
  65                          *  uint8_t* CurrDescriptor = &ConfigDescriptor[0]; // Pointing to the configuration header 
  66                          *  USB_Descriptor_Configuration_Header_t* ConfigHeaderPtr = DESCRIPTOR_PCAST(CurrDescriptor, 
  67                          *                                                           USB_Descriptor_Configuration_Header_t); 
  69                          *  // Can now access elements of the configuration header struct using the -> indirection operator 
  72                         #define DESCRIPTOR_PCAST(DescriptorPtr, Type) ((Type*)DescriptorPtr) 
  74                         /** Casts a pointer to a descriptor inside the configuration descriptor into the given descriptor 
  75                          *  type (as an actual struct instance rather than a pointer to a struct). 
  79                          *  uint8_t* CurrDescriptor = &ConfigDescriptor[0]; // Pointing to the configuration header 
  80                          *  USB_Descriptor_Configuration_Header_t ConfigHeader = DESCRIPTOR_CAST(CurrDescriptor, 
  81                          *                                                       USB_Descriptor_Configuration_Header_t); 
  83                          *  // Can now access elements of the configuration header struct using the . operator 
  86                         #define DESCRIPTOR_CAST(DescriptorPtr, Type)  (*DESCRIPTOR_PCAST(DescriptorPtr, Type)) 
  88                         /** Returns the descriptor's type, expressed as the 8-bit type value in the header of the descriptor. 
  89                          *  This value's meaning depends on the descriptor's placement in the descriptor, but standard type 
  90                          *  values can be accessed in the DescriptorTypes_t enum located in USB/HighLevel/StdDescriptors.h. 
  92                         #if defined(USE_NONSTANDARD_DESCRIPTOR_NAMES) || defined(__DOXYGEN__) 
  93                                 #define DESCRIPTOR_TYPE(DescriptorPtr)    DESCRIPTOR_CAST(DescriptorPtr, USB_Descriptor_Header_t).Type 
  95                                 #define DESCRIPTOR_TYPE(DescriptorPtr)    DESCRIPTOR_CAST(DescriptorPtr, USB_Descriptor_Header_t).bDescriptorType                        
  98                         /** Returns the descriptor's size, expressed as the 8-bit value indicating the number of bytes. */ 
  99                         #if defined(USE_NONSTANDARD_DESCRIPTOR_NAMES) || defined(__DOXYGEN__) 
 100                                 #define DESCRIPTOR_SIZE(DescriptorPtr)    DESCRIPTOR_CAST(DescriptorPtr, USB_Descriptor_Header_t).Size 
 102                                 #define DESCRIPTOR_SIZE(DescriptorPtr)    DESCRIPTOR_CAST(DescriptorPtr, USB_Descriptor_Header_t).bLength 
 105                         /** Creates a prototype for or begins a descriptor comparator routine. Descriptor comparator routines are  
 106                          *  small search routines which are passed a pointer to the current sub descriptor in the configuration 
 107                          *  descriptor, and which analyse the sub descriptor to determine whether or not it matches the routine's 
 108                          *  search parameters. Comparator routines provide a powerful way to scan through the config descriptor 
 109                          *  for certain descriptors matching unique criteria. 
 111                          *  Comparator routines are passed in a single pointer named CurrentDescriptor, and should return a value 
 112                          *  of a member of the DSEARCH_Return_ErrorCodes_t enum. 
 114                         #define DESCRIPTOR_COMPARATOR(name)           uint8_t DCOMP_##name (void* const CurrentDescriptor) 
 116                         /** Searches for the next descriptor in the given configuration descriptor using a premade comparator 
 117                          *  function. The routine updates the position and remaining configuration descriptor bytes values 
 118                          *  automatically. If a comparator routine fails a search, the descriptor pointer is retreated back 
 119                          *  so that the next descriptor search invocation will start from the descriptor which first caused the 
 120                          *  original search to fail. This behaviour allows for one comparator to be used immediately after another 
 121                          *  has failed, starting the second search from the descriptor which failed the first. 
 123                          *  \param DSize    Pointer to an int storing the remaining bytes in the configuration descriptor 
 124                          *  \param DPos     Pointer to the current position in the configuration descriptor 
 125                          *  \param DSearch  Name of the comparator search function to use on the configuration descriptor 
 127                          *  \return Value of one of the members of the DSEARCH_Comp_Return_ErrorCodes_t enum 
 131                          *  DESCRIPTOR_COMPARATOR(EndpointSearcher); // Comparator Prototype 
 133                          *  DESCRIPTOR_COMPARATOR(EndpointSearcher) 
 135                          *     if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Endpoint) 
 136                          *         return Descriptor_Search_Found; 
 138                          *         return Descriptor_Search_NotFound; 
 142                          *  // After retrieving configuration descriptor: 
 143                          *  if (USB_Host_GetNextDescriptorComp(&BytesRemaining, &ConfigDescriptorData, EndpointSearcher) == 
 144                          *      Descriptor_Search_Comp_Found) 
 146                          *      // Do something with the endpoint descriptor 
 150                         #define USB_Host_GetNextDescriptorComp(DSize, DPos, DSearch) \ 
 151                                                                       USB_Host_GetNextDescriptorComp_P(DSize, DPos, DCOMP_##DSearch) 
 153                         /** Enum for return values of a descriptor comparator made with DESCRIPTOR_COMPARATOR. */ 
 154                         enum DSEARCH_Return_ErrorCodes_t
 
 156                                 Descriptor_Search_Found                
= 0, /**< Current descriptor matches comparator criteria. */ 
 157                                 Descriptor_Search_Fail                 
= 1, /**< No further descriptor could possibly match criteria, fail the search. */ 
 158                                 Descriptor_Search_NotFound             
= 2, /**< Current descriptor does not match comparator criteria. */ 
 161                         /** Enum for return values of USB_Host_GetNextDescriptorComp() */ 
 162                         enum DSEARCH_Comp_Return_ErrorCodes_t
 
 164                                 Descriptor_Search_Comp_Found           
= 0, /**< Configuration descriptor now points to descriptor which matches 
 165                                                                              *   search criteria of the given comparator function. */ 
 166                                 Descriptor_Search_Comp_Fail            
= 1, /**< Comparator function returned Descriptor_Search_Fail. */ 
 167                                 Descriptor_Search_Comp_EndOfDescriptor 
= 2, /**< End of configuration descriptor reached before match found. */ 
 170                 /* Function Prototypes: */ 
 171                         /** Retrieves the configuration descriptor data or size from an attached device via a standard request. 
 173                          *  \param ConfigSizePtr  Pointer to a uint16_t for either storing or retrieving the configuration 
 176                          *  \param BufferPtr  Pointer to the buffer for storing the configuration descriptor data. If this is 
 177                          *                    NULL, the size of the configuration descriptor will be retrieved instead and 
 178                          *                    placed in the variable pointed to by ConfigSizePtr. If this is non-NULL, the number 
 179                          *                    of bytes indicated by ConfigSizePtr of the configuration descriptor will be loaded 
 182                         uint8_t USB_Host_GetDeviceConfigDescriptor(uint16_t* const ConfigSizePtr
, void* BufferPtr
) 
 183                                                                    ATTR_NON_NULL_PTR_ARG(1); 
 185                 /* Inline Functions: */ 
 186                         /** Skips over the current sub-descriptor inside the configuration descriptor, so that the pointer then 
 187                             points to the next sub-descriptor. The bytes remaining value is automatically decremented. 
 189                          * \param BytesRem  Pointer to the number of bytes remaining of the configuration descriptor 
 190                          * \param CurrConfigLoc  Pointer to the current descriptor inside the configuration descriptor 
 192                         static inline void USB_Host_GetNextDescriptor(uint16_t* const BytesRem
, 
 193                                                                       uint8_t** const CurrConfigLoc
)  
 194                                                                                                                   ATTR_NON_NULL_PTR_ARG(1, 2);                                                                     
 195                         static inline void USB_Host_GetNextDescriptor(uint16_t* const BytesRem
, 
 196                                                                       uint8_t** const CurrConfigLoc
) 
 198                                 #if defined(USE_NONSTANDARD_DESCRIPTOR_NAMES) 
 199                                 uint16_t CurrDescriptorSize 
= DESCRIPTOR_CAST(*CurrConfigLoc
, USB_Descriptor_Header_t
).Size
; 
 201                                 uint16_t CurrDescriptorSize 
= DESCRIPTOR_CAST(*CurrConfigLoc
, USB_Descriptor_Header_t
).bLength
;                          
 204                                 *CurrConfigLoc 
+= CurrDescriptorSize
; 
 205                                 *BytesRem      
-= CurrDescriptorSize
; 
 208                         /** Skips to the next sub-descriptor inside the configuration descriptor of the specified type value. 
 209                          *  The bytes remaining value is automatically decremented. 
 211                          * \param BytesRem  Pointer to the number of bytes remaining of the configuration descriptor 
 212                          * \param CurrConfigLoc  Pointer to the current descriptor inside the configuration descriptor 
 213                          * \param Type  Descriptor type value to search for 
 215                         void USB_Host_GetNextDescriptorOfType(uint16_t* const BytesRem
, 
 216                                                               uint8_t** const CurrConfigLoc
, 
 218                                                               ATTR_NON_NULL_PTR_ARG(1, 2); 
 220                         /** Skips to the next sub-descriptor inside the configuration descriptor of the specified type value, 
 221                          *  which must come before a descriptor of the second given type value. If the BeforeType type 
 222                          *  descriptor is reached first, the number of bytes remaining to process is set to zero and the 
 223                          *  function exits. The bytes remaining value is automatically decremented. 
 225                          * \param BytesRem  Pointer to the number of bytes remaining of the configuration descriptor 
 226                          * \param CurrConfigLoc  Pointer to the current descriptor inside the configuration descriptor 
 227                          * \param Type  Descriptor type value to search for 
 228                          * \param BeforeType  Descriptor type value which must not be reached before the given Type descriptor 
 230                         void USB_Host_GetNextDescriptorOfTypeBefore(uint16_t* const BytesRem
, 
 231                                                                     uint8_t** const CurrConfigLoc
, 
 233                                                                     const uint8_t BeforeType
) 
 234                                                                     ATTR_NON_NULL_PTR_ARG(1, 2); 
 236                         /** Skips to the next sub-descriptor inside the configuration descriptor of the specified type value, 
 237                          *  which must come after a descriptor of the second given type value. The bytes remaining value is 
 238                          *  automatically decremented. 
 240                          * \param BytesRem  Pointer to the number of bytes remaining of the configuration descriptor 
 241                          * \param CurrConfigLoc  Pointer to the current descriptor inside the configuration descriptor 
 242                          * \param Type  Descriptor type value to search for 
 243                          * \param AfterType  Descriptor type value which must be reached before the given Type descriptor 
 245                         void USB_Host_GetNextDescriptorOfTypeAfter(uint16_t* const BytesRem
, 
 246                                                                    uint8_t** const CurrConfigLoc
, 
 248                                                                    const uint8_t AfterType
) 
 249                                                                    ATTR_NON_NULL_PTR_ARG(1, 2); 
 251         /* Private Interface - For use in library only: */ 
 252         #if !defined(__DOXYGEN__) 
 253                 /* Function Prototypes: */ 
 254                         uint8_t USB_Host_GetNextDescriptorComp_P(uint16_t* BytesRem
, uint8_t** CurrConfigLoc
, 
 255                                                      uint8_t (* const ComparatorRoutine
)(void* const)); 
 258         /* Disable C linkage for C++ Compilers: */ 
 259                 #if defined(__cplusplus)