at v2.6.12 363 lines 11 kB view raw
1/* 2 * Digital Audio (PCM) abstract layer 3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz> 4 * 5 * 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. 10 * 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. 15 * 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 19 * 20 */ 21 22#include <sound/driver.h> 23#include <asm/io.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> 31 32static int preallocate_dma = 1; 33module_param(preallocate_dma, int, 0444); 34MODULE_PARM_DESC(preallocate_dma, "Preallocate DMA memory when the PCM devices are initialized."); 35 36static int maximum_substreams = 4; 37module_param(maximum_substreams, int, 0444); 38MODULE_PARM_DESC(maximum_substreams, "Maximum substreams with preallocated DMA memory."); 39 40static const size_t snd_minimum_buffer = 16384; 41 42 43/* 44 * try to allocate as the large pages as possible. 45 * stores the resultant memory size in *res_size. 46 * 47 * the minimum size is snd_minimum_buffer. it should be power of 2. 48 */ 49static int preallocate_pcm_pages(snd_pcm_substream_t *substream, size_t size) 50{ 51 struct snd_dma_buffer *dmab = &substream->dma_buffer; 52 int err; 53 54 snd_assert(size > 0, return -EINVAL); 55 56 /* already reserved? */ 57 if (snd_dma_get_reserved_buf(dmab, substream->dma_buf_id) > 0) { 58 if (dmab->bytes >= size) 59 return 0; /* yes */ 60 /* no, free the reserved block */ 61 snd_dma_free_pages(dmab); 62 dmab->bytes = 0; 63 } 64 65 do { 66 if ((err = snd_dma_alloc_pages(dmab->dev.type, dmab->dev.dev, 67 size, dmab)) < 0) { 68 if (err != -ENOMEM) 69 return err; /* fatal error */ 70 } else 71 return 0; 72 size >>= 1; 73 } while (size >= snd_minimum_buffer); 74 dmab->bytes = 0; /* tell error */ 75 return 0; 76} 77 78/* 79 * release the preallocated buffer if not yet done. 80 */ 81static void snd_pcm_lib_preallocate_dma_free(snd_pcm_substream_t *substream) 82{ 83 if (substream->dma_buffer.area == NULL) 84 return; 85 if (substream->dma_buf_id) 86 snd_dma_reserve_buf(&substream->dma_buffer, substream->dma_buf_id); 87 else 88 snd_dma_free_pages(&substream->dma_buffer); 89 substream->dma_buffer.area = NULL; 90} 91 92/** 93 * snd_pcm_lib_preallocate_free - release the preallocated buffer of the specified substream. 94 * @substream: the pcm substream instance 95 * 96 * Releases the pre-allocated buffer of the given substream. 97 * 98 * Returns zero if successful, or a negative error code on failure. 99 */ 100int snd_pcm_lib_preallocate_free(snd_pcm_substream_t *substream) 101{ 102 snd_pcm_lib_preallocate_dma_free(substream); 103 if (substream->proc_prealloc_entry) { 104 snd_info_unregister(substream->proc_prealloc_entry); 105 substream->proc_prealloc_entry = NULL; 106 } 107 return 0; 108} 109 110/** 111 * snd_pcm_lib_preallocate_free_for_all - release all pre-allocated buffers on the pcm 112 * @pcm: the pcm instance 113 * 114 * Releases all the pre-allocated buffers on the given pcm. 115 * 116 * Returns zero if successful, or a negative error code on failure. 117 */ 118int snd_pcm_lib_preallocate_free_for_all(snd_pcm_t *pcm) 119{ 120 snd_pcm_substream_t *substream; 121 int stream; 122 123 for (stream = 0; stream < 2; stream++) 124 for (substream = pcm->streams[stream].substream; substream; substream = substream->next) 125 snd_pcm_lib_preallocate_free(substream); 126 return 0; 127} 128 129/* 130 * read callback for prealloc proc file 131 * 132 * prints the current allocated size in kB. 133 */ 134static void snd_pcm_lib_preallocate_proc_read(snd_info_entry_t *entry, 135 snd_info_buffer_t *buffer) 136{ 137 snd_pcm_substream_t *substream = (snd_pcm_substream_t *)entry->private_data; 138 snd_iprintf(buffer, "%lu\n", (unsigned long) substream->dma_buffer.bytes / 1024); 139} 140 141/* 142 * write callback for prealloc proc file 143 * 144 * accepts the preallocation size in kB. 145 */ 146static void snd_pcm_lib_preallocate_proc_write(snd_info_entry_t *entry, 147 snd_info_buffer_t *buffer) 148{ 149 snd_pcm_substream_t *substream = (snd_pcm_substream_t *)entry->private_data; 150 char line[64], str[64]; 151 size_t size; 152 struct snd_dma_buffer new_dmab; 153 154 if (substream->runtime) { 155 buffer->error = -EBUSY; 156 return; 157 } 158 if (!snd_info_get_line(buffer, line, sizeof(line))) { 159 snd_info_get_str(str, line, sizeof(str)); 160 size = simple_strtoul(str, NULL, 10) * 1024; 161 if ((size != 0 && size < 8192) || size > substream->dma_max) { 162 buffer->error = -EINVAL; 163 return; 164 } 165 if (substream->dma_buffer.bytes == size) 166 return; 167 memset(&new_dmab, 0, sizeof(new_dmab)); 168 new_dmab.dev = substream->dma_buffer.dev; 169 if (size > 0) { 170 if (snd_dma_alloc_pages(substream->dma_buffer.dev.type, 171 substream->dma_buffer.dev.dev, 172 size, &new_dmab) < 0) { 173 buffer->error = -ENOMEM; 174 return; 175 } 176 substream->buffer_bytes_max = size; 177 } else { 178 substream->buffer_bytes_max = UINT_MAX; 179 } 180 if (substream->dma_buffer.area) 181 snd_dma_free_pages(&substream->dma_buffer); 182 substream->dma_buffer = new_dmab; 183 } else { 184 buffer->error = -EINVAL; 185 } 186} 187 188/* 189 * pre-allocate the buffer and create a proc file for the substream 190 */ 191static int snd_pcm_lib_preallocate_pages1(snd_pcm_substream_t *substream, 192 size_t size, size_t max) 193{ 194 snd_info_entry_t *entry; 195 196 if (size > 0 && preallocate_dma && substream->number < maximum_substreams) 197 preallocate_pcm_pages(substream, size); 198 199 if (substream->dma_buffer.bytes > 0) 200 substream->buffer_bytes_max = substream->dma_buffer.bytes; 201 substream->dma_max = max; 202 if ((entry = snd_info_create_card_entry(substream->pcm->card, "prealloc", substream->proc_root)) != NULL) { 203 entry->c.text.read_size = 64; 204 entry->c.text.read = snd_pcm_lib_preallocate_proc_read; 205 entry->c.text.write_size = 64; 206 entry->c.text.write = snd_pcm_lib_preallocate_proc_write; 207 entry->private_data = substream; 208 if (snd_info_register(entry) < 0) { 209 snd_info_free_entry(entry); 210 entry = NULL; 211 } 212 } 213 substream->proc_prealloc_entry = entry; 214 return 0; 215} 216 217 218/** 219 * snd_pcm_lib_preallocate_pages - pre-allocation for the given DMA type 220 * @substream: the pcm substream instance 221 * @type: DMA type (SNDRV_DMA_TYPE_*) 222 * @data: DMA type dependant data 223 * @size: the requested pre-allocation size in bytes 224 * @max: the max. allowed pre-allocation size 225 * 226 * Do pre-allocation for the given DMA buffer type. 227 * 228 * When substream->dma_buf_id is set, the function tries to look for 229 * the reserved buffer, and the buffer is not freed but reserved at 230 * destruction time. The dma_buf_id must be unique for all systems 231 * (in the same DMA buffer type) e.g. using snd_dma_pci_buf_id(). 232 * 233 * Returns zero if successful, or a negative error code on failure. 234 */ 235int snd_pcm_lib_preallocate_pages(snd_pcm_substream_t *substream, 236 int type, struct device *data, 237 size_t size, size_t max) 238{ 239 substream->dma_buffer.dev.type = type; 240 substream->dma_buffer.dev.dev = data; 241 return snd_pcm_lib_preallocate_pages1(substream, size, max); 242} 243 244/** 245 * snd_pcm_lib_preallocate_pages_for_all - pre-allocation for continous memory type (all substreams) 246 * @substream: the pcm substream instance 247 * @type: DMA type (SNDRV_DMA_TYPE_*) 248 * @data: DMA type dependant data 249 * @size: the requested pre-allocation size in bytes 250 * @max: the max. allowed pre-allocation size 251 * 252 * Do pre-allocation to all substreams of the given pcm for the 253 * specified DMA type. 254 * 255 * Returns zero if successful, or a negative error code on failure. 256 */ 257int snd_pcm_lib_preallocate_pages_for_all(snd_pcm_t *pcm, 258 int type, void *data, 259 size_t size, size_t max) 260{ 261 snd_pcm_substream_t *substream; 262 int stream, err; 263 264 for (stream = 0; stream < 2; stream++) 265 for (substream = pcm->streams[stream].substream; substream; substream = substream->next) 266 if ((err = snd_pcm_lib_preallocate_pages(substream, type, data, size, max)) < 0) 267 return err; 268 return 0; 269} 270 271/** 272 * snd_pcm_sgbuf_ops_page - get the page struct at the given offset 273 * @substream: the pcm substream instance 274 * @offset: the buffer offset 275 * 276 * Returns the page struct at the given buffer offset. 277 * Used as the page callback of PCM ops. 278 */ 279struct page *snd_pcm_sgbuf_ops_page(snd_pcm_substream_t *substream, unsigned long offset) 280{ 281 struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream); 282 283 unsigned int idx = offset >> PAGE_SHIFT; 284 if (idx >= (unsigned int)sgbuf->pages) 285 return NULL; 286 return sgbuf->page_table[idx]; 287} 288 289/** 290 * snd_pcm_lib_malloc_pages - allocate the DMA buffer 291 * @substream: the substream to allocate the DMA buffer to 292 * @size: the requested buffer size in bytes 293 * 294 * Allocates the DMA buffer on the BUS type given earlier to 295 * snd_pcm_lib_preallocate_xxx_pages(). 296 * 297 * Returns 1 if the buffer is changed, 0 if not changed, or a negative 298 * code on failure. 299 */ 300int snd_pcm_lib_malloc_pages(snd_pcm_substream_t *substream, size_t size) 301{ 302 snd_pcm_runtime_t *runtime; 303 struct snd_dma_buffer *dmab = NULL; 304 305 snd_assert(substream->dma_buffer.dev.type != SNDRV_DMA_TYPE_UNKNOWN, return -EINVAL); 306 snd_assert(substream != NULL, return -EINVAL); 307 runtime = substream->runtime; 308 snd_assert(runtime != NULL, return -EINVAL); 309 310 if (runtime->dma_buffer_p) { 311 /* perphaps, we might free the large DMA memory region 312 to save some space here, but the actual solution 313 costs us less time */ 314 if (runtime->dma_buffer_p->bytes >= size) { 315 runtime->dma_bytes = size; 316 return 0; /* ok, do not change */ 317 } 318 snd_pcm_lib_free_pages(substream); 319 } 320 if (substream->dma_buffer.area != NULL && substream->dma_buffer.bytes >= size) { 321 dmab = &substream->dma_buffer; /* use the pre-allocated buffer */ 322 } else { 323 dmab = kcalloc(1, sizeof(*dmab), GFP_KERNEL); 324 if (! dmab) 325 return -ENOMEM; 326 dmab->dev = substream->dma_buffer.dev; 327 if (snd_dma_alloc_pages(substream->dma_buffer.dev.type, 328 substream->dma_buffer.dev.dev, 329 size, dmab) < 0) { 330 kfree(dmab); 331 return -ENOMEM; 332 } 333 } 334 snd_pcm_set_runtime_buffer(substream, dmab); 335 runtime->dma_bytes = size; 336 return 1; /* area was changed */ 337} 338 339/** 340 * snd_pcm_lib_free_pages - release the allocated DMA buffer. 341 * @substream: the substream to release the DMA buffer 342 * 343 * Releases the DMA buffer allocated via snd_pcm_lib_malloc_pages(). 344 * 345 * Returns zero if successful, or a negative error code on failure. 346 */ 347int snd_pcm_lib_free_pages(snd_pcm_substream_t *substream) 348{ 349 snd_pcm_runtime_t *runtime; 350 351 snd_assert(substream != NULL, return -EINVAL); 352 runtime = substream->runtime; 353 snd_assert(runtime != NULL, return -EINVAL); 354 if (runtime->dma_area == NULL) 355 return 0; 356 if (runtime->dma_buffer_p != &substream->dma_buffer) { 357 /* it's a newly allocated buffer. release it now. */ 358 snd_dma_free_pages(runtime->dma_buffer_p); 359 kfree(runtime->dma_buffer_p); 360 } 361 snd_pcm_set_runtime_buffer(substream, NULL); 362 return 0; 363}