devres: Add devm_kasprintf and devm_kvasprintf API
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / base / dma-contiguous.c
1 /*
2  * Contiguous Memory Allocator for DMA mapping framework
3  * Copyright (c) 2010-2011 by Samsung Electronics.
4  * Written by:
5  *      Marek Szyprowski <m.szyprowski@samsung.com>
6  *      Michal Nazarewicz <mina86@mina86.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License or (at your optional) any later version of the license.
12  */
13
14 #define pr_fmt(fmt) "cma: " fmt
15
16 #ifdef CONFIG_CMA_DEBUG
17 #ifndef DEBUG
18 #  define DEBUG
19 #endif
20 #endif
21
22 #include <asm/page.h>
23 #include <asm/dma-contiguous.h>
24
25 #include <linux/memblock.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>
31 #include <linux/slab.h>
32 #include <linux/swap.h>
33 #include <linux/mm_types.h>
34 #include <linux/dma-contiguous.h>
35
36 struct cma {
37         unsigned long   base_pfn;
38         unsigned long   count;
39         unsigned long   *bitmap;
40 };
41
42 struct cma *dma_contiguous_default_area;
43
44 #ifdef CONFIG_CMA_SIZE_MBYTES
45 #define CMA_SIZE_MBYTES CONFIG_CMA_SIZE_MBYTES
46 #else
47 #define CMA_SIZE_MBYTES 0
48 #endif
49
50 /*
51  * Default global CMA area size can be defined in kernel's .config.
52  * This is useful mainly for distro maintainers to create a kernel
53  * that works correctly for most supported systems.
54  * The size can be set in bytes or as a percentage of the total memory
55  * in the system.
56  *
57  * Users, who want to set the size of global CMA area for their system
58  * should use cma= kernel parameter.
59  */
60 static const phys_addr_t size_bytes = CMA_SIZE_MBYTES * SZ_1M;
61 static phys_addr_t size_cmdline = -1;
62
63 static int __init early_cma(char *p)
64 {
65         pr_debug("%s(%s)\n", __func__, p);
66         size_cmdline = memparse(p, &p);
67         return 0;
68 }
69 early_param("cma", early_cma);
70
71 #ifdef CONFIG_CMA_SIZE_PERCENTAGE
72
73 static phys_addr_t __init __maybe_unused cma_early_percent_memory(void)
74 {
75         struct memblock_region *reg;
76         unsigned long total_pages = 0;
77
78         /*
79          * We cannot use memblock_phys_mem_size() here, because
80          * memblock_analyze() has not been called yet.
81          */
82         for_each_memblock(memory, reg)
83                 total_pages += memblock_region_memory_end_pfn(reg) -
84                                memblock_region_memory_base_pfn(reg);
85
86         return (total_pages * CONFIG_CMA_SIZE_PERCENTAGE / 100) << PAGE_SHIFT;
87 }
88
89 #else
90
91 static inline __maybe_unused phys_addr_t cma_early_percent_memory(void)
92 {
93         return 0;
94 }
95
96 #endif
97
98 /**
99  * dma_contiguous_reserve() - reserve area(s) for contiguous memory handling
100  * @limit: End address of the reserved memory (optional, 0 for any).
101  *
102  * This function reserves memory from early allocator. It should be
103  * called by arch specific code once the early allocator (memblock or bootmem)
104  * has been activated and all other subsystems have already allocated/reserved
105  * memory.
106  */
107 void __init dma_contiguous_reserve(phys_addr_t limit)
108 {
109         phys_addr_t selected_size = 0;
110
111         pr_debug("%s(limit %08lx)\n", __func__, (unsigned long)limit);
112
113         if (size_cmdline != -1) {
114                 selected_size = size_cmdline;
115         } else {
116 #ifdef CONFIG_CMA_SIZE_SEL_MBYTES
117                 selected_size = size_bytes;
118 #elif defined(CONFIG_CMA_SIZE_SEL_PERCENTAGE)
119                 selected_size = cma_early_percent_memory();
120 #elif defined(CONFIG_CMA_SIZE_SEL_MIN)
121                 selected_size = min(size_bytes, cma_early_percent_memory());
122 #elif defined(CONFIG_CMA_SIZE_SEL_MAX)
123                 selected_size = max(size_bytes, cma_early_percent_memory());
124 #endif
125         }
126
127         if (selected_size && !dma_contiguous_default_area) {
128                 pr_debug("%s: reserving %ld MiB for global area\n", __func__,
129                          (unsigned long)selected_size / SZ_1M);
130
131                 dma_contiguous_reserve_area(selected_size, 0, limit,
132                                             &dma_contiguous_default_area);
133         }
134 };
135
136 static DEFINE_MUTEX(cma_mutex);
137
138 static int __init cma_activate_area(struct cma *cma)
139 {
140         int bitmap_size = BITS_TO_LONGS(cma->count) * sizeof(long);
141         unsigned long base_pfn = cma->base_pfn, pfn = base_pfn;
142         unsigned i = cma->count >> pageblock_order;
143         struct zone *zone;
144
145         cma->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
146
147         if (!cma->bitmap)
148                 return -ENOMEM;
149
150         WARN_ON_ONCE(!pfn_valid(pfn));
151         zone = page_zone(pfn_to_page(pfn));
152
153         do {
154                 unsigned j;
155                 base_pfn = pfn;
156                 for (j = pageblock_nr_pages; j; --j, pfn++) {
157                         WARN_ON_ONCE(!pfn_valid(pfn));
158                         /*
159                          * alloc_contig_range requires the pfn range
160                          * specified to be in the same zone. Make this
161                          * simple by forcing the entire CMA resv range
162                          * to be in the same zone.
163                          */
164                         if (page_zone(pfn_to_page(pfn)) != zone)
165                                 goto err;
166                 }
167                 init_cma_reserved_pageblock(pfn_to_page(base_pfn));
168         } while (--i);
169
170         return 0;
171
172 err:
173         kfree(cma->bitmap);
174         return -EINVAL;
175 }
176
177 static struct cma cma_areas[MAX_CMA_AREAS];
178 static unsigned cma_area_count;
179
180 static int __init cma_init_reserved_areas(void)
181 {
182         int i;
183
184         for (i = 0; i < cma_area_count; i++) {
185                 int ret = cma_activate_area(&cma_areas[i]);
186                 if (ret)
187                         return ret;
188         }
189
190         return 0;
191 }
192 core_initcall(cma_init_reserved_areas);
193
194 /**
195  * dma_contiguous_reserve_area() - reserve custom contiguous area
196  * @size: Size of the reserved area (in bytes),
197  * @base: Base address of the reserved area optional, use 0 for any
198  * @limit: End address of the reserved memory (optional, 0 for any).
199  * @res_cma: Pointer to store the created cma region.
200  *
201  * This function reserves memory from early allocator. It should be
202  * called by arch specific code once the early allocator (memblock or bootmem)
203  * has been activated and all other subsystems have already allocated/reserved
204  * memory. This function allows to create custom reserved areas for specific
205  * devices.
206  */
207 int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base,
208                                        phys_addr_t limit, struct cma **res_cma)
209 {
210         struct cma *cma = &cma_areas[cma_area_count];
211         phys_addr_t alignment;
212         int ret = 0;
213
214         pr_debug("%s(size %lx, base %08lx, limit %08lx)\n", __func__,
215                  (unsigned long)size, (unsigned long)base,
216                  (unsigned long)limit);
217
218         /* Sanity checks */
219         if (cma_area_count == ARRAY_SIZE(cma_areas)) {
220                 pr_err("Not enough slots for CMA reserved regions!\n");
221                 return -ENOSPC;
222         }
223
224         if (!size)
225                 return -EINVAL;
226
227         /* Sanitise input arguments */
228         alignment = PAGE_SIZE << max(MAX_ORDER - 1, pageblock_order);
229         base = ALIGN(base, alignment);
230         size = ALIGN(size, alignment);
231         limit &= ~(alignment - 1);
232
233         /* Reserve memory */
234         if (base) {
235                 if (memblock_is_region_reserved(base, size) ||
236                     memblock_reserve(base, size) < 0) {
237                         ret = -EBUSY;
238                         goto err;
239                 }
240         } else {
241                 /*
242                  * Use __memblock_alloc_base() since
243                  * memblock_alloc_base() panic()s.
244                  */
245                 phys_addr_t addr = __memblock_alloc_base(size, alignment, limit);
246                 if (!addr) {
247                         ret = -ENOMEM;
248                         goto err;
249                 } else {
250                         base = addr;
251                 }
252         }
253
254         /*
255          * Each reserved area must be initialised later, when more kernel
256          * subsystems (like slab allocator) are available.
257          */
258         cma->base_pfn = PFN_DOWN(base);
259         cma->count = size >> PAGE_SHIFT;
260         *res_cma = cma;
261         cma_area_count++;
262
263         pr_info("CMA: reserved %ld MiB at %08lx\n", (unsigned long)size / SZ_1M,
264                 (unsigned long)base);
265
266         /* Architecture specific contiguous memory fixup. */
267         dma_contiguous_early_fixup(base, size);
268         return 0;
269 err:
270         pr_err("CMA: failed to reserve %ld MiB\n", (unsigned long)size / SZ_1M);
271         return ret;
272 }
273
274 /**
275  * dma_alloc_from_contiguous() - allocate pages from contiguous area
276  * @dev:   Pointer to device for which the allocation is performed.
277  * @count: Requested number of pages.
278  * @align: Requested alignment of pages (in PAGE_SIZE order).
279  *
280  * This function allocates memory buffer for specified device. It uses
281  * device specific contiguous memory area if available or the default
282  * global one. Requires architecture specific get_dev_cma_area() helper
283  * function.
284  */
285 struct page *dma_alloc_from_contiguous(struct device *dev, int count,
286                                        unsigned int align)
287 {
288         unsigned long mask, pfn, pageno, start = 0;
289         struct cma *cma = dev_get_cma_area(dev);
290         struct page *page = NULL;
291         int ret;
292
293         if (!cma || !cma->count)
294                 return NULL;
295
296         if (align > CONFIG_CMA_ALIGNMENT)
297                 align = CONFIG_CMA_ALIGNMENT;
298
299         pr_debug("%s(cma %p, count %d, align %d)\n", __func__, (void *)cma,
300                  count, align);
301
302         if (!count)
303                 return NULL;
304
305         mask = (1 << align) - 1;
306
307         mutex_lock(&cma_mutex);
308
309         for (;;) {
310                 pageno = bitmap_find_next_zero_area(cma->bitmap, cma->count,
311                                                     start, count, mask);
312                 if (pageno >= cma->count)
313                         break;
314
315                 pfn = cma->base_pfn + pageno;
316                 ret = alloc_contig_range(pfn, pfn + count, MIGRATE_CMA);
317                 if (ret == 0) {
318                         bitmap_set(cma->bitmap, pageno, count);
319                         page = pfn_to_page(pfn);
320                         break;
321                 } else if (ret != -EBUSY) {
322                         break;
323                 }
324                 pr_debug("%s(): memory range at %p is busy, retrying\n",
325                          __func__, pfn_to_page(pfn));
326                 /* try again with a bit different memory target */
327                 start = pageno + mask + 1;
328         }
329
330         mutex_unlock(&cma_mutex);
331         pr_debug("%s(): returned %p\n", __func__, page);
332         return page;
333 }
334
335 /**
336  * dma_release_from_contiguous() - release allocated pages
337  * @dev:   Pointer to device for which the pages were allocated.
338  * @pages: Allocated pages.
339  * @count: Number of allocated pages.
340  *
341  * This function releases memory allocated by dma_alloc_from_contiguous().
342  * It returns false when provided pages do not belong to contiguous area and
343  * true otherwise.
344  */
345 bool dma_release_from_contiguous(struct device *dev, struct page *pages,
346                                  int count)
347 {
348         struct cma *cma = dev_get_cma_area(dev);
349         unsigned long pfn;
350
351         if (!cma || !pages)
352                 return false;
353
354         pr_debug("%s(page %p)\n", __func__, (void *)pages);
355
356         pfn = page_to_pfn(pages);
357
358         if (pfn < cma->base_pfn || pfn >= cma->base_pfn + cma->count)
359                 return false;
360
361         VM_BUG_ON(pfn + count > cma->base_pfn + cma->count);
362
363         mutex_lock(&cma_mutex);
364         bitmap_clear(cma->bitmap, pfn - cma->base_pfn, count);
365         free_contig_range(pfn, count);
366         mutex_unlock(&cma_mutex);
367
368         return true;
369 }