blob: 9f48e1d3a257066488a1c5c460a4080283f0c6f8 [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>
Takashi Iwai42e748a2018-08-08 17:01:00 +020028#ifdef CONFIG_X86
29#include <asm/set_memory.h>
30#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/memalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * Bus-specific memory allocators
36 *
37 */
38
Takashi Iwai8f115512007-07-26 18:59:36 +020039#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* allocate the coherent DMA pages */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020041static void snd_malloc_dev_pages(struct snd_dma_buffer *dmab, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Al Viro1ef64e62005-10-21 03:22:18 -040043 gfp_t gfp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 gfp_flags = GFP_KERNEL
Hugh Dickinsf3d48f02005-11-21 21:32:22 -080046 | __GFP_COMP /* compound page lets parts be mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 | __GFP_NORETRY /* don't trigger OOM-killer */
48 | __GFP_NOWARN; /* no stack trace print - this call is non-critical */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020049 dmab->area = dma_alloc_coherent(dmab->dev.dev, size, &dmab->addr,
50 gfp_flags);
Takashi Iwai42e748a2018-08-08 17:01:00 +020051#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 Torvalds1da177e2005-04-16 15:20:36 -070056}
57
58/* free the coherent DMA pages */
Takashi Iwai28f3f4f2018-08-10 14:43:37 +020059static void snd_free_dev_pages(struct snd_dma_buffer *dmab)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Takashi Iwai42e748a2018-08-08 17:01:00 +020061#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 Iwai28f3f4f2018-08-10 14:43:37 +020066 dma_free_coherent(dmab->dev.dev, dmab->bytes, dmab->area, dmab->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
Nicolin Chen05503212013-10-23 11:47:43 +080068
Takashi Iwai63437312013-10-28 16:08:27 +010069#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +080070/**
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 Iwai9f694bc2013-10-29 11:56:21 +010077static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size)
Nicolin Chen05503212013-10-23 11:47:43 +080078{
79 struct device *dev = dmab->dev.dev;
80 struct gen_pool *pool = NULL;
81
Takashi Iwaia40a3932013-10-29 11:59:31 +010082 dmab->area = NULL;
83 dmab->addr = 0;
84
Nicolin Chen05503212013-10-23 11:47:43 +080085 if (dev->of_node)
Vladimir Zapolskiyabdd4a72015-06-30 15:00:07 -070086 pool = of_gen_pool_get(dev->of_node, "iram", 0);
Nicolin Chen05503212013-10-23 11:47:43 +080087
88 if (!pool)
89 return;
90
91 /* Assign the pool into private_data field */
92 dmab->private_data = pool;
93
Nicolin Chen07968fe2013-11-14 14:32:15 -080094 dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr);
Nicolin Chen05503212013-10-23 11:47:43 +080095}
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 Iwai9f694bc2013-10-29 11:56:21 +0100101static void snd_free_dev_iram(struct snd_dma_buffer *dmab)
Nicolin Chen05503212013-10-23 11:47:43 +0800102{
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 Iwai63437312013-10-28 16:08:27 +0100108#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai8f115512007-07-26 18:59:36 +0200109#endif /* CONFIG_HAS_DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
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 Belkadieb7c06e2013-03-11 22:05:14 +0100127 *
128 * Return: Zero if the buffer with the given size is allocated successfully,
129 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
131int snd_dma_alloc_pages(int type, struct device *device, size_t size,
132 struct snd_dma_buffer *dmab)
133{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200134 if (WARN_ON(!size))
135 return -ENXIO;
136 if (WARN_ON(!dmab))
137 return -ENXIO;
Takashi Iwai6ce1d632019-02-04 14:34:00 +0100138 if (WARN_ON(!device))
139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 dmab->dev.type = type;
142 dmab->dev.dev = device;
143 dmab->bytes = 0;
144 switch (type) {
145 case SNDRV_DMA_TYPE_CONTINUOUS:
Takashi Iwai734b5a02018-11-23 19:38:13 +0100146 dmab->area = alloc_pages_exact(size,
147 (__force gfp_t)(unsigned long)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 dmab->addr = 0;
149 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200150#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200151#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800152 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 Iwaia5606f82013-10-24 14:25:32 +0200160#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai3c4cfa72018-10-04 19:54:51 +0200161 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 case SNDRV_DMA_TYPE_DEV:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200163 case SNDRV_DMA_TYPE_DEV_UC:
Takashi Iwai28f3f4f2018-08-10 14:43:37 +0200164 snd_malloc_dev_pages(dmab, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200166#endif
167#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 case SNDRV_DMA_TYPE_DEV_SG:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200169 case SNDRV_DMA_TYPE_DEV_UC_SG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 snd_malloc_sgbuf_pages(device, size, dmab, NULL);
171 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 default:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100174 pr_err("snd-malloc: invalid device type %d\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 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 Iwai35f80012017-06-16 16:16:33 +0200184EXPORT_SYMBOL(snd_dma_alloc_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
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 Belkadieb7c06e2013-03-11 22:05:14 +0100197 *
198 * Return: Zero if the buffer with the given size is allocated successfully,
199 * otherwise a negative value on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
201int 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 Torvalds1da177e2005-04-16 15:20:36 -0700206 while ((err = snd_dma_alloc_pages(type, device, size, dmab)) < 0) {
207 if (err != -ENOMEM)
208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (size <= PAGE_SIZE)
210 return -ENOMEM;
Takashi Iwaidfef01e2018-07-19 11:01:04 +0200211 size >>= 1;
212 size = PAGE_SIZE << get_order(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214 if (! dmab->area)
215 return -ENOMEM;
216 return 0;
217}
Takashi Iwai35f80012017-06-16 16:16:33 +0200218EXPORT_SYMBOL(snd_dma_alloc_pages_fallback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
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 */
227void snd_dma_free_pages(struct snd_dma_buffer *dmab)
228{
229 switch (dmab->dev.type) {
230 case SNDRV_DMA_TYPE_CONTINUOUS:
Takashi Iwai734b5a02018-11-23 19:38:13 +0100231 free_pages_exact(dmab->area, dmab->bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200233#ifdef CONFIG_HAS_DMA
Takashi Iwaia5606f82013-10-24 14:25:32 +0200234#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +0800235 case SNDRV_DMA_TYPE_DEV_IRAM:
236 snd_free_dev_iram(dmab);
237 break;
Takashi Iwaia5606f82013-10-24 14:25:32 +0200238#endif /* CONFIG_GENERIC_ALLOCATOR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 case SNDRV_DMA_TYPE_DEV:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200240 case SNDRV_DMA_TYPE_DEV_UC:
Takashi Iwai28f3f4f2018-08-10 14:43:37 +0200241 snd_free_dev_pages(dmab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
Takashi Iwaicc6a8ac2008-06-17 16:39:06 +0200243#endif
244#ifdef CONFIG_SND_DMA_SGBUF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 case SNDRV_DMA_TYPE_DEV_SG:
Takashi Iwai42e748a2018-08-08 17:01:00 +0200246 case SNDRV_DMA_TYPE_DEV_UC_SG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 snd_free_sgbuf_pages(dmab);
248 break;
Takashi Iwai8f115512007-07-26 18:59:36 +0200249#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 default:
Takashi Iwaif2f93072014-02-04 18:21:03 +0100251 pr_err("snd-malloc: invalid device type %d\n", dmab->dev.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254EXPORT_SYMBOL(snd_dma_free_pages);