aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2013-04-18 10:24:31 -0400
committerTakashi Iwai <tiwai@suse.de>2013-04-18 10:24:31 -0400
commit8dd2b66d1a961231685a3bfe5937c85d846fbf5d (patch)
tree8117553488bf4ef09b048a4b343cf37cc16bf46d /include/sound
parent126825e7ea271ae8e3172e10ca1fc22c908b5385 (diff)
parent24568ea4bef5ab8106206eddf5512434421c00ed (diff)
Merge tag 'asoc-v3.10-2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: More updates for v3.10 The main additional change here is Lars-Peter's DMA work plus the platform conversions which have been tested - getting this in mainline will make life easier for development after the merge window. These factor a large chunk of code out of the drivers for the platforms using dmaengine, greatly simplifying development.
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/dmaengine_pcm.h65
-rw-r--r--include/sound/soc.h4
2 files changed, 68 insertions, 1 deletions
diff --git a/include/sound/dmaengine_pcm.h b/include/sound/dmaengine_pcm.h
index 95620428a59b..b1d1150c1d60 100644
--- a/include/sound/dmaengine_pcm.h
+++ b/include/sound/dmaengine_pcm.h
@@ -16,6 +16,7 @@
16#define __SOUND_DMAENGINE_PCM_H__ 16#define __SOUND_DMAENGINE_PCM_H__
17 17
18#include <sound/pcm.h> 18#include <sound/pcm.h>
19#include <sound/soc.h>
19#include <linux/dmaengine.h> 20#include <linux/dmaengine.h>
20 21
21/** 22/**
@@ -39,9 +40,15 @@ snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream)
39snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream); 40snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream);
40 41
41int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, 42int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream,
42 dma_filter_fn filter_fn, void *filter_data); 43 struct dma_chan *chan);
43int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream); 44int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream);
44 45
46int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream,
47 dma_filter_fn filter_fn, void *filter_data);
48int snd_dmaengine_pcm_close_release_chan(struct snd_pcm_substream *substream);
49
50struct dma_chan *snd_dmaengine_pcm_request_channel(dma_filter_fn filter_fn,
51 void *filter_data);
45struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream); 52struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream);
46 53
47/** 54/**
@@ -68,4 +75,60 @@ void snd_dmaengine_pcm_set_config_from_dai_data(
68 const struct snd_dmaengine_dai_dma_data *dma_data, 75 const struct snd_dmaengine_dai_dma_data *dma_data,
69 struct dma_slave_config *config); 76 struct dma_slave_config *config);
70 77
78
79/*
80 * Try to request the DMA channel using compat_request_channel or
81 * compat_filter_fn if it couldn't be requested through devicetree.
82 */
83#define SND_DMAENGINE_PCM_FLAG_COMPAT BIT(0)
84/*
85 * Don't try to request the DMA channels through devicetree. This flag only
86 * makes sense if SND_DMAENGINE_PCM_FLAG_COMPAT is set as well.
87 */
88#define SND_DMAENGINE_PCM_FLAG_NO_DT BIT(1)
89/*
90 * The platforms dmaengine driver does not support reporting the amount of
91 * bytes that are still left to transfer.
92 */
93#define SND_DMAENGINE_PCM_FLAG_NO_RESIDUE BIT(2)
94
95/**
96 * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM
97 * @prepare_slave_config: Callback used to fill in the DMA slave_config for a
98 * PCM substream. Will be called from the PCM drivers hwparams callback.
99 * @compat_request_channel: Callback to request a DMA channel for platforms
100 * which do not use devicetree.
101 * @compat_filter_fn: Will be used as the filter function when requesting a
102 * channel for platforms which do not use devicetree. The filter parameter
103 * will be the DAI's DMA data.
104 * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM.
105 * @prealloc_buffer_size: Size of the preallocated audio buffer.
106 *
107 * Note: If both compat_request_channel and compat_filter_fn are set
108 * compat_request_channel will be used to request the channel and
109 * compat_filter_fn will be ignored. Otherwise the channel will be requested
110 * using dma_request_channel with compat_filter_fn as the filter function.
111 */
112struct snd_dmaengine_pcm_config {
113 int (*prepare_slave_config)(struct snd_pcm_substream *substream,
114 struct snd_pcm_hw_params *params,
115 struct dma_slave_config *slave_config);
116 struct dma_chan *(*compat_request_channel)(
117 struct snd_soc_pcm_runtime *rtd,
118 struct snd_pcm_substream *substream);
119 dma_filter_fn compat_filter_fn;
120
121 const struct snd_pcm_hardware *pcm_hardware;
122 unsigned int prealloc_buffer_size;
123};
124
125int snd_dmaengine_pcm_register(struct device *dev,
126 const struct snd_dmaengine_pcm_config *config,
127 unsigned int flags);
128void snd_dmaengine_pcm_unregister(struct device *dev);
129
130int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
131 struct snd_pcm_hw_params *params,
132 struct dma_slave_config *slave_config);
133
71#endif 134#endif
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 9eb0e4db4835..85c15226103b 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -375,6 +375,10 @@ int snd_soc_poweroff(struct device *dev);
375int snd_soc_register_platform(struct device *dev, 375int snd_soc_register_platform(struct device *dev,
376 const struct snd_soc_platform_driver *platform_drv); 376 const struct snd_soc_platform_driver *platform_drv);
377void snd_soc_unregister_platform(struct device *dev); 377void snd_soc_unregister_platform(struct device *dev);
378int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
379 const struct snd_soc_platform_driver *platform_drv);
380void snd_soc_remove_platform(struct snd_soc_platform *platform);
381struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev);
378int snd_soc_register_codec(struct device *dev, 382int snd_soc_register_codec(struct device *dev,
379 const struct snd_soc_codec_driver *codec_drv, 383 const struct snd_soc_codec_driver *codec_drv,
380 struct snd_soc_dai_driver *dai_drv, int num_dai); 384 struct snd_soc_dai_driver *dai_drv, int num_dai);