blob: 0306bab305dc07b78aca5b13a7b2d1269f7051eb [file] [log] [blame]
Joonsoo Kima2541292014-08-06 16:05:25 -07001/*
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
Stefan Strogin99e8ea62015-04-15 16:14:50 -070026#define CREATE_TRACE_POINTS
Joonsoo Kima2541292014-08-06 16:05:25 -070027
28#include <linux/memblock.h>
29#include <linux/err.h>
30#include <linux/mm.h>
31#include <linux/mutex.h>
32#include <linux/sizes.h>
33#include <linux/slab.h>
34#include <linux/log2.h>
35#include <linux/cma.h>
Marek Szyprowskif7426b92014-10-09 15:26:47 -070036#include <linux/highmem.h>
Thierry Reding620951e2014-12-12 16:58:31 -080037#include <linux/io.h>
Stefan Strogin99e8ea62015-04-15 16:14:50 -070038#include <trace/events/cma.h>
Joonsoo Kima2541292014-08-06 16:05:25 -070039
Sasha Levin28b24c12015-04-14 15:44:57 -070040#include "cma.h"
Joonsoo Kima2541292014-08-06 16:05:25 -070041
Sasha Levin28b24c12015-04-14 15:44:57 -070042struct cma cma_areas[MAX_CMA_AREAS];
43unsigned cma_area_count;
Joonsoo Kima2541292014-08-06 16:05:25 -070044static DEFINE_MUTEX(cma_mutex);
45
Sasha Levinac173822015-04-14 15:47:04 -070046phys_addr_t cma_get_base(const struct cma *cma)
Joonsoo Kima2541292014-08-06 16:05:25 -070047{
48 return PFN_PHYS(cma->base_pfn);
49}
50
Sasha Levinac173822015-04-14 15:47:04 -070051unsigned long cma_get_size(const struct cma *cma)
Joonsoo Kima2541292014-08-06 16:05:25 -070052{
53 return cma->count << PAGE_SHIFT;
54}
55
Sasha Levinac173822015-04-14 15:47:04 -070056static unsigned long cma_bitmap_aligned_mask(const struct cma *cma,
57 int align_order)
Joonsoo Kima2541292014-08-06 16:05:25 -070058{
Weijie Yang68faed62014-10-13 15:51:03 -070059 if (align_order <= cma->order_per_bit)
60 return 0;
61 return (1UL << (align_order - cma->order_per_bit)) - 1;
Joonsoo Kima2541292014-08-06 16:05:25 -070062}
63
Danesh Petigara850fc432015-03-12 16:25:57 -070064/*
65 * Find a PFN aligned to the specified order and return an offset represented in
66 * order_per_bits.
67 */
Sasha Levinac173822015-04-14 15:47:04 -070068static unsigned long cma_bitmap_aligned_offset(const struct cma *cma,
69 int align_order)
Gregory Fongb5be83e2014-12-12 16:54:48 -080070{
Gregory Fongb5be83e2014-12-12 16:54:48 -080071 if (align_order <= cma->order_per_bit)
72 return 0;
Danesh Petigara850fc432015-03-12 16:25:57 -070073
74 return (ALIGN(cma->base_pfn, (1UL << align_order))
75 - cma->base_pfn) >> cma->order_per_bit;
Gregory Fongb5be83e2014-12-12 16:54:48 -080076}
77
Sasha Levinac173822015-04-14 15:47:04 -070078static unsigned long cma_bitmap_pages_to_bits(const struct cma *cma,
79 unsigned long pages)
Joonsoo Kima2541292014-08-06 16:05:25 -070080{
81 return ALIGN(pages, 1UL << cma->order_per_bit) >> cma->order_per_bit;
82}
83
Sasha Levinac173822015-04-14 15:47:04 -070084static void cma_clear_bitmap(struct cma *cma, unsigned long pfn,
85 unsigned int count)
Joonsoo Kima2541292014-08-06 16:05:25 -070086{
87 unsigned long bitmap_no, bitmap_count;
88
89 bitmap_no = (pfn - cma->base_pfn) >> cma->order_per_bit;
90 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
91
92 mutex_lock(&cma->lock);
93 bitmap_clear(cma->bitmap, bitmap_no, bitmap_count);
94 mutex_unlock(&cma->lock);
95}
96
97static int __init cma_activate_area(struct cma *cma)
98{
99 int bitmap_size = BITS_TO_LONGS(cma_bitmap_maxno(cma)) * sizeof(long);
100 unsigned long base_pfn = cma->base_pfn, pfn = base_pfn;
101 unsigned i = cma->count >> pageblock_order;
102 struct zone *zone;
103
104 cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
105
106 if (!cma->bitmap)
107 return -ENOMEM;
108
109 WARN_ON_ONCE(!pfn_valid(pfn));
110 zone = page_zone(pfn_to_page(pfn));
111
112 do {
113 unsigned j;
114
115 base_pfn = pfn;
116 for (j = pageblock_nr_pages; j; --j, pfn++) {
117 WARN_ON_ONCE(!pfn_valid(pfn));
118 /*
119 * alloc_contig_range requires the pfn range
120 * specified to be in the same zone. Make this
121 * simple by forcing the entire CMA resv range
122 * to be in the same zone.
123 */
124 if (page_zone(pfn_to_page(pfn)) != zone)
125 goto err;
126 }
127 init_cma_reserved_pageblock(pfn_to_page(base_pfn));
128 } while (--i);
129
130 mutex_init(&cma->lock);
Sasha Levin26b02a12015-04-14 15:44:59 -0700131
132#ifdef CONFIG_CMA_DEBUGFS
133 INIT_HLIST_HEAD(&cma->mem_head);
134 spin_lock_init(&cma->mem_head_lock);
135#endif
136
Shiraz Hashima24e0232016-02-15 16:26:37 +0530137 if (!PageHighMem(pfn_to_page(cma->base_pfn)))
138 kmemleak_free_part(__va(cma->base_pfn << PAGE_SHIFT),
139 cma->count << PAGE_SHIFT);
140
Joonsoo Kima2541292014-08-06 16:05:25 -0700141 return 0;
142
143err:
144 kfree(cma->bitmap);
Laurent Pinchartf022d8c2014-10-24 13:18:39 +0300145 cma->count = 0;
Joonsoo Kima2541292014-08-06 16:05:25 -0700146 return -EINVAL;
147}
148
149static int __init cma_init_reserved_areas(void)
150{
151 int i;
152
153 for (i = 0; i < cma_area_count; i++) {
154 int ret = cma_activate_area(&cma_areas[i]);
155
156 if (ret)
157 return ret;
158 }
159
160 return 0;
161}
162core_initcall(cma_init_reserved_areas);
163
164/**
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700165 * cma_init_reserved_mem() - create custom contiguous area from reserved memory
166 * @base: Base address of the reserved area
167 * @size: Size of the reserved area (in bytes),
168 * @order_per_bit: Order of pages represented by one bit on bitmap.
169 * @res_cma: Pointer to store the created cma region.
170 *
171 * This function creates custom contiguous area from already reserved memory.
172 */
173int __init cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
Sasha Levinac173822015-04-14 15:47:04 -0700174 unsigned int order_per_bit,
175 struct cma **res_cma)
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700176{
177 struct cma *cma;
178 phys_addr_t alignment;
179
180 /* Sanity checks */
181 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
182 pr_err("Not enough slots for CMA reserved regions!\n");
183 return -ENOSPC;
184 }
185
186 if (!size || !memblock_is_region_reserved(base, size))
187 return -EINVAL;
188
Shailendra Verma0f96ae22015-06-24 16:58:03 -0700189 /* ensure minimal alignment required by mm core */
Stephen Rothwellbadbda52016-05-27 14:27:41 -0700190 alignment = PAGE_SIZE <<
191 max_t(unsigned long, MAX_ORDER - 1, pageblock_order);
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700192
193 /* alignment should be aligned with order_per_bit */
194 if (!IS_ALIGNED(alignment >> PAGE_SHIFT, 1 << order_per_bit))
195 return -EINVAL;
196
197 if (ALIGN(base, alignment) != base || ALIGN(size, alignment) != size)
198 return -EINVAL;
199
200 /*
201 * Each reserved area must be initialised later, when more kernel
202 * subsystems (like slab allocator) are available.
203 */
204 cma = &cma_areas[cma_area_count];
205 cma->base_pfn = PFN_DOWN(base);
206 cma->count = size >> PAGE_SHIFT;
207 cma->order_per_bit = order_per_bit;
208 *res_cma = cma;
209 cma_area_count++;
George G. Davis94737a82015-02-11 15:26:27 -0800210 totalcma_pages += (size / PAGE_SIZE);
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700211
212 return 0;
213}
214
215/**
Joonsoo Kima2541292014-08-06 16:05:25 -0700216 * cma_declare_contiguous() - reserve custom contiguous area
Joonsoo Kima2541292014-08-06 16:05:25 -0700217 * @base: Base address of the reserved area optional, use 0 for any
Joonsoo Kimc1f733a2014-08-06 16:05:32 -0700218 * @size: Size of the reserved area (in bytes),
Joonsoo Kima2541292014-08-06 16:05:25 -0700219 * @limit: End address of the reserved memory (optional, 0 for any).
220 * @alignment: Alignment for the CMA area, should be power of 2 or zero
221 * @order_per_bit: Order of pages represented by one bit on bitmap.
Joonsoo Kima2541292014-08-06 16:05:25 -0700222 * @fixed: hint about where to place the reserved area
Joonsoo Kimc1f733a2014-08-06 16:05:32 -0700223 * @res_cma: Pointer to store the created cma region.
Joonsoo Kima2541292014-08-06 16:05:25 -0700224 *
225 * This function reserves memory from early allocator. It should be
226 * called by arch specific code once the early allocator (memblock or bootmem)
227 * has been activated and all other subsystems have already allocated/reserved
228 * memory. This function allows to create custom reserved areas.
229 *
230 * If @fixed is true, reserve contiguous area at exactly @base. If false,
231 * reserve in range from @base to @limit.
232 */
Joonsoo Kimc1f733a2014-08-06 16:05:32 -0700233int __init cma_declare_contiguous(phys_addr_t base,
234 phys_addr_t size, phys_addr_t limit,
Joonsoo Kima2541292014-08-06 16:05:25 -0700235 phys_addr_t alignment, unsigned int order_per_bit,
Joonsoo Kimc1f733a2014-08-06 16:05:32 -0700236 bool fixed, struct cma **res_cma)
Joonsoo Kima2541292014-08-06 16:05:25 -0700237{
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700238 phys_addr_t memblock_end = memblock_end_of_DRAM();
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800239 phys_addr_t highmem_start;
Joonsoo Kima2541292014-08-06 16:05:25 -0700240 int ret = 0;
241
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800242#ifdef CONFIG_X86
243 /*
244 * high_memory isn't direct mapped memory so retrieving its physical
245 * address isn't appropriate. But it would be useful to check the
Shailendra Verma0f96ae22015-06-24 16:58:03 -0700246 * physical address of the highmem boundary so it's justifiable to get
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800247 * the physical address from it. On x86 there is a validation check for
248 * this case, so the following workaround is needed to avoid it.
249 */
250 highmem_start = __pa_nodebug(high_memory);
251#else
252 highmem_start = __pa(high_memory);
253#endif
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300254 pr_debug("%s(size %pa, base %pa, limit %pa alignment %pa)\n",
255 __func__, &size, &base, &limit, &alignment);
Joonsoo Kima2541292014-08-06 16:05:25 -0700256
257 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
258 pr_err("Not enough slots for CMA reserved regions!\n");
259 return -ENOSPC;
260 }
261
262 if (!size)
263 return -EINVAL;
264
265 if (alignment && !is_power_of_2(alignment))
266 return -EINVAL;
267
268 /*
269 * Sanitise input arguments.
270 * Pages both ends in CMA area could be merged into adjacent unmovable
271 * migratetype page by page allocator's buddy algorithm. In the case,
272 * you couldn't get a contiguous memory, which is not what we want.
273 */
Stephen Rothwellbadbda52016-05-27 14:27:41 -0700274 alignment = max(alignment, (phys_addr_t)PAGE_SIZE <<
275 max_t(unsigned long, MAX_ORDER - 1, pageblock_order));
Joonsoo Kima2541292014-08-06 16:05:25 -0700276 base = ALIGN(base, alignment);
277 size = ALIGN(size, alignment);
278 limit &= ~(alignment - 1);
279
Laurent Pinchart800a85d2014-10-24 13:18:40 +0300280 if (!base)
281 fixed = false;
282
Joonsoo Kima2541292014-08-06 16:05:25 -0700283 /* size should be aligned with order_per_bit */
284 if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit))
285 return -EINVAL;
286
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700287 /*
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300288 * If allocating at a fixed base the request region must not cross the
289 * low/high memory boundary.
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700290 */
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300291 if (fixed && base < highmem_start && base + size > highmem_start) {
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700292 ret = -EINVAL;
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300293 pr_err("Region at %pa defined on low/high memory boundary (%pa)\n",
294 &base, &highmem_start);
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700295 goto err;
296 }
297
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300298 /*
299 * If the limit is unspecified or above the memblock end, its effective
300 * value will be the memblock end. Set it explicitly to simplify further
301 * checks.
302 */
303 if (limit == 0 || limit > memblock_end)
304 limit = memblock_end;
305
Joonsoo Kima2541292014-08-06 16:05:25 -0700306 /* Reserve memory */
Laurent Pinchart800a85d2014-10-24 13:18:40 +0300307 if (fixed) {
Joonsoo Kima2541292014-08-06 16:05:25 -0700308 if (memblock_is_region_reserved(base, size) ||
309 memblock_reserve(base, size) < 0) {
310 ret = -EBUSY;
311 goto err;
312 }
313 } else {
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300314 phys_addr_t addr = 0;
315
316 /*
317 * All pages in the reserved area must come from the same zone.
318 * If the requested region crosses the low/high memory boundary,
319 * try allocating from high memory first and fall back to low
320 * memory in case of failure.
321 */
322 if (base < highmem_start && limit > highmem_start) {
323 addr = memblock_alloc_range(size, alignment,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700324 highmem_start, limit,
325 MEMBLOCK_NONE);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300326 limit = highmem_start;
Joonsoo Kima2541292014-08-06 16:05:25 -0700327 }
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300328
329 if (!addr) {
330 addr = memblock_alloc_range(size, alignment, base,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700331 limit,
332 MEMBLOCK_NONE);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300333 if (!addr) {
334 ret = -ENOMEM;
335 goto err;
336 }
337 }
338
Thierry Reding620951e2014-12-12 16:58:31 -0800339 /*
340 * kmemleak scans/reads tracked objects for pointers to other
341 * objects but this address isn't mapped and accessible
342 */
Catalin Marinas9099dae2016-10-11 13:55:11 -0700343 kmemleak_ignore_phys(addr);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300344 base = addr;
Joonsoo Kima2541292014-08-06 16:05:25 -0700345 }
346
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700347 ret = cma_init_reserved_mem(base, size, order_per_bit, res_cma);
348 if (ret)
349 goto err;
Joonsoo Kima2541292014-08-06 16:05:25 -0700350
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300351 pr_info("Reserved %ld MiB at %pa\n", (unsigned long)size / SZ_1M,
352 &base);
Joonsoo Kima2541292014-08-06 16:05:25 -0700353 return 0;
354
355err:
Joonsoo Kim0de9d2e2014-08-06 16:05:34 -0700356 pr_err("Failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M);
Joonsoo Kima2541292014-08-06 16:05:25 -0700357 return ret;
358}
359
360/**
361 * cma_alloc() - allocate pages from contiguous area
362 * @cma: Contiguous memory region for which the allocation is performed.
363 * @count: Requested number of pages.
364 * @align: Requested alignment of pages (in PAGE_SIZE order).
365 *
366 * This function allocates part of contiguous memory on specific
367 * contiguous memory area.
368 */
Rohit Vaswani67a2e2132015-10-22 13:32:11 -0700369struct page *cma_alloc(struct cma *cma, size_t count, unsigned int align)
Joonsoo Kima2541292014-08-06 16:05:25 -0700370{
Andrew Morton3acaea62015-11-05 18:50:08 -0800371 unsigned long mask, offset;
372 unsigned long pfn = -1;
373 unsigned long start = 0;
Joonsoo Kima2541292014-08-06 16:05:25 -0700374 unsigned long bitmap_maxno, bitmap_no, bitmap_count;
375 struct page *page = NULL;
376 int ret;
377
378 if (!cma || !cma->count)
379 return NULL;
380
Rohit Vaswani67a2e2132015-10-22 13:32:11 -0700381 pr_debug("%s(cma %p, count %zu, align %d)\n", __func__, (void *)cma,
Joonsoo Kima2541292014-08-06 16:05:25 -0700382 count, align);
383
384 if (!count)
385 return NULL;
386
Liam Mark9645c9e2015-11-25 14:37:54 -0800387 trace_cma_alloc_start(count, align);
388
Joonsoo Kima2541292014-08-06 16:05:25 -0700389 mask = cma_bitmap_aligned_mask(cma, align);
Gregory Fongb5be83e2014-12-12 16:54:48 -0800390 offset = cma_bitmap_aligned_offset(cma, align);
Joonsoo Kima2541292014-08-06 16:05:25 -0700391 bitmap_maxno = cma_bitmap_maxno(cma);
392 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
393
Shiraz Hashim6b36ba52016-11-10 10:46:16 -0800394 if (bitmap_count > bitmap_maxno)
395 return NULL;
396
Joonsoo Kima2541292014-08-06 16:05:25 -0700397 for (;;) {
398 mutex_lock(&cma->lock);
Gregory Fongb5be83e2014-12-12 16:54:48 -0800399 bitmap_no = bitmap_find_next_zero_area_off(cma->bitmap,
400 bitmap_maxno, start, bitmap_count, mask,
401 offset);
Joonsoo Kima2541292014-08-06 16:05:25 -0700402 if (bitmap_no >= bitmap_maxno) {
403 mutex_unlock(&cma->lock);
404 break;
405 }
406 bitmap_set(cma->bitmap, bitmap_no, bitmap_count);
407 /*
408 * It's safe to drop the lock here. We've marked this region for
409 * our exclusive use. If the migration fails we will take the
410 * lock again and unmark it.
411 */
412 mutex_unlock(&cma->lock);
413
414 pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit);
415 mutex_lock(&cma_mutex);
416 ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA);
417 mutex_unlock(&cma_mutex);
418 if (ret == 0) {
419 page = pfn_to_page(pfn);
420 break;
Joonsoo Kima2541292014-08-06 16:05:25 -0700421 }
Joonsoo Kimb7155e72014-08-06 16:05:30 -0700422
Joonsoo Kima2541292014-08-06 16:05:25 -0700423 cma_clear_bitmap(cma, pfn, count);
Joonsoo Kimb7155e72014-08-06 16:05:30 -0700424 if (ret != -EBUSY)
425 break;
426
Joonsoo Kima2541292014-08-06 16:05:25 -0700427 pr_debug("%s(): memory range at %p is busy, retrying\n",
428 __func__, pfn_to_page(pfn));
Liam Mark9645c9e2015-11-25 14:37:54 -0800429
430 trace_cma_alloc_busy_retry(pfn, pfn_to_page(pfn), count, align);
Joonsoo Kima2541292014-08-06 16:05:25 -0700431 /* try again with a bit different memory target */
432 start = bitmap_no + mask + 1;
433 }
434
Andrew Morton3acaea62015-11-05 18:50:08 -0800435 trace_cma_alloc(pfn, page, count, align);
Stefan Strogin99e8ea62015-04-15 16:14:50 -0700436
Joonsoo Kima2541292014-08-06 16:05:25 -0700437 pr_debug("%s(): returned %p\n", __func__, page);
438 return page;
439}
440
441/**
442 * cma_release() - release allocated pages
443 * @cma: Contiguous memory region for which the allocation is performed.
444 * @pages: Allocated pages.
445 * @count: Number of allocated pages.
446 *
447 * This function releases memory allocated by alloc_cma().
448 * It returns false when provided pages do not belong to contiguous area and
449 * true otherwise.
450 */
Sasha Levinac173822015-04-14 15:47:04 -0700451bool cma_release(struct cma *cma, const struct page *pages, unsigned int count)
Joonsoo Kima2541292014-08-06 16:05:25 -0700452{
453 unsigned long pfn;
454
455 if (!cma || !pages)
456 return false;
457
458 pr_debug("%s(page %p)\n", __func__, (void *)pages);
459
460 pfn = page_to_pfn(pages);
461
462 if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count)
463 return false;
464
465 VM_BUG_ON(pfn + count > cma->base_pfn + cma->count);
466
467 free_contig_range(pfn, count);
468 cma_clear_bitmap(cma, pfn, count);
Stefan Strogin99e8ea62015-04-15 16:14:50 -0700469 trace_cma_release(pfn, pages, count);
Joonsoo Kima2541292014-08-06 16:05:25 -0700470
471 return true;
472}