Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 2 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
| 25 | #include <linux/mm.h> |
| 26 | #include <linux/dma-mapping.h> |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 27 | #include <linux/genalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <sound/memalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * |
| 32 | * Generic memory allocators |
| 33 | * |
| 34 | */ |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 43 | * Return: The pointer of the buffer, or %NULL if no enough memory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | */ |
Al Viro | 1ef64e6 | 2005-10-21 03:22:18 -0400 | [diff] [blame] | 45 | void *snd_malloc_pages(size_t size, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | int pg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 49 | if (WARN_ON(!size)) |
| 50 | return NULL; |
| 51 | if (WARN_ON(!gfp_flags)) |
| 52 | return NULL; |
Hugh Dickins | f3d48f0 | 2005-11-21 21:32:22 -0800 | [diff] [blame] | 53 | gfp_flags |= __GFP_COMP; /* compound page lets parts be mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | pg = get_order(size); |
Takashi Iwai | d7b1354 | 2014-01-08 16:09:31 +0100 | [diff] [blame] | 55 | return (void *) __get_free_pages(gfp_flags, pg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 57 | EXPORT_SYMBOL(snd_malloc_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 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 | */ |
| 66 | void 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | free_pages((unsigned long) ptr, pg); |
| 74 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 75 | EXPORT_SYMBOL(snd_free_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * |
| 79 | * Bus-specific memory allocators |
| 80 | * |
| 81 | */ |
| 82 | |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 83 | #ifdef CONFIG_HAS_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* allocate the coherent DMA pages */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 85 | static void snd_malloc_dev_pages(struct snd_dma_buffer *dmab, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Al Viro | 1ef64e6 | 2005-10-21 03:22:18 -0400 | [diff] [blame] | 87 | gfp_t gfp_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | gfp_flags = GFP_KERNEL |
Hugh Dickins | f3d48f0 | 2005-11-21 21:32:22 -0800 | [diff] [blame] | 90 | | __GFP_COMP /* compound page lets parts be mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | | __GFP_NORETRY /* don't trigger OOM-killer */ |
| 92 | | __GFP_NOWARN; /* no stack trace print - this call is non-critical */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 93 | dmab->area = dma_alloc_coherent(dmab->dev.dev, size, &dmab->addr, |
| 94 | gfp_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | /* free the coherent DMA pages */ |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 98 | static void snd_free_dev_pages(struct snd_dma_buffer *dmab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 100 | dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 102 | |
Takashi Iwai | 6343731 | 2013-10-28 16:08:27 +0100 | [diff] [blame] | 103 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 104 | /** |
| 105 | * snd_malloc_dev_iram - allocate memory from on-chip internal ram |
| 106 | * @dmab: buffer allocation record to store the allocated data |
| 107 | * @size: number of bytes to allocate from the iram |
| 108 | * |
| 109 | * This function requires iram phandle provided via of_node |
| 110 | */ |
Takashi Iwai | 9f694bc | 2013-10-29 11:56:21 +0100 | [diff] [blame] | 111 | static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size) |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 112 | { |
| 113 | struct device *dev = dmab->dev.dev; |
| 114 | struct gen_pool *pool = NULL; |
| 115 | |
Takashi Iwai | a40a393 | 2013-10-29 11:59:31 +0100 | [diff] [blame] | 116 | dmab->area = NULL; |
| 117 | dmab->addr = 0; |
| 118 | |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 119 | if (dev->of_node) |
Vladimir Zapolskiy | abdd4a7 | 2015-06-30 15:00:07 -0700 | [diff] [blame] | 120 | pool = of_gen_pool_get(dev->of_node, "iram", 0); |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 121 | |
| 122 | if (!pool) |
| 123 | return; |
| 124 | |
| 125 | /* Assign the pool into private_data field */ |
| 126 | dmab->private_data = pool; |
| 127 | |
Nicolin Chen | 07968fe | 2013-11-14 14:32:15 -0800 | [diff] [blame] | 128 | dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr); |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /** |
| 132 | * snd_free_dev_iram - free allocated specific memory from on-chip internal ram |
| 133 | * @dmab: buffer allocation record to store the allocated data |
| 134 | */ |
Takashi Iwai | 9f694bc | 2013-10-29 11:56:21 +0100 | [diff] [blame] | 135 | static void snd_free_dev_iram(struct snd_dma_buffer *dmab) |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 136 | { |
| 137 | struct gen_pool *pool = dmab->private_data; |
| 138 | |
| 139 | if (pool && dmab->area) |
| 140 | gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes); |
| 141 | } |
Takashi Iwai | 6343731 | 2013-10-28 16:08:27 +0100 | [diff] [blame] | 142 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 143 | #endif /* CONFIG_HAS_DMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /* |
| 146 | * |
| 147 | * ALSA generic memory management |
| 148 | * |
| 149 | */ |
| 150 | |
| 151 | |
| 152 | /** |
| 153 | * snd_dma_alloc_pages - allocate the buffer area according to the given type |
| 154 | * @type: the DMA buffer type |
| 155 | * @device: the device pointer |
| 156 | * @size: the buffer size to allocate |
| 157 | * @dmab: buffer allocation record to store the allocated data |
| 158 | * |
| 159 | * Calls the memory-allocator function for the corresponding |
| 160 | * buffer type. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 161 | * |
| 162 | * Return: Zero if the buffer with the given size is allocated successfully, |
| 163 | * otherwise a negative value on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | */ |
| 165 | int snd_dma_alloc_pages(int type, struct device *device, size_t size, |
| 166 | struct snd_dma_buffer *dmab) |
| 167 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 168 | if (WARN_ON(!size)) |
| 169 | return -ENXIO; |
| 170 | if (WARN_ON(!dmab)) |
| 171 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | dmab->dev.type = type; |
| 174 | dmab->dev.dev = device; |
| 175 | dmab->bytes = 0; |
| 176 | switch (type) { |
| 177 | case SNDRV_DMA_TYPE_CONTINUOUS: |
Clemens Ladisch | fea952e | 2011-02-14 11:00:47 +0100 | [diff] [blame] | 178 | dmab->area = snd_malloc_pages(size, |
| 179 | (__force gfp_t)(unsigned long)device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | dmab->addr = 0; |
| 181 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 182 | #ifdef CONFIG_HAS_DMA |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 183 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 184 | case SNDRV_DMA_TYPE_DEV_IRAM: |
| 185 | snd_malloc_dev_iram(dmab, size); |
| 186 | if (dmab->area) |
| 187 | break; |
| 188 | /* Internal memory might have limited size and no enough space, |
| 189 | * so if we fail to malloc, try to fetch memory traditionally. |
| 190 | */ |
| 191 | dmab->dev.type = SNDRV_DMA_TYPE_DEV; |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 192 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | case SNDRV_DMA_TYPE_DEV: |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 194 | snd_malloc_dev_pages(dmab, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | break; |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 196 | #endif |
| 197 | #ifdef CONFIG_SND_DMA_SGBUF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | case SNDRV_DMA_TYPE_DEV_SG: |
| 199 | snd_malloc_sgbuf_pages(device, size, dmab, NULL); |
| 200 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 201 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | default: |
Takashi Iwai | f2f9307 | 2014-02-04 18:21:03 +0100 | [diff] [blame] | 203 | pr_err("snd-malloc: invalid device type %d\n", type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | dmab->area = NULL; |
| 205 | dmab->addr = 0; |
| 206 | return -ENXIO; |
| 207 | } |
| 208 | if (! dmab->area) |
| 209 | return -ENOMEM; |
| 210 | dmab->bytes = size; |
| 211 | return 0; |
| 212 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 213 | EXPORT_SYMBOL(snd_dma_alloc_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | /** |
| 216 | * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback |
| 217 | * @type: the DMA buffer type |
| 218 | * @device: the device pointer |
| 219 | * @size: the buffer size to allocate |
| 220 | * @dmab: buffer allocation record to store the allocated data |
| 221 | * |
| 222 | * Calls the memory-allocator function for the corresponding |
| 223 | * buffer type. When no space is left, this function reduces the size and |
| 224 | * tries to allocate again. The size actually allocated is stored in |
| 225 | * res_size argument. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 226 | * |
| 227 | * Return: Zero if the buffer with the given size is allocated successfully, |
| 228 | * otherwise a negative value on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | */ |
| 230 | int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size, |
| 231 | struct snd_dma_buffer *dmab) |
| 232 | { |
| 233 | int err; |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) { |
| 236 | if (err != -ENOMEM) |
| 237 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | if (size <= PAGE_SIZE) |
| 239 | return -ENOMEM; |
Takashi Iwai | dfef01e | 2018-07-19 11:01:04 +0200 | [diff] [blame] | 240 | size >>= 1; |
| 241 | size = PAGE_SIZE << get_order(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
| 243 | if (! dmab->area) |
| 244 | return -ENOMEM; |
| 245 | return 0; |
| 246 | } |
Takashi Iwai | 35f8001 | 2017-06-16 16:16:33 +0200 | [diff] [blame] | 247 | EXPORT_SYMBOL(snd_dma_alloc_pages_fallback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | |
| 250 | /** |
| 251 | * snd_dma_free_pages - release the allocated buffer |
| 252 | * @dmab: the buffer allocation record to release |
| 253 | * |
| 254 | * Releases the allocated buffer via snd_dma_alloc_pages(). |
| 255 | */ |
| 256 | void snd_dma_free_pages(struct snd_dma_buffer *dmab) |
| 257 | { |
| 258 | switch (dmab->dev.type) { |
| 259 | case SNDRV_DMA_TYPE_CONTINUOUS: |
| 260 | snd_free_pages(dmab->area, dmab->bytes); |
| 261 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 262 | #ifdef CONFIG_HAS_DMA |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 263 | #ifdef CONFIG_GENERIC_ALLOCATOR |
Nicolin Chen | 0550321 | 2013-10-23 11:47:43 +0800 | [diff] [blame] | 264 | case SNDRV_DMA_TYPE_DEV_IRAM: |
| 265 | snd_free_dev_iram(dmab); |
| 266 | break; |
Takashi Iwai | a5606f8 | 2013-10-24 14:25:32 +0200 | [diff] [blame] | 267 | #endif /* CONFIG_GENERIC_ALLOCATOR */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | case SNDRV_DMA_TYPE_DEV: |
Takashi Iwai | 28f3f4f | 2018-08-10 14:43:37 +0200 | [diff] [blame^] | 269 | snd_free_dev_pages(dmab); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | break; |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 271 | #endif |
| 272 | #ifdef CONFIG_SND_DMA_SGBUF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | case SNDRV_DMA_TYPE_DEV_SG: |
| 274 | snd_free_sgbuf_pages(dmab); |
| 275 | break; |
Takashi Iwai | 8f11551 | 2007-07-26 18:59:36 +0200 | [diff] [blame] | 276 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | default: |
Takashi Iwai | f2f9307 | 2014-02-04 18:21:03 +0100 | [diff] [blame] | 278 | pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | EXPORT_SYMBOL(snd_dma_free_pages); |