blob: b9ff2f4f0285ce812bcd217f21a56838d6a3c006 [file] [log] [blame]
Yinghai Lu95f72d12010-07-12 14:36:09 +10001/*
2 * Procedures for maintaining information about logical memory blocks.
3 *
4 * Peter Bergner, IBM Corp. June 2001.
5 * Copyright (C) 2001 Peter Bergner.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13#include <linux/kernel.h>
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070014#include <linux/slab.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100015#include <linux/init.h>
16#include <linux/bitops.h>
Benjamin Herrenschmidt449e8df2010-07-06 15:39:07 -070017#include <linux/poison.h>
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -070018#include <linux/pfn.h>
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -070019#include <linux/debugfs.h>
20#include <linux/seq_file.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100021#include <linux/memblock.h>
22
Tang Chen79442ed2013-11-12 15:07:59 -080023#include <asm-generic/sections.h>
Santosh Shilimkar26f09e92014-01-21 15:50:19 -080024#include <linux/io.h>
25
26#include "internal.h"
Tang Chen79442ed2013-11-12 15:07:59 -080027
Tejun Heofe091c22011-12-08 10:22:07 -080028static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
29static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
Philipp Hachtmann70210ed2014-01-29 18:16:01 +010030#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
31static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS] __initdata_memblock;
32#endif
Tejun Heofe091c22011-12-08 10:22:07 -080033
34struct memblock memblock __initdata_memblock = {
35 .memory.regions = memblock_memory_init_regions,
36 .memory.cnt = 1, /* empty dummy entry */
37 .memory.max = INIT_MEMBLOCK_REGIONS,
38
39 .reserved.regions = memblock_reserved_init_regions,
40 .reserved.cnt = 1, /* empty dummy entry */
41 .reserved.max = INIT_MEMBLOCK_REGIONS,
42
Philipp Hachtmann70210ed2014-01-29 18:16:01 +010043#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
44 .physmem.regions = memblock_physmem_init_regions,
45 .physmem.cnt = 1, /* empty dummy entry */
46 .physmem.max = INIT_PHYSMEM_REGIONS,
47#endif
48
Tang Chen79442ed2013-11-12 15:07:59 -080049 .bottom_up = false,
Tejun Heofe091c22011-12-08 10:22:07 -080050 .current_limit = MEMBLOCK_ALLOC_ANYWHERE,
51};
Yinghai Lu95f72d12010-07-12 14:36:09 +100052
Yinghai Lu10d06432010-07-28 15:43:02 +100053int memblock_debug __initdata_memblock;
Tang Chen55ac5902014-01-21 15:49:35 -080054#ifdef CONFIG_MOVABLE_NODE
55bool movable_node_enabled __initdata_memblock = false;
56#endif
Tejun Heo1aadc052011-12-08 10:22:08 -080057static int memblock_can_resize __initdata_memblock;
Gavin Shan181eb392012-05-29 15:06:50 -070058static int memblock_memory_in_slab __initdata_memblock = 0;
59static int memblock_reserved_in_slab __initdata_memblock = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +100060
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070061/* inline so we don't get a warning when pr_debug is compiled out */
Raghavendra D Prabhuc2233112012-10-08 16:33:55 -070062static __init_memblock const char *
63memblock_type_name(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070064{
65 if (type == &memblock.memory)
66 return "memory";
67 else if (type == &memblock.reserved)
68 return "reserved";
69 else
70 return "unknown";
71}
72
Tejun Heoeb18f1b2011-12-08 10:22:07 -080073/* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
74static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
75{
76 return *size = min(*size, (phys_addr_t)ULLONG_MAX - base);
77}
78
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100079/*
80 * Address comparison utilities
81 */
Yinghai Lu10d06432010-07-28 15:43:02 +100082static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100083 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100084{
85 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
86}
87
H Hartley Sweeten2d7d3eb2011-10-31 17:09:15 -070088static long __init_memblock memblock_overlaps_region(struct memblock_type *type,
89 phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100090{
91 unsigned long i;
92
93 for (i = 0; i < type->cnt; i++) {
94 phys_addr_t rgnbase = type->regions[i].base;
95 phys_addr_t rgnsize = type->regions[i].size;
96 if (memblock_addrs_overlap(base, size, rgnbase, rgnsize))
97 break;
98 }
99
100 return (i < type->cnt) ? i : -1;
101}
102
Tang Chen79442ed2013-11-12 15:07:59 -0800103/*
104 * __memblock_find_range_bottom_up - find free area utility in bottom-up
105 * @start: start of candidate range
106 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
107 * @size: size of free area to find
108 * @align: alignment of free area to find
Grygorii Strashkob1154232014-01-21 15:50:16 -0800109 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700110 * @flags: pick from blocks based on memory attributes
Tang Chen79442ed2013-11-12 15:07:59 -0800111 *
112 * Utility called from memblock_find_in_range_node(), find free area bottom-up.
113 *
114 * RETURNS:
115 * Found address on success, 0 on failure.
116 */
117static phys_addr_t __init_memblock
118__memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700119 phys_addr_t size, phys_addr_t align, int nid,
120 ulong flags)
Tang Chen79442ed2013-11-12 15:07:59 -0800121{
122 phys_addr_t this_start, this_end, cand;
123 u64 i;
124
Tony Luckfc6daaf2015-06-24 16:58:09 -0700125 for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) {
Tang Chen79442ed2013-11-12 15:07:59 -0800126 this_start = clamp(this_start, start, end);
127 this_end = clamp(this_end, start, end);
128
129 cand = round_up(this_start, align);
130 if (cand < this_end && this_end - cand >= size)
131 return cand;
132 }
133
134 return 0;
135}
136
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800137/**
Tang Chen14028992013-11-12 15:07:57 -0800138 * __memblock_find_range_top_down - find free area utility, in top-down
139 * @start: start of candidate range
140 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
141 * @size: size of free area to find
142 * @align: alignment of free area to find
Grygorii Strashkob1154232014-01-21 15:50:16 -0800143 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700144 * @flags: pick from blocks based on memory attributes
Tang Chen14028992013-11-12 15:07:57 -0800145 *
146 * Utility called from memblock_find_in_range_node(), find free area top-down.
147 *
148 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800149 * Found address on success, 0 on failure.
Tang Chen14028992013-11-12 15:07:57 -0800150 */
151static phys_addr_t __init_memblock
152__memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700153 phys_addr_t size, phys_addr_t align, int nid,
154 ulong flags)
Tang Chen14028992013-11-12 15:07:57 -0800155{
156 phys_addr_t this_start, this_end, cand;
157 u64 i;
158
Tony Luckfc6daaf2015-06-24 16:58:09 -0700159 for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end,
160 NULL) {
Tang Chen14028992013-11-12 15:07:57 -0800161 this_start = clamp(this_start, start, end);
162 this_end = clamp(this_end, start, end);
163
164 if (this_end < size)
165 continue;
166
167 cand = round_down(this_end - size, align);
168 if (cand >= this_start)
169 return cand;
170 }
171
172 return 0;
173}
174
175/**
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800176 * memblock_find_in_range_node - find free area in given range and node
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800177 * @size: size of free area to find
178 * @align: alignment of free area to find
Grygorii Strashko87029ee2014-01-21 15:50:14 -0800179 * @start: start of candidate range
180 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
Grygorii Strashkob1154232014-01-21 15:50:16 -0800181 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700182 * @flags: pick from blocks based on memory attributes
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800183 *
184 * Find @size free area aligned to @align in the specified range and node.
185 *
Tang Chen79442ed2013-11-12 15:07:59 -0800186 * When allocation direction is bottom-up, the @start should be greater
187 * than the end of the kernel image. Otherwise, it will be trimmed. The
188 * reason is that we want the bottom-up allocation just near the kernel
189 * image so it is highly likely that the allocated memory and the kernel
190 * will reside in the same node.
191 *
192 * If bottom-up allocation failed, will try to allocate memory top-down.
193 *
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800194 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800195 * Found address on success, 0 on failure.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000196 */
Grygorii Strashko87029ee2014-01-21 15:50:14 -0800197phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size,
198 phys_addr_t align, phys_addr_t start,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700199 phys_addr_t end, int nid, ulong flags)
Tang Chenf7210e62013-02-22 16:33:51 -0800200{
Tang Chen0cfb8f02014-08-29 15:18:31 -0700201 phys_addr_t kernel_end, ret;
Tang Chen79442ed2013-11-12 15:07:59 -0800202
Tang Chenf7210e62013-02-22 16:33:51 -0800203 /* pump up @end */
204 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
205 end = memblock.current_limit;
206
207 /* avoid allocating the first page */
208 start = max_t(phys_addr_t, start, PAGE_SIZE);
209 end = max(start, end);
Tang Chen79442ed2013-11-12 15:07:59 -0800210 kernel_end = __pa_symbol(_end);
211
212 /*
213 * try bottom-up allocation only when bottom-up mode
214 * is set and @end is above the kernel image.
215 */
216 if (memblock_bottom_up() && end > kernel_end) {
217 phys_addr_t bottom_up_start;
218
219 /* make sure we will allocate above the kernel */
220 bottom_up_start = max(start, kernel_end);
221
222 /* ok, try bottom-up allocation first */
223 ret = __memblock_find_range_bottom_up(bottom_up_start, end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700224 size, align, nid, flags);
Tang Chen79442ed2013-11-12 15:07:59 -0800225 if (ret)
226 return ret;
227
228 /*
229 * we always limit bottom-up allocation above the kernel,
230 * but top-down allocation doesn't have the limit, so
231 * retrying top-down allocation may succeed when bottom-up
232 * allocation failed.
233 *
234 * bottom-up allocation is expected to be fail very rarely,
235 * so we use WARN_ONCE() here to see the stack trace if
236 * fail happens.
237 */
238 WARN_ONCE(1, "memblock: bottom-up allocation failed, "
239 "memory hotunplug may be affected\n");
240 }
Tang Chenf7210e62013-02-22 16:33:51 -0800241
Tony Luckfc6daaf2015-06-24 16:58:09 -0700242 return __memblock_find_range_top_down(start, end, size, align, nid,
243 flags);
Tang Chenf7210e62013-02-22 16:33:51 -0800244}
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000245
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800246/**
247 * memblock_find_in_range - find free area in given range
248 * @start: start of candidate range
249 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
250 * @size: size of free area to find
251 * @align: alignment of free area to find
252 *
253 * Find @size free area aligned to @align in the specified range.
254 *
255 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800256 * Found address on success, 0 on failure.
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800257 */
258phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
259 phys_addr_t end, phys_addr_t size,
260 phys_addr_t align)
261{
Grygorii Strashko87029ee2014-01-21 15:50:14 -0800262 return memblock_find_in_range_node(size, align, start, end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700263 NUMA_NO_NODE, MEMBLOCK_NONE);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800264}
265
Yinghai Lu10d06432010-07-28 15:43:02 +1000266static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000267{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800268 type->total_size -= type->regions[r].size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200269 memmove(&type->regions[r], &type->regions[r + 1],
270 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000271 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000272
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700273 /* Special case for empty arrays */
274 if (type->cnt == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800275 WARN_ON(type->total_size != 0);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700276 type->cnt = 1;
277 type->regions[0].base = 0;
278 type->regions[0].size = 0;
Tang Chen66a20752014-01-21 15:49:20 -0800279 type->regions[0].flags = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200280 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700281 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000282}
283
Philipp Hachtmann354f17e2014-01-23 15:53:24 -0800284#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
285
Yinghai Lu29f67382012-07-11 14:02:56 -0700286phys_addr_t __init_memblock get_allocated_memblock_reserved_regions_info(
287 phys_addr_t *addr)
288{
289 if (memblock.reserved.regions == memblock_reserved_init_regions)
290 return 0;
291
292 *addr = __pa(memblock.reserved.regions);
293
294 return PAGE_ALIGN(sizeof(struct memblock_region) *
295 memblock.reserved.max);
296}
297
Philipp Hachtmann5e270e22014-01-23 15:53:11 -0800298phys_addr_t __init_memblock get_allocated_memblock_memory_regions_info(
299 phys_addr_t *addr)
300{
301 if (memblock.memory.regions == memblock_memory_init_regions)
302 return 0;
303
304 *addr = __pa(memblock.memory.regions);
305
306 return PAGE_ALIGN(sizeof(struct memblock_region) *
307 memblock.memory.max);
308}
309
310#endif
311
Greg Pearson48c3b582012-06-20 12:53:05 -0700312/**
313 * memblock_double_array - double the size of the memblock regions array
314 * @type: memblock type of the regions array being doubled
315 * @new_area_start: starting address of memory range to avoid overlap with
316 * @new_area_size: size of memory range to avoid overlap with
317 *
318 * Double the size of the @type regions array. If memblock is being used to
319 * allocate memory for a new reserved regions array and there is a previously
320 * allocated memory range [@new_area_start,@new_area_start+@new_area_size]
321 * waiting to be reserved, ensure the memory used by the new array does
322 * not overlap.
323 *
324 * RETURNS:
325 * 0 on success, -1 on failure.
326 */
327static int __init_memblock memblock_double_array(struct memblock_type *type,
328 phys_addr_t new_area_start,
329 phys_addr_t new_area_size)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700330{
331 struct memblock_region *new_array, *old_array;
Yinghai Lu29f67382012-07-11 14:02:56 -0700332 phys_addr_t old_alloc_size, new_alloc_size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700333 phys_addr_t old_size, new_size, addr;
334 int use_slab = slab_is_available();
Gavin Shan181eb392012-05-29 15:06:50 -0700335 int *in_slab;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700336
337 /* We don't allow resizing until we know about the reserved regions
338 * of memory that aren't suitable for allocation
339 */
340 if (!memblock_can_resize)
341 return -1;
342
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700343 /* Calculate new doubled size */
344 old_size = type->max * sizeof(struct memblock_region);
345 new_size = old_size << 1;
Yinghai Lu29f67382012-07-11 14:02:56 -0700346 /*
347 * We need to allocated new one align to PAGE_SIZE,
348 * so we can free them completely later.
349 */
350 old_alloc_size = PAGE_ALIGN(old_size);
351 new_alloc_size = PAGE_ALIGN(new_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700352
Gavin Shan181eb392012-05-29 15:06:50 -0700353 /* Retrieve the slab flag */
354 if (type == &memblock.memory)
355 in_slab = &memblock_memory_in_slab;
356 else
357 in_slab = &memblock_reserved_in_slab;
358
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700359 /* Try to find some space for it.
360 *
361 * WARNING: We assume that either slab_is_available() and we use it or
Andrew Mortonfd073832012-07-31 16:42:40 -0700362 * we use MEMBLOCK for allocations. That means that this is unsafe to
363 * use when bootmem is currently active (unless bootmem itself is
364 * implemented on top of MEMBLOCK which isn't the case yet)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700365 *
366 * This should however not be an issue for now, as we currently only
Andrew Mortonfd073832012-07-31 16:42:40 -0700367 * call into MEMBLOCK while it's still active, or much later when slab
368 * is active for memory hotplug operations
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700369 */
370 if (use_slab) {
371 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200372 addr = new_array ? __pa(new_array) : 0;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700373 } else {
Greg Pearson48c3b582012-06-20 12:53:05 -0700374 /* only exclude range when trying to double reserved.regions */
375 if (type != &memblock.reserved)
376 new_area_start = new_area_size = 0;
377
378 addr = memblock_find_in_range(new_area_start + new_area_size,
379 memblock.current_limit,
Yinghai Lu29f67382012-07-11 14:02:56 -0700380 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700381 if (!addr && new_area_size)
382 addr = memblock_find_in_range(0,
Andrew Mortonfd073832012-07-31 16:42:40 -0700383 min(new_area_start, memblock.current_limit),
384 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700385
Sachin Kamat15674862012-09-04 13:55:05 +0530386 new_array = addr ? __va(addr) : NULL;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700387 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200388 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700389 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
390 memblock_type_name(type), type->max, type->max * 2);
391 return -1;
392 }
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700393
Andrew Mortonfd073832012-07-31 16:42:40 -0700394 memblock_dbg("memblock: %s is doubled to %ld at [%#010llx-%#010llx]",
395 memblock_type_name(type), type->max * 2, (u64)addr,
396 (u64)addr + new_size - 1);
Yinghai Luea9e4372010-07-28 15:13:22 +1000397
Andrew Mortonfd073832012-07-31 16:42:40 -0700398 /*
399 * Found space, we now need to move the array over before we add the
400 * reserved region since it may be our reserved array itself that is
401 * full.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700402 */
403 memcpy(new_array, type->regions, old_size);
404 memset(new_array + type->max, 0, old_size);
405 old_array = type->regions;
406 type->regions = new_array;
407 type->max <<= 1;
408
Andrew Mortonfd073832012-07-31 16:42:40 -0700409 /* Free old array. We needn't free it if the array is the static one */
Gavin Shan181eb392012-05-29 15:06:50 -0700410 if (*in_slab)
411 kfree(old_array);
412 else if (old_array != memblock_memory_init_regions &&
413 old_array != memblock_reserved_init_regions)
Yinghai Lu29f67382012-07-11 14:02:56 -0700414 memblock_free(__pa(old_array), old_alloc_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700415
Andrew Mortonfd073832012-07-31 16:42:40 -0700416 /*
417 * Reserve the new array if that comes from the memblock. Otherwise, we
418 * needn't do it
Gavin Shan181eb392012-05-29 15:06:50 -0700419 */
420 if (!use_slab)
Yinghai Lu29f67382012-07-11 14:02:56 -0700421 BUG_ON(memblock_reserve(addr, new_alloc_size));
Gavin Shan181eb392012-05-29 15:06:50 -0700422
423 /* Update slab flag */
424 *in_slab = use_slab;
425
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700426 return 0;
427}
428
Tejun Heo784656f92011-07-12 11:15:55 +0200429/**
430 * memblock_merge_regions - merge neighboring compatible regions
431 * @type: memblock type to scan
432 *
433 * Scan @type and merge neighboring compatible regions.
434 */
435static void __init_memblock memblock_merge_regions(struct memblock_type *type)
436{
437 int i = 0;
438
439 /* cnt never goes below 1 */
440 while (i < type->cnt - 1) {
441 struct memblock_region *this = &type->regions[i];
442 struct memblock_region *next = &type->regions[i + 1];
443
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200444 if (this->base + this->size != next->base ||
445 memblock_get_region_node(this) !=
Tang Chen66a20752014-01-21 15:49:20 -0800446 memblock_get_region_node(next) ||
447 this->flags != next->flags) {
Tejun Heo784656f92011-07-12 11:15:55 +0200448 BUG_ON(this->base + this->size > next->base);
449 i++;
450 continue;
451 }
452
453 this->size += next->size;
Lin Fengc0232ae2013-01-11 14:31:44 -0800454 /* move forward from next + 1, index of which is i + 2 */
455 memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
Tejun Heo784656f92011-07-12 11:15:55 +0200456 type->cnt--;
457 }
458}
459
460/**
461 * memblock_insert_region - insert new memblock region
Tang Chen209ff862013-04-29 15:08:41 -0700462 * @type: memblock type to insert into
463 * @idx: index for the insertion point
464 * @base: base address of the new region
465 * @size: size of the new region
466 * @nid: node id of the new region
Tang Chen66a20752014-01-21 15:49:20 -0800467 * @flags: flags of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200468 *
469 * Insert new memblock region [@base,@base+@size) into @type at @idx.
470 * @type must already have extra room to accomodate the new region.
471 */
472static void __init_memblock memblock_insert_region(struct memblock_type *type,
473 int idx, phys_addr_t base,
Tang Chen66a20752014-01-21 15:49:20 -0800474 phys_addr_t size,
475 int nid, unsigned long flags)
Tejun Heo784656f92011-07-12 11:15:55 +0200476{
477 struct memblock_region *rgn = &type->regions[idx];
478
479 BUG_ON(type->cnt >= type->max);
480 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
481 rgn->base = base;
482 rgn->size = size;
Tang Chen66a20752014-01-21 15:49:20 -0800483 rgn->flags = flags;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200484 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200485 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800486 type->total_size += size;
Tejun Heo784656f92011-07-12 11:15:55 +0200487}
488
489/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100490 * memblock_add_range - add new memblock region
Tejun Heo784656f92011-07-12 11:15:55 +0200491 * @type: memblock type to add new region into
492 * @base: base address of the new region
493 * @size: size of the new region
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800494 * @nid: nid of the new region
Tang Chen66a20752014-01-21 15:49:20 -0800495 * @flags: flags of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200496 *
497 * Add new memblock region [@base,@base+@size) into @type. The new region
498 * is allowed to overlap with existing ones - overlaps don't affect already
499 * existing regions. @type is guaranteed to be minimal (all neighbouring
500 * compatible regions are merged) after the addition.
501 *
502 * RETURNS:
503 * 0 on success, -errno on failure.
504 */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100505int __init_memblock memblock_add_range(struct memblock_type *type,
Tang Chen66a20752014-01-21 15:49:20 -0800506 phys_addr_t base, phys_addr_t size,
507 int nid, unsigned long flags)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000508{
Tejun Heo784656f92011-07-12 11:15:55 +0200509 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800510 phys_addr_t obase = base;
511 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f92011-07-12 11:15:55 +0200512 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000513
Tejun Heob3dc6272012-04-20 08:31:34 -0700514 if (!size)
515 return 0;
516
Tejun Heo784656f92011-07-12 11:15:55 +0200517 /* special case for empty array */
518 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800519 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000520 type->regions[0].base = base;
521 type->regions[0].size = size;
Tang Chen66a20752014-01-21 15:49:20 -0800522 type->regions[0].flags = flags;
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800523 memblock_set_region_node(&type->regions[0], nid);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800524 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000525 return 0;
526 }
Tejun Heo784656f92011-07-12 11:15:55 +0200527repeat:
528 /*
529 * The following is executed twice. Once with %false @insert and
530 * then with %true. The first counts the number of regions needed
531 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700532 */
Tejun Heo784656f92011-07-12 11:15:55 +0200533 base = obase;
534 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000535
Tejun Heo784656f92011-07-12 11:15:55 +0200536 for (i = 0; i < type->cnt; i++) {
537 struct memblock_region *rgn = &type->regions[i];
538 phys_addr_t rbase = rgn->base;
539 phys_addr_t rend = rbase + rgn->size;
540
541 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000542 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200543 if (rend <= base)
544 continue;
545 /*
546 * @rgn overlaps. If it separates the lower part of new
547 * area, insert that portion.
548 */
549 if (rbase > base) {
550 nr_new++;
551 if (insert)
552 memblock_insert_region(type, i++, base,
Tang Chen66a20752014-01-21 15:49:20 -0800553 rbase - base, nid,
554 flags);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000555 }
Tejun Heo784656f92011-07-12 11:15:55 +0200556 /* area below @rend is dealt with, forget about it */
557 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000558 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000559
Tejun Heo784656f92011-07-12 11:15:55 +0200560 /* insert the remaining portion */
561 if (base < end) {
562 nr_new++;
563 if (insert)
Tang Chen66a20752014-01-21 15:49:20 -0800564 memblock_insert_region(type, i, base, end - base,
565 nid, flags);
Tejun Heo784656f92011-07-12 11:15:55 +0200566 }
567
568 /*
569 * If this was the first round, resize array and repeat for actual
570 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700571 */
Tejun Heo784656f92011-07-12 11:15:55 +0200572 if (!insert) {
573 while (type->cnt + nr_new > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700574 if (memblock_double_array(type, obase, size) < 0)
Tejun Heo784656f92011-07-12 11:15:55 +0200575 return -ENOMEM;
576 insert = true;
577 goto repeat;
578 } else {
579 memblock_merge_regions(type);
580 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700581 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000582}
583
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800584int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
585 int nid)
586{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100587 return memblock_add_range(&memblock.memory, base, size, nid, 0);
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800588}
589
Alexander Kuleshov6a4055b2015-04-15 16:14:44 -0700590static int __init_memblock memblock_add_region(phys_addr_t base,
591 phys_addr_t size,
592 int nid,
593 unsigned long flags)
594{
595 struct memblock_type *_rgn = &memblock.memory;
596
597 memblock_dbg("memblock_add: [%#016llx-%#016llx] flags %#02lx %pF\n",
598 (unsigned long long)base,
599 (unsigned long long)base + size - 1,
600 flags, (void *)_RET_IP_);
601
602 return memblock_add_range(_rgn, base, size, nid, flags);
603}
604
Tejun Heo581adcb2011-12-08 10:22:06 -0800605int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000606{
Alexander Kuleshov6a4055b2015-04-15 16:14:44 -0700607 return memblock_add_region(base, size, MAX_NUMNODES, 0);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000608}
609
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800610/**
611 * memblock_isolate_range - isolate given range into disjoint memblocks
612 * @type: memblock type to isolate range for
613 * @base: base of range to isolate
614 * @size: size of range to isolate
615 * @start_rgn: out parameter for the start of isolated region
616 * @end_rgn: out parameter for the end of isolated region
617 *
618 * Walk @type and ensure that regions don't cross the boundaries defined by
619 * [@base,@base+@size). Crossing regions are split at the boundaries,
620 * which may create at most two more regions. The index of the first
621 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
622 *
623 * RETURNS:
624 * 0 on success, -errno on failure.
625 */
626static int __init_memblock memblock_isolate_range(struct memblock_type *type,
627 phys_addr_t base, phys_addr_t size,
628 int *start_rgn, int *end_rgn)
629{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800630 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800631 int i;
632
633 *start_rgn = *end_rgn = 0;
634
Tejun Heob3dc6272012-04-20 08:31:34 -0700635 if (!size)
636 return 0;
637
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800638 /* we'll create at most two more regions */
639 while (type->cnt + 2 > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700640 if (memblock_double_array(type, base, size) < 0)
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800641 return -ENOMEM;
642
643 for (i = 0; i < type->cnt; i++) {
644 struct memblock_region *rgn = &type->regions[i];
645 phys_addr_t rbase = rgn->base;
646 phys_addr_t rend = rbase + rgn->size;
647
648 if (rbase >= end)
649 break;
650 if (rend <= base)
651 continue;
652
653 if (rbase < base) {
654 /*
655 * @rgn intersects from below. Split and continue
656 * to process the next region - the new top half.
657 */
658 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800659 rgn->size -= base - rbase;
660 type->total_size -= base - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800661 memblock_insert_region(type, i, rbase, base - rbase,
Tang Chen66a20752014-01-21 15:49:20 -0800662 memblock_get_region_node(rgn),
663 rgn->flags);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800664 } else if (rend > end) {
665 /*
666 * @rgn intersects from above. Split and redo the
667 * current region - the new bottom half.
668 */
669 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800670 rgn->size -= end - rbase;
671 type->total_size -= end - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800672 memblock_insert_region(type, i--, rbase, end - rbase,
Tang Chen66a20752014-01-21 15:49:20 -0800673 memblock_get_region_node(rgn),
674 rgn->flags);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800675 } else {
676 /* @rgn is fully contained, record it */
677 if (!*end_rgn)
678 *start_rgn = i;
679 *end_rgn = i + 1;
680 }
681 }
682
683 return 0;
684}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800685
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100686int __init_memblock memblock_remove_range(struct memblock_type *type,
687 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000688{
Tejun Heo71936182011-12-08 10:22:07 -0800689 int start_rgn, end_rgn;
690 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000691
Tejun Heo71936182011-12-08 10:22:07 -0800692 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
693 if (ret)
694 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000695
Tejun Heo71936182011-12-08 10:22:07 -0800696 for (i = end_rgn - 1; i >= start_rgn; i--)
697 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700698 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000699}
700
Tejun Heo581adcb2011-12-08 10:22:06 -0800701int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000702{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100703 return memblock_remove_range(&memblock.memory, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000704}
705
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100706
Tejun Heo581adcb2011-12-08 10:22:06 -0800707int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000708{
Tejun Heo24aa0782011-07-12 11:16:06 +0200709 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700710 (unsigned long long)base,
Grygorii Strashko931d13f2014-01-21 15:49:17 -0800711 (unsigned long long)base + size - 1,
H. Peter Anvina1504392011-07-14 11:57:10 -0700712 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200713
Catalin Marinasaedf95e2014-06-06 14:38:20 -0700714 kmemleak_free_part(__va(base), size);
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100715 return memblock_remove_range(&memblock.reserved, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000716}
717
Tang Chen66a20752014-01-21 15:49:20 -0800718static int __init_memblock memblock_reserve_region(phys_addr_t base,
719 phys_addr_t size,
720 int nid,
721 unsigned long flags)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000722{
Baoquan He7fc825b2015-04-14 15:44:48 -0700723 struct memblock_type *type = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000724
Tang Chen66a20752014-01-21 15:49:20 -0800725 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] flags %#02lx %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700726 (unsigned long long)base,
Grygorii Strashko931d13f2014-01-21 15:49:17 -0800727 (unsigned long long)base + size - 1,
Tang Chen66a20752014-01-21 15:49:20 -0800728 flags, (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000729
Baoquan He7fc825b2015-04-14 15:44:48 -0700730 return memblock_add_range(type, base, size, nid, flags);
Tang Chen66a20752014-01-21 15:49:20 -0800731}
732
733int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
734{
735 return memblock_reserve_region(base, size, MAX_NUMNODES, 0);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000736}
737
Tejun Heo35fd0802011-07-12 11:15:59 +0200738/**
Tang Chen66b16ed2014-01-21 15:49:23 -0800739 *
Tony Luck4308ce12014-12-12 16:54:59 -0800740 * This function isolates region [@base, @base + @size), and sets/clears flag
Tang Chen66b16ed2014-01-21 15:49:23 -0800741 *
742 * Return 0 on succees, -errno on failure.
743 */
Tony Luck4308ce12014-12-12 16:54:59 -0800744static int __init_memblock memblock_setclr_flag(phys_addr_t base,
745 phys_addr_t size, int set, int flag)
Tang Chen66b16ed2014-01-21 15:49:23 -0800746{
747 struct memblock_type *type = &memblock.memory;
748 int i, ret, start_rgn, end_rgn;
749
750 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
751 if (ret)
752 return ret;
753
754 for (i = start_rgn; i < end_rgn; i++)
Tony Luck4308ce12014-12-12 16:54:59 -0800755 if (set)
756 memblock_set_region_flags(&type->regions[i], flag);
757 else
758 memblock_clear_region_flags(&type->regions[i], flag);
Tang Chen66b16ed2014-01-21 15:49:23 -0800759
760 memblock_merge_regions(type);
761 return 0;
762}
763
764/**
Tony Luck4308ce12014-12-12 16:54:59 -0800765 * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG.
766 * @base: the base phys addr of the region
767 * @size: the size of the region
768 *
769 * Return 0 on succees, -errno on failure.
770 */
771int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size)
772{
773 return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG);
774}
775
776/**
Tang Chen66b16ed2014-01-21 15:49:23 -0800777 * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region.
778 * @base: the base phys addr of the region
779 * @size: the size of the region
780 *
Tang Chen66b16ed2014-01-21 15:49:23 -0800781 * Return 0 on succees, -errno on failure.
782 */
783int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size)
784{
Tony Luck4308ce12014-12-12 16:54:59 -0800785 return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG);
Tang Chen66b16ed2014-01-21 15:49:23 -0800786}
787
788/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100789 * __next__mem_range - next function for for_each_free_mem_range() etc.
Tejun Heo35fd0802011-07-12 11:15:59 +0200790 * @idx: pointer to u64 loop variable
Grygorii Strashkob1154232014-01-21 15:50:16 -0800791 * @nid: node selector, %NUMA_NO_NODE for all nodes
Tony Luckfc6daaf2015-06-24 16:58:09 -0700792 * @flags: pick from blocks based on memory attributes
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100793 * @type_a: pointer to memblock_type from where the range is taken
794 * @type_b: pointer to memblock_type which excludes memory from being taken
Wanpeng Lidad75572012-06-20 12:53:01 -0700795 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
796 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
797 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo35fd0802011-07-12 11:15:59 +0200798 *
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100799 * Find the first area from *@idx which matches @nid, fill the out
Tejun Heo35fd0802011-07-12 11:15:59 +0200800 * parameters, and update *@idx for the next iteration. The lower 32bit of
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100801 * *@idx contains index into type_a and the upper 32bit indexes the
802 * areas before each region in type_b. For example, if type_b regions
Tejun Heo35fd0802011-07-12 11:15:59 +0200803 * look like the following,
804 *
805 * 0:[0-16), 1:[32-48), 2:[128-130)
806 *
807 * The upper 32bit indexes the following regions.
808 *
809 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
810 *
811 * As both region arrays are sorted, the function advances the two indices
812 * in lockstep and returns each intersection.
813 */
Tony Luckfc6daaf2015-06-24 16:58:09 -0700814void __init_memblock __next_mem_range(u64 *idx, int nid, ulong flags,
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100815 struct memblock_type *type_a,
816 struct memblock_type *type_b,
817 phys_addr_t *out_start,
818 phys_addr_t *out_end, int *out_nid)
Tejun Heo35fd0802011-07-12 11:15:59 +0200819{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100820 int idx_a = *idx & 0xffffffff;
821 int idx_b = *idx >> 32;
Grygorii Strashkob1154232014-01-21 15:50:16 -0800822
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100823 if (WARN_ONCE(nid == MAX_NUMNODES,
824 "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
Grygorii Strashko560dca272014-01-21 15:50:55 -0800825 nid = NUMA_NO_NODE;
Tejun Heo35fd0802011-07-12 11:15:59 +0200826
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100827 for (; idx_a < type_a->cnt; idx_a++) {
828 struct memblock_region *m = &type_a->regions[idx_a];
829
Tejun Heo35fd0802011-07-12 11:15:59 +0200830 phys_addr_t m_start = m->base;
831 phys_addr_t m_end = m->base + m->size;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100832 int m_nid = memblock_get_region_node(m);
Tejun Heo35fd0802011-07-12 11:15:59 +0200833
834 /* only memory regions are associated with nodes, check it */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100835 if (nid != NUMA_NO_NODE && nid != m_nid)
Tejun Heo35fd0802011-07-12 11:15:59 +0200836 continue;
837
Xishi Qiu0a313a92014-09-09 14:50:46 -0700838 /* skip hotpluggable memory regions if needed */
839 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
840 continue;
841
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100842 if (!type_b) {
843 if (out_start)
844 *out_start = m_start;
845 if (out_end)
846 *out_end = m_end;
847 if (out_nid)
848 *out_nid = m_nid;
849 idx_a++;
850 *idx = (u32)idx_a | (u64)idx_b << 32;
851 return;
852 }
Tejun Heo35fd0802011-07-12 11:15:59 +0200853
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100854 /* scan areas before each reservation */
855 for (; idx_b < type_b->cnt + 1; idx_b++) {
856 struct memblock_region *r;
857 phys_addr_t r_start;
858 phys_addr_t r_end;
859
860 r = &type_b->regions[idx_b];
861 r_start = idx_b ? r[-1].base + r[-1].size : 0;
862 r_end = idx_b < type_b->cnt ?
863 r->base : ULLONG_MAX;
864
865 /*
866 * if idx_b advanced past idx_a,
867 * break out to advance idx_a
868 */
Tejun Heo35fd0802011-07-12 11:15:59 +0200869 if (r_start >= m_end)
870 break;
871 /* if the two regions intersect, we're done */
872 if (m_start < r_end) {
873 if (out_start)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100874 *out_start =
875 max(m_start, r_start);
Tejun Heo35fd0802011-07-12 11:15:59 +0200876 if (out_end)
877 *out_end = min(m_end, r_end);
878 if (out_nid)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100879 *out_nid = m_nid;
Tejun Heo35fd0802011-07-12 11:15:59 +0200880 /*
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100881 * The region which ends first is
882 * advanced for the next iteration.
Tejun Heo35fd0802011-07-12 11:15:59 +0200883 */
884 if (m_end <= r_end)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100885 idx_a++;
Tejun Heo35fd0802011-07-12 11:15:59 +0200886 else
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100887 idx_b++;
888 *idx = (u32)idx_a | (u64)idx_b << 32;
Tejun Heo35fd0802011-07-12 11:15:59 +0200889 return;
890 }
891 }
892 }
893
894 /* signal end of iteration */
895 *idx = ULLONG_MAX;
896}
897
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800898/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100899 * __next_mem_range_rev - generic next function for for_each_*_range_rev()
900 *
901 * Finds the next range from type_a which is not marked as unsuitable
902 * in type_b.
903 *
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800904 * @idx: pointer to u64 loop variable
Grygorii Strashkob1154232014-01-21 15:50:16 -0800905 * @nid: nid: node selector, %NUMA_NO_NODE for all nodes
Tony Luckfc6daaf2015-06-24 16:58:09 -0700906 * @flags: pick from blocks based on memory attributes
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100907 * @type_a: pointer to memblock_type from where the range is taken
908 * @type_b: pointer to memblock_type which excludes memory from being taken
Wanpeng Lidad75572012-06-20 12:53:01 -0700909 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
910 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
911 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800912 *
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100913 * Reverse of __next_mem_range().
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800914 */
Tony Luckfc6daaf2015-06-24 16:58:09 -0700915void __init_memblock __next_mem_range_rev(u64 *idx, int nid, ulong flags,
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100916 struct memblock_type *type_a,
917 struct memblock_type *type_b,
918 phys_addr_t *out_start,
919 phys_addr_t *out_end, int *out_nid)
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800920{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100921 int idx_a = *idx & 0xffffffff;
922 int idx_b = *idx >> 32;
Grygorii Strashkob1154232014-01-21 15:50:16 -0800923
Grygorii Strashko560dca272014-01-21 15:50:55 -0800924 if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
925 nid = NUMA_NO_NODE;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800926
927 if (*idx == (u64)ULLONG_MAX) {
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100928 idx_a = type_a->cnt - 1;
929 idx_b = type_b->cnt;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800930 }
931
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100932 for (; idx_a >= 0; idx_a--) {
933 struct memblock_region *m = &type_a->regions[idx_a];
934
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800935 phys_addr_t m_start = m->base;
936 phys_addr_t m_end = m->base + m->size;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100937 int m_nid = memblock_get_region_node(m);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800938
939 /* only memory regions are associated with nodes, check it */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100940 if (nid != NUMA_NO_NODE && nid != m_nid)
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800941 continue;
942
Tang Chen55ac5902014-01-21 15:49:35 -0800943 /* skip hotpluggable memory regions if needed */
944 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
945 continue;
946
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100947 if (!type_b) {
948 if (out_start)
949 *out_start = m_start;
950 if (out_end)
951 *out_end = m_end;
952 if (out_nid)
953 *out_nid = m_nid;
954 idx_a++;
955 *idx = (u32)idx_a | (u64)idx_b << 32;
956 return;
957 }
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800958
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100959 /* scan areas before each reservation */
960 for (; idx_b >= 0; idx_b--) {
961 struct memblock_region *r;
962 phys_addr_t r_start;
963 phys_addr_t r_end;
964
965 r = &type_b->regions[idx_b];
966 r_start = idx_b ? r[-1].base + r[-1].size : 0;
967 r_end = idx_b < type_b->cnt ?
968 r->base : ULLONG_MAX;
969 /*
970 * if idx_b advanced past idx_a,
971 * break out to advance idx_a
972 */
973
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800974 if (r_end <= m_start)
975 break;
976 /* if the two regions intersect, we're done */
977 if (m_end > r_start) {
978 if (out_start)
979 *out_start = max(m_start, r_start);
980 if (out_end)
981 *out_end = min(m_end, r_end);
982 if (out_nid)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100983 *out_nid = m_nid;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800984 if (m_start >= r_start)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100985 idx_a--;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800986 else
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100987 idx_b--;
988 *idx = (u32)idx_a | (u64)idx_b << 32;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800989 return;
990 }
991 }
992 }
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100993 /* signal end of iteration */
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800994 *idx = ULLONG_MAX;
995}
996
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200997#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
998/*
999 * Common iterator interface used to define for_each_mem_range().
1000 */
1001void __init_memblock __next_mem_pfn_range(int *idx, int nid,
1002 unsigned long *out_start_pfn,
1003 unsigned long *out_end_pfn, int *out_nid)
1004{
1005 struct memblock_type *type = &memblock.memory;
1006 struct memblock_region *r;
1007
1008 while (++*idx < type->cnt) {
1009 r = &type->regions[*idx];
1010
1011 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
1012 continue;
1013 if (nid == MAX_NUMNODES || nid == r->nid)
1014 break;
1015 }
1016 if (*idx >= type->cnt) {
1017 *idx = -1;
1018 return;
1019 }
1020
1021 if (out_start_pfn)
1022 *out_start_pfn = PFN_UP(r->base);
1023 if (out_end_pfn)
1024 *out_end_pfn = PFN_DOWN(r->base + r->size);
1025 if (out_nid)
1026 *out_nid = r->nid;
1027}
1028
1029/**
1030 * memblock_set_node - set node ID on memblock regions
1031 * @base: base of area to set node ID for
1032 * @size: size of area to set node ID for
Tang Chene7e8de52014-01-21 15:49:26 -08001033 * @type: memblock type to set node ID for
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001034 * @nid: node ID to set
1035 *
Tang Chene7e8de52014-01-21 15:49:26 -08001036 * Set the nid of memblock @type regions in [@base,@base+@size) to @nid.
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001037 * Regions which cross the area boundaries are split as necessary.
1038 *
1039 * RETURNS:
1040 * 0 on success, -errno on failure.
1041 */
1042int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
Tang Chene7e8de52014-01-21 15:49:26 -08001043 struct memblock_type *type, int nid)
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001044{
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001045 int start_rgn, end_rgn;
1046 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001047
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001048 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
1049 if (ret)
1050 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001051
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001052 for (i = start_rgn; i < end_rgn; i++)
Wanpeng Lie9d24ad2012-10-08 16:32:21 -07001053 memblock_set_region_node(&type->regions[i], nid);
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001054
1055 memblock_merge_regions(type);
1056 return 0;
1057}
1058#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
1059
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001060static phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
1061 phys_addr_t align, phys_addr_t start,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001062 phys_addr_t end, int nid, ulong flags)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001063{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001064 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001065
Grygorii Strashko79f40fa2014-01-21 15:50:12 -08001066 if (!align)
1067 align = SMP_CACHE_BYTES;
Vineet Gupta94f3d3a2013-04-29 15:06:15 -07001068
Tony Luckfc6daaf2015-06-24 16:58:09 -07001069 found = memblock_find_in_range_node(size, align, start, end, nid,
1070 flags);
Catalin Marinasaedf95e2014-06-06 14:38:20 -07001071 if (found && !memblock_reserve(found, size)) {
1072 /*
1073 * The min_count is set to 0 so that memblock allocations are
1074 * never reported as leaks.
1075 */
1076 kmemleak_alloc(__va(found), size, 0, 0);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001077 return found;
Catalin Marinasaedf95e2014-06-06 14:38:20 -07001078 }
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001079 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001080}
1081
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001082phys_addr_t __init memblock_alloc_range(phys_addr_t size, phys_addr_t align,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001083 phys_addr_t start, phys_addr_t end,
1084 ulong flags)
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001085{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001086 return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE,
1087 flags);
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001088}
1089
1090static phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size,
1091 phys_addr_t align, phys_addr_t max_addr,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001092 int nid, ulong flags)
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001093{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001094 return memblock_alloc_range_nid(size, align, 0, max_addr, nid, flags);
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001095}
1096
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001097phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
1098{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001099 return memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE,
1100 nid, MEMBLOCK_NONE);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001101}
1102
1103phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
1104{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001105 return memblock_alloc_base_nid(size, align, max_addr, NUMA_NO_NODE,
1106 MEMBLOCK_NONE);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001107}
1108
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001109phys_addr_t __init memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001110{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001111 phys_addr_t alloc;
1112
1113 alloc = __memblock_alloc_base(size, align, max_addr);
1114
1115 if (alloc == 0)
1116 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
1117 (unsigned long long) size, (unsigned long long) max_addr);
1118
1119 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001120}
1121
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001122phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001123{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001124 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001125}
1126
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -07001127phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
1128{
1129 phys_addr_t res = memblock_alloc_nid(size, align, nid);
1130
1131 if (res)
1132 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +02001133 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001134}
1135
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001136/**
1137 * memblock_virt_alloc_internal - allocate boot memory block
1138 * @size: size of memory block to be allocated in bytes
1139 * @align: alignment of the region and block's size
1140 * @min_addr: the lower bound of the memory region to allocate (phys address)
1141 * @max_addr: the upper bound of the memory region to allocate (phys address)
1142 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1143 *
1144 * The @min_addr limit is dropped if it can not be satisfied and the allocation
1145 * will fall back to memory below @min_addr. Also, allocation may fall back
1146 * to any node in the system if the specified node can not
1147 * hold the requested memory.
1148 *
1149 * The allocation is performed from memory region limited by
1150 * memblock.current_limit if @max_addr == %BOOTMEM_ALLOC_ACCESSIBLE.
1151 *
1152 * The memory block is aligned on SMP_CACHE_BYTES if @align == 0.
1153 *
1154 * The phys address of allocated boot memory block is converted to virtual and
1155 * allocated memory is reset to 0.
1156 *
1157 * In addition, function sets the min_count to 0 using kmemleak_alloc for
1158 * allocated boot memory block, so that it is never reported as leaks.
1159 *
1160 * RETURNS:
1161 * Virtual address of allocated memory block on success, NULL on failure.
1162 */
1163static void * __init memblock_virt_alloc_internal(
1164 phys_addr_t size, phys_addr_t align,
1165 phys_addr_t min_addr, phys_addr_t max_addr,
1166 int nid)
1167{
1168 phys_addr_t alloc;
1169 void *ptr;
1170
Grygorii Strashko560dca272014-01-21 15:50:55 -08001171 if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1172 nid = NUMA_NO_NODE;
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001173
1174 /*
1175 * Detect any accidental use of these APIs after slab is ready, as at
1176 * this moment memblock may be deinitialized already and its
1177 * internal data may be destroyed (after execution of free_all_bootmem)
1178 */
1179 if (WARN_ON_ONCE(slab_is_available()))
1180 return kzalloc_node(size, GFP_NOWAIT, nid);
1181
1182 if (!align)
1183 align = SMP_CACHE_BYTES;
1184
Yinghai Luf544e142014-01-29 14:05:52 -08001185 if (max_addr > memblock.current_limit)
1186 max_addr = memblock.current_limit;
1187
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001188again:
1189 alloc = memblock_find_in_range_node(size, align, min_addr, max_addr,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001190 nid, MEMBLOCK_NONE);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001191 if (alloc)
1192 goto done;
1193
1194 if (nid != NUMA_NO_NODE) {
1195 alloc = memblock_find_in_range_node(size, align, min_addr,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001196 max_addr, NUMA_NO_NODE,
1197 MEMBLOCK_NONE);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001198 if (alloc)
1199 goto done;
1200 }
1201
1202 if (min_addr) {
1203 min_addr = 0;
1204 goto again;
1205 } else {
1206 goto error;
1207 }
1208
1209done:
1210 memblock_reserve(alloc, size);
1211 ptr = phys_to_virt(alloc);
1212 memset(ptr, 0, size);
1213
1214 /*
1215 * The min_count is set to 0 so that bootmem allocated blocks
1216 * are never reported as leaks. This is because many of these blocks
1217 * are only referred via the physical address which is not
1218 * looked up by kmemleak.
1219 */
1220 kmemleak_alloc(ptr, size, 0, 0);
1221
1222 return ptr;
1223
1224error:
1225 return NULL;
1226}
1227
1228/**
1229 * memblock_virt_alloc_try_nid_nopanic - allocate boot memory block
1230 * @size: size of memory block to be allocated in bytes
1231 * @align: alignment of the region and block's size
1232 * @min_addr: the lower bound of the memory region from where the allocation
1233 * is preferred (phys address)
1234 * @max_addr: the upper bound of the memory region from where the allocation
1235 * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1236 * allocate only from memory limited by memblock.current_limit value
1237 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1238 *
1239 * Public version of _memblock_virt_alloc_try_nid_nopanic() which provides
1240 * additional debug information (including caller info), if enabled.
1241 *
1242 * RETURNS:
1243 * Virtual address of allocated memory block on success, NULL on failure.
1244 */
1245void * __init memblock_virt_alloc_try_nid_nopanic(
1246 phys_addr_t size, phys_addr_t align,
1247 phys_addr_t min_addr, phys_addr_t max_addr,
1248 int nid)
1249{
1250 memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n",
1251 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1252 (u64)max_addr, (void *)_RET_IP_);
1253 return memblock_virt_alloc_internal(size, align, min_addr,
1254 max_addr, nid);
1255}
1256
1257/**
1258 * memblock_virt_alloc_try_nid - allocate boot memory block with panicking
1259 * @size: size of memory block to be allocated in bytes
1260 * @align: alignment of the region and block's size
1261 * @min_addr: the lower bound of the memory region from where the allocation
1262 * is preferred (phys address)
1263 * @max_addr: the upper bound of the memory region from where the allocation
1264 * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1265 * allocate only from memory limited by memblock.current_limit value
1266 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1267 *
1268 * Public panicking version of _memblock_virt_alloc_try_nid_nopanic()
1269 * which provides debug information (including caller info), if enabled,
1270 * and panics if the request can not be satisfied.
1271 *
1272 * RETURNS:
1273 * Virtual address of allocated memory block on success, NULL on failure.
1274 */
1275void * __init memblock_virt_alloc_try_nid(
1276 phys_addr_t size, phys_addr_t align,
1277 phys_addr_t min_addr, phys_addr_t max_addr,
1278 int nid)
1279{
1280 void *ptr;
1281
1282 memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n",
1283 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1284 (u64)max_addr, (void *)_RET_IP_);
1285 ptr = memblock_virt_alloc_internal(size, align,
1286 min_addr, max_addr, nid);
1287 if (ptr)
1288 return ptr;
1289
1290 panic("%s: Failed to allocate %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx\n",
1291 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1292 (u64)max_addr);
1293 return NULL;
1294}
1295
1296/**
1297 * __memblock_free_early - free boot memory block
1298 * @base: phys starting address of the boot memory block
1299 * @size: size of the boot memory block in bytes
1300 *
1301 * Free boot memory block previously allocated by memblock_virt_alloc_xx() API.
1302 * The freeing memory will not be released to the buddy allocator.
1303 */
1304void __init __memblock_free_early(phys_addr_t base, phys_addr_t size)
1305{
1306 memblock_dbg("%s: [%#016llx-%#016llx] %pF\n",
1307 __func__, (u64)base, (u64)base + size - 1,
1308 (void *)_RET_IP_);
1309 kmemleak_free_part(__va(base), size);
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001310 memblock_remove_range(&memblock.reserved, base, size);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001311}
1312
1313/*
1314 * __memblock_free_late - free bootmem block pages directly to buddy allocator
1315 * @addr: phys starting address of the boot memory block
1316 * @size: size of the boot memory block in bytes
1317 *
1318 * This is only useful when the bootmem allocator has already been torn
1319 * down, but we are still initializing the system. Pages are released directly
1320 * to the buddy allocator, no bootmem metadata is updated because it is gone.
1321 */
1322void __init __memblock_free_late(phys_addr_t base, phys_addr_t size)
1323{
1324 u64 cursor, end;
1325
1326 memblock_dbg("%s: [%#016llx-%#016llx] %pF\n",
1327 __func__, (u64)base, (u64)base + size - 1,
1328 (void *)_RET_IP_);
1329 kmemleak_free_part(__va(base), size);
1330 cursor = PFN_UP(base);
1331 end = PFN_DOWN(base + size);
1332
1333 for (; cursor < end; cursor++) {
1334 __free_pages_bootmem(pfn_to_page(cursor), 0);
1335 totalram_pages++;
1336 }
1337}
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -07001338
1339/*
1340 * Remaining API functions
1341 */
1342
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +10001343phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001344{
Tejun Heo1440c4e2011-12-08 10:22:08 -08001345 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001346}
1347
Yinghai Lu595ad9a2013-01-24 12:20:09 -08001348phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
1349{
1350 unsigned long pages = 0;
1351 struct memblock_region *r;
1352 unsigned long start_pfn, end_pfn;
1353
1354 for_each_memblock(memory, r) {
1355 start_pfn = memblock_region_memory_base_pfn(r);
1356 end_pfn = memblock_region_memory_end_pfn(r);
1357 start_pfn = min_t(unsigned long, start_pfn, limit_pfn);
1358 end_pfn = min_t(unsigned long, end_pfn, limit_pfn);
1359 pages += end_pfn - start_pfn;
1360 }
1361
Fabian Frederick16763232014-04-07 15:37:53 -07001362 return PFN_PHYS(pages);
Yinghai Lu595ad9a2013-01-24 12:20:09 -08001363}
1364
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -07001365/* lowest address */
1366phys_addr_t __init_memblock memblock_start_of_DRAM(void)
1367{
1368 return memblock.memory.regions[0].base;
1369}
1370
Yinghai Lu10d06432010-07-28 15:43:02 +10001371phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001372{
1373 int idx = memblock.memory.cnt - 1;
1374
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +10001375 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001376}
1377
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001378void __init memblock_enforce_memory_limit(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001379{
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001380 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Emil Medve136199f2014-04-07 15:37:52 -07001381 struct memblock_region *r;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001382
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001383 if (!limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001384 return;
1385
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001386 /* find out max address */
Emil Medve136199f2014-04-07 15:37:52 -07001387 for_each_memblock(memory, r) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001388 if (limit <= r->size) {
1389 max_addr = r->base + limit;
1390 break;
1391 }
1392 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001393 }
1394
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001395 /* truncate both memory and reserved regions */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001396 memblock_remove_range(&memblock.memory, max_addr,
1397 (phys_addr_t)ULLONG_MAX);
1398 memblock_remove_range(&memblock.reserved, max_addr,
1399 (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001400}
1401
Yinghai Lucd794812010-10-11 12:34:09 -07001402static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001403{
1404 unsigned int left = 0, right = type->cnt;
1405
1406 do {
1407 unsigned int mid = (right + left) / 2;
1408
1409 if (addr < type->regions[mid].base)
1410 right = mid;
1411 else if (addr >= (type->regions[mid].base +
1412 type->regions[mid].size))
1413 left = mid + 1;
1414 else
1415 return mid;
1416 } while (left < right);
1417 return -1;
1418}
1419
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +10001420int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001421{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001422 return memblock_search(&memblock.reserved, addr) != -1;
1423}
Yinghai Lu95f72d12010-07-12 14:36:09 +10001424
Yinghai Lu3661ca62010-09-15 13:05:29 -07001425int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001426{
1427 return memblock_search(&memblock.memory, addr) != -1;
1428}
1429
Yinghai Lue76b63f2013-09-11 14:22:17 -07001430#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1431int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1432 unsigned long *start_pfn, unsigned long *end_pfn)
1433{
1434 struct memblock_type *type = &memblock.memory;
Fabian Frederick16763232014-04-07 15:37:53 -07001435 int mid = memblock_search(type, PFN_PHYS(pfn));
Yinghai Lue76b63f2013-09-11 14:22:17 -07001436
1437 if (mid == -1)
1438 return -1;
1439
Fabian Frederickf7e2f7e2014-06-04 16:07:51 -07001440 *start_pfn = PFN_DOWN(type->regions[mid].base);
1441 *end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size);
Yinghai Lue76b63f2013-09-11 14:22:17 -07001442
1443 return type->regions[mid].nid;
1444}
1445#endif
1446
Stephen Boydeab30942012-05-24 00:45:21 -07001447/**
1448 * memblock_is_region_memory - check if a region is a subset of memory
1449 * @base: base of region to check
1450 * @size: size of region to check
1451 *
1452 * Check if the region [@base, @base+@size) is a subset of a memory block.
1453 *
1454 * RETURNS:
1455 * 0 if false, non-zero if true
1456 */
Yinghai Lu3661ca62010-09-15 13:05:29 -07001457int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001458{
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001459 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001460 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001461
1462 if (idx == -1)
1463 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001464 return memblock.memory.regions[idx].base <= base &&
1465 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001466 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001467}
1468
Stephen Boydeab30942012-05-24 00:45:21 -07001469/**
1470 * memblock_is_region_reserved - check if a region intersects reserved memory
1471 * @base: base of region to check
1472 * @size: size of region to check
1473 *
1474 * Check if the region [@base, @base+@size) intersects a reserved memory block.
1475 *
1476 * RETURNS:
1477 * 0 if false, non-zero if true
1478 */
Yinghai Lu10d06432010-07-28 15:43:02 +10001479int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001480{
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001481 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +10001482 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001483}
1484
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001485void __init_memblock memblock_trim_memory(phys_addr_t align)
1486{
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001487 phys_addr_t start, end, orig_start, orig_end;
Emil Medve136199f2014-04-07 15:37:52 -07001488 struct memblock_region *r;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001489
Emil Medve136199f2014-04-07 15:37:52 -07001490 for_each_memblock(memory, r) {
1491 orig_start = r->base;
1492 orig_end = r->base + r->size;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001493 start = round_up(orig_start, align);
1494 end = round_down(orig_end, align);
1495
1496 if (start == orig_start && end == orig_end)
1497 continue;
1498
1499 if (start < end) {
Emil Medve136199f2014-04-07 15:37:52 -07001500 r->base = start;
1501 r->size = end - start;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001502 } else {
Emil Medve136199f2014-04-07 15:37:52 -07001503 memblock_remove_region(&memblock.memory,
1504 r - memblock.memory.regions);
1505 r--;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001506 }
1507 }
1508}
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001509
Yinghai Lu3661ca62010-09-15 13:05:29 -07001510void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001511{
1512 memblock.current_limit = limit;
1513}
1514
Laura Abbottfec51012014-02-27 01:23:43 +01001515phys_addr_t __init_memblock memblock_get_current_limit(void)
1516{
1517 return memblock.current_limit;
1518}
1519
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001520static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001521{
1522 unsigned long long base, size;
Tang Chen66a20752014-01-21 15:49:20 -08001523 unsigned long flags;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001524 int i;
1525
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001526 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001527
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001528 for (i = 0; i < type->cnt; i++) {
1529 struct memblock_region *rgn = &type->regions[i];
1530 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001531
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001532 base = rgn->base;
1533 size = rgn->size;
Tang Chen66a20752014-01-21 15:49:20 -08001534 flags = rgn->flags;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001535#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1536 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
1537 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
1538 memblock_get_region_node(rgn));
1539#endif
Tang Chen66a20752014-01-21 15:49:20 -08001540 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s flags: %#lx\n",
1541 name, i, base, base + size - 1, size, nid_buf, flags);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001542 }
1543}
1544
Tejun Heo4ff7b822011-12-08 10:22:06 -08001545void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001546{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001547 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -08001548 pr_info(" memory size = %#llx reserved size = %#llx\n",
1549 (unsigned long long)memblock.memory.total_size,
1550 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001551
1552 memblock_dump(&memblock.memory, "memory");
1553 memblock_dump(&memblock.reserved, "reserved");
1554}
1555
Tejun Heo1aadc052011-12-08 10:22:08 -08001556void __init memblock_allow_resize(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001557{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -07001558 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001559}
1560
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001561static int __init early_memblock(char *p)
1562{
1563 if (p && strstr(p, "debug"))
1564 memblock_debug = 1;
1565 return 0;
1566}
1567early_param("memblock", early_memblock);
1568
Tejun Heoc378ddd2011-07-14 11:46:03 +02001569#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001570
1571static int memblock_debug_show(struct seq_file *m, void *private)
1572{
1573 struct memblock_type *type = m->private;
1574 struct memblock_region *reg;
1575 int i;
1576
1577 for (i = 0; i < type->cnt; i++) {
1578 reg = &type->regions[i];
1579 seq_printf(m, "%4d: ", i);
1580 if (sizeof(phys_addr_t) == 4)
1581 seq_printf(m, "0x%08lx..0x%08lx\n",
1582 (unsigned long)reg->base,
1583 (unsigned long)(reg->base + reg->size - 1));
1584 else
1585 seq_printf(m, "0x%016llx..0x%016llx\n",
1586 (unsigned long long)reg->base,
1587 (unsigned long long)(reg->base + reg->size - 1));
1588
1589 }
1590 return 0;
1591}
1592
1593static int memblock_debug_open(struct inode *inode, struct file *file)
1594{
1595 return single_open(file, memblock_debug_show, inode->i_private);
1596}
1597
1598static const struct file_operations memblock_debug_fops = {
1599 .open = memblock_debug_open,
1600 .read = seq_read,
1601 .llseek = seq_lseek,
1602 .release = single_release,
1603};
1604
1605static int __init memblock_init_debugfs(void)
1606{
1607 struct dentry *root = debugfs_create_dir("memblock", NULL);
1608 if (!root)
1609 return -ENXIO;
1610 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
1611 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
Philipp Hachtmann70210ed2014-01-29 18:16:01 +01001612#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
1613 debugfs_create_file("physmem", S_IRUGO, root, &memblock.physmem, &memblock_debug_fops);
1614#endif
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001615
1616 return 0;
1617}
1618__initcall(memblock_init_debugfs);
1619
1620#endif /* CONFIG_DEBUG_FS */