4 An ASoC platform driver can be divided into audio DMA and SoC DAI configuration
5 and control. The platform drivers only target the SoC CPU and must have no board
11 The platform DMA driver optionally supports the following ALSA operations:-
15 int (*startup)(struct snd_pcm_substream *);
16 void (*shutdown)(struct snd_pcm_substream *);
17 int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
18 int (*hw_free)(struct snd_pcm_substream *);
19 int (*prepare)(struct snd_pcm_substream *);
20 int (*trigger)(struct snd_pcm_substream *, int);
23 The platform driver exports its DMA functionality via struct snd_soc_platform:-
25 struct snd_soc_platform {
28 int (*probe)(struct platform_device *pdev);
29 int (*remove)(struct platform_device *pdev);
30 int (*suspend)(struct platform_device *pdev, struct snd_soc_cpu_dai *cpu_dai);
31 int (*resume)(struct platform_device *pdev, struct snd_soc_cpu_dai *cpu_dai);
33 /* pcm creation and destruction */
34 int (*pcm_new)(struct snd_card *, struct snd_soc_codec_dai *, struct snd_pcm *);
35 void (*pcm_free)(struct snd_pcm *);
37 /* platform stream ops */
38 struct snd_pcm_ops *pcm_ops;
41 Please refer to the ALSA driver documentation for details of audio DMA.
42 http://www.alsa-project.org/~iwai/writing-an-alsa-driver/c436.htm
44 An example DMA driver is soc/pxa/pxa2xx-pcm.c
50 Each SoC DAI driver must provide the following features:-
52 1) Digital audio interface (DAI) description
53 2) Digital audio interface configuration
55 4) SYSCLK configuration
56 5) Suspend and resume (optional)
58 Please see codec.txt for a description of items 1 - 4.