blob: d85df01bf0551e3f74186e9f5d4a7da1b8ee890e [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/slab.h>
25#include <linux/mm.h>
26#include <linux/dma-mapping.h>
Nicolin Chen05503212013-10-23 11:47:43 +080027#include <linux/genalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <sound/memalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
32 * Generic memory allocators
33 *
34 */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/**
37 * snd_malloc_pages - allocate pages with the given size
38 * @size: the size to allocate in bytes
39 * @gfp_flags: the allocation conditions, GFP_XXX
40 *
41 * Allocates the physically contiguous pages with the given size.
42 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +010043 * Return: The pointer of the buffer, or %NULL if no enough memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 */
Al Viro1ef64e62005-10-21 03:22:18 -040045void *snd_malloc_pages(size_t size, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 int pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Takashi Iwai7eaa9432008-08-08 17:09:09 +020049 if (WARN_ON(!size))
50 return NULL;
51 if (WARN_ON(!gfp_flags))
52 return NULL;
Hugh Dickinsf3d48f02005-11-21 21:32:22 -080053 gfp_flags |= __GFP_COMP; /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 pg = get_order(size);
Takashi Iwaid7b13542014-01-08 16:09:31 +010055 return (void *) __get_free_pages(gfp_flags, pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
Takashi Iwai35f80012017-06-16 16:16:33 +020057EXPORT_SYMBOL(snd_malloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/**
60 * snd_free_pages - release the pages
61 * @ptr: the buffer pointer to release
62 * @size: the allocated buffer size
63 *
64 * Releases the buffer allocated via snd_malloc_pages().
65 */
66void snd_free_pages(void *ptr, size_t size)
67{
68 int pg;
69
70 if (ptr == NULL)
71 return;
72 pg = get_order(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 free_pages((unsigned long) ptr, pg);
74}
Takashi Iwai35f80012017-06-16 16:16:33 +020075EXPORT_SYMBOL(snd_free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 *
79 * Bus-specific memory allocators
80 *
81 */
82
Takashi Iwai8f115512007-07-26 18:59:36 +020083#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* allocate the coherent DMA pages */
85static void *snd_malloc_dev_pages(struct device *dev, size_t size, dma_addr_t *dma)
86{
Al Viro1ef64e62005-10-21 03:22:18 -040087 gfp_t gfp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Takashi Iwai7eaa9432008-08-08 17:09:09 +020089 if (WARN_ON(!dma))
90 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 gfp_flags = GFP_KERNEL
Hugh Dickinsf3d48f02005-11-21 21:32:22 -080092 | __GFP_COMP /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 | __GFP_NORETRY /* don't trigger OOM-killer */
94 | __GFP_NOWARN; /* no stack trace print - this call is non-critical */
Takashi Iwai03486832018-08-08 16:56:46 +020095 return dma_alloc_coherent(dev, size, dma, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/* free the coherent DMA pages */
99static void snd_free_dev_pages(struct device *dev, size_t size, void *ptr,
100 dma_addr_t dma)
101{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (ptr == NULL)
103 return;
Takashi Iwai03486832018-08-08 16:56:46 +0200104 dma_free_coherent(dev, size, ptr, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
Nicolin Chen05503212013-10-23 11:47:43 +0800106
Takashi Iwai63437312013-10-28 16:08:27 +0100107#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800108/**
109 * snd_malloc_dev_iram - allocate memory from on-chip internal ram
110 * @dmab: buffer allocation record to store the allocated data
111 * @size: number of bytes to allocate from the iram
112 *
113 * This function requires iram phandle provided via of_node
114 */
Takashi Iwai9f694bc2013-10-29 11:56:21 +0100115static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size)
Nicolin Chen05503212013-10-23 11:47:43 +0800116{
117 struct device *dev = dmab->dev.dev;
118 struct gen_pool *pool = NULL;
119
Takashi Iwaia40a3932013-10-29 11:59:31 +0100120 dmab->area = NULL;
121 dmab->addr = 0;
122
Nicolin Chen05503212013-10-23 11:47:43 +0800123 if (dev->of_node)
Vladimir Zapolskiyabdd4a72015-06-30 15:00:07 -0700124 pool = of_gen_pool_get(dev->of_node, "iram", 0);
Nicolin Chen05503212013-10-23 11:47:43 +0800125
126 if (!pool)
127 return;
128
129 /* Assign the pool into private_data field */
130 dmab->private_data = pool;
131
Nicolin Chen07968fe2013-11-14 14:32:15 -0800132 dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr);
Nicolin Chen05503212013-10-23 11:47:43 +0800133}
134
135/**
136 * snd_free_dev_iram - free allocated specific memory from on-chip internal ram
137 * @dmab: buffer allocation record to store the allocated data
138 */
Takashi Iwai9f694bc2013-10-29 11:56:21 +0100139static void snd_free_dev_iram(struct snd_dma_buffer *dmab)
Nicolin Chen05503212013-10-23 11:47:43 +0800140{
141 struct gen_pool *pool = dmab->private_data;
142
143 if (pool && dmab->area)
144 gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes);
145}
Takashi Iwai63437312013-10-28 16:08:27 +0100146#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai8f115512007-07-26 18:59:36 +0200147#endif /* CONFIG_HAS_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 *
151 * ALSA generic memory management
152 *
153 */
154
155
156/**
157 * snd_dma_alloc_pages - allocate the buffer area according to the given type
158 * @type: the DMA buffer type
159 * @device: the device pointer
160 * @size: the buffer size to allocate
161 * @dmab: buffer allocation record to store the allocated data
162 *
163 * Calls the memory-allocator function for the corresponding
164 * buffer type.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100165 *
166 * Return: Zero if the buffer with the given size is allocated successfully,
167 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169int snd_dma_alloc_pages(int type, struct device *device, size_t size,
170 struct snd_dma_buffer *dmab)
171{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200172 if (WARN_ON(!size))
173 return -ENXIO;
174 if (WARN_ON(!dmab))
175 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 dmab->dev.type = type;
178 dmab->dev.dev = device;
179 dmab->bytes = 0;
180 switch (type) {
181 case SNDRV_DMA_TYPE_CONTINUOUS:
Clemens Ladischfea952e2011-02-14 11:00:47 +0100182 dmab->area = snd_malloc_pages(size,
183 (__force gfp_t)(unsigned long)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 dmab->addr = 0;
185 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200186#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200187#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800188 case SNDRV_DMA_TYPE_DEV_IRAM:
189 snd_malloc_dev_iram(dmab, size);
190 if (dmab->area)
191 break;
192 /* Internal memory might have limited size and no enough space,
193 * so if we fail to malloc, try to fetch memory traditionally.
194 */
195 dmab->dev.type = SNDRV_DMA_TYPE_DEV;
Takashi Iwaia5606f82013-10-24 14:25:32 +0200196#endif /* CONFIG_GENERIC_ALLOCATOR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 case SNDRV_DMA_TYPE_DEV:
198 dmab->area = snd_malloc_dev_pages(device, size, &dmab->addr);
199 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200200#endif
201#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 case SNDRV_DMA_TYPE_DEV_SG:
203 snd_malloc_sgbuf_pages(device, size, dmab, NULL);
204 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200205#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 default:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100207 pr_err("snd-malloc: invalid device type %d\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 dmab->area = NULL;
209 dmab->addr = 0;
210 return -ENXIO;
211 }
212 if (! dmab->area)
213 return -ENOMEM;
214 dmab->bytes = size;
215 return 0;
216}
Takashi Iwai35f80012017-06-16 16:16:33 +0200217EXPORT_SYMBOL(snd_dma_alloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/**
220 * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback
221 * @type: the DMA buffer type
222 * @device: the device pointer
223 * @size: the buffer size to allocate
224 * @dmab: buffer allocation record to store the allocated data
225 *
226 * Calls the memory-allocator function for the corresponding
227 * buffer type. When no space is left, this function reduces the size and
228 * tries to allocate again. The size actually allocated is stored in
229 * res_size argument.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100230 *
231 * Return: Zero if the buffer with the given size is allocated successfully,
232 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
234int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size,
235 struct snd_dma_buffer *dmab)
236{
237 int err;
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) {
240 if (err != -ENOMEM)
241 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (size <= PAGE_SIZE)
243 return -ENOMEM;
Takashi Iwaidfef01e2018-07-19 11:01:04 +0200244 size >>= 1;
245 size = PAGE_SIZE << get_order(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247 if (! dmab->area)
248 return -ENOMEM;
249 return 0;
250}
Takashi Iwai35f80012017-06-16 16:16:33 +0200251EXPORT_SYMBOL(snd_dma_alloc_pages_fallback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253
254/**
255 * snd_dma_free_pages - release the allocated buffer
256 * @dmab: the buffer allocation record to release
257 *
258 * Releases the allocated buffer via snd_dma_alloc_pages().
259 */
260void snd_dma_free_pages(struct snd_dma_buffer *dmab)
261{
262 switch (dmab->dev.type) {
263 case SNDRV_DMA_TYPE_CONTINUOUS:
264 snd_free_pages(dmab->area, dmab->bytes);
265 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200266#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200267#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800268 case SNDRV_DMA_TYPE_DEV_IRAM:
269 snd_free_dev_iram(dmab);
270 break;
Takashi Iwaia5606f82013-10-24 14:25:32 +0200271#endif /* CONFIG_GENERIC_ALLOCATOR */
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:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100282 pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285EXPORT_SYMBOL(snd_dma_free_pages);