diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sound/dmaengine_pcm.h | 70 | ||||
-rw-r--r-- | include/sound/soc.h | 4 |
2 files changed, 73 insertions, 1 deletions
diff --git a/include/sound/dmaengine_pcm.h b/include/sound/dmaengine_pcm.h index 95620428a59b..f11c35cd5532 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) | |||
39 | snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream); | 40 | snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream); |
40 | 41 | ||
41 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, | 42 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, |
42 | dma_filter_fn filter_fn, void *filter_data); | 43 | struct dma_chan *chan); |
43 | int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream); | 44 | int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream); |
44 | 45 | ||
46 | int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, | ||
47 | dma_filter_fn filter_fn, void *filter_data); | ||
48 | int snd_dmaengine_pcm_close_release_chan(struct snd_pcm_substream *substream); | ||
49 | |||
50 | struct dma_chan *snd_dmaengine_pcm_request_channel(dma_filter_fn filter_fn, | ||
51 | void *filter_data); | ||
45 | struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream); | 52 | struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream); |
46 | 53 | ||
47 | /** | 54 | /** |
@@ -68,4 +75,65 @@ 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 | * The PCM is half duplex and the DMA channel is shared between capture and | ||
96 | * playback. | ||
97 | */ | ||
98 | #define SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX BIT(3) | ||
99 | |||
100 | /** | ||
101 | * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM | ||
102 | * @prepare_slave_config: Callback used to fill in the DMA slave_config for a | ||
103 | * PCM substream. Will be called from the PCM drivers hwparams callback. | ||
104 | * @compat_request_channel: Callback to request a DMA channel for platforms | ||
105 | * which do not use devicetree. | ||
106 | * @compat_filter_fn: Will be used as the filter function when requesting a | ||
107 | * channel for platforms which do not use devicetree. The filter parameter | ||
108 | * will be the DAI's DMA data. | ||
109 | * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM. | ||
110 | * @prealloc_buffer_size: Size of the preallocated audio buffer. | ||
111 | * | ||
112 | * Note: If both compat_request_channel and compat_filter_fn are set | ||
113 | * compat_request_channel will be used to request the channel and | ||
114 | * compat_filter_fn will be ignored. Otherwise the channel will be requested | ||
115 | * using dma_request_channel with compat_filter_fn as the filter function. | ||
116 | */ | ||
117 | struct snd_dmaengine_pcm_config { | ||
118 | int (*prepare_slave_config)(struct snd_pcm_substream *substream, | ||
119 | struct snd_pcm_hw_params *params, | ||
120 | struct dma_slave_config *slave_config); | ||
121 | struct dma_chan *(*compat_request_channel)( | ||
122 | struct snd_soc_pcm_runtime *rtd, | ||
123 | struct snd_pcm_substream *substream); | ||
124 | dma_filter_fn compat_filter_fn; | ||
125 | |||
126 | const struct snd_pcm_hardware *pcm_hardware; | ||
127 | unsigned int prealloc_buffer_size; | ||
128 | }; | ||
129 | |||
130 | int snd_dmaengine_pcm_register(struct device *dev, | ||
131 | const struct snd_dmaengine_pcm_config *config, | ||
132 | unsigned int flags); | ||
133 | void snd_dmaengine_pcm_unregister(struct device *dev); | ||
134 | |||
135 | int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream, | ||
136 | struct snd_pcm_hw_params *params, | ||
137 | struct dma_slave_config *slave_config); | ||
138 | |||
71 | #endif | 139 | #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); | |||
375 | int snd_soc_register_platform(struct device *dev, | 375 | int 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); |
377 | void snd_soc_unregister_platform(struct device *dev); | 377 | void snd_soc_unregister_platform(struct device *dev); |
378 | int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform, | ||
379 | const struct snd_soc_platform_driver *platform_drv); | ||
380 | void snd_soc_remove_platform(struct snd_soc_platform *platform); | ||
381 | struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev); | ||
378 | int snd_soc_register_codec(struct device *dev, | 382 | int 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); |