2 * Digital Audio (PCM) abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/driver.h>
24 #include <linux/time.h>
25 #include <linux/init.h>
26 #include <linux/moduleparam.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/info.h>
30 #include <sound/initval.h>
32 static int preallocate_dma
= 1;
33 module_param(preallocate_dma
, int, 0444);
34 MODULE_PARM_DESC(preallocate_dma
, "Preallocate DMA memory when the PCM devices are initialized.");
36 static int maximum_substreams
= 4;
37 module_param(maximum_substreams
, int, 0444);
38 MODULE_PARM_DESC(maximum_substreams
, "Maximum substreams with preallocated DMA memory.");
40 static const size_t snd_minimum_buffer
= 16384;
44 * try to allocate as the large pages as possible.
45 * stores the resultant memory size in *res_size.
47 * the minimum size is snd_minimum_buffer. it should be power of 2.
49 static int preallocate_pcm_pages(struct snd_pcm_substream
*substream
, size_t size
)
51 struct snd_dma_buffer
*dmab
= &substream
->dma_buffer
;
54 snd_assert(size
> 0, return -EINVAL
);
56 /* already reserved? */
57 if (snd_dma_get_reserved_buf(dmab
, substream
->dma_buf_id
) > 0) {
58 if (dmab
->bytes
>= size
)
60 /* no, free the reserved block */
61 snd_dma_free_pages(dmab
);
66 if ((err
= snd_dma_alloc_pages(dmab
->dev
.type
, dmab
->dev
.dev
,
69 return err
; /* fatal error */
73 } while (size
>= snd_minimum_buffer
);
74 dmab
->bytes
= 0; /* tell error */
79 * release the preallocated buffer if not yet done.
81 static void snd_pcm_lib_preallocate_dma_free(struct snd_pcm_substream
*substream
)
83 if (substream
->dma_buffer
.area
== NULL
)
85 if (substream
->dma_buf_id
)
86 snd_dma_reserve_buf(&substream
->dma_buffer
, substream
->dma_buf_id
);
88 snd_dma_free_pages(&substream
->dma_buffer
);
89 substream
->dma_buffer
.area
= NULL
;
93 * snd_pcm_lib_preallocate_free - release the preallocated buffer of the specified substream.
94 * @substream: the pcm substream instance
96 * Releases the pre-allocated buffer of the given substream.
98 * Returns zero if successful, or a negative error code on failure.
100 int snd_pcm_lib_preallocate_free(struct snd_pcm_substream
*substream
)
102 snd_pcm_lib_preallocate_dma_free(substream
);
103 snd_info_unregister(substream
->proc_prealloc_entry
);
104 substream
->proc_prealloc_entry
= NULL
;
109 * snd_pcm_lib_preallocate_free_for_all - release all pre-allocated buffers on the pcm
110 * @pcm: the pcm instance
112 * Releases all the pre-allocated buffers on the given pcm.
114 * Returns zero if successful, or a negative error code on failure.
116 int snd_pcm_lib_preallocate_free_for_all(struct snd_pcm
*pcm
)
118 struct snd_pcm_substream
*substream
;
121 for (stream
= 0; stream
< 2; stream
++)
122 for (substream
= pcm
->streams
[stream
].substream
; substream
; substream
= substream
->next
)
123 snd_pcm_lib_preallocate_free(substream
);
127 #ifdef CONFIG_PROC_FS
129 * read callback for prealloc proc file
131 * prints the current allocated size in kB.
133 static void snd_pcm_lib_preallocate_proc_read(struct snd_info_entry
*entry
,
134 struct snd_info_buffer
*buffer
)
136 struct snd_pcm_substream
*substream
= entry
->private_data
;
137 snd_iprintf(buffer
, "%lu\n", (unsigned long) substream
->dma_buffer
.bytes
/ 1024);
141 * write callback for prealloc proc file
143 * accepts the preallocation size in kB.
145 static void snd_pcm_lib_preallocate_proc_write(struct snd_info_entry
*entry
,
146 struct snd_info_buffer
*buffer
)
148 struct snd_pcm_substream
*substream
= entry
->private_data
;
149 char line
[64], str
[64];
151 struct snd_dma_buffer new_dmab
;
153 if (substream
->runtime
) {
154 buffer
->error
= -EBUSY
;
157 if (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
158 snd_info_get_str(str
, line
, sizeof(str
));
159 size
= simple_strtoul(str
, NULL
, 10) * 1024;
160 if ((size
!= 0 && size
< 8192) || size
> substream
->dma_max
) {
161 buffer
->error
= -EINVAL
;
164 if (substream
->dma_buffer
.bytes
== size
)
166 memset(&new_dmab
, 0, sizeof(new_dmab
));
167 new_dmab
.dev
= substream
->dma_buffer
.dev
;
169 if (snd_dma_alloc_pages(substream
->dma_buffer
.dev
.type
,
170 substream
->dma_buffer
.dev
.dev
,
171 size
, &new_dmab
) < 0) {
172 buffer
->error
= -ENOMEM
;
175 substream
->buffer_bytes_max
= size
;
177 substream
->buffer_bytes_max
= UINT_MAX
;
179 if (substream
->dma_buffer
.area
)
180 snd_dma_free_pages(&substream
->dma_buffer
);
181 substream
->dma_buffer
= new_dmab
;
183 buffer
->error
= -EINVAL
;
187 static inline void preallocate_info_init(struct snd_pcm_substream
*substream
)
189 struct snd_info_entry
*entry
;
191 if ((entry
= snd_info_create_card_entry(substream
->pcm
->card
, "prealloc", substream
->proc_root
)) != NULL
) {
192 entry
->c
.text
.read_size
= 64;
193 entry
->c
.text
.read
= snd_pcm_lib_preallocate_proc_read
;
194 entry
->c
.text
.write_size
= 64;
195 entry
->c
.text
.write
= snd_pcm_lib_preallocate_proc_write
;
196 entry
->mode
|= S_IWUSR
;
197 entry
->private_data
= substream
;
198 if (snd_info_register(entry
) < 0) {
199 snd_info_free_entry(entry
);
203 substream
->proc_prealloc_entry
= entry
;
206 #else /* !CONFIG_PROC_FS */
207 #define preallocate_info_init(s)
211 * pre-allocate the buffer and create a proc file for the substream
213 static int snd_pcm_lib_preallocate_pages1(struct snd_pcm_substream
*substream
,
214 size_t size
, size_t max
)
217 if (size
> 0 && preallocate_dma
&& substream
->number
< maximum_substreams
)
218 preallocate_pcm_pages(substream
, size
);
220 if (substream
->dma_buffer
.bytes
> 0)
221 substream
->buffer_bytes_max
= substream
->dma_buffer
.bytes
;
222 substream
->dma_max
= max
;
223 preallocate_info_init(substream
);
229 * snd_pcm_lib_preallocate_pages - pre-allocation for the given DMA type
230 * @substream: the pcm substream instance
231 * @type: DMA type (SNDRV_DMA_TYPE_*)
232 * @data: DMA type dependant data
233 * @size: the requested pre-allocation size in bytes
234 * @max: the max. allowed pre-allocation size
236 * Do pre-allocation for the given DMA buffer type.
238 * When substream->dma_buf_id is set, the function tries to look for
239 * the reserved buffer, and the buffer is not freed but reserved at
240 * destruction time. The dma_buf_id must be unique for all systems
241 * (in the same DMA buffer type) e.g. using snd_dma_pci_buf_id().
243 * Returns zero if successful, or a negative error code on failure.
245 int snd_pcm_lib_preallocate_pages(struct snd_pcm_substream
*substream
,
246 int type
, struct device
*data
,
247 size_t size
, size_t max
)
249 substream
->dma_buffer
.dev
.type
= type
;
250 substream
->dma_buffer
.dev
.dev
= data
;
251 return snd_pcm_lib_preallocate_pages1(substream
, size
, max
);
255 * snd_pcm_lib_preallocate_pages_for_all - pre-allocation for continous memory type (all substreams)
256 * @pcm: the pcm instance
257 * @type: DMA type (SNDRV_DMA_TYPE_*)
258 * @data: DMA type dependant data
259 * @size: the requested pre-allocation size in bytes
260 * @max: the max. allowed pre-allocation size
262 * Do pre-allocation to all substreams of the given pcm for the
263 * specified DMA type.
265 * Returns zero if successful, or a negative error code on failure.
267 int snd_pcm_lib_preallocate_pages_for_all(struct snd_pcm
*pcm
,
268 int type
, void *data
,
269 size_t size
, size_t max
)
271 struct snd_pcm_substream
*substream
;
274 for (stream
= 0; stream
< 2; stream
++)
275 for (substream
= pcm
->streams
[stream
].substream
; substream
; substream
= substream
->next
)
276 if ((err
= snd_pcm_lib_preallocate_pages(substream
, type
, data
, size
, max
)) < 0)
282 * snd_pcm_sgbuf_ops_page - get the page struct at the given offset
283 * @substream: the pcm substream instance
284 * @offset: the buffer offset
286 * Returns the page struct at the given buffer offset.
287 * Used as the page callback of PCM ops.
289 struct page
*snd_pcm_sgbuf_ops_page(struct snd_pcm_substream
*substream
, unsigned long offset
)
291 struct snd_sg_buf
*sgbuf
= snd_pcm_substream_sgbuf(substream
);
293 unsigned int idx
= offset
>> PAGE_SHIFT
;
294 if (idx
>= (unsigned int)sgbuf
->pages
)
296 return sgbuf
->page_table
[idx
];
300 * snd_pcm_lib_malloc_pages - allocate the DMA buffer
301 * @substream: the substream to allocate the DMA buffer to
302 * @size: the requested buffer size in bytes
304 * Allocates the DMA buffer on the BUS type given earlier to
305 * snd_pcm_lib_preallocate_xxx_pages().
307 * Returns 1 if the buffer is changed, 0 if not changed, or a negative
310 int snd_pcm_lib_malloc_pages(struct snd_pcm_substream
*substream
, size_t size
)
312 struct snd_pcm_runtime
*runtime
;
313 struct snd_dma_buffer
*dmab
= NULL
;
315 snd_assert(substream
->dma_buffer
.dev
.type
!= SNDRV_DMA_TYPE_UNKNOWN
, return -EINVAL
);
316 snd_assert(substream
!= NULL
, return -EINVAL
);
317 runtime
= substream
->runtime
;
318 snd_assert(runtime
!= NULL
, return -EINVAL
);
320 if (runtime
->dma_buffer_p
) {
321 /* perphaps, we might free the large DMA memory region
322 to save some space here, but the actual solution
323 costs us less time */
324 if (runtime
->dma_buffer_p
->bytes
>= size
) {
325 runtime
->dma_bytes
= size
;
326 return 0; /* ok, do not change */
328 snd_pcm_lib_free_pages(substream
);
330 if (substream
->dma_buffer
.area
!= NULL
&&
331 substream
->dma_buffer
.bytes
>= size
) {
332 dmab
= &substream
->dma_buffer
; /* use the pre-allocated buffer */
334 dmab
= kzalloc(sizeof(*dmab
), GFP_KERNEL
);
337 dmab
->dev
= substream
->dma_buffer
.dev
;
338 if (snd_dma_alloc_pages(substream
->dma_buffer
.dev
.type
,
339 substream
->dma_buffer
.dev
.dev
,
345 snd_pcm_set_runtime_buffer(substream
, dmab
);
346 runtime
->dma_bytes
= size
;
347 return 1; /* area was changed */
351 * snd_pcm_lib_free_pages - release the allocated DMA buffer.
352 * @substream: the substream to release the DMA buffer
354 * Releases the DMA buffer allocated via snd_pcm_lib_malloc_pages().
356 * Returns zero if successful, or a negative error code on failure.
358 int snd_pcm_lib_free_pages(struct snd_pcm_substream
*substream
)
360 struct snd_pcm_runtime
*runtime
;
362 snd_assert(substream
!= NULL
, return -EINVAL
);
363 runtime
= substream
->runtime
;
364 snd_assert(runtime
!= NULL
, return -EINVAL
);
365 if (runtime
->dma_area
== NULL
)
367 if (runtime
->dma_buffer_p
!= &substream
->dma_buffer
) {
368 /* it's a newly allocated buffer. release it now. */
369 snd_dma_free_pages(runtime
->dma_buffer_p
);
370 kfree(runtime
->dma_buffer_p
);
372 snd_pcm_set_runtime_buffer(substream
, NULL
);