Pull cpuidle into release branch
[pandora-kernel.git] / Documentation / sound / alsa / soc / overview.txt
1 ALSA SoC Layer
2 ==============
3
4 The overall project goal of the ALSA System on Chip (ASoC) layer is to provide
5 better ALSA support for embedded system-on-chip processors (e.g. pxa2xx, au1x00,
6 iMX, etc) and portable audio codecs. Currently there is some support in the
7 kernel for SoC audio, however it has some limitations:-
8
9   * Currently, codec drivers are often tightly coupled to the underlying SoC
10     CPU. This is not ideal and leads to code duplication i.e. Linux now has 4
11     different wm8731 drivers for 4 different SoC platforms.
12
13   * There is no standard method to signal user initiated audio events (e.g.
14     Headphone/Mic insertion, Headphone/Mic detection after an insertion
15     event). These are quite common events on portable devices and often require
16     machine specific code to re-route audio, enable amps, etc., after such an
17     event.
18
19   * Current drivers tend to power up the entire codec when playing
20     (or recording) audio. This is fine for a PC, but tends to waste a lot of
21     power on portable devices. There is also no support for saving power via
22     changing codec oversampling rates, bias currents, etc.
23
24
25 ASoC Design
26 ===========
27
28 The ASoC layer is designed to address these issues and provide the following
29 features :-
30
31   * Codec independence. Allows reuse of codec drivers on other platforms
32     and machines.
33
34   * Easy I2S/PCM audio interface setup between codec and SoC. Each SoC interface
35     and codec registers it's audio interface capabilities with the core and are
36     subsequently matched and configured when the application hw params are known.
37
38   * Dynamic Audio Power Management (DAPM). DAPM automatically sets the codec to
39     it's minimum power state at all times. This includes powering up/down
40     internal power blocks depending on the internal codec audio routing and any
41     active streams.
42
43   * Pop and click reduction. Pops and clicks can be reduced by powering the
44     codec up/down in the correct sequence (including using digital mute). ASoC
45     signals the codec when to change power states.
46
47   * Machine specific controls: Allow machines to add controls to the sound card
48     (e.g. volume control for speaker amp).
49
50 To achieve all this, ASoC basically splits an embedded audio system into 3
51 components :-
52
53   * Codec driver: The codec driver is platform independent and contains audio
54     controls, audio interface capabilities, codec dapm definition and codec IO
55     functions.
56
57   * Platform driver: The platform driver contains the audio dma engine and audio
58     interface drivers (e.g. I2S, AC97, PCM) for that platform.
59
60   * Machine driver: The machine driver handles any machine specific controls and
61     audio events (e.g. turning on an amp at start of playback).
62
63
64 Documentation
65 =============
66
67 The documentation is spilt into the following sections:-
68
69 overview.txt: This file.
70
71 codec.txt: Codec driver internals.
72
73 DAI.txt: Description of Digital Audio Interface standards and how to configure
74 a DAI within your codec and CPU DAI drivers.
75
76 dapm.txt: Dynamic Audio Power Management
77
78 platform.txt: Platform audio DMA and DAI.
79
80 machine.txt: Machine driver internals.
81
82 pop_clicks.txt: How to minimise audio artifacts.
83
84 clocking.txt: ASoC clocking for best power performance.