2 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
3 * Takashi Iwai <tiwai@suse.de>
5 * Generic memory allocators
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.
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.
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
24 #include <linux/slab.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/genalloc.h>
29 #include <asm/set_memory.h>
31 #include <sound/memalloc.h>
35 * Generic memory allocators
40 * snd_malloc_pages - allocate pages with the given size
41 * @size: the size to allocate in bytes
42 * @gfp_flags: the allocation conditions, GFP_XXX
44 * Allocates the physically contiguous pages with the given size.
46 * Return: The pointer of the buffer, or %NULL if no enough memory.
48 void *snd_malloc_pages(size_t size
, gfp_t gfp_flags
)
54 if (WARN_ON(!gfp_flags
))
56 gfp_flags
|= __GFP_COMP
; /* compound page lets parts be mapped */
58 return (void *) __get_free_pages(gfp_flags
, pg
);
60 EXPORT_SYMBOL(snd_malloc_pages
);
63 * snd_free_pages - release the pages
64 * @ptr: the buffer pointer to release
65 * @size: the allocated buffer size
67 * Releases the buffer allocated via snd_malloc_pages().
69 void snd_free_pages(void *ptr
, size_t size
)
76 free_pages((unsigned long) ptr
, pg
);
78 EXPORT_SYMBOL(snd_free_pages
);
82 * Bus-specific memory allocators
87 /* allocate the coherent DMA pages */
88 static void snd_malloc_dev_pages(struct snd_dma_buffer
*dmab
, size_t size
)
92 gfp_flags
= GFP_KERNEL
93 | __GFP_COMP
/* compound page lets parts be mapped */
94 | __GFP_NORETRY
/* don't trigger OOM-killer */
95 | __GFP_NOWARN
; /* no stack trace print - this call is non-critical */
96 dmab
->area
= dma_alloc_coherent(dmab
->dev
.dev
, size
, &dmab
->addr
,
99 if (dmab
->area
&& dmab
->dev
.type
== SNDRV_DMA_TYPE_DEV_UC
)
100 set_memory_wc((unsigned long)dmab
->area
,
101 PAGE_ALIGN(size
) >> PAGE_SHIFT
);
105 /* free the coherent DMA pages */
106 static void snd_free_dev_pages(struct snd_dma_buffer
*dmab
)
109 if (dmab
->dev
.type
== SNDRV_DMA_TYPE_DEV_UC
)
110 set_memory_wb((unsigned long)dmab
->area
,
111 PAGE_ALIGN(dmab
->bytes
) >> PAGE_SHIFT
);
113 dma_free_coherent(dmab
->dev
.dev
, dmab
->bytes
, dmab
->area
, dmab
->addr
);
116 #ifdef CONFIG_GENERIC_ALLOCATOR
118 * snd_malloc_dev_iram - allocate memory from on-chip internal ram
119 * @dmab: buffer allocation record to store the allocated data
120 * @size: number of bytes to allocate from the iram
122 * This function requires iram phandle provided via of_node
124 static void snd_malloc_dev_iram(struct snd_dma_buffer
*dmab
, size_t size
)
126 struct device
*dev
= dmab
->dev
.dev
;
127 struct gen_pool
*pool
= NULL
;
133 pool
= of_gen_pool_get(dev
->of_node
, "iram", 0);
138 /* Assign the pool into private_data field */
139 dmab
->private_data
= pool
;
141 dmab
->area
= gen_pool_dma_alloc(pool
, size
, &dmab
->addr
);
145 * snd_free_dev_iram - free allocated specific memory from on-chip internal ram
146 * @dmab: buffer allocation record to store the allocated data
148 static void snd_free_dev_iram(struct snd_dma_buffer
*dmab
)
150 struct gen_pool
*pool
= dmab
->private_data
;
152 if (pool
&& dmab
->area
)
153 gen_pool_free(pool
, (unsigned long)dmab
->area
, dmab
->bytes
);
155 #endif /* CONFIG_GENERIC_ALLOCATOR */
156 #endif /* CONFIG_HAS_DMA */
160 * ALSA generic memory management
166 * snd_dma_alloc_pages - allocate the buffer area according to the given type
167 * @type: the DMA buffer type
168 * @device: the device pointer
169 * @size: the buffer size to allocate
170 * @dmab: buffer allocation record to store the allocated data
172 * Calls the memory-allocator function for the corresponding
175 * Return: Zero if the buffer with the given size is allocated successfully,
176 * otherwise a negative value on error.
178 int snd_dma_alloc_pages(int type
, struct device
*device
, size_t size
,
179 struct snd_dma_buffer
*dmab
)
186 dmab
->dev
.type
= type
;
187 dmab
->dev
.dev
= device
;
190 case SNDRV_DMA_TYPE_CONTINUOUS
:
191 dmab
->area
= snd_malloc_pages(size
,
192 (__force gfp_t
)(unsigned long)device
);
195 #ifdef CONFIG_HAS_DMA
196 #ifdef CONFIG_GENERIC_ALLOCATOR
197 case SNDRV_DMA_TYPE_DEV_IRAM
:
198 snd_malloc_dev_iram(dmab
, size
);
201 /* Internal memory might have limited size and no enough space,
202 * so if we fail to malloc, try to fetch memory traditionally.
204 dmab
->dev
.type
= SNDRV_DMA_TYPE_DEV
;
205 #endif /* CONFIG_GENERIC_ALLOCATOR */
207 case SNDRV_DMA_TYPE_DEV
:
208 case SNDRV_DMA_TYPE_DEV_UC
:
209 snd_malloc_dev_pages(dmab
, size
);
212 #ifdef CONFIG_SND_DMA_SGBUF
213 case SNDRV_DMA_TYPE_DEV_SG
:
214 case SNDRV_DMA_TYPE_DEV_UC_SG
:
215 snd_malloc_sgbuf_pages(device
, size
, dmab
, NULL
);
219 pr_err("snd-malloc: invalid device type %d\n", type
);
229 EXPORT_SYMBOL(snd_dma_alloc_pages
);
232 * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback
233 * @type: the DMA buffer type
234 * @device: the device pointer
235 * @size: the buffer size to allocate
236 * @dmab: buffer allocation record to store the allocated data
238 * Calls the memory-allocator function for the corresponding
239 * buffer type. When no space is left, this function reduces the size and
240 * tries to allocate again. The size actually allocated is stored in
243 * Return: Zero if the buffer with the given size is allocated successfully,
244 * otherwise a negative value on error.
246 int snd_dma_alloc_pages_fallback(int type
, struct device
*device
, size_t size
,
247 struct snd_dma_buffer
*dmab
)
251 while ((err
= snd_dma_alloc_pages(type
, device
, size
, dmab
)) < 0) {
254 if (size
<= PAGE_SIZE
)
257 size
= PAGE_SIZE
<< get_order(size
);
263 EXPORT_SYMBOL(snd_dma_alloc_pages_fallback
);
267 * snd_dma_free_pages - release the allocated buffer
268 * @dmab: the buffer allocation record to release
270 * Releases the allocated buffer via snd_dma_alloc_pages().
272 void snd_dma_free_pages(struct snd_dma_buffer
*dmab
)
274 switch (dmab
->dev
.type
) {
275 case SNDRV_DMA_TYPE_CONTINUOUS
:
276 snd_free_pages(dmab
->area
, dmab
->bytes
);
278 #ifdef CONFIG_HAS_DMA
279 #ifdef CONFIG_GENERIC_ALLOCATOR
280 case SNDRV_DMA_TYPE_DEV_IRAM
:
281 snd_free_dev_iram(dmab
);
283 #endif /* CONFIG_GENERIC_ALLOCATOR */
284 case SNDRV_DMA_TYPE_DEV
:
285 case SNDRV_DMA_TYPE_DEV_UC
:
286 snd_free_dev_pages(dmab
);
289 #ifdef CONFIG_SND_DMA_SGBUF
290 case SNDRV_DMA_TYPE_DEV_SG
:
291 case SNDRV_DMA_TYPE_DEV_UC_SG
:
292 snd_free_sgbuf_pages(dmab
);
296 pr_err("snd-malloc: invalid device type %d\n", dmab
->dev
.type
);
299 EXPORT_SYMBOL(snd_dma_free_pages
);