blob: a83553fbedf00a8c2bf338355d1523dc80be3628 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Takashi Iwai <tiwai@suse.de>
5 *
6 * Generic memory allocators
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
10#include <linux/mm.h>
11#include <linux/dma-mapping.h>
Nicolin Chen05503212013-10-23 11:47:43 +080012#include <linux/genalloc.h>
Takashi Iwai1fe7f392019-11-05 09:01:36 +010013#include <linux/vmalloc.h>
Takashi Iwai42e748a2018-08-08 17:01:00 +020014#ifdef CONFIG_X86
15#include <asm/set_memory.h>
16#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <sound/memalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Bus-specific memory allocators
22 *
23 */
24
Takashi Iwai8f115512007-07-26 18:59:36 +020025#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* allocate the coherent DMA pages */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020027static void snd_malloc_dev_pages(struct snd_dma_buffer *dmab, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Al Viro1ef64e62005-10-21 03:22:18 -040029 gfp_t gfp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 gfp_flags = GFP_KERNEL
Hugh Dickinsf3d48f02005-11-21 21:32:22 -080032 | __GFP_COMP /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 | __GFP_NORETRY /* don't trigger OOM-killer */
34 | __GFP_NOWARN; /* no stack trace print - this call is non-critical */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020035 dmab->area = dma_alloc_coherent(dmab->dev.dev, size, &dmab->addr,
36 gfp_flags);
Takashi Iwai42e748a2018-08-08 17:01:00 +020037#ifdef CONFIG_X86
38 if (dmab->area && dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC)
39 set_memory_wc((unsigned long)dmab->area,
40 PAGE_ALIGN(size) >> PAGE_SHIFT);
41#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44/* free the coherent DMA pages */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020045static void snd_free_dev_pages(struct snd_dma_buffer *dmab)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Takashi Iwai42e748a2018-08-08 17:01:00 +020047#ifdef CONFIG_X86
48 if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_UC)
49 set_memory_wb((unsigned long)dmab->area,
50 PAGE_ALIGN(dmab->bytes) >> PAGE_SHIFT);
51#endif
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020052 dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
Nicolin Chen05503212013-10-23 11:47:43 +080054
Takashi Iwai63437312013-10-28 16:08:27 +010055#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +080056/**
57 * snd_malloc_dev_iram - allocate memory from on-chip internal ram
58 * @dmab: buffer allocation record to store the allocated data
59 * @size: number of bytes to allocate from the iram
60 *
61 * This function requires iram phandle provided via of_node
62 */
Takashi Iwai9f694bc2013-10-29 11:56:21 +010063static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size)
Nicolin Chen05503212013-10-23 11:47:43 +080064{
65 struct device *dev = dmab->dev.dev;
66 struct gen_pool *pool = NULL;
67
Takashi Iwaia40a3932013-10-29 11:59:31 +010068 dmab->area = NULL;
69 dmab->addr = 0;
70
Nicolin Chen05503212013-10-23 11:47:43 +080071 if (dev->of_node)
Vladimir Zapolskiyabdd4a72015-06-30 15:00:07 -070072 pool = of_gen_pool_get(dev->of_node, "iram", 0);
Nicolin Chen05503212013-10-23 11:47:43 +080073
74 if (!pool)
75 return;
76
77 /* Assign the pool into private_data field */
78 dmab->private_data = pool;
79
Nicolin Chen07968fe2013-11-14 14:32:15 -080080 dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr);
Nicolin Chen05503212013-10-23 11:47:43 +080081}
82
83/**
84 * snd_free_dev_iram - free allocated specific memory from on-chip internal ram
85 * @dmab: buffer allocation record to store the allocated data
86 */
Takashi Iwai9f694bc2013-10-29 11:56:21 +010087static void snd_free_dev_iram(struct snd_dma_buffer *dmab)
Nicolin Chen05503212013-10-23 11:47:43 +080088{
89 struct gen_pool *pool = dmab->private_data;
90
91 if (pool && dmab->area)
92 gen_pool_free(pool, (unsigned long)dmab->area, dmab->bytes);
93}
Takashi Iwai63437312013-10-28 16:08:27 +010094#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai8f115512007-07-26 18:59:36 +020095#endif /* CONFIG_HAS_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 *
99 * ALSA generic memory management
100 *
101 */
102
Takashi Iwai1fe7f392019-11-05 09:01:36 +0100103static inline gfp_t snd_mem_get_gfp_flags(const struct device *dev,
104 gfp_t default_gfp)
Takashi Iwai08422d22019-11-05 09:01:35 +0100105{
106 if (!dev)
Takashi Iwai1fe7f392019-11-05 09:01:36 +0100107 return default_gfp;
Takashi Iwai08422d22019-11-05 09:01:35 +0100108 else
109 return (__force gfp_t)(unsigned long)dev;
110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/**
113 * snd_dma_alloc_pages - allocate the buffer area according to the given type
114 * @type: the DMA buffer type
115 * @device: the device pointer
116 * @size: the buffer size to allocate
117 * @dmab: buffer allocation record to store the allocated data
118 *
119 * Calls the memory-allocator function for the corresponding
120 * buffer type.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100121 *
122 * Return: Zero if the buffer with the given size is allocated successfully,
123 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 */
125int snd_dma_alloc_pages(int type, struct device *device, size_t size,
126 struct snd_dma_buffer *dmab)
127{
Takashi Iwai1fe7f392019-11-05 09:01:36 +0100128 gfp_t gfp;
129
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200130 if (WARN_ON(!size))
131 return -ENXIO;
132 if (WARN_ON(!dmab))
133 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 dmab->dev.type = type;
136 dmab->dev.dev = device;
137 dmab->bytes = 0;
138 switch (type) {
139 case SNDRV_DMA_TYPE_CONTINUOUS:
Takashi Iwai1fe7f392019-11-05 09:01:36 +0100140 gfp = snd_mem_get_gfp_flags(device, GFP_KERNEL);
141 dmab->area = alloc_pages_exact(size, gfp);
142 dmab->addr = 0;
143 break;
144 case SNDRV_DMA_TYPE_VMALLOC:
145 gfp = snd_mem_get_gfp_flags(device, GFP_KERNEL | __GFP_HIGHMEM);
146 dmab->area = __vmalloc(size, gfp, PAGE_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 dmab->addr = 0;
148 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200149#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200150#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800151 case SNDRV_DMA_TYPE_DEV_IRAM:
152 snd_malloc_dev_iram(dmab, size);
153 if (dmab->area)
154 break;
155 /* Internal memory might have limited size and no enough space,
156 * so if we fail to malloc, try to fetch memory traditionally.
157 */
158 dmab->dev.type = SNDRV_DMA_TYPE_DEV;
Takashi Iwaia5606f82013-10-24 14:25:32 +0200159#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai3c4cfa72018-10-04 19:54:51 +0200160 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 case SNDRV_DMA_TYPE_DEV:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200162 case SNDRV_DMA_TYPE_DEV_UC:
Takashi Iwai28f3f4f2018-08-10 14:43:37 +0200163 snd_malloc_dev_pages(dmab, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200165#endif
166#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 case SNDRV_DMA_TYPE_DEV_SG:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200168 case SNDRV_DMA_TYPE_DEV_UC_SG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 snd_malloc_sgbuf_pages(device, size, dmab, NULL);
170 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 default:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100173 pr_err("snd-malloc: invalid device type %d\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 dmab->area = NULL;
175 dmab->addr = 0;
176 return -ENXIO;
177 }
178 if (! dmab->area)
179 return -ENOMEM;
180 dmab->bytes = size;
181 return 0;
182}
Takashi Iwai35f80012017-06-16 16:16:33 +0200183EXPORT_SYMBOL(snd_dma_alloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185/**
186 * snd_dma_alloc_pages_fallback - allocate the buffer area according to the given type with fallback
187 * @type: the DMA buffer type
188 * @device: the device pointer
189 * @size: the buffer size to allocate
190 * @dmab: buffer allocation record to store the allocated data
191 *
192 * Calls the memory-allocator function for the corresponding
193 * buffer type. When no space is left, this function reduces the size and
194 * tries to allocate again. The size actually allocated is stored in
195 * res_size argument.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100196 *
197 * Return: Zero if the buffer with the given size is allocated successfully,
198 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 */
200int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size,
201 struct snd_dma_buffer *dmab)
202{
203 int err;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) {
206 if (err != -ENOMEM)
207 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (size <= PAGE_SIZE)
209 return -ENOMEM;
Takashi Iwaidfef01e2018-07-19 11:01:04 +0200210 size >>= 1;
211 size = PAGE_SIZE << get_order(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 if (! dmab->area)
214 return -ENOMEM;
215 return 0;
216}
Takashi Iwai35f80012017-06-16 16:16:33 +0200217EXPORT_SYMBOL(snd_dma_alloc_pages_fallback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219
220/**
221 * snd_dma_free_pages - release the allocated buffer
222 * @dmab: the buffer allocation record to release
223 *
224 * Releases the allocated buffer via snd_dma_alloc_pages().
225 */
226void snd_dma_free_pages(struct snd_dma_buffer *dmab)
227{
228 switch (dmab->dev.type) {
229 case SNDRV_DMA_TYPE_CONTINUOUS:
Takashi Iwai734b5a02018-11-23 19:38:13 +0100230 free_pages_exact(dmab->area, dmab->bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
Takashi Iwai1fe7f392019-11-05 09:01:36 +0100232 case SNDRV_DMA_TYPE_VMALLOC:
233 vfree(dmab->area);
234 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200235#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200236#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800237 case SNDRV_DMA_TYPE_DEV_IRAM:
238 snd_free_dev_iram(dmab);
239 break;
Takashi Iwaia5606f82013-10-24 14:25:32 +0200240#endif /* CONFIG_GENERIC_ALLOCATOR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 case SNDRV_DMA_TYPE_DEV:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200242 case SNDRV_DMA_TYPE_DEV_UC:
Takashi Iwai28f3f4f2018-08-10 14:43:37 +0200243 snd_free_dev_pages(dmab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200245#endif
246#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 case SNDRV_DMA_TYPE_DEV_SG:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200248 case SNDRV_DMA_TYPE_DEV_UC_SG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 snd_free_sgbuf_pages(dmab);
250 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200251#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 default:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100253 pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256EXPORT_SYMBOL(snd_dma_free_pages);