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