blob: 94b3460cd608aa26163ef84f99123d74c4a2d657 [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
Joonsoo Kima2541292014-08-06 16:05:25 -0700137 return 0;
138
139err:
140 kfree(cma->bitmap);
Laurent Pinchartf022d8c2014-10-24 13:18:39 +0300141 cma->count = 0;
Joonsoo Kima2541292014-08-06 16:05:25 -0700142 return -EINVAL;
143}
144
145static int __init cma_init_reserved_areas(void)
146{
147 int i;
148
149 for (i = 0; i < cma_area_count; i++) {
150 int ret = cma_activate_area(&cma_areas[i]);
151
152 if (ret)
153 return ret;
154 }
155
156 return 0;
157}
158core_initcall(cma_init_reserved_areas);
159
160/**
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700161 * cma_init_reserved_mem() - create custom contiguous area from reserved memory
162 * @base: Base address of the reserved area
163 * @size: Size of the reserved area (in bytes),
164 * @order_per_bit: Order of pages represented by one bit on bitmap.
165 * @res_cma: Pointer to store the created cma region.
166 *
167 * This function creates custom contiguous area from already reserved memory.
168 */
169int __init cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
Sasha Levinac173822015-04-14 15:47:04 -0700170 unsigned int order_per_bit,
171 struct cma **res_cma)
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700172{
173 struct cma *cma;
174 phys_addr_t alignment;
175
176 /* Sanity checks */
177 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
178 pr_err("Not enough slots for CMA reserved regions!\n");
179 return -ENOSPC;
180 }
181
182 if (!size || !memblock_is_region_reserved(base, size))
183 return -EINVAL;
184
Shailendra Verma0f96ae22015-06-24 16:58:03 -0700185 /* ensure minimal alignment required by mm core */
Stephen Rothwellbadbda52016-05-27 14:27:41 -0700186 alignment = PAGE_SIZE <<
187 max_t(unsigned long, MAX_ORDER - 1, pageblock_order);
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700188
189 /* alignment should be aligned with order_per_bit */
190 if (!IS_ALIGNED(alignment >> PAGE_SHIFT, 1 << order_per_bit))
191 return -EINVAL;
192
193 if (ALIGN(base, alignment) != base || ALIGN(size, alignment) != size)
194 return -EINVAL;
195
196 /*
197 * Each reserved area must be initialised later, when more kernel
198 * subsystems (like slab allocator) are available.
199 */
200 cma = &cma_areas[cma_area_count];
201 cma->base_pfn = PFN_DOWN(base);
202 cma->count = size >> PAGE_SHIFT;
203 cma->order_per_bit = order_per_bit;
204 *res_cma = cma;
205 cma_area_count++;
George G. Davis94737a82015-02-11 15:26:27 -0800206 totalcma_pages += (size / PAGE_SIZE);
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700207
208 return 0;
209}
210
211/**
Joonsoo Kima2541292014-08-06 16:05:25 -0700212 * cma_declare_contiguous() - reserve custom contiguous area
Joonsoo Kima2541292014-08-06 16:05:25 -0700213 * @base: Base address of the reserved area optional, use 0 for any
Joonsoo Kimc1f733aa2014-08-06 16:05:32 -0700214 * @size: Size of the reserved area (in bytes),
Joonsoo Kima2541292014-08-06 16:05:25 -0700215 * @limit: End address of the reserved memory (optional, 0 for any).
216 * @alignment: Alignment for the CMA area, should be power of 2 or zero
217 * @order_per_bit: Order of pages represented by one bit on bitmap.
Joonsoo Kima2541292014-08-06 16:05:25 -0700218 * @fixed: hint about where to place the reserved area
Joonsoo Kimc1f733aa2014-08-06 16:05:32 -0700219 * @res_cma: Pointer to store the created cma region.
Joonsoo Kima2541292014-08-06 16:05:25 -0700220 *
221 * This function reserves memory from early allocator. It should be
222 * called by arch specific code once the early allocator (memblock or bootmem)
223 * has been activated and all other subsystems have already allocated/reserved
224 * memory. This function allows to create custom reserved areas.
225 *
226 * If @fixed is true, reserve contiguous area at exactly @base. If false,
227 * reserve in range from @base to @limit.
228 */
Joonsoo Kimc1f733aa2014-08-06 16:05:32 -0700229int __init cma_declare_contiguous(phys_addr_t base,
230 phys_addr_t size, phys_addr_t limit,
Joonsoo Kima2541292014-08-06 16:05:25 -0700231 phys_addr_t alignment, unsigned int order_per_bit,
Joonsoo Kimc1f733aa2014-08-06 16:05:32 -0700232 bool fixed, struct cma **res_cma)
Joonsoo Kima2541292014-08-06 16:05:25 -0700233{
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700234 phys_addr_t memblock_end = memblock_end_of_DRAM();
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800235 phys_addr_t highmem_start;
Joonsoo Kima2541292014-08-06 16:05:25 -0700236 int ret = 0;
237
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800238 /*
Laura Abbott2dece442017-01-10 13:35:41 -0800239 * We can't use __pa(high_memory) directly, since high_memory
240 * isn't a valid direct map VA, and DEBUG_VIRTUAL will (validly)
241 * complain. Find the boundary by adding one to the last valid
242 * address.
Joonsoo Kim6b101e22014-12-10 15:41:12 -0800243 */
Laura Abbott2dece442017-01-10 13:35:41 -0800244 highmem_start = __pa(high_memory - 1) + 1;
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300245 pr_debug("%s(size %pa, base %pa, limit %pa alignment %pa)\n",
246 __func__, &size, &base, &limit, &alignment);
Joonsoo Kima2541292014-08-06 16:05:25 -0700247
248 if (cma_area_count == ARRAY_SIZE(cma_areas)) {
249 pr_err("Not enough slots for CMA reserved regions!\n");
250 return -ENOSPC;
251 }
252
253 if (!size)
254 return -EINVAL;
255
256 if (alignment && !is_power_of_2(alignment))
257 return -EINVAL;
258
259 /*
260 * Sanitise input arguments.
261 * Pages both ends in CMA area could be merged into adjacent unmovable
262 * migratetype page by page allocator's buddy algorithm. In the case,
263 * you couldn't get a contiguous memory, which is not what we want.
264 */
Stephen Rothwellbadbda52016-05-27 14:27:41 -0700265 alignment = max(alignment, (phys_addr_t)PAGE_SIZE <<
266 max_t(unsigned long, MAX_ORDER - 1, pageblock_order));
Joonsoo Kima2541292014-08-06 16:05:25 -0700267 base = ALIGN(base, alignment);
268 size = ALIGN(size, alignment);
269 limit &= ~(alignment - 1);
270
Laurent Pinchart800a85d2014-10-24 13:18:40 +0300271 if (!base)
272 fixed = false;
273
Joonsoo Kima2541292014-08-06 16:05:25 -0700274 /* size should be aligned with order_per_bit */
275 if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit))
276 return -EINVAL;
277
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700278 /*
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300279 * If allocating at a fixed base the request region must not cross the
280 * low/high memory boundary.
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700281 */
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300282 if (fixed && base < highmem_start && base + size > highmem_start) {
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700283 ret = -EINVAL;
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300284 pr_err("Region at %pa defined on low/high memory boundary (%pa)\n",
285 &base, &highmem_start);
Marek Szyprowskif7426b92014-10-09 15:26:47 -0700286 goto err;
287 }
288
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300289 /*
290 * If the limit is unspecified or above the memblock end, its effective
291 * value will be the memblock end. Set it explicitly to simplify further
292 * checks.
293 */
294 if (limit == 0 || limit > memblock_end)
295 limit = memblock_end;
296
Joonsoo Kima2541292014-08-06 16:05:25 -0700297 /* Reserve memory */
Laurent Pinchart800a85d2014-10-24 13:18:40 +0300298 if (fixed) {
Joonsoo Kima2541292014-08-06 16:05:25 -0700299 if (memblock_is_region_reserved(base, size) ||
300 memblock_reserve(base, size) < 0) {
301 ret = -EBUSY;
302 goto err;
303 }
304 } else {
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300305 phys_addr_t addr = 0;
306
307 /*
308 * All pages in the reserved area must come from the same zone.
309 * If the requested region crosses the low/high memory boundary,
310 * try allocating from high memory first and fall back to low
311 * memory in case of failure.
312 */
313 if (base < highmem_start && limit > highmem_start) {
314 addr = memblock_alloc_range(size, alignment,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700315 highmem_start, limit,
316 MEMBLOCK_NONE);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300317 limit = highmem_start;
Joonsoo Kima2541292014-08-06 16:05:25 -0700318 }
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300319
320 if (!addr) {
321 addr = memblock_alloc_range(size, alignment, base,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700322 limit,
323 MEMBLOCK_NONE);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300324 if (!addr) {
325 ret = -ENOMEM;
326 goto err;
327 }
328 }
329
Thierry Reding620951e2014-12-12 16:58:31 -0800330 /*
331 * kmemleak scans/reads tracked objects for pointers to other
332 * objects but this address isn't mapped and accessible
333 */
Catalin Marinas9099dae2016-10-11 13:55:11 -0700334 kmemleak_ignore_phys(addr);
Laurent Pinchart16195dd2014-10-24 13:18:41 +0300335 base = addr;
Joonsoo Kima2541292014-08-06 16:05:25 -0700336 }
337
Marek Szyprowskide9e14e2014-10-13 15:51:09 -0700338 ret = cma_init_reserved_mem(base, size, order_per_bit, res_cma);
339 if (ret)
340 goto err;
Joonsoo Kima2541292014-08-06 16:05:25 -0700341
Laurent Pinchart56fa4f62014-10-24 13:18:42 +0300342 pr_info("Reserved %ld MiB at %pa\n", (unsigned long)size / SZ_1M,
343 &base);
Joonsoo Kima2541292014-08-06 16:05:25 -0700344 return 0;
345
346err:
Joonsoo Kim0de9d2e2014-08-06 16:05:34 -0700347 pr_err("Failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M);
Joonsoo Kima2541292014-08-06 16:05:25 -0700348 return ret;
349}
350
351/**
352 * cma_alloc() - allocate pages from contiguous area
353 * @cma: Contiguous memory region for which the allocation is performed.
354 * @count: Requested number of pages.
355 * @align: Requested alignment of pages (in PAGE_SIZE order).
356 *
357 * This function allocates part of contiguous memory on specific
358 * contiguous memory area.
359 */
Rohit Vaswani67a2e2132015-10-22 13:32:11 -0700360struct page *cma_alloc(struct cma *cma, size_t count, unsigned int align)
Joonsoo Kima2541292014-08-06 16:05:25 -0700361{
Andrew Morton3acaea62015-11-05 18:50:08 -0800362 unsigned long mask, offset;
363 unsigned long pfn = -1;
364 unsigned long start = 0;
Joonsoo Kima2541292014-08-06 16:05:25 -0700365 unsigned long bitmap_maxno, bitmap_no, bitmap_count;
366 struct page *page = NULL;
367 int ret;
368
369 if (!cma || !cma->count)
370 return NULL;
371
Rohit Vaswani67a2e2132015-10-22 13:32:11 -0700372 pr_debug("%s(cma %p, count %zu, align %d)\n", __func__, (void *)cma,
Joonsoo Kima2541292014-08-06 16:05:25 -0700373 count, align);
374
375 if (!count)
376 return NULL;
377
378 mask = cma_bitmap_aligned_mask(cma, align);
Gregory Fongb5be83e2014-12-12 16:54:48 -0800379 offset = cma_bitmap_aligned_offset(cma, align);
Joonsoo Kima2541292014-08-06 16:05:25 -0700380 bitmap_maxno = cma_bitmap_maxno(cma);
381 bitmap_count = cma_bitmap_pages_to_bits(cma, count);
382
Shiraz Hashim6b36ba52016-11-10 10:46:16 -0800383 if (bitmap_count > bitmap_maxno)
384 return NULL;
385
Joonsoo Kima2541292014-08-06 16:05:25 -0700386 for (;;) {
387 mutex_lock(&cma->lock);
Gregory Fongb5be83e2014-12-12 16:54:48 -0800388 bitmap_no = bitmap_find_next_zero_area_off(cma->bitmap,
389 bitmap_maxno, start, bitmap_count, mask,
390 offset);
Joonsoo Kima2541292014-08-06 16:05:25 -0700391 if (bitmap_no >= bitmap_maxno) {
392 mutex_unlock(&cma->lock);
393 break;
394 }
395 bitmap_set(cma->bitmap, bitmap_no, bitmap_count);
396 /*
397 * It's safe to drop the lock here. We've marked this region for
398 * our exclusive use. If the migration fails we will take the
399 * lock again and unmark it.
400 */
401 mutex_unlock(&cma->lock);
402
403 pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit);
404 mutex_lock(&cma_mutex);
405 ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA);
406 mutex_unlock(&cma_mutex);
407 if (ret == 0) {
408 page = pfn_to_page(pfn);
409 break;
Joonsoo Kima2541292014-08-06 16:05:25 -0700410 }
Joonsoo Kimb7155e72014-08-06 16:05:30 -0700411
Joonsoo Kima2541292014-08-06 16:05:25 -0700412 cma_clear_bitmap(cma, pfn, count);
Joonsoo Kimb7155e72014-08-06 16:05:30 -0700413 if (ret != -EBUSY)
414 break;
415
Joonsoo Kima2541292014-08-06 16:05:25 -0700416 pr_debug("%s(): memory range at %p is busy, retrying\n",
417 __func__, pfn_to_page(pfn));
418 /* try again with a bit different memory target */
419 start = bitmap_no + mask + 1;
420 }
421
Andrew Morton3acaea62015-11-05 18:50:08 -0800422 trace_cma_alloc(pfn, page, count, align);
Stefan Strogin99e8ea62015-04-15 16:14:50 -0700423
Joonsoo Kima2541292014-08-06 16:05:25 -0700424 pr_debug("%s(): returned %p\n", __func__, page);
425 return page;
426}
427
428/**
429 * cma_release() - release allocated pages
430 * @cma: Contiguous memory region for which the allocation is performed.
431 * @pages: Allocated pages.
432 * @count: Number of allocated pages.
433 *
434 * This function releases memory allocated by alloc_cma().
435 * It returns false when provided pages do not belong to contiguous area and
436 * true otherwise.
437 */
Sasha Levinac173822015-04-14 15:47:04 -0700438bool cma_release(struct cma *cma, const struct page *pages, unsigned int count)
Joonsoo Kima2541292014-08-06 16:05:25 -0700439{
440 unsigned long pfn;
441
442 if (!cma || !pages)
443 return false;
444
445 pr_debug("%s(page %p)\n", __func__, (void *)pages);
446
447 pfn = page_to_pfn(pages);
448
449 if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count)
450 return false;
451
452 VM_BUG_ON(pfn + count > cma->base_pfn + cma->count);
453
454 free_contig_range(pfn, count);
455 cma_clear_bitmap(cma, pfn, count);
Stefan Strogin99e8ea62015-04-15 16:14:50 -0700456 trace_cma_release(pfn, pages, count);
Joonsoo Kima2541292014-08-06 16:05:25 -0700457
458 return true;
459}