fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / sound / core / pcm_memory.c
index 8789b6e..be030cb 100644 (file)
 #include <asm/io.h>
 #include <linux/time.h>
 #include <linux/init.h>
+#include <linux/moduleparam.h>
 #include <sound/core.h>
 #include <sound/pcm.h>
 #include <sound/info.h>
 #include <sound/initval.h>
 
 static int preallocate_dma = 1;
-MODULE_PARM(preallocate_dma, "i");
+module_param(preallocate_dma, int, 0444);
 MODULE_PARM_DESC(preallocate_dma, "Preallocate DMA memory when the PCM devices are initialized.");
-MODULE_PARM_SYNTAX(preallocate_dma, SNDRV_BOOLEAN_TRUE_DESC);
 
 static int maximum_substreams = 4;
-MODULE_PARM(maximum_substreams, "i");
+module_param(maximum_substreams, int, 0444);
 MODULE_PARM_DESC(maximum_substreams, "Maximum substreams with preallocated DMA memory.");
-MODULE_PARM_SYNTAX(maximum_substreams, SNDRV_BOOLEAN_TRUE_DESC);
 
-const static size_t snd_minimum_buffer = 16384;
+static const size_t snd_minimum_buffer = 16384;
 
 
 /*
@@ -47,7 +46,7 @@ const static size_t snd_minimum_buffer = 16384;
  *
  * the minimum size is snd_minimum_buffer.  it should be power of 2.
  */
-static int preallocate_pcm_pages(snd_pcm_substream_t *substream, size_t size)
+static int preallocate_pcm_pages(struct snd_pcm_substream *substream, size_t size)
 {
        struct snd_dma_buffer *dmab = &substream->dma_buffer;
        int err;
@@ -55,26 +54,21 @@ static int preallocate_pcm_pages(snd_pcm_substream_t *substream, size_t size)
        snd_assert(size > 0, return -EINVAL);
 
        /* already reserved? */
-       if (snd_dma_get_reserved(&substream->dma_device, dmab) > 0) {
+       if (snd_dma_get_reserved_buf(dmab, substream->dma_buf_id) > 0) {
                if (dmab->bytes >= size)
                        return 0; /* yes */
-               /* no, reset the reserved block */
-               /* if we can find bigger pages below, this block will be
-                * automatically removed in snd_dma_set_reserved().
-                */
-               snd_dma_free_reserved(&substream->dma_device);
+               /* no, free the reserved block */
+               snd_dma_free_pages(dmab);
                dmab->bytes = 0;
        }
 
        do {
-               if ((err = snd_dma_alloc_pages(&substream->dma_device, size, dmab)) < 0) {
+               if ((err = snd_dma_alloc_pages(dmab->dev.type, dmab->dev.dev,
+                                              size, dmab)) < 0) {
                        if (err != -ENOMEM)
                                return err; /* fatal error */
-               } else {
-                       /* remember this one */
-                       snd_dma_set_reserved(&substream->dma_device, dmab);
+               } else
                        return 0;
-               }
                size >>= 1;
        } while (size >= snd_minimum_buffer);
        dmab->bytes = 0; /* tell error */
@@ -84,11 +78,14 @@ static int preallocate_pcm_pages(snd_pcm_substream_t *substream, size_t size)
 /*
  * release the preallocated buffer if not yet done.
  */
-static void snd_pcm_lib_preallocate_dma_free(snd_pcm_substream_t *substream)
+static void snd_pcm_lib_preallocate_dma_free(struct snd_pcm_substream *substream)
 {
        if (substream->dma_buffer.area == NULL)
                return;
-       snd_dma_free_reserved(&substream->dma_device);
+       if (substream->dma_buf_id)
+               snd_dma_reserve_buf(&substream->dma_buffer, substream->dma_buf_id);
+       else
+               snd_dma_free_pages(&substream->dma_buffer);
        substream->dma_buffer.area = NULL;
 }
 
@@ -100,14 +97,13 @@ static void snd_pcm_lib_preallocate_dma_free(snd_pcm_substream_t *substream)
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_lib_preallocate_free(snd_pcm_substream_t *substream)
+int snd_pcm_lib_preallocate_free(struct snd_pcm_substream *substream)
 {
        snd_pcm_lib_preallocate_dma_free(substream);
-       if (substream->proc_prealloc_entry) {
-               snd_info_unregister(substream->proc_prealloc_entry);
-               substream->proc_prealloc_entry = NULL;
-       }
-       substream->dma_device.type = SNDRV_DMA_TYPE_UNKNOWN;
+#ifdef CONFIG_SND_VERBOSE_PROCFS
+       snd_info_free_entry(substream->proc_prealloc_entry);
+       substream->proc_prealloc_entry = NULL;
+#endif
        return 0;
 }
 
@@ -119,9 +115,9 @@ int snd_pcm_lib_preallocate_free(snd_pcm_substream_t *substream)
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_lib_preallocate_free_for_all(snd_pcm_t *pcm)
+int snd_pcm_lib_preallocate_free_for_all(struct snd_pcm *pcm)
 {
-       snd_pcm_substream_t *substream;
+       struct snd_pcm_substream *substream;
        int stream;
 
        for (stream = 0; stream < 2; stream++)
@@ -130,15 +126,18 @@ int snd_pcm_lib_preallocate_free_for_all(snd_pcm_t *pcm)
        return 0;
 }
 
+EXPORT_SYMBOL(snd_pcm_lib_preallocate_free_for_all);
+
+#ifdef CONFIG_SND_VERBOSE_PROCFS
 /*
  * read callback for prealloc proc file
  *
  * prints the current allocated size in kB.
  */
-static void snd_pcm_lib_preallocate_proc_read(snd_info_entry_t *entry,
-                                             snd_info_buffer_t *buffer)
+static void snd_pcm_lib_preallocate_proc_read(struct snd_info_entry *entry,
+                                             struct snd_info_buffer *buffer)
 {
-       snd_pcm_substream_t *substream = (snd_pcm_substream_t *)entry->private_data;
+       struct snd_pcm_substream *substream = entry->private_data;
        snd_iprintf(buffer, "%lu\n", (unsigned long) substream->dma_buffer.bytes / 1024);
 }
 
@@ -147,10 +146,10 @@ static void snd_pcm_lib_preallocate_proc_read(snd_info_entry_t *entry,
  *
  * accepts the preallocation size in kB.
  */
-static void snd_pcm_lib_preallocate_proc_write(snd_info_entry_t *entry,
-                                              snd_info_buffer_t *buffer)
+static void snd_pcm_lib_preallocate_proc_write(struct snd_info_entry *entry,
+                                              struct snd_info_buffer *buffer)
 {
-       snd_pcm_substream_t *substream = (snd_pcm_substream_t *)entry->private_data;
+       struct snd_pcm_substream *substream = entry->private_data;
        char line[64], str[64];
        size_t size;
        struct snd_dma_buffer new_dmab;
@@ -169,44 +168,34 @@ static void snd_pcm_lib_preallocate_proc_write(snd_info_entry_t *entry,
                if (substream->dma_buffer.bytes == size)
                        return;
                memset(&new_dmab, 0, sizeof(new_dmab));
+               new_dmab.dev = substream->dma_buffer.dev;
                if (size > 0) {
-
-                       if (snd_dma_alloc_pages(&substream->dma_device, size, &new_dmab) < 0) {
+                       if (snd_dma_alloc_pages(substream->dma_buffer.dev.type,
+                                               substream->dma_buffer.dev.dev,
+                                               size, &new_dmab) < 0) {
                                buffer->error = -ENOMEM;
                                return;
                        }
                        substream->buffer_bytes_max = size;
-                       snd_dma_free_reserved(&substream->dma_device);
                } else {
                        substream->buffer_bytes_max = UINT_MAX;
                }
-               snd_dma_set_reserved(&substream->dma_device, &new_dmab);
+               if (substream->dma_buffer.area)
+                       snd_dma_free_pages(&substream->dma_buffer);
                substream->dma_buffer = new_dmab;
        } else {
                buffer->error = -EINVAL;
        }
 }
 
-/*
- * pre-allocate the buffer and create a proc file for the substream
- */
-static int snd_pcm_lib_preallocate_pages1(snd_pcm_substream_t *substream,
-                                         size_t size, size_t max)
+static inline void preallocate_info_init(struct snd_pcm_substream *substream)
 {
-       snd_info_entry_t *entry;
-
-       memset(&substream->dma_buffer, 0, sizeof(substream->dma_buffer));
-       if (size > 0 && preallocate_dma && substream->number < maximum_substreams)
-               preallocate_pcm_pages(substream, size);
+       struct snd_info_entry *entry;
 
-       if (substream->dma_buffer.bytes > 0)
-               substream->buffer_bytes_max = substream->dma_buffer.bytes;
-       substream->dma_max = max;
        if ((entry = snd_info_create_card_entry(substream->pcm->card, "prealloc", substream->proc_root)) != NULL) {
-               entry->c.text.read_size = 64;
                entry->c.text.read = snd_pcm_lib_preallocate_proc_read;
-               entry->c.text.write_size = 64;
                entry->c.text.write = snd_pcm_lib_preallocate_proc_write;
+               entry->mode |= S_IWUSR;
                entry->private_data = substream;
                if (snd_info_register(entry) < 0) {
                        snd_info_free_entry(entry);
@@ -214,20 +203,30 @@ static int snd_pcm_lib_preallocate_pages1(snd_pcm_substream_t *substream,
                }
        }
        substream->proc_prealloc_entry = entry;
-       return 0;
 }
 
+#else /* !CONFIG_SND_VERBOSE_PROCFS */
+#define preallocate_info_init(s)
+#endif /* CONFIG_SND_VERBOSE_PROCFS */
 
 /*
- * set up the unique pcm id
+ * pre-allocate the buffer and create a proc file for the substream
  */
-static inline void setup_pcm_id(snd_pcm_substream_t *subs)
+static int snd_pcm_lib_preallocate_pages1(struct snd_pcm_substream *substream,
+                                         size_t size, size_t max)
 {
-       if (! subs->dma_device.id)
-               subs->dma_device.id = subs->pcm->device << 16 |
-                       subs->stream << 8 | (subs->number + 1);
+
+       if (size > 0 && preallocate_dma && substream->number < maximum_substreams)
+               preallocate_pcm_pages(substream, size);
+
+       if (substream->dma_buffer.bytes > 0)
+               substream->buffer_bytes_max = substream->dma_buffer.bytes;
+       substream->dma_max = max;
+       preallocate_info_init(substream);
+       return 0;
 }
 
+
 /**
  * snd_pcm_lib_preallocate_pages - pre-allocation for the given DMA type
  * @substream: the pcm substream instance
@@ -236,23 +235,29 @@ static inline void setup_pcm_id(snd_pcm_substream_t *subs)
  * @size: the requested pre-allocation size in bytes
  * @max: the max. allowed pre-allocation size
  *
- * Do pre-allocation for the given DMA type.
+ * Do pre-allocation for the given DMA buffer type.
+ *
+ * When substream->dma_buf_id is set, the function tries to look for
+ * the reserved buffer, and the buffer is not freed but reserved at
+ * destruction time.  The dma_buf_id must be unique for all systems
+ * (in the same DMA buffer type) e.g. using snd_dma_pci_buf_id().
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_lib_preallocate_pages(snd_pcm_substream_t *substream,
+int snd_pcm_lib_preallocate_pages(struct snd_pcm_substream *substream,
                                  int type, struct device *data,
                                  size_t size, size_t max)
 {
-       substream->dma_device.type = type;
-       substream->dma_device.dev = data;
-       setup_pcm_id(substream);
+       substream->dma_buffer.dev.type = type;
+       substream->dma_buffer.dev.dev = data;
        return snd_pcm_lib_preallocate_pages1(substream, size, max);
 }
 
+EXPORT_SYMBOL(snd_pcm_lib_preallocate_pages);
+
 /**
  * snd_pcm_lib_preallocate_pages_for_all - pre-allocation for continous memory type (all substreams)
- * @substream: the pcm substream instance
+ * @pcm: the pcm instance
  * @type: DMA type (SNDRV_DMA_TYPE_*)
  * @data: DMA type dependant data
  * @size: the requested pre-allocation size in bytes
@@ -263,11 +268,11 @@ int snd_pcm_lib_preallocate_pages(snd_pcm_substream_t *substream,
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_lib_preallocate_pages_for_all(snd_pcm_t *pcm,
+int snd_pcm_lib_preallocate_pages_for_all(struct snd_pcm *pcm,
                                          int type, void *data,
                                          size_t size, size_t max)
 {
-       snd_pcm_substream_t *substream;
+       struct snd_pcm_substream *substream;
        int stream, err;
 
        for (stream = 0; stream < 2; stream++)
@@ -277,6 +282,8 @@ int snd_pcm_lib_preallocate_pages_for_all(snd_pcm_t *pcm,
        return 0;
 }
 
+EXPORT_SYMBOL(snd_pcm_lib_preallocate_pages_for_all);
+
 /**
  * snd_pcm_sgbuf_ops_page - get the page struct at the given offset
  * @substream: the pcm substream instance
@@ -285,7 +292,7 @@ int snd_pcm_lib_preallocate_pages_for_all(snd_pcm_t *pcm,
  * Returns the page struct at the given buffer offset.
  * Used as the page callback of PCM ops.
  */
-struct page *snd_pcm_sgbuf_ops_page(snd_pcm_substream_t *substream, unsigned long offset)
+struct page *snd_pcm_sgbuf_ops_page(struct snd_pcm_substream *substream, unsigned long offset)
 {
        struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
 
@@ -295,49 +302,61 @@ struct page *snd_pcm_sgbuf_ops_page(snd_pcm_substream_t *substream, unsigned lon
        return sgbuf->page_table[idx];
 }
 
+EXPORT_SYMBOL(snd_pcm_sgbuf_ops_page);
+
 /**
  * snd_pcm_lib_malloc_pages - allocate the DMA buffer
  * @substream: the substream to allocate the DMA buffer to
  * @size: the requested buffer size in bytes
  *
- * Allocates the DMA buffer on the BUS type given by
+ * Allocates the DMA buffer on the BUS type given earlier to
  * snd_pcm_lib_preallocate_xxx_pages().
  *
  * Returns 1 if the buffer is changed, 0 if not changed, or a negative
  * code on failure.
  */
-int snd_pcm_lib_malloc_pages(snd_pcm_substream_t *substream, size_t size)
+int snd_pcm_lib_malloc_pages(struct snd_pcm_substream *substream, size_t size)
 {
-       snd_pcm_runtime_t *runtime;
-       struct snd_dma_buffer dmab;
+       struct snd_pcm_runtime *runtime;
+       struct snd_dma_buffer *dmab = NULL;
 
-       snd_assert(substream->dma_device.type != SNDRV_DMA_TYPE_UNKNOWN, return -EINVAL);
+       snd_assert(substream->dma_buffer.dev.type != SNDRV_DMA_TYPE_UNKNOWN, return -EINVAL);
        snd_assert(substream != NULL, return -EINVAL);
        runtime = substream->runtime;
-       snd_assert(runtime != NULL, return -EINVAL);    
+       snd_assert(runtime != NULL, return -EINVAL);
 
-       if (runtime->dma_area != NULL) {
+       if (runtime->dma_buffer_p) {
                /* perphaps, we might free the large DMA memory region
                   to save some space here, but the actual solution
                   costs us less time */
-               if (runtime->dma_bytes >= size)
+               if (runtime->dma_buffer_p->bytes >= size) {
+                       runtime->dma_bytes = size;
                        return 0;       /* ok, do not change */
+               }
                snd_pcm_lib_free_pages(substream);
        }
-       if (substream->dma_buffer.area != NULL && substream->dma_buffer.bytes >= size) {
-               dmab = substream->dma_buffer; /* use the pre-allocated buffer */
+       if (substream->dma_buffer.area != NULL &&
+           substream->dma_buffer.bytes >= size) {
+               dmab = &substream->dma_buffer; /* use the pre-allocated buffer */
        } else {
-               memset(&dmab, 0, sizeof(dmab)); /* allocate a new buffer */
-               if (snd_dma_alloc_pages(&substream->dma_device, size, &dmab) < 0)
+               dmab = kzalloc(sizeof(*dmab), GFP_KERNEL);
+               if (! dmab)
+                       return -ENOMEM;
+               dmab->dev = substream->dma_buffer.dev;
+               if (snd_dma_alloc_pages(substream->dma_buffer.dev.type,
+                                       substream->dma_buffer.dev.dev,
+                                       size, dmab) < 0) {
+                       kfree(dmab);
                        return -ENOMEM;
+               }
        }
-       runtime->dma_area = dmab.area;
-       runtime->dma_addr = dmab.addr;
-       runtime->dma_private = dmab.private_data;
+       snd_pcm_set_runtime_buffer(substream, dmab);
        runtime->dma_bytes = size;
        return 1;                       /* area was changed */
 }
 
+EXPORT_SYMBOL(snd_pcm_lib_malloc_pages);
+
 /**
  * snd_pcm_lib_free_pages - release the allocated DMA buffer.
  * @substream: the substream to release the DMA buffer
@@ -346,43 +365,22 @@ int snd_pcm_lib_malloc_pages(snd_pcm_substream_t *substream, size_t size)
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_lib_free_pages(snd_pcm_substream_t *substream)
+int snd_pcm_lib_free_pages(struct snd_pcm_substream *substream)
 {
-       snd_pcm_runtime_t *runtime;
+       struct snd_pcm_runtime *runtime;
 
        snd_assert(substream != NULL, return -EINVAL);
        runtime = substream->runtime;
        snd_assert(runtime != NULL, return -EINVAL);
        if (runtime->dma_area == NULL)
                return 0;
-       if (runtime->dma_area != substream->dma_buffer.area) {
+       if (runtime->dma_buffer_p != &substream->dma_buffer) {
                /* it's a newly allocated buffer.  release it now. */
-               struct snd_dma_buffer dmab;
-               memset(&dmab, 0, sizeof(dmab));
-               dmab.area = runtime->dma_area;
-               dmab.addr = runtime->dma_addr;
-               dmab.bytes = runtime->dma_bytes;
-               dmab.private_data = runtime->dma_private;
-               snd_dma_free_pages(&substream->dma_device, &dmab);
+               snd_dma_free_pages(runtime->dma_buffer_p);
+               kfree(runtime->dma_buffer_p);
        }
-       runtime->dma_area = NULL;
-       runtime->dma_addr = 0UL;
-       runtime->dma_bytes = 0;
-       runtime->dma_private = NULL;
+       snd_pcm_set_runtime_buffer(substream, NULL);
        return 0;
 }
 
-#ifndef MODULE
-
-/* format is: snd-pcm=preallocate_dma,maximum_substreams */
-
-static int __init alsa_pcm_setup(char *str)
-{
-       (void)(get_option(&str,&preallocate_dma) == 2 &&
-              get_option(&str,&maximum_substreams) == 2);
-       return 1;
-}
-
-__setup("snd-pcm=", alsa_pcm_setup);
-
-#endif /* ifndef MODULE */
+EXPORT_SYMBOL(snd_pcm_lib_free_pages);