blob: accff10871373e0c24cb23785611ea212fd24595 [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
Tejun Heofe091c22011-12-08 10:22:07 -080023static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
24static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
25
26struct memblock memblock __initdata_memblock = {
27 .memory.regions = memblock_memory_init_regions,
28 .memory.cnt = 1, /* empty dummy entry */
29 .memory.max = INIT_MEMBLOCK_REGIONS,
30
31 .reserved.regions = memblock_reserved_init_regions,
32 .reserved.cnt = 1, /* empty dummy entry */
33 .reserved.max = INIT_MEMBLOCK_REGIONS,
34
35 .current_limit = MEMBLOCK_ALLOC_ANYWHERE,
36};
Yinghai Lu95f72d12010-07-12 14:36:09 +100037
Yinghai Lu10d06432010-07-28 15:43:02 +100038int memblock_debug __initdata_memblock;
Tejun Heo1aadc052011-12-08 10:22:08 -080039static int memblock_can_resize __initdata_memblock;
Gavin Shan181eb392012-05-29 15:06:50 -070040static int memblock_memory_in_slab __initdata_memblock = 0;
41static int memblock_reserved_in_slab __initdata_memblock = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +100042
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070043/* inline so we don't get a warning when pr_debug is compiled out */
Raghavendra D Prabhuc2233112012-10-08 16:33:55 -070044static __init_memblock const char *
45memblock_type_name(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070046{
47 if (type == &memblock.memory)
48 return "memory";
49 else if (type == &memblock.reserved)
50 return "reserved";
51 else
52 return "unknown";
53}
54
Tejun Heoeb18f1b2011-12-08 10:22:07 -080055/* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
56static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
57{
58 return *size = min(*size, (phys_addr_t)ULLONG_MAX - base);
59}
60
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100061/*
62 * Address comparison utilities
63 */
Yinghai Lu10d06432010-07-28 15:43:02 +100064static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100065 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100066{
67 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
68}
69
H Hartley Sweeten2d7d3eb2011-10-31 17:09:15 -070070static long __init_memblock memblock_overlaps_region(struct memblock_type *type,
71 phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100072{
73 unsigned long i;
74
75 for (i = 0; i < type->cnt; i++) {
76 phys_addr_t rgnbase = type->regions[i].base;
77 phys_addr_t rgnsize = type->regions[i].size;
78 if (memblock_addrs_overlap(base, size, rgnbase, rgnsize))
79 break;
80 }
81
82 return (i < type->cnt) ? i : -1;
83}
84
Tejun Heo7bd0b0f2011-12-08 10:22:09 -080085/**
Tang Chen14028992013-11-12 15:07:57 -080086 * __memblock_find_range_top_down - find free area utility, in top-down
87 * @start: start of candidate range
88 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
89 * @size: size of free area to find
90 * @align: alignment of free area to find
91 * @nid: nid of the free area to find, %MAX_NUMNODES for any node
92 *
93 * Utility called from memblock_find_in_range_node(), find free area top-down.
94 *
95 * RETURNS:
96 * Found address on success, %0 on failure.
97 */
98static phys_addr_t __init_memblock
99__memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
100 phys_addr_t size, phys_addr_t align, int nid)
101{
102 phys_addr_t this_start, this_end, cand;
103 u64 i;
104
105 for_each_free_mem_range_reverse(i, nid, &this_start, &this_end, NULL) {
106 this_start = clamp(this_start, start, end);
107 this_end = clamp(this_end, start, end);
108
109 if (this_end < size)
110 continue;
111
112 cand = round_down(this_end - size, align);
113 if (cand >= this_start)
114 return cand;
115 }
116
117 return 0;
118}
119
120/**
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800121 * memblock_find_in_range_node - find free area in given range and node
122 * @start: start of candidate range
123 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
124 * @size: size of free area to find
125 * @align: alignment of free area to find
126 * @nid: nid of the free area to find, %MAX_NUMNODES for any node
127 *
128 * Find @size free area aligned to @align in the specified range and node.
129 *
130 * RETURNS:
131 * Found address on success, %0 on failure.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000132 */
Tang Chenf7210e62013-02-22 16:33:51 -0800133phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t start,
134 phys_addr_t end, phys_addr_t size,
135 phys_addr_t align, int nid)
136{
Tang Chenf7210e62013-02-22 16:33:51 -0800137 /* pump up @end */
138 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
139 end = memblock.current_limit;
140
141 /* avoid allocating the first page */
142 start = max_t(phys_addr_t, start, PAGE_SIZE);
143 end = max(start, end);
144
Tang Chen14028992013-11-12 15:07:57 -0800145 return __memblock_find_range_top_down(start, end, size, align, nid);
Tang Chenf7210e62013-02-22 16:33:51 -0800146}
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000147
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800148/**
149 * memblock_find_in_range - find free area in given range
150 * @start: start of candidate range
151 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
152 * @size: size of free area to find
153 * @align: alignment of free area to find
154 *
155 * Find @size free area aligned to @align in the specified range.
156 *
157 * RETURNS:
158 * Found address on success, %0 on failure.
159 */
160phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
161 phys_addr_t end, phys_addr_t size,
162 phys_addr_t align)
163{
164 return memblock_find_in_range_node(start, end, size, align,
165 MAX_NUMNODES);
166}
167
Yinghai Lu10d06432010-07-28 15:43:02 +1000168static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000169{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800170 type->total_size -= type->regions[r].size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200171 memmove(&type->regions[r], &type->regions[r + 1],
172 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000173 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000174
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700175 /* Special case for empty arrays */
176 if (type->cnt == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800177 WARN_ON(type->total_size != 0);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700178 type->cnt = 1;
179 type->regions[0].base = 0;
180 type->regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200181 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700182 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000183}
184
Yinghai Lu29f67382012-07-11 14:02:56 -0700185phys_addr_t __init_memblock get_allocated_memblock_reserved_regions_info(
186 phys_addr_t *addr)
187{
188 if (memblock.reserved.regions == memblock_reserved_init_regions)
189 return 0;
190
191 *addr = __pa(memblock.reserved.regions);
192
193 return PAGE_ALIGN(sizeof(struct memblock_region) *
194 memblock.reserved.max);
195}
196
Greg Pearson48c3b582012-06-20 12:53:05 -0700197/**
198 * memblock_double_array - double the size of the memblock regions array
199 * @type: memblock type of the regions array being doubled
200 * @new_area_start: starting address of memory range to avoid overlap with
201 * @new_area_size: size of memory range to avoid overlap with
202 *
203 * Double the size of the @type regions array. If memblock is being used to
204 * allocate memory for a new reserved regions array and there is a previously
205 * allocated memory range [@new_area_start,@new_area_start+@new_area_size]
206 * waiting to be reserved, ensure the memory used by the new array does
207 * not overlap.
208 *
209 * RETURNS:
210 * 0 on success, -1 on failure.
211 */
212static int __init_memblock memblock_double_array(struct memblock_type *type,
213 phys_addr_t new_area_start,
214 phys_addr_t new_area_size)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700215{
216 struct memblock_region *new_array, *old_array;
Yinghai Lu29f67382012-07-11 14:02:56 -0700217 phys_addr_t old_alloc_size, new_alloc_size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700218 phys_addr_t old_size, new_size, addr;
219 int use_slab = slab_is_available();
Gavin Shan181eb392012-05-29 15:06:50 -0700220 int *in_slab;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700221
222 /* We don't allow resizing until we know about the reserved regions
223 * of memory that aren't suitable for allocation
224 */
225 if (!memblock_can_resize)
226 return -1;
227
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700228 /* Calculate new doubled size */
229 old_size = type->max * sizeof(struct memblock_region);
230 new_size = old_size << 1;
Yinghai Lu29f67382012-07-11 14:02:56 -0700231 /*
232 * We need to allocated new one align to PAGE_SIZE,
233 * so we can free them completely later.
234 */
235 old_alloc_size = PAGE_ALIGN(old_size);
236 new_alloc_size = PAGE_ALIGN(new_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700237
Gavin Shan181eb392012-05-29 15:06:50 -0700238 /* Retrieve the slab flag */
239 if (type == &memblock.memory)
240 in_slab = &memblock_memory_in_slab;
241 else
242 in_slab = &memblock_reserved_in_slab;
243
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700244 /* Try to find some space for it.
245 *
246 * WARNING: We assume that either slab_is_available() and we use it or
Andrew Mortonfd073832012-07-31 16:42:40 -0700247 * we use MEMBLOCK for allocations. That means that this is unsafe to
248 * use when bootmem is currently active (unless bootmem itself is
249 * implemented on top of MEMBLOCK which isn't the case yet)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700250 *
251 * This should however not be an issue for now, as we currently only
Andrew Mortonfd073832012-07-31 16:42:40 -0700252 * call into MEMBLOCK while it's still active, or much later when slab
253 * is active for memory hotplug operations
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700254 */
255 if (use_slab) {
256 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200257 addr = new_array ? __pa(new_array) : 0;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700258 } else {
Greg Pearson48c3b582012-06-20 12:53:05 -0700259 /* only exclude range when trying to double reserved.regions */
260 if (type != &memblock.reserved)
261 new_area_start = new_area_size = 0;
262
263 addr = memblock_find_in_range(new_area_start + new_area_size,
264 memblock.current_limit,
Yinghai Lu29f67382012-07-11 14:02:56 -0700265 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700266 if (!addr && new_area_size)
267 addr = memblock_find_in_range(0,
Andrew Mortonfd073832012-07-31 16:42:40 -0700268 min(new_area_start, memblock.current_limit),
269 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700270
Sachin Kamat15674862012-09-04 13:55:05 +0530271 new_array = addr ? __va(addr) : NULL;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700272 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200273 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700274 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
275 memblock_type_name(type), type->max, type->max * 2);
276 return -1;
277 }
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700278
Andrew Mortonfd073832012-07-31 16:42:40 -0700279 memblock_dbg("memblock: %s is doubled to %ld at [%#010llx-%#010llx]",
280 memblock_type_name(type), type->max * 2, (u64)addr,
281 (u64)addr + new_size - 1);
Yinghai Luea9e4372010-07-28 15:13:22 +1000282
Andrew Mortonfd073832012-07-31 16:42:40 -0700283 /*
284 * Found space, we now need to move the array over before we add the
285 * reserved region since it may be our reserved array itself that is
286 * full.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700287 */
288 memcpy(new_array, type->regions, old_size);
289 memset(new_array + type->max, 0, old_size);
290 old_array = type->regions;
291 type->regions = new_array;
292 type->max <<= 1;
293
Andrew Mortonfd073832012-07-31 16:42:40 -0700294 /* Free old array. We needn't free it if the array is the static one */
Gavin Shan181eb392012-05-29 15:06:50 -0700295 if (*in_slab)
296 kfree(old_array);
297 else if (old_array != memblock_memory_init_regions &&
298 old_array != memblock_reserved_init_regions)
Yinghai Lu29f67382012-07-11 14:02:56 -0700299 memblock_free(__pa(old_array), old_alloc_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700300
Andrew Mortonfd073832012-07-31 16:42:40 -0700301 /*
302 * Reserve the new array if that comes from the memblock. Otherwise, we
303 * needn't do it
Gavin Shan181eb392012-05-29 15:06:50 -0700304 */
305 if (!use_slab)
Yinghai Lu29f67382012-07-11 14:02:56 -0700306 BUG_ON(memblock_reserve(addr, new_alloc_size));
Gavin Shan181eb392012-05-29 15:06:50 -0700307
308 /* Update slab flag */
309 *in_slab = use_slab;
310
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700311 return 0;
312}
313
Tejun Heo784656f92011-07-12 11:15:55 +0200314/**
315 * memblock_merge_regions - merge neighboring compatible regions
316 * @type: memblock type to scan
317 *
318 * Scan @type and merge neighboring compatible regions.
319 */
320static void __init_memblock memblock_merge_regions(struct memblock_type *type)
321{
322 int i = 0;
323
324 /* cnt never goes below 1 */
325 while (i < type->cnt - 1) {
326 struct memblock_region *this = &type->regions[i];
327 struct memblock_region *next = &type->regions[i + 1];
328
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200329 if (this->base + this->size != next->base ||
330 memblock_get_region_node(this) !=
331 memblock_get_region_node(next)) {
Tejun Heo784656f92011-07-12 11:15:55 +0200332 BUG_ON(this->base + this->size > next->base);
333 i++;
334 continue;
335 }
336
337 this->size += next->size;
Lin Fengc0232ae2013-01-11 14:31:44 -0800338 /* move forward from next + 1, index of which is i + 2 */
339 memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
Tejun Heo784656f92011-07-12 11:15:55 +0200340 type->cnt--;
341 }
342}
343
344/**
345 * memblock_insert_region - insert new memblock region
Tang Chen209ff862013-04-29 15:08:41 -0700346 * @type: memblock type to insert into
347 * @idx: index for the insertion point
348 * @base: base address of the new region
349 * @size: size of the new region
350 * @nid: node id of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200351 *
352 * Insert new memblock region [@base,@base+@size) into @type at @idx.
353 * @type must already have extra room to accomodate the new region.
354 */
355static void __init_memblock memblock_insert_region(struct memblock_type *type,
356 int idx, phys_addr_t base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200357 phys_addr_t size, int nid)
Tejun Heo784656f92011-07-12 11:15:55 +0200358{
359 struct memblock_region *rgn = &type->regions[idx];
360
361 BUG_ON(type->cnt >= type->max);
362 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
363 rgn->base = base;
364 rgn->size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200365 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200366 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800367 type->total_size += size;
Tejun Heo784656f92011-07-12 11:15:55 +0200368}
369
370/**
371 * memblock_add_region - add new memblock region
372 * @type: memblock type to add new region into
373 * @base: base address of the new region
374 * @size: size of the new region
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800375 * @nid: nid of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200376 *
377 * Add new memblock region [@base,@base+@size) into @type. The new region
378 * is allowed to overlap with existing ones - overlaps don't affect already
379 * existing regions. @type is guaranteed to be minimal (all neighbouring
380 * compatible regions are merged) after the addition.
381 *
382 * RETURNS:
383 * 0 on success, -errno on failure.
384 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800385static int __init_memblock memblock_add_region(struct memblock_type *type,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800386 phys_addr_t base, phys_addr_t size, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000387{
Tejun Heo784656f92011-07-12 11:15:55 +0200388 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800389 phys_addr_t obase = base;
390 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f92011-07-12 11:15:55 +0200391 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000392
Tejun Heob3dc6272012-04-20 08:31:34 -0700393 if (!size)
394 return 0;
395
Tejun Heo784656f92011-07-12 11:15:55 +0200396 /* special case for empty array */
397 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800398 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000399 type->regions[0].base = base;
400 type->regions[0].size = size;
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800401 memblock_set_region_node(&type->regions[0], nid);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800402 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000403 return 0;
404 }
Tejun Heo784656f92011-07-12 11:15:55 +0200405repeat:
406 /*
407 * The following is executed twice. Once with %false @insert and
408 * then with %true. The first counts the number of regions needed
409 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700410 */
Tejun Heo784656f92011-07-12 11:15:55 +0200411 base = obase;
412 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000413
Tejun Heo784656f92011-07-12 11:15:55 +0200414 for (i = 0; i < type->cnt; i++) {
415 struct memblock_region *rgn = &type->regions[i];
416 phys_addr_t rbase = rgn->base;
417 phys_addr_t rend = rbase + rgn->size;
418
419 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000420 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200421 if (rend <= base)
422 continue;
423 /*
424 * @rgn overlaps. If it separates the lower part of new
425 * area, insert that portion.
426 */
427 if (rbase > base) {
428 nr_new++;
429 if (insert)
430 memblock_insert_region(type, i++, base,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800431 rbase - base, nid);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000432 }
Tejun Heo784656f92011-07-12 11:15:55 +0200433 /* area below @rend is dealt with, forget about it */
434 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000435 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000436
Tejun Heo784656f92011-07-12 11:15:55 +0200437 /* insert the remaining portion */
438 if (base < end) {
439 nr_new++;
440 if (insert)
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800441 memblock_insert_region(type, i, base, end - base, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200442 }
443
444 /*
445 * If this was the first round, resize array and repeat for actual
446 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700447 */
Tejun Heo784656f92011-07-12 11:15:55 +0200448 if (!insert) {
449 while (type->cnt + nr_new > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700450 if (memblock_double_array(type, obase, size) < 0)
Tejun Heo784656f92011-07-12 11:15:55 +0200451 return -ENOMEM;
452 insert = true;
453 goto repeat;
454 } else {
455 memblock_merge_regions(type);
456 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700457 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000458}
459
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800460int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
461 int nid)
462{
463 return memblock_add_region(&memblock.memory, base, size, nid);
464}
465
Tejun Heo581adcb2011-12-08 10:22:06 -0800466int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000467{
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800468 return memblock_add_region(&memblock.memory, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000469}
470
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800471/**
472 * memblock_isolate_range - isolate given range into disjoint memblocks
473 * @type: memblock type to isolate range for
474 * @base: base of range to isolate
475 * @size: size of range to isolate
476 * @start_rgn: out parameter for the start of isolated region
477 * @end_rgn: out parameter for the end of isolated region
478 *
479 * Walk @type and ensure that regions don't cross the boundaries defined by
480 * [@base,@base+@size). Crossing regions are split at the boundaries,
481 * which may create at most two more regions. The index of the first
482 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
483 *
484 * RETURNS:
485 * 0 on success, -errno on failure.
486 */
487static int __init_memblock memblock_isolate_range(struct memblock_type *type,
488 phys_addr_t base, phys_addr_t size,
489 int *start_rgn, int *end_rgn)
490{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800491 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800492 int i;
493
494 *start_rgn = *end_rgn = 0;
495
Tejun Heob3dc6272012-04-20 08:31:34 -0700496 if (!size)
497 return 0;
498
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800499 /* we'll create at most two more regions */
500 while (type->cnt + 2 > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700501 if (memblock_double_array(type, base, size) < 0)
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800502 return -ENOMEM;
503
504 for (i = 0; i < type->cnt; i++) {
505 struct memblock_region *rgn = &type->regions[i];
506 phys_addr_t rbase = rgn->base;
507 phys_addr_t rend = rbase + rgn->size;
508
509 if (rbase >= end)
510 break;
511 if (rend <= base)
512 continue;
513
514 if (rbase < base) {
515 /*
516 * @rgn intersects from below. Split and continue
517 * to process the next region - the new top half.
518 */
519 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800520 rgn->size -= base - rbase;
521 type->total_size -= base - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800522 memblock_insert_region(type, i, rbase, base - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800523 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800524 } else if (rend > end) {
525 /*
526 * @rgn intersects from above. Split and redo the
527 * current region - the new bottom half.
528 */
529 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800530 rgn->size -= end - rbase;
531 type->total_size -= end - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800532 memblock_insert_region(type, i--, rbase, end - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800533 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800534 } else {
535 /* @rgn is fully contained, record it */
536 if (!*end_rgn)
537 *start_rgn = i;
538 *end_rgn = i + 1;
539 }
540 }
541
542 return 0;
543}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800544
Tejun Heo581adcb2011-12-08 10:22:06 -0800545static int __init_memblock __memblock_remove(struct memblock_type *type,
546 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000547{
Tejun Heo71936182011-12-08 10:22:07 -0800548 int start_rgn, end_rgn;
549 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000550
Tejun Heo71936182011-12-08 10:22:07 -0800551 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
552 if (ret)
553 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000554
Tejun Heo71936182011-12-08 10:22:07 -0800555 for (i = end_rgn - 1; i >= start_rgn; i--)
556 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700557 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000558}
559
Tejun Heo581adcb2011-12-08 10:22:06 -0800560int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000561{
562 return __memblock_remove(&memblock.memory, base, size);
563}
564
Tejun Heo581adcb2011-12-08 10:22:06 -0800565int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000566{
Tejun Heo24aa0782011-07-12 11:16:06 +0200567 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700568 (unsigned long long)base,
569 (unsigned long long)base + size,
570 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200571
Yinghai Lu95f72d12010-07-12 14:36:09 +1000572 return __memblock_remove(&memblock.reserved, base, size);
573}
574
Tejun Heo581adcb2011-12-08 10:22:06 -0800575int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000576{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000577 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000578
Tejun Heo24aa0782011-07-12 11:16:06 +0200579 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700580 (unsigned long long)base,
581 (unsigned long long)base + size,
582 (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000583
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800584 return memblock_add_region(_rgn, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000585}
586
Tejun Heo35fd0802011-07-12 11:15:59 +0200587/**
588 * __next_free_mem_range - next function for for_each_free_mem_range()
589 * @idx: pointer to u64 loop variable
Tang Chend8bbdd72013-07-08 16:00:22 -0700590 * @nid: node selector, %MAX_NUMNODES for all nodes
Wanpeng Lidad75572012-06-20 12:53:01 -0700591 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
592 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
593 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo35fd0802011-07-12 11:15:59 +0200594 *
595 * Find the first free area from *@idx which matches @nid, fill the out
596 * parameters, and update *@idx for the next iteration. The lower 32bit of
597 * *@idx contains index into memory region and the upper 32bit indexes the
598 * areas before each reserved region. For example, if reserved regions
599 * look like the following,
600 *
601 * 0:[0-16), 1:[32-48), 2:[128-130)
602 *
603 * The upper 32bit indexes the following regions.
604 *
605 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
606 *
607 * As both region arrays are sorted, the function advances the two indices
608 * in lockstep and returns each intersection.
609 */
610void __init_memblock __next_free_mem_range(u64 *idx, int nid,
611 phys_addr_t *out_start,
612 phys_addr_t *out_end, int *out_nid)
613{
614 struct memblock_type *mem = &memblock.memory;
615 struct memblock_type *rsv = &memblock.reserved;
616 int mi = *idx & 0xffffffff;
617 int ri = *idx >> 32;
618
619 for ( ; mi < mem->cnt; mi++) {
620 struct memblock_region *m = &mem->regions[mi];
621 phys_addr_t m_start = m->base;
622 phys_addr_t m_end = m->base + m->size;
623
624 /* only memory regions are associated with nodes, check it */
625 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
626 continue;
627
628 /* scan areas before each reservation for intersection */
629 for ( ; ri < rsv->cnt + 1; ri++) {
630 struct memblock_region *r = &rsv->regions[ri];
631 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
632 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
633
634 /* if ri advanced past mi, break out to advance mi */
635 if (r_start >= m_end)
636 break;
637 /* if the two regions intersect, we're done */
638 if (m_start < r_end) {
639 if (out_start)
640 *out_start = max(m_start, r_start);
641 if (out_end)
642 *out_end = min(m_end, r_end);
643 if (out_nid)
644 *out_nid = memblock_get_region_node(m);
645 /*
646 * The region which ends first is advanced
647 * for the next iteration.
648 */
649 if (m_end <= r_end)
650 mi++;
651 else
652 ri++;
653 *idx = (u32)mi | (u64)ri << 32;
654 return;
655 }
656 }
657 }
658
659 /* signal end of iteration */
660 *idx = ULLONG_MAX;
661}
662
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800663/**
664 * __next_free_mem_range_rev - next function for for_each_free_mem_range_reverse()
665 * @idx: pointer to u64 loop variable
666 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
Wanpeng Lidad75572012-06-20 12:53:01 -0700667 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
668 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
669 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800670 *
671 * Reverse of __next_free_mem_range().
672 */
673void __init_memblock __next_free_mem_range_rev(u64 *idx, int nid,
674 phys_addr_t *out_start,
675 phys_addr_t *out_end, int *out_nid)
676{
677 struct memblock_type *mem = &memblock.memory;
678 struct memblock_type *rsv = &memblock.reserved;
679 int mi = *idx & 0xffffffff;
680 int ri = *idx >> 32;
681
682 if (*idx == (u64)ULLONG_MAX) {
683 mi = mem->cnt - 1;
684 ri = rsv->cnt;
685 }
686
687 for ( ; mi >= 0; mi--) {
688 struct memblock_region *m = &mem->regions[mi];
689 phys_addr_t m_start = m->base;
690 phys_addr_t m_end = m->base + m->size;
691
692 /* only memory regions are associated with nodes, check it */
693 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
694 continue;
695
696 /* scan areas before each reservation for intersection */
697 for ( ; ri >= 0; ri--) {
698 struct memblock_region *r = &rsv->regions[ri];
699 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
700 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
701
702 /* if ri advanced past mi, break out to advance mi */
703 if (r_end <= m_start)
704 break;
705 /* if the two regions intersect, we're done */
706 if (m_end > r_start) {
707 if (out_start)
708 *out_start = max(m_start, r_start);
709 if (out_end)
710 *out_end = min(m_end, r_end);
711 if (out_nid)
712 *out_nid = memblock_get_region_node(m);
713
714 if (m_start >= r_start)
715 mi--;
716 else
717 ri--;
718 *idx = (u32)mi | (u64)ri << 32;
719 return;
720 }
721 }
722 }
723
724 *idx = ULLONG_MAX;
725}
726
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200727#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
728/*
729 * Common iterator interface used to define for_each_mem_range().
730 */
731void __init_memblock __next_mem_pfn_range(int *idx, int nid,
732 unsigned long *out_start_pfn,
733 unsigned long *out_end_pfn, int *out_nid)
734{
735 struct memblock_type *type = &memblock.memory;
736 struct memblock_region *r;
737
738 while (++*idx < type->cnt) {
739 r = &type->regions[*idx];
740
741 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
742 continue;
743 if (nid == MAX_NUMNODES || nid == r->nid)
744 break;
745 }
746 if (*idx >= type->cnt) {
747 *idx = -1;
748 return;
749 }
750
751 if (out_start_pfn)
752 *out_start_pfn = PFN_UP(r->base);
753 if (out_end_pfn)
754 *out_end_pfn = PFN_DOWN(r->base + r->size);
755 if (out_nid)
756 *out_nid = r->nid;
757}
758
759/**
760 * memblock_set_node - set node ID on memblock regions
761 * @base: base of area to set node ID for
762 * @size: size of area to set node ID for
763 * @nid: node ID to set
764 *
765 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
766 * Regions which cross the area boundaries are split as necessary.
767 *
768 * RETURNS:
769 * 0 on success, -errno on failure.
770 */
771int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
772 int nid)
773{
774 struct memblock_type *type = &memblock.memory;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800775 int start_rgn, end_rgn;
776 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200777
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800778 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
779 if (ret)
780 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200781
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800782 for (i = start_rgn; i < end_rgn; i++)
Wanpeng Lie9d24ad2012-10-08 16:32:21 -0700783 memblock_set_region_node(&type->regions[i], nid);
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200784
785 memblock_merge_regions(type);
786 return 0;
787}
788#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
789
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800790static phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size,
791 phys_addr_t align, phys_addr_t max_addr,
792 int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000793{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000794 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000795
Vineet Gupta94f3d3a2013-04-29 15:06:15 -0700796 if (WARN_ON(!align))
797 align = __alignof__(long long);
798
Tejun Heo847854f2012-02-29 05:56:21 +0900799 /* align @size to avoid excessive fragmentation on reserved array */
800 size = round_up(size, align);
801
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800802 found = memblock_find_in_range_node(0, max_addr, size, align, nid);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800803 if (found && !memblock_reserve(found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000804 return found;
805
806 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000807}
808
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800809phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
810{
811 return memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE, nid);
812}
813
814phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
815{
816 return memblock_alloc_base_nid(size, align, max_addr, MAX_NUMNODES);
817}
818
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000819phys_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 +1000820{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000821 phys_addr_t alloc;
822
823 alloc = __memblock_alloc_base(size, align, max_addr);
824
825 if (alloc == 0)
826 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
827 (unsigned long long) size, (unsigned long long) max_addr);
828
829 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000830}
831
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000832phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000833{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000834 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000835}
836
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700837phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
838{
839 phys_addr_t res = memblock_alloc_nid(size, align, nid);
840
841 if (res)
842 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200843 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000844}
845
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700846
847/*
848 * Remaining API functions
849 */
850
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000851phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000852{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800853 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000854}
855
Yinghai Lu595ad9a2013-01-24 12:20:09 -0800856phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
857{
858 unsigned long pages = 0;
859 struct memblock_region *r;
860 unsigned long start_pfn, end_pfn;
861
862 for_each_memblock(memory, r) {
863 start_pfn = memblock_region_memory_base_pfn(r);
864 end_pfn = memblock_region_memory_end_pfn(r);
865 start_pfn = min_t(unsigned long, start_pfn, limit_pfn);
866 end_pfn = min_t(unsigned long, end_pfn, limit_pfn);
867 pages += end_pfn - start_pfn;
868 }
869
870 return (phys_addr_t)pages << PAGE_SHIFT;
871}
872
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -0700873/* lowest address */
874phys_addr_t __init_memblock memblock_start_of_DRAM(void)
875{
876 return memblock.memory.regions[0].base;
877}
878
Yinghai Lu10d06432010-07-28 15:43:02 +1000879phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000880{
881 int idx = memblock.memory.cnt - 1;
882
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000883 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000884}
885
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800886void __init memblock_enforce_memory_limit(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000887{
888 unsigned long i;
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800889 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000890
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800891 if (!limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000892 return;
893
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800894 /* find out max address */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000895 for (i = 0; i < memblock.memory.cnt; i++) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800896 struct memblock_region *r = &memblock.memory.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000897
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800898 if (limit <= r->size) {
899 max_addr = r->base + limit;
900 break;
901 }
902 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000903 }
904
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800905 /* truncate both memory and reserved regions */
906 __memblock_remove(&memblock.memory, max_addr, (phys_addr_t)ULLONG_MAX);
907 __memblock_remove(&memblock.reserved, max_addr, (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000908}
909
Yinghai Lucd794812010-10-11 12:34:09 -0700910static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000911{
912 unsigned int left = 0, right = type->cnt;
913
914 do {
915 unsigned int mid = (right + left) / 2;
916
917 if (addr < type->regions[mid].base)
918 right = mid;
919 else if (addr >= (type->regions[mid].base +
920 type->regions[mid].size))
921 left = mid + 1;
922 else
923 return mid;
924 } while (left < right);
925 return -1;
926}
927
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000928int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000929{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000930 return memblock_search(&memblock.reserved, addr) != -1;
931}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000932
Yinghai Lu3661ca62010-09-15 13:05:29 -0700933int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000934{
935 return memblock_search(&memblock.memory, addr) != -1;
936}
937
Yinghai Lue76b63f2013-09-11 14:22:17 -0700938#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
939int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
940 unsigned long *start_pfn, unsigned long *end_pfn)
941{
942 struct memblock_type *type = &memblock.memory;
943 int mid = memblock_search(type, (phys_addr_t)pfn << PAGE_SHIFT);
944
945 if (mid == -1)
946 return -1;
947
948 *start_pfn = type->regions[mid].base >> PAGE_SHIFT;
949 *end_pfn = (type->regions[mid].base + type->regions[mid].size)
950 >> PAGE_SHIFT;
951
952 return type->regions[mid].nid;
953}
954#endif
955
Stephen Boydeab30942012-05-24 00:45:21 -0700956/**
957 * memblock_is_region_memory - check if a region is a subset of memory
958 * @base: base of region to check
959 * @size: size of region to check
960 *
961 * Check if the region [@base, @base+@size) is a subset of a memory block.
962 *
963 * RETURNS:
964 * 0 if false, non-zero if true
965 */
Yinghai Lu3661ca62010-09-15 13:05:29 -0700966int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000967{
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800968 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800969 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000970
971 if (idx == -1)
972 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800973 return memblock.memory.regions[idx].base <= base &&
974 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800975 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000976}
977
Stephen Boydeab30942012-05-24 00:45:21 -0700978/**
979 * memblock_is_region_reserved - check if a region intersects reserved memory
980 * @base: base of region to check
981 * @size: size of region to check
982 *
983 * Check if the region [@base, @base+@size) intersects a reserved memory block.
984 *
985 * RETURNS:
986 * 0 if false, non-zero if true
987 */
Yinghai Lu10d06432010-07-28 15:43:02 +1000988int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000989{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800990 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +1000991 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000992}
993
Yinghai Lu6ede1fd2012-10-22 16:35:18 -0700994void __init_memblock memblock_trim_memory(phys_addr_t align)
995{
996 int i;
997 phys_addr_t start, end, orig_start, orig_end;
998 struct memblock_type *mem = &memblock.memory;
999
1000 for (i = 0; i < mem->cnt; i++) {
1001 orig_start = mem->regions[i].base;
1002 orig_end = mem->regions[i].base + mem->regions[i].size;
1003 start = round_up(orig_start, align);
1004 end = round_down(orig_end, align);
1005
1006 if (start == orig_start && end == orig_end)
1007 continue;
1008
1009 if (start < end) {
1010 mem->regions[i].base = start;
1011 mem->regions[i].size = end - start;
1012 } else {
1013 memblock_remove_region(mem, i);
1014 i--;
1015 }
1016 }
1017}
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001018
Yinghai Lu3661ca62010-09-15 13:05:29 -07001019void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001020{
1021 memblock.current_limit = limit;
1022}
1023
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001024static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001025{
1026 unsigned long long base, size;
1027 int i;
1028
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001029 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001030
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001031 for (i = 0; i < type->cnt; i++) {
1032 struct memblock_region *rgn = &type->regions[i];
1033 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001034
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001035 base = rgn->base;
1036 size = rgn->size;
1037#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1038 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
1039 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
1040 memblock_get_region_node(rgn));
1041#endif
1042 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
1043 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001044 }
1045}
1046
Tejun Heo4ff7b822011-12-08 10:22:06 -08001047void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001048{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001049 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -08001050 pr_info(" memory size = %#llx reserved size = %#llx\n",
1051 (unsigned long long)memblock.memory.total_size,
1052 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001053
1054 memblock_dump(&memblock.memory, "memory");
1055 memblock_dump(&memblock.reserved, "reserved");
1056}
1057
Tejun Heo1aadc052011-12-08 10:22:08 -08001058void __init memblock_allow_resize(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001059{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -07001060 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001061}
1062
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001063static int __init early_memblock(char *p)
1064{
1065 if (p && strstr(p, "debug"))
1066 memblock_debug = 1;
1067 return 0;
1068}
1069early_param("memblock", early_memblock);
1070
Tejun Heoc378ddd2011-07-14 11:46:03 +02001071#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001072
1073static int memblock_debug_show(struct seq_file *m, void *private)
1074{
1075 struct memblock_type *type = m->private;
1076 struct memblock_region *reg;
1077 int i;
1078
1079 for (i = 0; i < type->cnt; i++) {
1080 reg = &type->regions[i];
1081 seq_printf(m, "%4d: ", i);
1082 if (sizeof(phys_addr_t) == 4)
1083 seq_printf(m, "0x%08lx..0x%08lx\n",
1084 (unsigned long)reg->base,
1085 (unsigned long)(reg->base + reg->size - 1));
1086 else
1087 seq_printf(m, "0x%016llx..0x%016llx\n",
1088 (unsigned long long)reg->base,
1089 (unsigned long long)(reg->base + reg->size - 1));
1090
1091 }
1092 return 0;
1093}
1094
1095static int memblock_debug_open(struct inode *inode, struct file *file)
1096{
1097 return single_open(file, memblock_debug_show, inode->i_private);
1098}
1099
1100static const struct file_operations memblock_debug_fops = {
1101 .open = memblock_debug_open,
1102 .read = seq_read,
1103 .llseek = seq_lseek,
1104 .release = single_release,
1105};
1106
1107static int __init memblock_init_debugfs(void)
1108{
1109 struct dentry *root = debugfs_create_dir("memblock", NULL);
1110 if (!root)
1111 return -ENXIO;
1112 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
1113 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
1114
1115 return 0;
1116}
1117__initcall(memblock_init_debugfs);
1118
1119#endif /* CONFIG_DEBUG_FS */