brintos

brintos / linux-shallow public Read only

0
0
Text · 3.1 KiB · dc8370b Raw
70 lines · plain
1=======================2ALSA SoC Layer Overview3=======================4 5The overall project goal of the ALSA System on Chip (ASoC) layer is to6provide better ALSA support for embedded system-on-chip processors (e.g.7pxa2xx, au1x00, iMX, etc) and portable audio codecs.  Prior to the ASoC8subsystem there was some support in the kernel for SoC audio, however it9had some limitations:-10 11  * Codec drivers were often tightly coupled to the underlying SoC12    CPU. This is not ideal and leads to code duplication - for example,13    Linux had different wm8731 drivers for 4 different SoC platforms.14 15  * There was no standard method to signal user initiated audio events (e.g.16    Headphone/Mic insertion, Headphone/Mic detection after an insertion17    event). These are quite common events on portable devices and often require18    machine specific code to re-route audio, enable amps, etc., after such an19    event.20 21  * Drivers tended to power up the entire codec when playing (or22    recording) audio. This is fine for a PC, but tends to waste a lot of23    power on portable devices. There was also no support for saving24    power via changing codec oversampling rates, bias currents, etc.25 26 27ASoC Design28===========29 30The ASoC layer is designed to address these issues and provide the following31features :-32 33  * Codec independence. Allows reuse of codec drivers on other platforms34    and machines.35 36  * Easy I2S/PCM audio interface setup between codec and SoC. Each SoC37    interface and codec registers its audio interface capabilities with the38    core and are subsequently matched and configured when the application39    hardware parameters are known.40 41  * Dynamic Audio Power Management (DAPM). DAPM automatically sets the codec to42    its minimum power state at all times. This includes powering up/down43    internal power blocks depending on the internal codec audio routing and any44    active streams.45 46  * Pop and click reduction. Pops and clicks can be reduced by powering the47    codec up/down in the correct sequence (including using digital mute). ASoC48    signals the codec when to change power states.49 50  * Machine specific controls: Allow machines to add controls to the sound card51    (e.g. volume control for speaker amplifier).52 53To achieve all this, ASoC basically splits an embedded audio system into54multiple re-usable component drivers :-55 56  * Codec class drivers: The codec class driver is platform independent and57    contains audio controls, audio interface capabilities, codec DAPM58    definition and codec IO functions. This class extends to BT, FM and MODEM59    ICs if required. Codec class drivers should be generic code that can run60    on any architecture and machine.61 62  * Platform class drivers: The platform class driver includes the audio DMA63    engine driver, digital audio interface (DAI) drivers (e.g. I2S, AC97, PCM)64    and any audio DSP drivers for that platform.65 66  * Machine class driver: The machine driver class acts as the glue that67    describes and binds the other component drivers together to form an ALSA68    "sound card device". It handles any machine specific controls and69    machine level audio events (e.g. turning on an amp at start of playback).70