blob: 16bd9c03679b16dd18d119495a7ab0e530fcbd0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02002 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Takashi Iwai <tiwai@suse.de>
4 *
5 * Generic memory allocators
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/proc_fs.h>
26#include <linux/init.h>
27#include <linux/pci.h>
28#include <linux/slab.h>
29#include <linux/mm.h>
Takashi Iwaiccec6e22007-09-17 21:55:10 +020030#include <linux/seq_file.h>
Takashi Iwaib6a96912005-05-30 18:27:03 +020031#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/dma-mapping.h>
33#include <linux/moduleparam.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010034#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/memalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020038MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>, Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_DESCRIPTION("Memory allocator for ALSA system.");
40MODULE_LICENSE("GPL");
41
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 */
45
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010046static DEFINE_MUTEX(list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static LIST_HEAD(mem_list_head);
48
49/* buffer preservation list */
50struct snd_mem_list {
51 struct snd_dma_buffer buffer;
52 unsigned int id;
53 struct list_head list;
54};
55
56/* id for pre-allocated buffers */
57#define SNDRV_DMA_DEVICE_UNUSED (unsigned int)-1
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * Generic memory allocators
62 *
63 */
64
65static long snd_allocated_pages; /* holding the number of allocated pages */
66
67static inline void inc_snd_pages(int order)
68{
69 snd_allocated_pages += 1 << order;
70}
71
72static inline void dec_snd_pages(int order)
73{
74 snd_allocated_pages -= 1 << order;
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/**
78 * snd_malloc_pages - allocate pages with the given size
79 * @size: the size to allocate in bytes
80 * @gfp_flags: the allocation conditions, GFP_XXX
81 *
82 * Allocates the physically contiguous pages with the given size.
83 *
84 * Returns the pointer of the buffer, or NULL if no enoguh memory.
85 */
Al Viro1ef64e62005-10-21 03:22:18 -040086void *snd_malloc_pages(size_t size, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 int pg;
89 void *res;
90
Takashi Iwai7eaa9432008-08-08 17:09:09 +020091 if (WARN_ON(!size))
92 return NULL;
93 if (WARN_ON(!gfp_flags))
94 return NULL;
Hugh Dickinsf3d48f02005-11-21 21:32:22 -080095 gfp_flags |= __GFP_COMP; /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 pg = get_order(size);
Takashi Iwai2ba8c152006-01-31 14:44:28 +010097 if ((res = (void *) __get_free_pages(gfp_flags, pg)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 inc_snd_pages(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return res;
100}
101
102/**
103 * snd_free_pages - release the pages
104 * @ptr: the buffer pointer to release
105 * @size: the allocated buffer size
106 *
107 * Releases the buffer allocated via snd_malloc_pages().
108 */
109void snd_free_pages(void *ptr, size_t size)
110{
111 int pg;
112
113 if (ptr == NULL)
114 return;
115 pg = get_order(size);
116 dec_snd_pages(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 free_pages((unsigned long) ptr, pg);
118}
119
120/*
121 *
122 * Bus-specific memory allocators
123 *
124 */
125
Takashi Iwai8f115512007-07-26 18:59:36 +0200126#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* allocate the coherent DMA pages */
128static void *snd_malloc_dev_pages(struct device *dev, size_t size, dma_addr_t *dma)
129{
130 int pg;
131 void *res;
Al Viro1ef64e62005-10-21 03:22:18 -0400132 gfp_t gfp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200134 if (WARN_ON(!dma))
135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 pg = get_order(size);
137 gfp_flags = GFP_KERNEL
Hugh Dickinsf3d48f02005-11-21 21:32:22 -0800138 | __GFP_COMP /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 | __GFP_NORETRY /* don't trigger OOM-killer */
140 | __GFP_NOWARN; /* no stack trace print - this call is non-critical */
141 res = dma_alloc_coherent(dev, PAGE_SIZE << pg, dma, gfp_flags);
Takashi Iwai2ba8c152006-01-31 14:44:28 +0100142 if (res != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 inc_snd_pages(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 return res;
146}
147
148/* free the coherent DMA pages */
149static void snd_free_dev_pages(struct device *dev, size_t size, void *ptr,
150 dma_addr_t dma)
151{
152 int pg;
153
154 if (ptr == NULL)
155 return;
156 pg = get_order(size);
157 dec_snd_pages(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 dma_free_coherent(dev, PAGE_SIZE << pg, ptr, dma);
159}
Takashi Iwai8f115512007-07-26 18:59:36 +0200160#endif /* CONFIG_HAS_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/*
163 *
164 * ALSA generic memory management
165 *
166 */
167
168
169/**
170 * snd_dma_alloc_pages - allocate the buffer area according to the given type
171 * @type: the DMA buffer type
172 * @device: the device pointer
173 * @size: the buffer size to allocate
174 * @dmab: buffer allocation record to store the allocated data
175 *
176 * Calls the memory-allocator function for the corresponding
177 * buffer type.
178 *
179 * Returns zero if the buffer with the given size is allocated successfuly,
180 * other a negative value at error.
181 */
182int snd_dma_alloc_pages(int type, struct device *device, size_t size,
183 struct snd_dma_buffer *dmab)
184{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200185 if (WARN_ON(!size))
186 return -ENXIO;
187 if (WARN_ON(!dmab))
188 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 dmab->dev.type = type;
191 dmab->dev.dev = device;
192 dmab->bytes = 0;
193 switch (type) {
194 case SNDRV_DMA_TYPE_CONTINUOUS:
Clemens Ladischfea952e2011-02-14 11:00:47 +0100195 dmab->area = snd_malloc_pages(size,
196 (__force gfp_t)(unsigned long)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 dmab->addr = 0;
198 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200199#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case SNDRV_DMA_TYPE_DEV:
201 dmab->area = snd_malloc_dev_pages(device, size, &dmab->addr);
202 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200203#endif
204#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 case SNDRV_DMA_TYPE_DEV_SG:
206 snd_malloc_sgbuf_pages(device, size, dmab, NULL);
207 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 default:
210 printk(KERN_ERR "snd-malloc: invalid device type %d\n", type);
211 dmab->area = NULL;
212 dmab->addr = 0;
213 return -ENXIO;
214 }
215 if (! dmab->area)
216 return -ENOMEM;
217 dmab->bytes = size;
218 return 0;
219}
220
221/**
222 * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback
223 * @type: the DMA buffer type
224 * @device: the device pointer
225 * @size: the buffer size to allocate
226 * @dmab: buffer allocation record to store the allocated data
227 *
228 * Calls the memory-allocator function for the corresponding
229 * buffer type. When no space is left, this function reduces the size and
230 * tries to allocate again. The size actually allocated is stored in
231 * res_size argument.
232 *
233 * Returns zero if the buffer with the given size is allocated successfuly,
234 * other a negative value at error.
235 */
236int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size,
237 struct snd_dma_buffer *dmab)
238{
239 int err;
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) {
Takashi Iwai4e184f82008-07-30 15:13:33 +0200242 size_t aligned_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (err != -ENOMEM)
244 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (size <= PAGE_SIZE)
246 return -ENOMEM;
Takashi Iwai4e184f82008-07-30 15:13:33 +0200247 aligned_size = PAGE_SIZE << get_order(size);
248 if (size != aligned_size)
249 size = aligned_size;
250 else
251 size >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 if (! dmab->area)
254 return -ENOMEM;
255 return 0;
256}
257
258
259/**
260 * snd_dma_free_pages - release the allocated buffer
261 * @dmab: the buffer allocation record to release
262 *
263 * Releases the allocated buffer via snd_dma_alloc_pages().
264 */
265void snd_dma_free_pages(struct snd_dma_buffer *dmab)
266{
267 switch (dmab->dev.type) {
268 case SNDRV_DMA_TYPE_CONTINUOUS:
269 snd_free_pages(dmab->area, dmab->bytes);
270 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200271#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 case SNDRV_DMA_TYPE_DEV:
273 snd_free_dev_pages(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
274 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200275#endif
276#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 case SNDRV_DMA_TYPE_DEV_SG:
278 snd_free_sgbuf_pages(dmab);
279 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200280#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 default:
282 printk(KERN_ERR "snd-malloc: invalid device type %d\n", dmab->dev.type);
283 }
284}
285
286
287/**
288 * snd_dma_get_reserved - get the reserved buffer for the given device
289 * @dmab: the buffer allocation record to store
290 * @id: the buffer id
291 *
292 * Looks for the reserved-buffer list and re-uses if the same buffer
293 * is found in the list. When the buffer is found, it's removed from the free list.
294 *
295 * Returns the size of buffer if the buffer is found, or zero if not found.
296 */
297size_t snd_dma_get_reserved_buf(struct snd_dma_buffer *dmab, unsigned int id)
298{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct snd_mem_list *mem;
300
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200301 if (WARN_ON(!dmab))
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100304 mutex_lock(&list_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200305 list_for_each_entry(mem, &mem_list_head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (mem->id == id &&
Takashi Iwaib6a96912005-05-30 18:27:03 +0200307 (mem->buffer.dev.dev == NULL || dmab->dev.dev == NULL ||
308 ! memcmp(&mem->buffer.dev, &dmab->dev, sizeof(dmab->dev)))) {
309 struct device *dev = dmab->dev.dev;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200310 list_del(&mem->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *dmab = mem->buffer;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200312 if (dmab->dev.dev == NULL)
313 dmab->dev.dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 kfree(mem);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100315 mutex_unlock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return dmab->bytes;
317 }
318 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100319 mutex_unlock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return 0;
321}
322
323/**
324 * snd_dma_reserve_buf - reserve the buffer
325 * @dmab: the buffer to reserve
326 * @id: the buffer id
327 *
328 * Reserves the given buffer as a reserved buffer.
329 *
330 * Returns zero if successful, or a negative code at error.
331 */
332int snd_dma_reserve_buf(struct snd_dma_buffer *dmab, unsigned int id)
333{
334 struct snd_mem_list *mem;
335
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200336 if (WARN_ON(!dmab))
337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
339 if (! mem)
340 return -ENOMEM;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100341 mutex_lock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 mem->buffer = *dmab;
343 mem->id = id;
344 list_add_tail(&mem->list, &mem_list_head);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100345 mutex_unlock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347}
348
349/*
350 * purge all reserved buffers
351 */
352static void free_all_reserved_pages(void)
353{
354 struct list_head *p;
355 struct snd_mem_list *mem;
356
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100357 mutex_lock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 while (! list_empty(&mem_list_head)) {
359 p = mem_list_head.next;
360 mem = list_entry(p, struct snd_mem_list, list);
361 list_del(p);
362 snd_dma_free_pages(&mem->buffer);
363 kfree(mem);
364 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100365 mutex_unlock(&list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#ifdef CONFIG_PROC_FS
370/*
371 * proc file interface
372 */
Takashi Iwaib6a96912005-05-30 18:27:03 +0200373#define SND_MEM_PROC_FILE "driver/snd-page-alloc"
Clemens Ladischa53fc182005-08-11 15:59:17 +0200374static struct proc_dir_entry *snd_mem_proc;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200375
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200376static int snd_mem_proc_read(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 long pages = snd_allocated_pages >> (PAGE_SHIFT-12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct snd_mem_list *mem;
380 int devno;
David S. Miller759ee812008-08-27 00:33:26 -0700381 static char *types[] = { "UNKNOWN", "CONT", "DEV", "DEV-SG" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100383 mutex_lock(&list_mutex);
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200384 seq_printf(seq, "pages : %li bytes (%li pages per %likB)\n",
385 pages * PAGE_SIZE, pages, PAGE_SIZE / 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 devno = 0;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200387 list_for_each_entry(mem, &mem_list_head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 devno++;
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200389 seq_printf(seq, "buffer %d : ID %08x : type %s\n",
390 devno, mem->id, types[mem->buffer.dev.type]);
391 seq_printf(seq, " addr = 0x%lx, size = %d bytes\n",
392 (unsigned long)mem->buffer.addr,
393 (int)mem->buffer.bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100395 mutex_unlock(&list_mutex);
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200396 return 0;
397}
398
399static int snd_mem_proc_open(struct inode *inode, struct file *file)
400{
401 return single_open(file, snd_mem_proc_read, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
Takashi Iwaib6a96912005-05-30 18:27:03 +0200403
404/* FIXME: for pci only - other bus? */
405#ifdef CONFIG_PCI
406#define gettoken(bufp) strsep(bufp, " \t\n")
407
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200408static ssize_t snd_mem_proc_write(struct file *file, const char __user * buffer,
409 size_t count, loff_t * ppos)
Takashi Iwaib6a96912005-05-30 18:27:03 +0200410{
411 char buf[128];
412 char *token, *p;
413
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200414 if (count > sizeof(buf) - 1)
415 return -EINVAL;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200416 if (copy_from_user(buf, buffer, count))
417 return -EFAULT;
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200418 buf[count] = '\0';
Takashi Iwaib6a96912005-05-30 18:27:03 +0200419
420 p = buf;
421 token = gettoken(&p);
422 if (! token || *token == '#')
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200423 return count;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200424 if (strcmp(token, "add") == 0) {
425 char *endp;
426 int vendor, device, size, buffers;
427 long mask;
428 int i, alloced;
429 struct pci_dev *pci;
430
431 if ((token = gettoken(&p)) == NULL ||
432 (vendor = simple_strtol(token, NULL, 0)) <= 0 ||
433 (token = gettoken(&p)) == NULL ||
434 (device = simple_strtol(token, NULL, 0)) <= 0 ||
435 (token = gettoken(&p)) == NULL ||
436 (mask = simple_strtol(token, NULL, 0)) < 0 ||
437 (token = gettoken(&p)) == NULL ||
438 (size = memparse(token, &endp)) < 64*1024 ||
439 size > 16*1024*1024 /* too big */ ||
440 (token = gettoken(&p)) == NULL ||
441 (buffers = simple_strtol(token, NULL, 0)) <= 0 ||
442 buffers > 4) {
443 printk(KERN_ERR "snd-page-alloc: invalid proc write format\n");
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200444 return count;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200445 }
446 vendor &= 0xffff;
447 device &= 0xffff;
448
449 alloced = 0;
450 pci = NULL;
Jiri Slaby0dd119f2005-09-07 14:28:33 +0200451 while ((pci = pci_get_device(vendor, device, pci)) != NULL) {
Takashi Iwaib6a96912005-05-30 18:27:03 +0200452 if (mask > 0 && mask < 0xffffffff) {
453 if (pci_set_dma_mask(pci, mask) < 0 ||
454 pci_set_consistent_dma_mask(pci, mask) < 0) {
455 printk(KERN_ERR "snd-page-alloc: cannot set DMA mask %lx for pci %04x:%04x\n", mask, vendor, device);
Julia Lawalldf1deb62007-11-28 11:58:56 +0100456 pci_dev_put(pci);
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200457 return count;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200458 }
459 }
460 for (i = 0; i < buffers; i++) {
461 struct snd_dma_buffer dmab;
462 memset(&dmab, 0, sizeof(dmab));
463 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
464 size, &dmab) < 0) {
465 printk(KERN_ERR "snd-page-alloc: cannot allocate buffer pages (size = %d)\n", size);
Jiri Slaby0dd119f2005-09-07 14:28:33 +0200466 pci_dev_put(pci);
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200467 return count;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200468 }
469 snd_dma_reserve_buf(&dmab, snd_dma_pci_buf_id(pci));
470 }
471 alloced++;
472 }
473 if (! alloced) {
474 for (i = 0; i < buffers; i++) {
475 struct snd_dma_buffer dmab;
476 memset(&dmab, 0, sizeof(dmab));
477 /* FIXME: We can allocate only in ZONE_DMA
478 * without a device pointer!
479 */
480 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, NULL,
481 size, &dmab) < 0) {
482 printk(KERN_ERR "snd-page-alloc: cannot allocate buffer pages (size = %d)\n", size);
483 break;
484 }
485 snd_dma_reserve_buf(&dmab, (unsigned int)((vendor << 16) | device));
486 }
487 }
488 } else if (strcmp(token, "erase") == 0)
489 /* FIXME: need for releasing each buffer chunk? */
490 free_all_reserved_pages();
491 else
492 printk(KERN_ERR "snd-page-alloc: invalid proc cmd\n");
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200493 return count;
Takashi Iwaib6a96912005-05-30 18:27:03 +0200494}
495#endif /* CONFIG_PCI */
Takashi Iwaiccec6e22007-09-17 21:55:10 +0200496
497static const struct file_operations snd_mem_proc_fops = {
498 .owner = THIS_MODULE,
499 .open = snd_mem_proc_open,
500 .read = seq_read,
501#ifdef CONFIG_PCI
502 .write = snd_mem_proc_write,
503#endif
504 .llseek = seq_lseek,
505 .release = single_release,
506};
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508#endif /* CONFIG_PROC_FS */
509
510/*
511 * module entry
512 */
513
514static int __init snd_mem_init(void)
515{
516#ifdef CONFIG_PROC_FS
Denis V. Lunev7bf4e6d2008-04-29 01:02:13 -0700517 snd_mem_proc = proc_create(SND_MEM_PROC_FILE, 0644, NULL,
518 &snd_mem_proc_fops);
Takashi Iwaib6a96912005-05-30 18:27:03 +0200519#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return 0;
521}
522
523static void __exit snd_mem_exit(void)
524{
Takashi Iwaie0be4d32005-08-23 11:11:03 +0200525 remove_proc_entry(SND_MEM_PROC_FILE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 free_all_reserved_pages();
527 if (snd_allocated_pages > 0)
528 printk(KERN_ERR "snd-malloc: Memory leak? pages not freed = %li\n", snd_allocated_pages);
529}
530
531
532module_init(snd_mem_init)
533module_exit(snd_mem_exit)
534
535
536/*
537 * exports
538 */
539EXPORT_SYMBOL(snd_dma_alloc_pages);
540EXPORT_SYMBOL(snd_dma_alloc_pages_fallback);
541EXPORT_SYMBOL(snd_dma_free_pages);
542
543EXPORT_SYMBOL(snd_dma_get_reserved_buf);
544EXPORT_SYMBOL(snd_dma_reserve_buf);
545
546EXPORT_SYMBOL(snd_malloc_pages);
547EXPORT_SYMBOL(snd_free_pages);