]>
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> |
a254129e JK |
36 | |
37 | struct 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 | ||
45 | static struct cma cma_areas[MAX_CMA_AREAS]; | |
46 | static unsigned cma_area_count; | |
47 | static DEFINE_MUTEX(cma_mutex); | |
48 | ||
49 | phys_addr_t cma_get_base(struct cma *cma) | |
50 | { | |
51 | return PFN_PHYS(cma->base_pfn); | |
52 | } | |
53 | ||
54 | unsigned long cma_get_size(struct cma *cma) | |
55 | { | |
56 | return cma->count << PAGE_SHIFT; | |
57 | } | |
58 | ||
59 | static unsigned long cma_bitmap_aligned_mask(struct cma *cma, int align_order) | |
60 | { | |
68faed63 WY |
61 | if (align_order <= cma->order_per_bit) |
62 | return 0; | |
63 | return (1UL << (align_order - cma->order_per_bit)) - 1; | |
a254129e JK |
64 | } |
65 | ||
66 | static unsigned long cma_bitmap_maxno(struct cma *cma) | |
67 | { | |
68 | return cma->count >> cma->order_per_bit; | |
69 | } | |
70 | ||
71 | static unsigned long cma_bitmap_pages_to_bits(struct cma *cma, | |
72 | unsigned long pages) | |
73 | { | |
74 | return ALIGN(pages, 1UL << cma->order_per_bit) >> cma->order_per_bit; | |
75 | } | |
76 | ||
77 | static void cma_clear_bitmap(struct cma *cma, unsigned long pfn, int count) | |
78 | { | |
79 | unsigned long bitmap_no, bitmap_count; | |
80 | ||
81 | bitmap_no = (pfn - cma->base_pfn) >> cma->order_per_bit; | |
82 | bitmap_count = cma_bitmap_pages_to_bits(cma, count); | |
83 | ||
84 | mutex_lock(&cma->lock); | |
85 | bitmap_clear(cma->bitmap, bitmap_no, bitmap_count); | |
86 | mutex_unlock(&cma->lock); | |
87 | } | |
88 | ||
89 | static int __init cma_activate_area(struct cma *cma) | |
90 | { | |
91 | int bitmap_size = BITS_TO_LONGS(cma_bitmap_maxno(cma)) * sizeof(long); | |
92 | unsigned long base_pfn = cma->base_pfn, pfn = base_pfn; | |
93 | unsigned i = cma->count >> pageblock_order; | |
94 | struct zone *zone; | |
95 | ||
96 | cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | |
97 | ||
98 | if (!cma->bitmap) | |
99 | return -ENOMEM; | |
100 | ||
101 | WARN_ON_ONCE(!pfn_valid(pfn)); | |
102 | zone = page_zone(pfn_to_page(pfn)); | |
103 | ||
104 | do { | |
105 | unsigned j; | |
106 | ||
107 | base_pfn = pfn; | |
108 | for (j = pageblock_nr_pages; j; --j, pfn++) { | |
109 | WARN_ON_ONCE(!pfn_valid(pfn)); | |
110 | /* | |
111 | * alloc_contig_range requires the pfn range | |
112 | * specified to be in the same zone. Make this | |
113 | * simple by forcing the entire CMA resv range | |
114 | * to be in the same zone. | |
115 | */ | |
116 | if (page_zone(pfn_to_page(pfn)) != zone) | |
117 | goto err; | |
118 | } | |
119 | init_cma_reserved_pageblock(pfn_to_page(base_pfn)); | |
120 | } while (--i); | |
121 | ||
122 | mutex_init(&cma->lock); | |
123 | return 0; | |
124 | ||
125 | err: | |
126 | kfree(cma->bitmap); | |
127 | return -EINVAL; | |
128 | } | |
129 | ||
130 | static int __init cma_init_reserved_areas(void) | |
131 | { | |
132 | int i; | |
133 | ||
134 | for (i = 0; i < cma_area_count; i++) { | |
135 | int ret = cma_activate_area(&cma_areas[i]); | |
136 | ||
137 | if (ret) | |
138 | return ret; | |
139 | } | |
140 | ||
141 | return 0; | |
142 | } | |
143 | core_initcall(cma_init_reserved_areas); | |
144 | ||
145 | /** | |
146 | * cma_declare_contiguous() - reserve custom contiguous area | |
a254129e | 147 | * @base: Base address of the reserved area optional, use 0 for any |
c1f733aa | 148 | * @size: Size of the reserved area (in bytes), |
a254129e JK |
149 | * @limit: End address of the reserved memory (optional, 0 for any). |
150 | * @alignment: Alignment for the CMA area, should be power of 2 or zero | |
151 | * @order_per_bit: Order of pages represented by one bit on bitmap. | |
a254129e | 152 | * @fixed: hint about where to place the reserved area |
c1f733aa | 153 | * @res_cma: Pointer to store the created cma region. |
a254129e JK |
154 | * |
155 | * This function reserves memory from early allocator. It should be | |
156 | * called by arch specific code once the early allocator (memblock or bootmem) | |
157 | * has been activated and all other subsystems have already allocated/reserved | |
158 | * memory. This function allows to create custom reserved areas. | |
159 | * | |
160 | * If @fixed is true, reserve contiguous area at exactly @base. If false, | |
161 | * reserve in range from @base to @limit. | |
162 | */ | |
c1f733aa JK |
163 | int __init cma_declare_contiguous(phys_addr_t base, |
164 | phys_addr_t size, phys_addr_t limit, | |
a254129e | 165 | phys_addr_t alignment, unsigned int order_per_bit, |
c1f733aa | 166 | bool fixed, struct cma **res_cma) |
a254129e | 167 | { |
c1f733aa | 168 | struct cma *cma; |
f7426b98 MS |
169 | phys_addr_t memblock_end = memblock_end_of_DRAM(); |
170 | phys_addr_t highmem_start = __pa(high_memory); | |
a254129e JK |
171 | int ret = 0; |
172 | ||
173 | pr_debug("%s(size %lx, base %08lx, limit %08lx alignment %08lx)\n", | |
174 | __func__, (unsigned long)size, (unsigned long)base, | |
175 | (unsigned long)limit, (unsigned long)alignment); | |
176 | ||
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) | |
183 | return -EINVAL; | |
184 | ||
185 | if (alignment && !is_power_of_2(alignment)) | |
186 | return -EINVAL; | |
187 | ||
188 | /* | |
189 | * Sanitise input arguments. | |
190 | * Pages both ends in CMA area could be merged into adjacent unmovable | |
191 | * migratetype page by page allocator's buddy algorithm. In the case, | |
192 | * you couldn't get a contiguous memory, which is not what we want. | |
193 | */ | |
194 | alignment = max(alignment, | |
195 | (phys_addr_t)PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order)); | |
196 | base = ALIGN(base, alignment); | |
197 | size = ALIGN(size, alignment); | |
198 | limit &= ~(alignment - 1); | |
199 | ||
200 | /* size should be aligned with order_per_bit */ | |
201 | if (!IS_ALIGNED(size >> PAGE_SHIFT, 1 << order_per_bit)) | |
202 | return -EINVAL; | |
203 | ||
f7426b98 MS |
204 | /* |
205 | * adjust limit to avoid crossing low/high memory boundary for | |
206 | * automatically allocated regions | |
207 | */ | |
208 | if (((limit == 0 || limit > memblock_end) && | |
209 | (memblock_end - size < highmem_start && | |
210 | memblock_end > highmem_start)) || | |
211 | (!fixed && limit > highmem_start && limit - size < highmem_start)) { | |
212 | limit = highmem_start; | |
213 | } | |
214 | ||
215 | if (fixed && base < highmem_start && base+size > highmem_start) { | |
216 | ret = -EINVAL; | |
217 | pr_err("Region at %08lx defined on low/high memory boundary (%08lx)\n", | |
218 | (unsigned long)base, (unsigned long)highmem_start); | |
219 | goto err; | |
220 | } | |
221 | ||
a254129e JK |
222 | /* Reserve memory */ |
223 | if (base && fixed) { | |
224 | if (memblock_is_region_reserved(base, size) || | |
225 | memblock_reserve(base, size) < 0) { | |
226 | ret = -EBUSY; | |
227 | goto err; | |
228 | } | |
229 | } else { | |
230 | phys_addr_t addr = memblock_alloc_range(size, alignment, base, | |
231 | limit); | |
232 | if (!addr) { | |
233 | ret = -ENOMEM; | |
234 | goto err; | |
235 | } else { | |
236 | base = addr; | |
237 | } | |
238 | } | |
239 | ||
240 | /* | |
241 | * Each reserved area must be initialised later, when more kernel | |
242 | * subsystems (like slab allocator) are available. | |
243 | */ | |
c1f733aa | 244 | cma = &cma_areas[cma_area_count]; |
a254129e JK |
245 | cma->base_pfn = PFN_DOWN(base); |
246 | cma->count = size >> PAGE_SHIFT; | |
247 | cma->order_per_bit = order_per_bit; | |
248 | *res_cma = cma; | |
249 | cma_area_count++; | |
250 | ||
0de9d2eb | 251 | pr_info("Reserved %ld MiB at %08lx\n", (unsigned long)size / SZ_1M, |
a254129e JK |
252 | (unsigned long)base); |
253 | return 0; | |
254 | ||
255 | err: | |
0de9d2eb | 256 | pr_err("Failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M); |
a254129e JK |
257 | return ret; |
258 | } | |
259 | ||
260 | /** | |
261 | * cma_alloc() - allocate pages from contiguous area | |
262 | * @cma: Contiguous memory region for which the allocation is performed. | |
263 | * @count: Requested number of pages. | |
264 | * @align: Requested alignment of pages (in PAGE_SIZE order). | |
265 | * | |
266 | * This function allocates part of contiguous memory on specific | |
267 | * contiguous memory area. | |
268 | */ | |
269 | struct page *cma_alloc(struct cma *cma, int count, unsigned int align) | |
270 | { | |
271 | unsigned long mask, pfn, start = 0; | |
272 | unsigned long bitmap_maxno, bitmap_no, bitmap_count; | |
273 | struct page *page = NULL; | |
274 | int ret; | |
275 | ||
276 | if (!cma || !cma->count) | |
277 | return NULL; | |
278 | ||
279 | pr_debug("%s(cma %p, count %d, align %d)\n", __func__, (void *)cma, | |
280 | count, align); | |
281 | ||
282 | if (!count) | |
283 | return NULL; | |
284 | ||
285 | mask = cma_bitmap_aligned_mask(cma, align); | |
286 | bitmap_maxno = cma_bitmap_maxno(cma); | |
287 | bitmap_count = cma_bitmap_pages_to_bits(cma, count); | |
288 | ||
289 | for (;;) { | |
290 | mutex_lock(&cma->lock); | |
291 | bitmap_no = bitmap_find_next_zero_area(cma->bitmap, | |
292 | bitmap_maxno, start, bitmap_count, mask); | |
293 | if (bitmap_no >= bitmap_maxno) { | |
294 | mutex_unlock(&cma->lock); | |
295 | break; | |
296 | } | |
297 | bitmap_set(cma->bitmap, bitmap_no, bitmap_count); | |
298 | /* | |
299 | * It's safe to drop the lock here. We've marked this region for | |
300 | * our exclusive use. If the migration fails we will take the | |
301 | * lock again and unmark it. | |
302 | */ | |
303 | mutex_unlock(&cma->lock); | |
304 | ||
305 | pfn = cma->base_pfn + (bitmap_no << cma->order_per_bit); | |
306 | mutex_lock(&cma_mutex); | |
307 | ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA); | |
308 | mutex_unlock(&cma_mutex); | |
309 | if (ret == 0) { | |
310 | page = pfn_to_page(pfn); | |
311 | break; | |
a254129e | 312 | } |
b7155e76 | 313 | |
a254129e | 314 | cma_clear_bitmap(cma, pfn, count); |
b7155e76 JK |
315 | if (ret != -EBUSY) |
316 | break; | |
317 | ||
a254129e JK |
318 | pr_debug("%s(): memory range at %p is busy, retrying\n", |
319 | __func__, pfn_to_page(pfn)); | |
320 | /* try again with a bit different memory target */ | |
321 | start = bitmap_no + mask + 1; | |
322 | } | |
323 | ||
324 | pr_debug("%s(): returned %p\n", __func__, page); | |
325 | return page; | |
326 | } | |
327 | ||
328 | /** | |
329 | * cma_release() - release allocated pages | |
330 | * @cma: Contiguous memory region for which the allocation is performed. | |
331 | * @pages: Allocated pages. | |
332 | * @count: Number of allocated pages. | |
333 | * | |
334 | * This function releases memory allocated by alloc_cma(). | |
335 | * It returns false when provided pages do not belong to contiguous area and | |
336 | * true otherwise. | |
337 | */ | |
338 | bool cma_release(struct cma *cma, struct page *pages, int count) | |
339 | { | |
340 | unsigned long pfn; | |
341 | ||
342 | if (!cma || !pages) | |
343 | return false; | |
344 | ||
345 | pr_debug("%s(page %p)\n", __func__, (void *)pages); | |
346 | ||
347 | pfn = page_to_pfn(pages); | |
348 | ||
349 | if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count) | |
350 | return false; | |
351 | ||
352 | VM_BUG_ON(pfn + count > cma->base_pfn + cma->count); | |
353 | ||
354 | free_contig_range(pfn, count); | |
355 | cma_clear_bitmap(cma, pfn, count); | |
356 | ||
357 | return true; | |
358 | } |