aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonsoo Kim <iamjoonsoo.kim@lge.com>2014-08-06 19:05:25 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-06 21:01:16 -0400
commita254129e8686bff7a340b58f35241b04927e81c0 (patch)
tree90828b720ab7221a0f13c2fe3b15f997e64ea0c3
parente0bdb37d95dd44086159607e571fd70f6b62dc2d (diff)
CMA: generalize CMA reserved area management functionality
Currently, there are two users on CMA functionality, one is the DMA subsystem and the other is the KVM on powerpc. They have their own code to manage CMA reserved area even if they looks really similar. From my guess, it is caused by some needs on bitmap management. KVM side wants to maintain bitmap not for 1 page, but for more size. Eventually it use bitmap where one bit represents 64 pages. When I implement CMA related patches, I should change those two places to apply my change and it seem to be painful to me. I want to change this situation and reduce future code management overhead through this patch. This change could also help developer who want to use CMA in their new feature development, since they can use CMA easily without copying & pasting this reserved area management code. In previous patches, we have prepared some features to generalize CMA reserved area management and now it's time to do it. This patch moves core functions to mm/cma.c and change DMA APIs to use these functions. There is no functional change in DMA APIs. Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Acked-by: Michal Nazarewicz <mina86@mina86.com> Acked-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Acked-by: Minchan Kim <minchan@kernel.org> Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Cc: Alexander Graf <agraf@suse.de> Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Cc: Gleb Natapov <gleb@kernel.org> Acked-by: Marek Szyprowski <m.szyprowski@samsung.com> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--arch/arm/mm/dma-mapping.c1
-rw-r--r--drivers/base/Kconfig10
-rw-r--r--drivers/base/dma-contiguous.c280
-rw-r--r--include/linux/cma.h27
-rw-r--r--include/linux/dma-contiguous.h11
-rw-r--r--mm/Kconfig11
-rw-r--r--mm/Makefile1
-rw-r--r--mm/cma.c333
8 files changed, 383 insertions, 291 deletions
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index 1f88db06b133..7a996aaa061e 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -26,6 +26,7 @@
26#include <linux/io.h> 26#include <linux/io.h>
27#include <linux/vmalloc.h> 27#include <linux/vmalloc.h>
28#include <linux/sizes.h> 28#include <linux/sizes.h>
29#include <linux/cma.h>
29 30
30#include <asm/memory.h> 31#include <asm/memory.h>
31#include <asm/highmem.h> 32#include <asm/highmem.h>
diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig
index 88500fed3c7a..4e7f0ff83ae7 100644
--- a/drivers/base/Kconfig
+++ b/drivers/base/Kconfig
@@ -289,16 +289,6 @@ config CMA_ALIGNMENT
289 289
290 If unsure, leave the default value "8". 290 If unsure, leave the default value "8".
291 291
292config CMA_AREAS
293 int "Maximum count of the CMA device-private areas"
294 default 7
295 help
296 CMA allows to create CMA areas for particular devices. This parameter
297 sets the maximum number of such device private CMA areas in the
298 system.
299
300 If unsure, leave the default value "7".
301
302endif 292endif
303 293
304endmenu 294endmenu
diff --git a/drivers/base/dma-contiguous.c b/drivers/base/dma-contiguous.c
index ad8a85bf852f..0411c1c57005 100644
--- a/drivers/base/dma-contiguous.c
+++ b/drivers/base/dma-contiguous.c
@@ -24,25 +24,9 @@
24 24
25#include <linux/memblock.h> 25#include <linux/memblock.h>
26#include <linux/err.h> 26#include <linux/err.h>
27#include <linux/mm.h>
28#include <linux/mutex.h>
29#include <linux/page-isolation.h>
30#include <linux/sizes.h> 27#include <linux/sizes.h>
31#include <linux/slab.h>
32#include <linux/swap.h>
33#include <linux/mm_types.h>
34#include <linux/dma-contiguous.h> 28#include <linux/dma-contiguous.h>
35#include <linux/log2.h> 29#include <linux/cma.h>
36
37struct cma {
38 unsigned long base_pfn;
39 unsigned long count;
40 unsigned long *bitmap;
41 unsigned int order_per_bit; /* Order of pages represented by one bit */
42 struct mutex lock;
43};
44
45struct cma *dma_contiguous_default_area;
46 30
47#ifdef CONFIG_CMA_SIZE_MBYTES 31#ifdef CONFIG_CMA_SIZE_MBYTES
48#define CMA_SIZE_MBYTES CONFIG_CMA_SIZE_MBYTES 32#define CMA_SIZE_MBYTES CONFIG_CMA_SIZE_MBYTES
@@ -50,6 +34,8 @@ struct cma *dma_contiguous_default_area;
50#define CMA_SIZE_MBYTES 0 34#define CMA_SIZE_MBYTES 0
51#endif 35#endif
52 36
37struct cma *dma_contiguous_default_area;
38
53/* 39/*
54 * Default global CMA area size can be defined in kernel's .config. 40 * Default global CMA area size can be defined in kernel's .config.
55 * This is useful mainly for distro maintainers to create a kernel 41 * This is useful mainly for distro maintainers to create a kernel
@@ -156,169 +142,6 @@ void __init dma_contiguous_reserve(phys_addr_t limit)
156 } 142 }
157} 143}
158 144
159static DEFINE_MUTEX(cma_mutex);
160
161static unsigned long cma_bitmap_aligned_mask(struct cma *cma, int align_order)
162{
163 return (1UL << (align_order >> cma->order_per_bit)) - 1;
164}
165
166static unsigned long cma_bitmap_maxno(struct cma *cma)
167{
168 return cma->count >> cma->order_per_bit;
169}
170
171static unsigned long cma_bitmap_pages_to_bits(struct cma *cma,
172 unsigned long pages)
173{
174 return ALIGN(pages, 1UL << cma->order_per_bit) >> cma->order_per_bit;
175}
176
177static void cma_clear_bitmap(struct cma *cma, unsigned long pfn, int count)
178{
179 unsigned long bitmap_no, bitmap_count;
180
181 bitmap_no = (pfn - cma->base_pfn) >> cma->order_per_bit;
182 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
183
184 mutex_lock(&cma->lock);
185 bitmap_clear(cma->bitmap, bitmap_no, bitmap_count);
186 mutex_unlock(&cma->lock);
187}
188
189static int __init cma_activate_area(struct cma *cma)
190{
191 int bitmap_size = BITS_TO_LONGS(cma_bitmap_maxno(cma)) * sizeof(long);
192 unsigned long base_pfn = cma->base_pfn, pfn = base_pfn;
193 unsigned i = cma->count >> pageblock_order;
194 struct zone *zone;
195
196 cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
197
198 if (!cma->bitmap)
199 return -ENOMEM;
200
201 WARN_ON_ONCE(!pfn_valid(pfn));
202 zone = page_zone(pfn_to_page(pfn));
203
204 do {
205 unsigned j;
206 base_pfn = pfn;
207 for (j = pageblock_nr_pages; j; --j, pfn++) {
208 WARN_ON_ONCE(!pfn_valid(pfn));
209 /*
210 * alloc_contig_range requires the pfn range
211 * specified to be in the same zone. Make this
212 * simple by forcing the entire CMA resv range
213 * to be in the same zone.
214 */
215 if (page_zone(pfn_to_page(pfn)) != zone)
216 goto err;
217 }
218 init_cma_reserved_pageblock(pfn_to_page(base_pfn));
219 } while (--i);
220
221 mutex_init(&cma->lock);
222 return 0;
223
224err:
225 kfree(cma->bitmap);
226 return -EINVAL;
227}
228
229static struct cma cma_areas[MAX_CMA_AREAS];
230static unsigned cma_area_count;
231
232static int __init cma_init_reserved_areas(void)
233{
234 int i;
235
236 for (i = 0; i < cma_area_count; i++) {
237 int ret = cma_activate_area(&cma_areas[i]);
238 if (ret)
239 return ret;
240 }
241
242 return 0;
243}
244core_initcall(cma_init_reserved_areas);
245
246static int __init __dma_contiguous_reserve_area(phys_addr_t size,
247 phys_addr_t base, phys_addr_t limit,
248 phys_addr_t alignment, unsigned int order_per_bit,
249 struct cma **res_cma, bool fixed)
250{
251 struct cma *cma = &cma_areas[cma_area_count];
252 int ret = 0;
253
254 pr_debug("%s(size %lx, base %08lx, limit %08lx alignment %08lx)\n",
255 __func__, (unsigned long)size, (unsigned long)base,
256 (unsigned long)limit, (unsigned long)alignment);
257
258 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
259 pr_err("Not enough slots for CMA reserved regions!\n");
260 return -ENOSPC;
261 }
262
263 if (!size)
264 return -EINVAL;
265
266 if (alignment && !is_power_of_2(alignment))
267 return -EINVAL;
268
269 /*
270 * Sanitise input arguments.
271 * Pages both ends in CMA area could be merged into adjacent unmovable
272 * migratetype page by page allocator's buddy algorithm. In the case,
273 * you couldn't get a contiguous memory, which is not what we want.
274 */
275 alignment = max(alignment,
276 (phys_addr_t)PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order));
277 base = ALIGN(base, alignment);
278 size = ALIGN(size, alignment);
279 limit &= ~(alignment - 1);
280
281 /* size should be aligned with order_per_bit */
282 if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit))
283 return -EINVAL;
284
285 /* Reserve memory */
286 if (base && fixed) {
287 if (memblock_is_region_reserved(base, size) ||
288 memblock_reserve(base, size) < 0) {
289 ret = -EBUSY;
290 goto err;
291 }
292 } else {
293 phys_addr_t addr = memblock_alloc_range(size, alignment, base,
294 limit);
295 if (!addr) {
296 ret = -ENOMEM;
297 goto err;
298 } else {
299 base = addr;
300 }
301 }
302
303 /*
304 * Each reserved area must be initialised later, when more kernel
305 * subsystems (like slab allocator) are available.
306 */
307 cma->base_pfn = PFN_DOWN(base);
308 cma->count = size >> PAGE_SHIFT;
309 cma->order_per_bit = order_per_bit;
310 *res_cma = cma;
311 cma_area_count++;
312
313 pr_info("CMA: reserved %ld MiB at %08lx\n", (unsigned long)size / SZ_1M,
314 (unsigned long)base);
315 return 0;
316
317err:
318 pr_err("CMA: failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M);
319 return ret;
320}
321
322/** 145/**
323 * dma_contiguous_reserve_area() - reserve custom contiguous area 146 * dma_contiguous_reserve_area() - reserve custom contiguous area
324 * @size: Size of the reserved area (in bytes), 147 * @size: Size of the reserved area (in bytes),
@@ -342,77 +165,17 @@ int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base,
342{ 165{
343 int ret; 166 int ret;
344 167
345 ret = __dma_contiguous_reserve_area(size, base, limit, 0, 0, 168 ret = cma_declare_contiguous(size, base, limit, 0, 0, res_cma, fixed);
346 res_cma, fixed);
347 if (ret) 169 if (ret)
348 return ret; 170 return ret;
349 171
350 /* Architecture specific contiguous memory fixup. */ 172 /* Architecture specific contiguous memory fixup. */
351 dma_contiguous_early_fixup(PFN_PHYS((*res_cma)->base_pfn), 173 dma_contiguous_early_fixup(cma_get_base(*res_cma),
352 (*res_cma)->count << PAGE_SHIFT); 174 cma_get_size(*res_cma));
353 175
354 return 0; 176 return 0;
355} 177}
356 178
357static struct page *__dma_alloc_from_contiguous(struct cma *cma, int count,
358 unsigned int align)
359{
360 unsigned long mask, pfn, start = 0;
361 unsigned long bitmap_maxno, bitmap_no, bitmap_count;
362 struct page *page = NULL;
363 int ret;
364
365 if (!cma || !cma->count)
366 return NULL;
367
368 pr_debug("%s(cma %p, count %d, align %d)\n", __func__, (void *)cma,
369 count, align);
370
371 if (!count)
372 return NULL;
373
374 mask = cma_bitmap_aligned_mask(cma, align);
375 bitmap_maxno = cma_bitmap_maxno(cma);
376 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
377
378 for (;;) {
379 mutex_lock(&cma->lock);
380 bitmap_no = bitmap_find_next_zero_area(cma->bitmap,
381 bitmap_maxno, start, bitmap_count, mask);
382 if (bitmap_no >= bitmap_maxno) {
383 mutex_unlock(&cma->lock);
384 break;
385 }
386 bitmap_set(cma->bitmap, bitmap_no, bitmap_count);
387 /*
388 * It's safe to drop the lock here. We've marked this region for
389 * our exclusive use. If the migration fails we will take the
390 * lock again and unmark it.
391 */
392 mutex_unlock(&cma->lock);
393
394 pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit);
395 mutex_lock(&cma_mutex);
396 ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA);
397 mutex_unlock(&cma_mutex);
398 if (ret == 0) {
399 page = pfn_to_page(pfn);
400 break;
401 } else if (ret != -EBUSY) {
402 cma_clear_bitmap(cma, pfn, count);
403 break;
404 }
405 cma_clear_bitmap(cma, pfn, count);
406 pr_debug("%s(): memory range at %p is busy, retrying\n",
407 __func__, pfn_to_page(pfn));
408 /* try again with a bit different memory target */
409 start = bitmap_no + mask + 1;
410 }
411
412 pr_debug("%s(): returned %p\n", __func__, page);
413 return page;
414}
415
416/** 179/**
417 * dma_alloc_from_contiguous() - allocate pages from contiguous area 180 * dma_alloc_from_contiguous() - allocate pages from contiguous area
418 * @dev: Pointer to device for which the allocation is performed. 181 * @dev: Pointer to device for which the allocation is performed.
@@ -427,35 +190,10 @@ static struct page *__dma_alloc_from_contiguous(struct cma *cma, int count,
427struct page *dma_alloc_from_contiguous(struct device *dev, int count, 190struct page *dma_alloc_from_contiguous(struct device *dev, int count,
428 unsigned int align) 191 unsigned int align)
429{ 192{
430 struct cma *cma = dev_get_cma_area(dev);
431
432 if (align > CONFIG_CMA_ALIGNMENT) 193 if (align > CONFIG_CMA_ALIGNMENT)
433 align = CONFIG_CMA_ALIGNMENT; 194 align = CONFIG_CMA_ALIGNMENT;
434 195
435 return __dma_alloc_from_contiguous(cma, count, align); 196 return cma_alloc(dev_get_cma_area(dev), count, align);
436}
437
438static bool __dma_release_from_contiguous(struct cma *cma, struct page *pages,
439 int count)
440{
441 unsigned long pfn;
442
443 if (!cma || !pages)
444 return false;
445
446 pr_debug("%s(page %p)\n", __func__, (void *)pages);
447
448 pfn = page_to_pfn(pages);
449
450 if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count)
451 return false;
452
453 VM_BUG_ON(pfn + count > cma->base_pfn + cma->count);
454
455 free_contig_range(pfn, count);
456 cma_clear_bitmap(cma, pfn, count);
457
458 return true;
459} 197}
460 198
461/** 199/**
@@ -471,7 +209,5 @@ static bool __dma_release_from_contiguous(struct cma *cma, struct page *pages,
471bool dma_release_from_contiguous(struct device *dev, struct page *pages, 209bool dma_release_from_contiguous(struct device *dev, struct page *pages,
472 int count) 210 int count)
473{ 211{
474 struct cma *cma = dev_get_cma_area(dev); 212 return cma_release(dev_get_cma_area(dev), pages, count);
475
476 return __dma_release_from_contiguous(cma, pages, count);
477} 213}
diff --git a/include/linux/cma.h b/include/linux/cma.h
new file mode 100644
index 000000000000..f6f7809acb98
--- /dev/null
+++ b/include/linux/cma.h
@@ -0,0 +1,27 @@
1#ifndef __CMA_H__
2#define __CMA_H__
3
4/*
5 * There is always at least global CMA area and a few optional
6 * areas configured in kernel .config.
7 */
8#ifdef CONFIG_CMA_AREAS
9#define MAX_CMA_AREAS (1 + CONFIG_CMA_AREAS)
10
11#else
12#define MAX_CMA_AREAS (0)
13
14#endif
15
16struct cma;
17
18extern phys_addr_t cma_get_base(struct cma *cma);
19extern unsigned long cma_get_size(struct cma *cma);
20
21extern int __init cma_declare_contiguous(phys_addr_t size,
22 phys_addr_t base, phys_addr_t limit,
23 phys_addr_t alignment, unsigned int order_per_bit,
24 struct cma **res_cma, bool fixed);
25extern struct page *cma_alloc(struct cma *cma, int count, unsigned int align);
26extern bool cma_release(struct cma *cma, struct page *pages, int count);
27#endif
diff --git a/include/linux/dma-contiguous.h b/include/linux/dma-contiguous.h
index 772eab5d524a..569bbd039896 100644
--- a/include/linux/dma-contiguous.h
+++ b/include/linux/dma-contiguous.h
@@ -53,18 +53,13 @@
53 53
54#ifdef __KERNEL__ 54#ifdef __KERNEL__
55 55
56#include <linux/device.h>
57
56struct cma; 58struct cma;
57struct page; 59struct page;
58struct device;
59 60
60#ifdef CONFIG_DMA_CMA 61#ifdef CONFIG_DMA_CMA
61 62
62/*
63 * There is always at least global CMA area and a few optional device
64 * private areas configured in kernel .config.
65 */
66#define MAX_CMA_AREAS (1 + CONFIG_CMA_AREAS)
67
68extern struct cma *dma_contiguous_default_area; 63extern struct cma *dma_contiguous_default_area;
69 64
70static inline struct cma *dev_get_cma_area(struct device *dev) 65static inline struct cma *dev_get_cma_area(struct device *dev)
@@ -123,8 +118,6 @@ bool dma_release_from_contiguous(struct device *dev, struct page *pages,
123 118
124#else 119#else
125 120
126#define MAX_CMA_AREAS (0)
127
128static inline struct cma *dev_get_cma_area(struct device *dev) 121static inline struct cma *dev_get_cma_area(struct device *dev)
129{ 122{
130 return NULL; 123 return NULL;
diff --git a/mm/Kconfig b/mm/Kconfig
index 3e9977a9d657..f4899ec39cf4 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -508,6 +508,17 @@ config CMA_DEBUG
508 processing calls such as dma_alloc_from_contiguous(). 508 processing calls such as dma_alloc_from_contiguous().
509 This option does not affect warning and error messages. 509 This option does not affect warning and error messages.
510 510
511config CMA_AREAS
512 int "Maximum count of the CMA areas"
513 depends on CMA
514 default 7
515 help
516 CMA allows to create CMA areas for particular purpose, mainly,
517 used as device private area. This parameter sets the maximum
518 number of CMA area in the system.
519
520 If unsure, leave the default value "7".
521
511config ZBUD 522config ZBUD
512 tristate 523 tristate
513 default n 524 default n
diff --git a/mm/Makefile b/mm/Makefile
index 4064f3ec145e..8338473c329a 100644
--- a/mm/Makefile
+++ b/mm/Makefile
@@ -62,3 +62,4 @@ obj-$(CONFIG_MEMORY_ISOLATION) += page_isolation.o
62obj-$(CONFIG_ZBUD) += zbud.o 62obj-$(CONFIG_ZBUD) += zbud.o
63obj-$(CONFIG_ZSMALLOC) += zsmalloc.o 63obj-$(CONFIG_ZSMALLOC) += zsmalloc.o
64obj-$(CONFIG_GENERIC_EARLY_IOREMAP) += early_ioremap.o 64obj-$(CONFIG_GENERIC_EARLY_IOREMAP) += early_ioremap.o
65obj-$(CONFIG_CMA) += cma.o
diff --git a/mm/cma.c b/mm/cma.c
new file mode 100644
index 000000000000..656004216953
--- /dev/null
+++ b/mm/cma.c
@@ -0,0 +1,333 @@
1/*
2 * Contiguous Memory Allocator
3 *
4 * Copyright (c) 2010-2011 by Samsung Electronics.
5 * Copyright IBM Corporation, 2013
6 * Copyright LG Electronics Inc., 2014
7 * Written by:
8 * Marek Szyprowski <m.szyprowski@samsung.com>
9 * Michal Nazarewicz <mina86@mina86.com>
10 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
11 * Joonsoo Kim <iamjoonsoo.kim@lge.com>
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of the
16 * License or (at your optional) any later version of the license.
17 */
18
19#define pr_fmt(fmt) "cma: " fmt
20
21#ifdef CONFIG_CMA_DEBUG
22#ifndef DEBUG
23# define DEBUG
24#endif
25#endif
26
27#include <linux/memblock.h>
28#include <linux/err.h>
29#include <linux/mm.h>
30#include <linux/mutex.h>
31#include <linux/sizes.h>
32#include <linux/slab.h>
33#include <linux/log2.h>
34#include <linux/cma.h>
35
36struct cma {
37 unsigned long base_pfn;
38 unsigned long count;
39 unsigned long *bitmap;
40 unsigned int order_per_bit; /* Order of pages represented by one bit */
41 struct mutex lock;
42};
43
44static struct cma cma_areas[MAX_CMA_AREAS];
45static unsigned cma_area_count;
46static DEFINE_MUTEX(cma_mutex);
47
48phys_addr_t cma_get_base(struct cma *cma)
49{
50 return PFN_PHYS(cma->base_pfn);
51}
52
53unsigned long cma_get_size(struct cma *cma)
54{
55 return cma->count << PAGE_SHIFT;
56}
57
58static unsigned long cma_bitmap_aligned_mask(struct cma *cma, int align_order)
59{
60 return (1UL << (align_order >> cma->order_per_bit)) - 1;
61}
62
63static unsigned long cma_bitmap_maxno(struct cma *cma)
64{
65 return cma->count >> cma->order_per_bit;
66}
67
68static unsigned long cma_bitmap_pages_to_bits(struct cma *cma,
69 unsigned long pages)
70{
71 return ALIGN(pages, 1UL << cma->order_per_bit) >> cma->order_per_bit;
72}
73
74static void cma_clear_bitmap(struct cma *cma, unsigned long pfn, int count)
75{
76 unsigned long bitmap_no, bitmap_count;
77
78 bitmap_no = (pfn - cma->base_pfn) >> cma->order_per_bit;
79 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
80
81 mutex_lock(&cma->lock);
82 bitmap_clear(cma->bitmap, bitmap_no, bitmap_count);
83 mutex_unlock(&cma->lock);
84}
85
86static int __init cma_activate_area(struct cma *cma)
87{
88 int bitmap_size = BITS_TO_LONGS(cma_bitmap_maxno(cma)) * sizeof(long);
89 unsigned long base_pfn = cma->base_pfn, pfn = base_pfn;
90 unsigned i = cma->count >> pageblock_order;
91 struct zone *zone;
92
93 cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
94
95 if (!cma->bitmap)
96 return -ENOMEM;
97
98 WARN_ON_ONCE(!pfn_valid(pfn));
99 zone = page_zone(pfn_to_page(pfn));
100
101 do {
102 unsigned j;
103
104 base_pfn = pfn;
105 for (j = pageblock_nr_pages; j; --j, pfn++) {
106 WARN_ON_ONCE(!pfn_valid(pfn));
107 /*
108 * alloc_contig_range requires the pfn range
109 * specified to be in the same zone. Make this
110 * simple by forcing the entire CMA resv range
111 * to be in the same zone.
112 */
113 if (page_zone(pfn_to_page(pfn)) != zone)
114 goto err;
115 }
116 init_cma_reserved_pageblock(pfn_to_page(base_pfn));
117 } while (--i);
118
119 mutex_init(&cma->lock);
120 return 0;
121
122err:
123 kfree(cma->bitmap);
124 return -EINVAL;
125}
126
127static int __init cma_init_reserved_areas(void)
128{
129 int i;
130
131 for (i = 0; i < cma_area_count; i++) {
132 int ret = cma_activate_area(&cma_areas[i]);
133
134 if (ret)
135 return ret;
136 }
137
138 return 0;
139}
140core_initcall(cma_init_reserved_areas);
141
142/**
143 * cma_declare_contiguous() - reserve custom contiguous area
144 * @size: Size of the reserved area (in bytes),
145 * @base: Base address of the reserved area optional, use 0 for any
146 * @limit: End address of the reserved memory (optional, 0 for any).
147 * @alignment: Alignment for the CMA area, should be power of 2 or zero
148 * @order_per_bit: Order of pages represented by one bit on bitmap.
149 * @res_cma: Pointer to store the created cma region.
150 * @fixed: hint about where to place the reserved area
151 *
152 * This function reserves memory from early allocator. It should be
153 * called by arch specific code once the early allocator (memblock or bootmem)
154 * has been activated and all other subsystems have already allocated/reserved
155 * memory. This function allows to create custom reserved areas.
156 *
157 * If @fixed is true, reserve contiguous area at exactly @base. If false,
158 * reserve in range from @base to @limit.
159 */
160int __init cma_declare_contiguous(phys_addr_t size,
161 phys_addr_t base, phys_addr_t limit,
162 phys_addr_t alignment, unsigned int order_per_bit,
163 struct cma **res_cma, bool fixed)
164{
165 struct cma *cma = &cma_areas[cma_area_count];
166 int ret = 0;
167
168 pr_debug("%s(size %lx, base %08lx, limit %08lx alignment %08lx)\n",
169 __func__, (unsigned long)size, (unsigned long)base,
170 (unsigned long)limit, (unsigned long)alignment);
171
172 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
173 pr_err("Not enough slots for CMA reserved regions!\n");
174 return -ENOSPC;
175 }
176
177 if (!size)
178 return -EINVAL;
179
180 if (alignment && !is_power_of_2(alignment))
181 return -EINVAL;
182
183 /*
184 * Sanitise input arguments.
185 * Pages both ends in CMA area could be merged into adjacent unmovable
186 * migratetype page by page allocator's buddy algorithm. In the case,
187 * you couldn't get a contiguous memory, which is not what we want.
188 */
189 alignment = max(alignment,
190 (phys_addr_t)PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order));
191 base = ALIGN(base, alignment);
192 size = ALIGN(size, alignment);
193 limit &= ~(alignment - 1);
194
195 /* size should be aligned with order_per_bit */
196 if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit))
197 return -EINVAL;
198
199 /* Reserve memory */
200 if (base && fixed) {
201 if (memblock_is_region_reserved(base, size) ||
202 memblock_reserve(base, size) < 0) {
203 ret = -EBUSY;
204 goto err;
205 }
206 } else {
207 phys_addr_t addr = memblock_alloc_range(size, alignment, base,
208 limit);
209 if (!addr) {
210 ret = -ENOMEM;
211 goto err;
212 } else {
213 base = addr;
214 }
215 }
216
217 /*
218 * Each reserved area must be initialised later, when more kernel
219 * subsystems (like slab allocator) are available.
220 */
221 cma->base_pfn = PFN_DOWN(base);
222 cma->count = size >> PAGE_SHIFT;
223 cma->order_per_bit = order_per_bit;
224 *res_cma = cma;
225 cma_area_count++;
226
227 pr_info("CMA: reserved %ld MiB at %08lx\n", (unsigned long)size / SZ_1M,
228 (unsigned long)base);
229 return 0;
230
231err:
232 pr_err("CMA: failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M);
233 return ret;
234}
235
236/**
237 * cma_alloc() - allocate pages from contiguous area
238 * @cma: Contiguous memory region for which the allocation is performed.
239 * @count: Requested number of pages.
240 * @align: Requested alignment of pages (in PAGE_SIZE order).
241 *
242 * This function allocates part of contiguous memory on specific
243 * contiguous memory area.
244 */
245struct page *cma_alloc(struct cma *cma, int count, unsigned int align)
246{
247 unsigned long mask, pfn, start = 0;
248 unsigned long bitmap_maxno, bitmap_no, bitmap_count;
249 struct page *page = NULL;
250 int ret;
251
252 if (!cma || !cma->count)
253 return NULL;
254
255 pr_debug("%s(cma %p, count %d, align %d)\n", __func__, (void *)cma,
256 count, align);
257
258 if (!count)
259 return NULL;
260
261 mask = cma_bitmap_aligned_mask(cma, align);
262 bitmap_maxno = cma_bitmap_maxno(cma);
263 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
264
265 for (;;) {
266 mutex_lock(&cma->lock);
267 bitmap_no = bitmap_find_next_zero_area(cma->bitmap,
268 bitmap_maxno, start, bitmap_count, mask);
269 if (bitmap_no >= bitmap_maxno) {
270 mutex_unlock(&cma->lock);
271 break;
272 }
273 bitmap_set(cma->bitmap, bitmap_no, bitmap_count);
274 /*
275 * It's safe to drop the lock here. We've marked this region for
276 * our exclusive use. If the migration fails we will take the
277 * lock again and unmark it.
278 */
279 mutex_unlock(&cma->lock);
280
281 pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit);
282 mutex_lock(&cma_mutex);
283 ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA);
284 mutex_unlock(&cma_mutex);
285 if (ret == 0) {
286 page = pfn_to_page(pfn);
287 break;
288 } else if (ret != -EBUSY) {
289 cma_clear_bitmap(cma, pfn, count);
290 break;
291 }
292 cma_clear_bitmap(cma, pfn, count);
293 pr_debug("%s(): memory range at %p is busy, retrying\n",
294 __func__, pfn_to_page(pfn));
295 /* try again with a bit different memory target */
296 start = bitmap_no + mask + 1;
297 }
298
299 pr_debug("%s(): returned %p\n", __func__, page);
300 return page;
301}
302
303/**
304 * cma_release() - release allocated pages
305 * @cma: Contiguous memory region for which the allocation is performed.
306 * @pages: Allocated pages.
307 * @count: Number of allocated pages.
308 *
309 * This function releases memory allocated by alloc_cma().
310 * It returns false when provided pages do not belong to contiguous area and
311 * true otherwise.
312 */
313bool cma_release(struct cma *cma, struct page *pages, int count)
314{
315 unsigned long pfn;
316
317 if (!cma || !pages)
318 return false;
319
320 pr_debug("%s(page %p)\n", __func__, (void *)pages);
321
322 pfn = page_to_pfn(pages);
323
324 if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count)
325 return false;
326
327 VM_BUG_ON(pfn + count > cma->base_pfn + cma->count);
328
329 free_contig_range(pfn, count);
330 cma_clear_bitmap(cma, pfn, count);
331
332 return true;
333}