3      Copyright (C) Dean Camera, 2012. 
   5   dean [at] fourwalledcubicle [dot] com 
  10   Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, distribute, and sell this 
  13   software and its documentation for any purpose is hereby granted 
  14   without fee, provided that the above copyright notice appear in 
  15   all 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 
  32  *  \brief Device mode driver for the library USB Audio 1.0 Class driver. 
  34  *  Device mode driver for the library USB Audio 1.0 Class driver. 
  36  *  \note This file should not be included directly. It is automatically included as needed by the USB module driver 
  37  *        dispatch header located in LUFA/Drivers/USB.h. 
  40 /** \ingroup Group_USBClassAudio 
  41  *  \defgroup Group_USBClassAudioDevice Audio 1.0 Class Device Mode Driver 
  43  *  \section Sec_Dependencies Module Source Dependencies 
  44  *  The following files must be built with any user project that uses this module: 
  45  *    - LUFA/Drivers/USB/Class/Device/AudioClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> 
  47  *  \section Sec_ModDescription Module Description 
  48  *  Device Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver. 
  53 #ifndef _AUDIO_CLASS_DEVICE_H_ 
  54 #define _AUDIO_CLASS_DEVICE_H_ 
  57                 #include "../../USB.h" 
  58                 #include "../Common/AudioClassCommon.h" 
  60         /* Enable C linkage for C++ Compilers: */ 
  61                 #if defined(__cplusplus) 
  65         /* Preprocessor Checks: */ 
  66                 #if !defined(__INCLUDE_FROM_AUDIO_DRIVER) 
  67                         #error Do not include this file directly. Include LUFA/Drivers/USB.h instead. 
  70         /* Public Interface - May be used in end-application: */ 
  72                         /** \brief Audio Class Device Mode Configuration and State Structure. 
  74                          *  Class state structure. An instance of this structure should be made for each Audio interface 
  75                          *  within the user application, and passed to each of the Audio class driver functions as the 
  76                          *  \c AudioInterfaceInfo parameter. This stores each Audio interface's configuration and state information. 
  82                                         uint8_t  StreamingInterfaceNumber
; /**< Index of the Audio Streaming interface within the device this 
  86                                         uint8_t  DataINEndpointNumber
; /**< Endpoint number of the incoming Audio Streaming data, if available 
  89                                         uint16_t DataINEndpointSize
; /**< Size in bytes of the incoming Audio Streaming data endpoint, if available 
  93                                         uint8_t  DataOUTEndpointNumber
; /**< Endpoint number of the outgoing Audio Streaming data, if available 
  96                                         uint16_t DataOUTEndpointSize
; /**< Size in bytes of the outgoing Audio Streaming data endpoint, if available 
  99                                 } Config
; /**< Config data for the USB class interface within the device. All elements in this section 
 100                                            *   <b>must</b> be set or the interface will fail to enumerate and operate correctly. 
 104                                         bool InterfaceEnabled
; /**< Set and cleared by the class driver to indicate if the host has enabled the streaming endpoints 
 105                                                                 *   of the Audio Streaming interface. 
 107                                 } State
; /**< State data for the USB class interface within the device. All elements in this section 
 108                                           *   are reset to their defaults when the interface is enumerated. 
 110                         } USB_ClassInfo_Audio_Device_t
; 
 112                 /* Function Prototypes: */ 
 113                         /** Configures the endpoints of a given Audio interface, ready for use. This should be linked to the library 
 114                          *  \ref EVENT_USB_Device_ConfigurationChanged() event so that the endpoints are configured when the configuration containing the 
 115                          *  given Audio interface is selected. 
 117                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 119                          *  \return Boolean \c true if the endpoints were successfully configured, \c false otherwise. 
 121                         bool Audio_Device_ConfigureEndpoints(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) ATTR_NON_NULL_PTR_ARG(1); 
 123                         /** Processes incoming control requests from the host, that are directed to the given Audio class interface. This should be 
 124                          *  linked to the library \ref EVENT_USB_Device_ControlRequest() event. 
 126                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 128                         void Audio_Device_ProcessControlRequest(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) ATTR_NON_NULL_PTR_ARG(1); 
 130                         /** Audio class driver callback for the setting and retrieval of streaming endpoint properties. This callback must be implemented 
 131                          *  in the user application to handle property manipulations on streaming audio endpoints. 
 133                          *  When the DataLength parameter is NULL, this callback should only indicate whether the specified operation is valid for 
 134                          *  the given endpoint index, and should return as fast as possible. When non-NULL, this value may be altered for GET operations 
 135                          *  to indicate the size of the retreived data. 
 137                          *  \note The length of the retrieved data stored into the Data buffer on GET operations should not exceed the initial value 
 138                          *        of the \c DataLength parameter. 
 140                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 141                          *  \param[in]     EndpointProperty    Property of the endpoint to get or set, a value from \ref Audio_ClassRequests_t. 
 142                          *  \param[in]     EndpointAddress     Address of the streaming endpoint whose property is being referenced. 
 143                          *  \param[in]     EndpointControl     Parameter of the endpoint to get or set, a value from \ref Audio_EndpointControls_t. 
 144                          *  \param[in,out] DataLength          For SET operations, the length of the parameter data to set. For GET operations, the maximum 
 145                          *                                     length of the retrieved data. When NULL, the function should return whether the given property 
 146                          *                                     and parameter is valid for the requested endpoint without reading or modifying the Data buffer. 
 147                          *  \param[in,out] Data                Pointer to a location where the parameter data is stored for SET operations, or where 
 148                          *                                     the retrieved data is to be stored for GET operations. 
 150                          *  \return Boolean \c true if the property GET/SET was successful, \c false otherwise 
 152                         bool CALLBACK_Audio_Device_GetSetEndpointProperty(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 153                                                                           const uint8_t EndpointProperty
, 
 154                                                                           const uint8_t EndpointAddress
, 
 155                                                                           const uint8_t EndpointControl
, 
 156                                                                           uint16_t* const DataLength
, 
 157                                                                           uint8_t* Data
) ATTR_NON_NULL_PTR_ARG(1); 
 159                         /** Audio class driver callback for the setting and retrieval of streaming interface properties. This callback must be implemented 
 160                          *  in the user application to handle property manipulations on streaming audio interfaces. 
 162                          *  When the DataLength parameter is NULL, this callback should only indicate whether the specified operation is valid for 
 163                          *  the given entity and should return as fast as possible. When non-NULL, this value may be altered for GET operations 
 164                          *  to indicate the size of the retreived data. 
 166                          *  \note The length of the retrieved data stored into the Data buffer on GET operations should not exceed the initial value 
 167                          *        of the \c DataLength parameter. 
 169                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 170                          *  \param[in]     Property            Property of the interface to get or set, a value from \ref Audio_ClassRequests_t. 
 171                          *  \param[in]     EntityAddress       Address of the audio entity whose property is being referenced. 
 172                          *  \param[in]     Parameter           Parameter of the entity to get or set, specific to each type of entity (see USB Audio specification). 
 173                          *  \param[in,out] DataLength          For SET operations, the length of the parameter data to set. For GET operations, the maximum 
 174                          *                                     length of the retrieved data. When NULL, the function should return whether the given property 
 175                          *                                     and parameter is valid for the requested endpoint without reading or modifying the Data buffer. 
 176                          *  \param[in,out] Data                Pointer to a location where the parameter data is stored for SET operations, or where 
 177                          *                                     the retrieved data is to be stored for GET operations. 
 179                          *  \return Boolean \c true if the property GET/SET was successful, \c false otherwise 
 181                         bool CALLBACK_Audio_Device_GetSetInterfaceProperty(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 182                                                                            const uint8_t Property
, 
 183                                                                            const uint8_t EntityAddress
, 
 184                                                                            const uint16_t Parameter
, 
 185                                                                            uint16_t* const DataLength
, 
 186                                                                            uint8_t* Data
) ATTR_NON_NULL_PTR_ARG(1); 
 188                         /** Audio class driver event for an Audio Stream start/stop change. This event fires each time the device receives a stream enable or 
 189                          *  disable control request from the host, to start and stop the audio stream. The current state of the stream can be determined by the 
 190                          *  State.InterfaceEnabled value inside the Audio interface structure passed as a parameter. 
 192                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 194                         void EVENT_Audio_Device_StreamStartStop(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
); 
 196                 /* Inline Functions: */ 
 197                         /** General management task for a given Audio class interface, required for the correct operation of the interface. This should 
 198                          *  be called frequently in the main program loop, before the master USB management task \ref USB_USBTask(). 
 200                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 202                         static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 203                                                                 ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 204                         static inline void Audio_Device_USBTask(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 206                                 (void)AudioInterfaceInfo
; 
 209                         /** Determines if the given audio interface is ready for a sample to be read from it, and selects the streaming 
 210                          *  OUT endpoint ready for reading. 
 212                          *  \pre This function must only be called when the Device state machine is in the \ref DEVICE_STATE_Configured state or 
 213                          *       the call will fail. 
 215                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 217                          *  \return Boolean \c true if the given Audio interface has a sample to be read, \c false otherwise. 
 219                         static inline bool Audio_Device_IsSampleReceived(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 220                                                                          ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 221                         static inline bool Audio_Device_IsSampleReceived(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 223                                 if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(AudioInterfaceInfo
->State
.InterfaceEnabled
)) 
 226                                 Endpoint_SelectEndpoint(AudioInterfaceInfo
->Config
.DataOUTEndpointNumber
); 
 227                                 return Endpoint_IsOUTReceived(); 
 230                         /** Determines if the given audio interface is ready to accept the next sample to be written to it, and selects 
 231                          *  the streaming IN endpoint ready for writing. 
 233                          *  \pre This function must only be called when the Device state machine is in the \ref DEVICE_STATE_Configured state or 
 234                          *       the call will fail. 
 236                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 238                          *  \return Boolean \c true if the given Audio interface is ready to accept the next sample, \c false otherwise. 
 240                         static inline bool Audio_Device_IsReadyForNextSample(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 241                                                                              ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 242                         static inline bool Audio_Device_IsReadyForNextSample(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 244                                 if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(AudioInterfaceInfo
->State
.InterfaceEnabled
)) 
 247                                 Endpoint_SelectEndpoint(AudioInterfaceInfo
->Config
.DataINEndpointNumber
); 
 248                                 return Endpoint_IsINReady(); 
 251                         /** Reads the next 8-bit audio sample from the current audio interface. 
 253                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure 
 254                          *       that the correct endpoint is selected and ready for data. 
 256                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 258                          *  \return  Signed 8-bit audio sample from the audio interface. 
 260                         static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 261                                                                       ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 262                         static inline int8_t Audio_Device_ReadSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 266                                 (void)AudioInterfaceInfo
; 
 268                                 Sample 
= Endpoint_Read_8(); 
 270                                 if (!(Endpoint_BytesInEndpoint())) 
 276                         /** Reads the next 16-bit audio sample from the current audio interface. 
 278                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure 
 279                          *       that the correct endpoint is selected and ready for data. 
 281                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 283                          *  \return  Signed 16-bit audio sample from the audio interface. 
 285                         static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 286                                                                         ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 287                         static inline int16_t Audio_Device_ReadSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 291                                 (void)AudioInterfaceInfo
; 
 293                                 Sample 
= (int16_t)Endpoint_Read_16_LE(); 
 295                                 if (!(Endpoint_BytesInEndpoint())) 
 301                         /** Reads the next 24-bit audio sample from the current audio interface. 
 303                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsSampleReceived() function to ensure 
 304                          *       that the correct endpoint is selected and ready for data. 
 306                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 308                          *  \return Signed 24-bit audio sample from the audio interface. 
 310                         static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 311                                                                         ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 312                         static inline int32_t Audio_Device_ReadSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 316                                 (void)AudioInterfaceInfo
; 
 318                                 Sample 
= (((uint32_t)Endpoint_Read_8() << 16) | Endpoint_Read_16_LE()); 
 320                                 if (!(Endpoint_BytesInEndpoint())) 
 326                         /** Writes the next 8-bit audio sample to the current audio interface. 
 328                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to 
 329                          *       ensure that the correct endpoint is selected and ready for data. 
 331                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 332                          *  \param[in]     Sample              Signed 8-bit audio sample. 
 334                         static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 335                                                                      const int8_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 336                         static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 339                                 Endpoint_Write_8(Sample
); 
 341                                 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
) 
 345                         /** Writes the next 16-bit audio sample to the current audio interface. 
 347                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to 
 348                          *       ensure that the correct endpoint is selected and ready for data. 
 350                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 351                          *  \param[in]     Sample              Signed 16-bit audio sample. 
 353                         static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 354                                                                       const int16_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 355                         static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 356                                                                       const int16_t Sample
) 
 358                                 Endpoint_Write_16_LE(Sample
); 
 360                                 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
) 
 364                         /** Writes the next 24-bit audio sample to the current audio interface. 
 366                          *  \pre This should be preceded immediately by a call to the \ref Audio_Device_IsReadyForNextSample() function to 
 367                          *       ensure that the correct endpoint is selected and ready for data. 
 369                          *  \param[in,out] AudioInterfaceInfo  Pointer to a structure containing an Audio Class configuration and state. 
 370                          *  \param[in]     Sample              Signed 24-bit audio sample. 
 372                         static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 373                                                                       const int32_t Sample
) ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
; 
 374                         static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
, 
 375                                                                       const int32_t Sample
) 
 377                                 Endpoint_Write_16_LE(Sample
); 
 378                                 Endpoint_Write_8(Sample 
>> 16); 
 380                                 if (Endpoint_BytesInEndpoint() == AudioInterfaceInfo
->Config
.DataINEndpointSize
) 
 384         /* Private Interface - For use in library only: */ 
 385         #if !defined(__DOXYGEN__) 
 386                 /* Function Prototypes: */ 
 387                         #if defined(__INCLUDE_FROM_AUDIO_DEVICE_C) 
 388                                 void Audio_Device_Event_Stub(void) ATTR_CONST
; 
 390                                 void EVENT_Audio_Device_StreamStartStop(USB_ClassInfo_Audio_Device_t
* const AudioInterfaceInfo
) 
 391                                                                         ATTR_WEAK 
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALIAS(Audio_Device_Event_Stub
); 
 396         /* Disable C linkage for C++ Compilers: */ 
 397                 #if defined(__cplusplus)