Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

There are many audio codecs available on the market and each requires a driver to work with the audio class. The driver is referred as the Audio Peripheral Driver in the general audio class architecture. The amount of code necessary to port a specific audio codec to the audio class greatly depends on the codec’s complexity.

...

Tip

It is highly recommended to use a DMA implementation of the driver as it will offload the CPU and ensure better overall audio performances.

Figure - Typical Audio Codec Interfacing a MCU 106070237 presents a typical stereo codec and how it interfaces with a microcontroller (MCU). 

...

The audio peripheral driver functions can be divided into three API groups as shown in the Table - Audio Peripheral Driver API Groups.

Anchor
Table - Audio Peripheral Driver API Groups
Table - Audio Peripheral Driver API Groups

Panel
borderWidth0
titleTable - Audio Peripheral Driver API Groups


GroupFunctionRequired?Notes
Initialization USBD_Audio_DrvInit Yes
AudioControl interface USBD_Audio_DrvCtrlOT_CopyProtSet() NoRelates to Output Terminal control.
USBD_Audio_DrvCtrlFU_MuteManage YesRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_VolManage() YesRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_BassManage() NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_MidManage() NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_TrebleManage() NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_GraphicEqualizerManage() NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_AutoGainManage NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_DlyManage() NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_BassBoostManage NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlFU_LoudnessManage NoRelates to Feature Unit controls.
USBD_Audio_DrvCtrlMU_CtrlManage() NoRelates to Mixer Unit control.
USBD_Audio_DrvCtrlSU_InPinManage NoRelates to Selector Unit control.
AudioStreaming (AS) interface USBD_Audio_DrvAS_SamplingFreqManage YesRelates to AS endpoint controls.
USBD_Audio_DrvAS_PitchManage NoRelates to AS endpoint controls.
USBD_Audio_DrvStreamStart Yes if at least one record or playback AS interface defined.
USBD_Audio_DrvStreamStop Yes if at least one record or playback AS interface defined.
USBD_Audio_DrvStreamRecordRx Yes if at least one record AS interface defined.
USBD_Audio_DrvStreamPlaybackTx Yes if at least one playback AS interface defined.



Optional functions can be declared as null pointers if the audio chip does not support the associated functionality. 

...

The audio peripheral driver has access to stream API offered by the Audio Processing module presented in Table - Audio Processing Module Stream API 106070237. Basically, this stream API allows the audio peripheral driver to get buffers to transfer audio data to/from an audio codec or any other types of audio chip.

...

Panel
borderWidth0
titleTable - Audio Processing Module Stream API


FunctionDescription
USBD_Audio_RecordBufGet Gets a buffer from an AS interface pool.
USBD_Audio_RecordRxCmpl Signals to the record task a record buffer is ready.
USBD_Audio_PlaybackTxCmpl Signals the end of the audio transfer to the playback task.
USBD_Audio_PlaybackBufFree Updates one of the ring buffer queue indexes.



In order to better understand the use of this stream API, we will consider the typical audio stereo codec configuration shown by Figure - Typical Audio Codec Interfacing a MCU106070237. Moreover, a DMA controller used by the I2S controller will be assumed. Figure - Playback Stream Functions 106070237 summarizes the use of stream functions for a playback stream. Please refer to Figure - Playback Stream Dataflow as a complement to know what is happening in the Audio Processing module.

...

Panel
bgColor#f0f0f0

(1) The host has opened the stream by selecting the operational AS interface. It then sets the sampling frequency (for instance, 48 kHz). The function USBD_Audio_DrvCtrlAS_SamplingFreqManage() will be called for that operation. The sampling frequency is configured by accessing some codec registers. The register access will be accomplished by sending several I2C commands.

(2) Once the playback stream priming is completed within the Audio Processing module, that is a certain number of audio buffers has been accumulated, the function USBD_Audio_DrvStreamStart is called. Usually, you may have to enable playback operations within the codec through some registers configuration. Here again, I2C controller will be used. The function USBD_Audio_PlaybackTxCmpl() is called by the driver to signal the audio transfer completion. The driver can call USBD_Audio_PlaybackTxCmpl()   up to the number of buffers it can queue.

Tip

The audio peripheral driver should support at least the double-buffering to optimize the playback stream processing.

(3) The playback task will receive an AudioStreaming interface handle and will submit to the audio peripheral driver a ready buffer by calling USBD_Audio_DrvStreamPlaybackTx . The initial DMA transfer will be prepared with the first ready buffer. Note that the driver should start the initial DMA transfer after accumulating at least two ready buffers. This allows to start a sort of pipeline in which the audio peripheral driver won't wait after the playback task for providing a ready buffer to prepare the next DMA transfer. Once the pipeline is launched, any subsequent call to USBD_Audio_DrvStreamPlaybackTx() should store the ready buffer. Any buffer memory management method may be used to store the ready buffer (for instance, double-buffering, circular buffer, etc.).

Depending on the DMA controller, you may have to configure some registers and/or a DMA descriptor in order to describe the transfer. The DMA controller moves the audio data from the memory to the I 2 S controller. This one will forward the data to the codec that will play audio data to the speaker.

(4) A DMA interrupt will be fired upon transfer completion. An ISR associated to this interrupt is called. This ISR processes the DMA transfer completion by freeing the consumed buffer. For that, the function USBD_Audio_PlaybackBufFree() is called. This function updates one of the indexes of the ring buffer queue. The ISR continues by signaling to the playback task that the audio transfer has finished with USBD_Audio_PlaybackTxCmpl . Once again, the playback will provide a ready buffer via USBD_Audio_DrvStreamPlaybackTx() as described in step (2). The ISR will get a new ready buffer from its internal buffer storage. A new DMA transfer is prepared and started. If no playback buffer is available from the internal storage, you may have to play a silence buffer to keep the driver in sync with audio class, that is you want to continue receiving DMA transfer completion interrupt to re-signal the audio transfer completion to the playback task. The silence buffer is filled with zeros interpreted by the codec as silence. The silence buffer can be allocated and initialized in the function USBD_Audio_DrvInit() .

Tip

The DMA implementation in this example processes the playback buffers one after the other using a single interrupt. Depending on your DMA controller, it may be possible to optimize the performance by using several DMA channels. In that case, you could pipeline the DMA transfers. The DMA controller may also offer to link DMA descriptors. In that case, you could get several ready buffers and link several DMA descriptors.

(5) The host decides to stop the stream. The function USBD_Audio_DrvStreamStop is called. You should abort any ongoing DMA transfers. You don't have to call USBD_Audio_PlaybackBufFree() to free any aborted buffers nor to free ready buffers stored internally in the driver and not yet processed. The buffers are implicitly freed by the audio class during the ring buffer queue reset. You can also disable the playback operation on the codec if it is needed.


Figure - Record Stream Functions summarizes the use of stream functions for a record stream. Please refer to Figure - Record Stream Dataflow as a complement to know that is happening in the Audio Processing module.

...

As described in the section Audio Statistics, the audio class offered some stream statistics that may be useful during your development. An audio statistics structure ( USBD_AUDIO_STAT ) specific to each AS interface can be retrieved by the application and consulted during debugging. Table - USBD_AUDIO_STAT Structure Fields Description106070237 describes all the fields of  USBD_AUDIO_STAT. Among them, there are four interesting for the driver:

...

You can use the macro  AUDIO_DRV_STAT_INC() by specifying an AS handle and the name of the field to update statistics. Listing - AUDIO_DRV_STAT_INC() Usage 106070237 shows an example of AUDIO_DRV_STAT_INC() usage.

...