]>
Commit | Line | Data |
---|---|---|
a254129e JK |
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 <[email protected]> | |
9 | * Michal Nazarewicz <[email protected]> | |
10 | * Aneesh Kumar K.V <[email protected]> | |
11 | * Joonsoo Kim <[email protected]> | |
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> | |
f7426b98 | 35 | #include <linux/highmem.h> |
620951e2 | 36 | #include <linux/io.h> |
a254129e | 37 | |
28b24c1f SL |
38 | #include "cma.h" |
39 | ||
40 | struct cma cma_areas[MAX_CMA_AREAS]; | |
41 | unsigned cma_area_count; | |
a254129e JK |
42 | static DEFINE_MUTEX(cma_mutex); |
43 | ||
44 | phys_addr_t cma_get_base(struct cma *cma) | |
45 | { | |
46 | return PFN_PHYS(cma->base_pfn); | |
47 | } | |
48 | ||
49 | unsigned long cma_get_size(struct cma *cma) | |
50 | { | |
51 | return cma->count << PAGE_SHIFT; | |
52 | } | |
53 | ||
54 | static unsigned long cma_bitmap_aligned_mask(struct cma *cma, int align_order) | |
55 | { | |
68faed63 WY |
56 | if (align_order <= cma->order_per_bit) |
57 | return 0; | |
58 | return (1UL << (align_order - cma->order_per_bit)) - 1; | |
a254129e JK |
59 | } |
60 | ||
850fc430 DP |
61 | /* |
62 | * Find a PFN aligned to the specified order and return an offset represented in | |
63 | * order_per_bits. | |
64 | */ | |
b5be83e3 GF |
65 | static unsigned long cma_bitmap_aligned_offset(struct cma *cma, int align_order) |
66 | { | |
b5be83e3 GF |
67 | if (align_order <= cma->order_per_bit) |
68 | return 0; | |
850fc430 DP |
69 | |
70 | return (ALIGN(cma->base_pfn, (1UL << align_order)) | |
71 | - cma->base_pfn) >> cma->order_per_bit; | |
b5be83e3 GF |
72 | } |
73 | ||
a254129e JK |
74 | static unsigned long cma_bitmap_pages_to_bits(struct cma *cma, |
75 | unsigned long pages) | |
76 | { | |
77 | return ALIGN(pages, 1UL << cma->order_per_bit) >> cma->order_per_bit; | |
78 | } | |
79 | ||
80 | static void cma_clear_bitmap(struct cma *cma, unsigned long pfn, int count) | |
81 | { | |
82 | unsigned long bitmap_no, bitmap_count; | |
83 | ||
84 | bitmap_no = (pfn - cma->base_pfn) >> cma->order_per_bit; | |
85 | bitmap_count = cma_bitmap_pages_to_bits(cma, count); | |
86 | ||
87 | mutex_lock(&cma->lock); | |
88 | bitmap_clear(cma->bitmap, bitmap_no, bitmap_count); | |
89 | mutex_unlock(&cma->lock); | |
90 | } | |
91 | ||
92 | static int __init cma_activate_area(struct cma *cma) | |
93 | { | |
94 | int bitmap_size = BITS_TO_LONGS(cma_bitmap_maxno(cma)) * sizeof(long); | |
95 | unsigned long base_pfn = cma->base_pfn, pfn = base_pfn; | |
96 | unsigned i = cma->count >> pageblock_order; | |
97 | struct zone *zone; | |
98 | ||
99 | cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | |
100 | ||
101 | if (!cma->bitmap) | |
102 | return -ENOMEM; | |
103 | ||
104 | WARN_ON_ONCE(!pfn_valid(pfn)); | |
105 | zone = page_zone(pfn_to_page(pfn)); | |
106 | ||
107 | do { | |
108 | unsigned j; | |
109 | ||
110 | base_pfn = pfn; | |
111 | for (j = pageblock_nr_pages; j; --j, pfn++) { | |
112 | WARN_ON_ONCE(!pfn_valid(pfn)); | |
113 | /* | |
114 | * alloc_contig_range requires the pfn range | |
115 | * specified to be in the same zone. Make this | |
116 | * simple by forcing the entire CMA resv range | |
117 | * to be in the same zone. | |
118 | */ | |
119 | if (page_zone(pfn_to_page(pfn)) != zone) | |
120 | goto err; | |
121 | } | |
122 | init_cma_reserved_pageblock(pfn_to_page(base_pfn)); | |
123 | } while (--i); | |
124 | ||
125 | mutex_init(&cma->lock); | |
126 | return 0; | |
127 | ||
128 | err: | |
129 | kfree(cma->bitmap); | |
f022d8cb | 130 | cma->count = 0; |
a254129e JK |
131 | return -EINVAL; |
132 | } | |
133 | ||
134 | static int __init cma_init_reserved_areas(void) | |
135 | { | |
136 | int i; | |
137 | ||
138 | for (i = 0; i < cma_area_count; i++) { | |
139 | int ret = cma_activate_area(&cma_areas[i]); | |
140 | ||
141 | if (ret) | |
142 | return ret; | |
143 | } | |
144 | ||
145 | return 0; | |
146 | } | |
147 | core_initcall(cma_init_reserved_areas); | |
148 | ||
de9e14ee MS |
149 | /** |
150 | * cma_init_reserved_mem() - create custom contiguous area from reserved memory | |
151 | * @base: Base address of the reserved area | |
152 | * @size: Size of the reserved area (in bytes), | |
153 | * @order_per_bit: Order of pages represented by one bit on bitmap. | |
154 | * @res_cma: Pointer to store the created cma region. | |
155 | * | |
156 | * This function creates custom contiguous area from already reserved memory. | |
157 | */ | |
158 | int __init cma_init_reserved_mem(phys_addr_t base, phys_addr_t size, | |
159 | int order_per_bit, struct cma **res_cma) | |
160 | { | |
161 | struct cma *cma; | |
162 | phys_addr_t alignment; | |
163 | ||
164 | /* Sanity checks */ | |
165 | if (cma_area_count == ARRAY_SIZE(cma_areas)) { | |
166 | pr_err("Not enough slots for CMA reserved regions!\n"); | |
167 | return -ENOSPC; | |
168 | } | |
169 | ||
170 | if (!size || !memblock_is_region_reserved(base, size)) | |
171 | return -EINVAL; | |
172 | ||
173 | /* ensure minimal alignment requied by mm core */ | |
174 | alignment = PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order); | |
175 | ||
176 | /* alignment should be aligned with order_per_bit */ | |
177 | if (!IS_ALIGNED(alignment >> PAGE_SHIFT, 1 << order_per_bit)) | |
178 | return -EINVAL; | |
179 | ||
180 | if (ALIGN(base, alignment) != base || ALIGN(size, alignment) != size) | |
181 | return -EINVAL; | |
182 | ||
183 | /* | |
184 | * Each reserved area must be initialised later, when more kernel | |
185 | * subsystems (like slab allocator) are available. | |
186 | */ | |
187 | cma = &cma_areas[cma_area_count]; | |
188 | cma->base_pfn = PFN_DOWN(base); | |
189 | cma->count = size >> PAGE_SHIFT; | |
190 | cma->order_per_bit = order_per_bit; | |
191 | *res_cma = cma; | |
192 | cma_area_count++; | |
94737a85 | 193 | totalcma_pages += (size / PAGE_SIZE); |
de9e14ee MS |
194 | |
195 | return 0; | |
196 | } | |
197 | ||
a254129e JK |
198 | /** |
199 | * cma_declare_contiguous() - reserve custom contiguous area | |
a254129e | 200 | * @base: Base address of the reserved area optional, use 0 for any |
c1f733aa | 201 | * @size: Size of the reserved area (in bytes), |
a254129e JK |
202 | * @limit: End address of the reserved memory (optional, 0 for any). |
203 | * @alignment: Alignment for the CMA area, should be power of 2 or zero | |
204 | * @order_per_bit: Order of pages represented by one bit on bitmap. | |
a254129e | 205 | * @fixed: hint about where to place the reserved area |
c1f733aa | 206 | * @res_cma: Pointer to store the created cma region. |
a254129e JK |
207 | * |
208 | * This function reserves memory from early allocator. It should be | |
209 | * called by arch specific code once the early allocator (memblock or bootmem) | |
210 | * has been activated and all other subsystems have already allocated/reserved | |
211 | * memory. This function allows to create custom reserved areas. | |
212 | * | |
213 | * If @fixed is true, reserve contiguous area at exactly @base. If false, | |
214 | * reserve in range from @base to @limit. | |
215 | */ | |
c1f733aa JK |
216 | int __init cma_declare_contiguous(phys_addr_t base, |
217 | phys_addr_t size, phys_addr_t limit, | |
a254129e | 218 | phys_addr_t alignment, unsigned int order_per_bit, |
c1f733aa | 219 | bool fixed, struct cma **res_cma) |
a254129e | 220 | { |
f7426b98 | 221 | phys_addr_t memblock_end = memblock_end_of_DRAM(); |
6b101e2a | 222 | phys_addr_t highmem_start; |
a254129e JK |
223 | int ret = 0; |
224 | ||
6b101e2a JK |
225 | #ifdef CONFIG_X86 |
226 | /* | |
227 | * high_memory isn't direct mapped memory so retrieving its physical | |
228 | * address isn't appropriate. But it would be useful to check the | |
229 | * physical address of the highmem boundary so it's justfiable to get | |
230 | * the physical address from it. On x86 there is a validation check for | |
231 | * this case, so the following workaround is needed to avoid it. | |
232 | */ | |
233 | highmem_start = __pa_nodebug(high_memory); | |
234 | #else | |
235 | highmem_start = __pa(high_memory); | |
236 | #endif | |
56fa4f60 LP |
237 | pr_debug("%s(size %pa, base %pa, limit %pa alignment %pa)\n", |
238 | __func__, &size, &base, &limit, &alignment); | |
a254129e JK |
239 | |
240 | if (cma_area_count == ARRAY_SIZE(cma_areas)) { | |
241 | pr_err("Not enough slots for CMA reserved regions!\n"); | |
242 | return -ENOSPC; | |
243 | } | |
244 | ||
245 | if (!size) | |
246 | return -EINVAL; | |
247 | ||
248 | if (alignment && !is_power_of_2(alignment)) | |
249 | return -EINVAL; | |
250 | ||
251 | /* | |
252 | * Sanitise input arguments. | |
253 | * Pages both ends in CMA area could be merged into adjacent unmovable | |
254 | * migratetype page by page allocator's buddy algorithm. In the case, | |
255 | * you couldn't get a contiguous memory, which is not what we want. | |
256 | */ | |
257 | alignment = max(alignment, | |
258 | (phys_addr_t)PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order)); | |
259 | base = ALIGN(base, alignment); | |
260 | size = ALIGN(size, alignment); | |
261 | limit &= ~(alignment - 1); | |
262 | ||
800a85d3 LP |
263 | if (!base) |
264 | fixed = false; | |
265 | ||
a254129e JK |
266 | /* size should be aligned with order_per_bit */ |
267 | if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit)) | |
268 | return -EINVAL; | |
269 | ||
f7426b98 | 270 | /* |
16195ddd LP |
271 | * If allocating at a fixed base the request region must not cross the |
272 | * low/high memory boundary. | |
f7426b98 | 273 | */ |
16195ddd | 274 | if (fixed && base < highmem_start && base + size > highmem_start) { |
f7426b98 | 275 | ret = -EINVAL; |
56fa4f60 LP |
276 | pr_err("Region at %pa defined on low/high memory boundary (%pa)\n", |
277 | &base, &highmem_start); | |
f7426b98 MS |
278 | goto err; |
279 | } | |
280 | ||
16195ddd LP |
281 | /* |
282 | * If the limit is unspecified or above the memblock end, its effective | |
283 | * value will be the memblock end. Set it explicitly to simplify further | |
284 | * checks. | |
285 | */ | |
286 | if (limit == 0 || limit > memblock_end) | |
287 | limit = memblock_end; | |
288 | ||
a254129e | 289 | /* Reserve memory */ |
800a85d3 | 290 | if (fixed) { |
a254129e JK |
291 | if (memblock_is_region_reserved(base, size) || |
292 | memblock_reserve(base, size) < 0) { | |
293 | ret = -EBUSY; | |
294 | goto err; | |
295 | } | |
296 | } else { | |
16195ddd LP |
297 | phys_addr_t addr = 0; |
298 | ||
299 | /* | |
300 | * All pages in the reserved area must come from the same zone. | |
301 | * If the requested region crosses the low/high memory boundary, | |
302 | * try allocating from high memory first and fall back to low | |
303 | * memory in case of failure. | |
304 | */ | |
305 | if (base < highmem_start && limit > highmem_start) { | |
306 | addr = memblock_alloc_range(size, alignment, | |
307 | highmem_start, limit); | |
308 | limit = highmem_start; | |
309 | } | |
310 | ||
a254129e | 311 | if (!addr) { |
16195ddd LP |
312 | addr = memblock_alloc_range(size, alignment, base, |
313 | limit); | |
314 | if (!addr) { | |
315 | ret = -ENOMEM; | |
316 | goto err; | |
317 | } | |
a254129e | 318 | } |
16195ddd | 319 | |
620951e2 TR |
320 | /* |
321 | * kmemleak scans/reads tracked objects for pointers to other | |
322 | * objects but this address isn't mapped and accessible | |
323 | */ | |
324 | kmemleak_ignore(phys_to_virt(addr)); | |
16195ddd | 325 | base = addr; |
a254129e JK |
326 | } |
327 | ||
de9e14ee MS |
328 | ret = cma_init_reserved_mem(base, size, order_per_bit, res_cma); |
329 | if (ret) | |
330 | goto err; | |
a254129e | 331 | |
56fa4f60 LP |
332 | pr_info("Reserved %ld MiB at %pa\n", (unsigned long)size / SZ_1M, |
333 | &base); | |
a254129e JK |
334 | return 0; |
335 | ||
336 | err: | |
0de9d2eb | 337 | pr_err("Failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M); |
a254129e JK |
338 | return ret; |
339 | } | |
340 | ||
341 | /** | |
342 | * cma_alloc() - allocate pages from contiguous area | |
343 | * @cma: Contiguous memory region for which the allocation is performed. | |
344 | * @count: Requested number of pages. | |
345 | * @align: Requested alignment of pages (in PAGE_SIZE order). | |
346 | * | |
347 | * This function allocates part of contiguous memory on specific | |
348 | * contiguous memory area. | |
349 | */ | |
350 | struct page *cma_alloc(struct cma *cma, int count, unsigned int align) | |
351 | { | |
b5be83e3 | 352 | unsigned long mask, offset, pfn, start = 0; |
a254129e JK |
353 | unsigned long bitmap_maxno, bitmap_no, bitmap_count; |
354 | struct page *page = NULL; | |
355 | int ret; | |
356 | ||
357 | if (!cma || !cma->count) | |
358 | return NULL; | |
359 | ||
360 | pr_debug("%s(cma %p, count %d, align %d)\n", __func__, (void *)cma, | |
361 | count, align); | |
362 | ||
363 | if (!count) | |
364 | return NULL; | |
365 | ||
366 | mask = cma_bitmap_aligned_mask(cma, align); | |
b5be83e3 | 367 | offset = cma_bitmap_aligned_offset(cma, align); |
a254129e JK |
368 | bitmap_maxno = cma_bitmap_maxno(cma); |
369 | bitmap_count = cma_bitmap_pages_to_bits(cma, count); | |
370 | ||
371 | for (;;) { | |
372 | mutex_lock(&cma->lock); | |
b5be83e3 GF |
373 | bitmap_no = bitmap_find_next_zero_area_off(cma->bitmap, |
374 | bitmap_maxno, start, bitmap_count, mask, | |
375 | offset); | |
a254129e JK |
376 | if (bitmap_no >= bitmap_maxno) { |
377 | mutex_unlock(&cma->lock); | |
378 | break; | |
379 | } | |
380 | bitmap_set(cma->bitmap, bitmap_no, bitmap_count); | |
381 | /* | |
382 | * It's safe to drop the lock here. We've marked this region for | |
383 | * our exclusive use. If the migration fails we will take the | |
384 | * lock again and unmark it. | |
385 | */ | |
386 | mutex_unlock(&cma->lock); | |
387 | ||
388 | pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit); | |
389 | mutex_lock(&cma_mutex); | |
390 | ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA); | |
391 | mutex_unlock(&cma_mutex); | |
392 | if (ret == 0) { | |
393 | page = pfn_to_page(pfn); | |
394 | break; | |
a254129e | 395 | } |
b7155e76 | 396 | |
a254129e | 397 | cma_clear_bitmap(cma, pfn, count); |
b7155e76 JK |
398 | if (ret != -EBUSY) |
399 | break; | |
400 | ||
a254129e JK |
401 | pr_debug("%s(): memory range at %p is busy, retrying\n", |
402 | __func__, pfn_to_page(pfn)); | |
403 | /* try again with a bit different memory target */ | |
404 | start = bitmap_no + mask + 1; | |
405 | } | |
406 | ||
407 | pr_debug("%s(): returned %p\n", __func__, page); | |
408 | return page; | |
409 | } | |
410 | ||
411 | /** | |
412 | * cma_release() - release allocated pages | |
413 | * @cma: Contiguous memory region for which the allocation is performed. | |
414 | * @pages: Allocated pages. | |
415 | * @count: Number of allocated pages. | |
416 | * | |
417 | * This function releases memory allocated by alloc_cma(). | |
418 | * It returns false when provided pages do not belong to contiguous area and | |
419 | * true otherwise. | |
420 | */ | |
421 | bool cma_release(struct cma *cma, struct page *pages, int count) | |
422 | { | |
423 | unsigned long pfn; | |
424 | ||
425 | if (!cma || !pages) | |
426 | return false; | |
427 | ||
428 | pr_debug("%s(page %p)\n", __func__, (void *)pages); | |
429 | ||
430 | pfn = page_to_pfn(pages); | |
431 | ||
432 | if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count) | |
433 | return false; | |
434 | ||
435 | VM_BUG_ON(pfn + count > cma->base_pfn + cma->count); | |
436 | ||
437 | free_contig_range(pfn, count); | |
438 | cma_clear_bitmap(cma, pfn, count); | |
439 | ||
440 | return true; | |
441 | } |