overview.txt 3.2 KB

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