blob: 945dc31258ebe575b94ad9ad59e24bda016acd2d [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;
39int memblock_can_resize __initdata_memblock;
Yinghai Lu95f72d12010-07-12 14:36:09 +100040
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070041/* inline so we don't get a warning when pr_debug is compiled out */
42static inline const char *memblock_type_name(struct memblock_type *type)
43{
44 if (type == &memblock.memory)
45 return "memory";
46 else if (type == &memblock.reserved)
47 return "reserved";
48 else
49 return "unknown";
50}
51
Tejun Heoeb18f1b2011-12-08 10:22:07 -080052/* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
53static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
54{
55 return *size = min(*size, (phys_addr_t)ULLONG_MAX - base);
56}
57
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100058/*
59 * Address comparison utilities
60 */
Yinghai Lu10d06432010-07-28 15:43:02 +100061static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100062 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100063{
64 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
65}
66
H Hartley Sweeten2d7d3eb2011-10-31 17:09:15 -070067static long __init_memblock memblock_overlaps_region(struct memblock_type *type,
68 phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100069{
70 unsigned long i;
71
72 for (i = 0; i < type->cnt; i++) {
73 phys_addr_t rgnbase = type->regions[i].base;
74 phys_addr_t rgnsize = type->regions[i].size;
75 if (memblock_addrs_overlap(base, size, rgnbase, rgnsize))
76 break;
77 }
78
79 return (i < type->cnt) ? i : -1;
80}
81
82/*
83 * Find, allocate, deallocate or reserve unreserved regions. All allocations
84 * are top-down.
85 */
86
Yinghai Lucd794812010-10-11 12:34:09 -070087static phys_addr_t __init_memblock memblock_find_region(phys_addr_t start, phys_addr_t end,
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100088 phys_addr_t size, phys_addr_t align)
89{
90 phys_addr_t base, res_base;
91 long j;
92
Yinghai Luf1af98c2010-10-04 14:57:39 -070093 /* In case, huge size is requested */
94 if (end < size)
Tejun Heo1f5026a2011-07-12 09:58:09 +020095 return 0;
Yinghai Luf1af98c2010-10-04 14:57:39 -070096
Tejun Heo348968e2011-07-12 09:58:08 +020097 base = round_down(end - size, align);
Yinghai Luf1af98c2010-10-04 14:57:39 -070098
Benjamin Herrenschmidt25818f02010-07-28 15:25:10 +100099 /* Prevent allocations returning 0 as it's also used to
100 * indicate an allocation failure
101 */
102 if (start == 0)
103 start = PAGE_SIZE;
104
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000105 while (start <= base) {
106 j = memblock_overlaps_region(&memblock.reserved, base, size);
107 if (j < 0)
108 return base;
109 res_base = memblock.reserved.regions[j].base;
110 if (res_base < size)
111 break;
Tejun Heo348968e2011-07-12 09:58:08 +0200112 base = round_down(res_base - size, align);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000113 }
114
Tejun Heo1f5026a2011-07-12 09:58:09 +0200115 return 0;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000116}
117
Tejun Heofc769a82011-07-12 09:58:10 +0200118/*
119 * Find a free area with specified alignment in a specific range.
120 */
121phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start, phys_addr_t end,
122 phys_addr_t size, phys_addr_t align)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000123{
124 long i;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000125
126 BUG_ON(0 == size);
127
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000128 /* Pump up max_addr */
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000129 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
130 end = memblock.current_limit;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000131
132 /* We do a top-down search, this tends to limit memory
133 * fragmentation by keeping early boot allocs near the
134 * top of memory
135 */
136 for (i = memblock.memory.cnt - 1; i >= 0; i--) {
137 phys_addr_t memblockbase = memblock.memory.regions[i].base;
138 phys_addr_t memblocksize = memblock.memory.regions[i].size;
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000139 phys_addr_t bottom, top, found;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000140
141 if (memblocksize < size)
142 continue;
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000143 if ((memblockbase + memblocksize) <= start)
144 break;
145 bottom = max(memblockbase, start);
146 top = min(memblockbase + memblocksize, end);
147 if (bottom >= top)
148 continue;
149 found = memblock_find_region(bottom, top, size, align);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200150 if (found)
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000151 return found;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000152 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200153 return 0;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000154}
155
Yinghai Lu5303b682010-07-28 15:38:40 +1000156/*
Yinghai Lu7950c402010-08-25 13:39:14 -0700157 * Free memblock.reserved.regions
158 */
159int __init_memblock memblock_free_reserved_regions(void)
160{
161 if (memblock.reserved.regions == memblock_reserved_init_regions)
162 return 0;
163
164 return memblock_free(__pa(memblock.reserved.regions),
165 sizeof(struct memblock_region) * memblock.reserved.max);
166}
167
168/*
169 * Reserve memblock.reserved.regions
170 */
171int __init_memblock memblock_reserve_reserved_regions(void)
172{
173 if (memblock.reserved.regions == memblock_reserved_init_regions)
174 return 0;
175
176 return memblock_reserve(__pa(memblock.reserved.regions),
177 sizeof(struct memblock_region) * memblock.reserved.max);
178}
179
Yinghai Lu10d06432010-07-28 15:43:02 +1000180static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000181{
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200182 memmove(&type->regions[r], &type->regions[r + 1],
183 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000184 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000185
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700186 /* Special case for empty arrays */
187 if (type->cnt == 0) {
188 type->cnt = 1;
189 type->regions[0].base = 0;
190 type->regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200191 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700192 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000193}
194
Yinghai Lu10d06432010-07-28 15:43:02 +1000195static int __init_memblock memblock_double_array(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700196{
197 struct memblock_region *new_array, *old_array;
198 phys_addr_t old_size, new_size, addr;
199 int use_slab = slab_is_available();
200
201 /* We don't allow resizing until we know about the reserved regions
202 * of memory that aren't suitable for allocation
203 */
204 if (!memblock_can_resize)
205 return -1;
206
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700207 /* Calculate new doubled size */
208 old_size = type->max * sizeof(struct memblock_region);
209 new_size = old_size << 1;
210
211 /* Try to find some space for it.
212 *
213 * WARNING: We assume that either slab_is_available() and we use it or
214 * we use MEMBLOCK for allocations. That means that this is unsafe to use
215 * when bootmem is currently active (unless bootmem itself is implemented
216 * on top of MEMBLOCK which isn't the case yet)
217 *
218 * This should however not be an issue for now, as we currently only
219 * call into MEMBLOCK while it's still active, or much later when slab is
220 * active for memory hotplug operations
221 */
222 if (use_slab) {
223 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200224 addr = new_array ? __pa(new_array) : 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700225 } else
Tejun Heofc769a82011-07-12 09:58:10 +0200226 addr = memblock_find_in_range(0, MEMBLOCK_ALLOC_ACCESSIBLE, new_size, sizeof(phys_addr_t));
Tejun Heo1f5026a2011-07-12 09:58:09 +0200227 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700228 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
229 memblock_type_name(type), type->max, type->max * 2);
230 return -1;
231 }
232 new_array = __va(addr);
233
Yinghai Luea9e4372010-07-28 15:13:22 +1000234 memblock_dbg("memblock: %s array is doubled to %ld at [%#010llx-%#010llx]",
235 memblock_type_name(type), type->max * 2, (u64)addr, (u64)addr + new_size - 1);
236
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700237 /* Found space, we now need to move the array over before
238 * we add the reserved region since it may be our reserved
239 * array itself that is full.
240 */
241 memcpy(new_array, type->regions, old_size);
242 memset(new_array + type->max, 0, old_size);
243 old_array = type->regions;
244 type->regions = new_array;
245 type->max <<= 1;
246
247 /* If we use SLAB that's it, we are done */
248 if (use_slab)
249 return 0;
250
251 /* Add the new reserved region now. Should not fail ! */
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800252 BUG_ON(memblock_reserve(addr, new_size));
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700253
254 /* If the array wasn't our static init one, then free it. We only do
255 * that before SLAB is available as later on, we don't know whether
256 * to use kfree or free_bootmem_pages(). Shouldn't be a big deal
257 * anyways
258 */
259 if (old_array != memblock_memory_init_regions &&
260 old_array != memblock_reserved_init_regions)
261 memblock_free(__pa(old_array), old_size);
262
263 return 0;
264}
265
Tejun Heo784656f92011-07-12 11:15:55 +0200266/**
267 * memblock_merge_regions - merge neighboring compatible regions
268 * @type: memblock type to scan
269 *
270 * Scan @type and merge neighboring compatible regions.
271 */
272static void __init_memblock memblock_merge_regions(struct memblock_type *type)
273{
274 int i = 0;
275
276 /* cnt never goes below 1 */
277 while (i < type->cnt - 1) {
278 struct memblock_region *this = &type->regions[i];
279 struct memblock_region *next = &type->regions[i + 1];
280
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200281 if (this->base + this->size != next->base ||
282 memblock_get_region_node(this) !=
283 memblock_get_region_node(next)) {
Tejun Heo784656f92011-07-12 11:15:55 +0200284 BUG_ON(this->base + this->size > next->base);
285 i++;
286 continue;
287 }
288
289 this->size += next->size;
290 memmove(next, next + 1, (type->cnt - (i + 1)) * sizeof(*next));
291 type->cnt--;
292 }
293}
294
295/**
296 * memblock_insert_region - insert new memblock region
297 * @type: memblock type to insert into
298 * @idx: index for the insertion point
299 * @base: base address of the new region
300 * @size: size of the new region
301 *
302 * Insert new memblock region [@base,@base+@size) into @type at @idx.
303 * @type must already have extra room to accomodate the new region.
304 */
305static void __init_memblock memblock_insert_region(struct memblock_type *type,
306 int idx, phys_addr_t base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200307 phys_addr_t size, int nid)
Tejun Heo784656f92011-07-12 11:15:55 +0200308{
309 struct memblock_region *rgn = &type->regions[idx];
310
311 BUG_ON(type->cnt >= type->max);
312 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
313 rgn->base = base;
314 rgn->size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200315 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200316 type->cnt++;
317}
318
319/**
320 * memblock_add_region - add new memblock region
321 * @type: memblock type to add new region into
322 * @base: base address of the new region
323 * @size: size of the new region
324 *
325 * Add new memblock region [@base,@base+@size) into @type. The new region
326 * is allowed to overlap with existing ones - overlaps don't affect already
327 * existing regions. @type is guaranteed to be minimal (all neighbouring
328 * compatible regions are merged) after the addition.
329 *
330 * RETURNS:
331 * 0 on success, -errno on failure.
332 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800333static int __init_memblock memblock_add_region(struct memblock_type *type,
334 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000335{
Tejun Heo784656f92011-07-12 11:15:55 +0200336 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800337 phys_addr_t obase = base;
338 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f92011-07-12 11:15:55 +0200339 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000340
Tejun Heo784656f92011-07-12 11:15:55 +0200341 /* special case for empty array */
342 if (type->regions[0].size == 0) {
343 WARN_ON(type->cnt != 1);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000344 type->regions[0].base = base;
345 type->regions[0].size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200346 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000347 return 0;
348 }
Tejun Heo784656f92011-07-12 11:15:55 +0200349repeat:
350 /*
351 * The following is executed twice. Once with %false @insert and
352 * then with %true. The first counts the number of regions needed
353 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700354 */
Tejun Heo784656f92011-07-12 11:15:55 +0200355 base = obase;
356 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000357
Tejun Heo784656f92011-07-12 11:15:55 +0200358 for (i = 0; i < type->cnt; i++) {
359 struct memblock_region *rgn = &type->regions[i];
360 phys_addr_t rbase = rgn->base;
361 phys_addr_t rend = rbase + rgn->size;
362
363 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000364 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200365 if (rend <= base)
366 continue;
367 /*
368 * @rgn overlaps. If it separates the lower part of new
369 * area, insert that portion.
370 */
371 if (rbase > base) {
372 nr_new++;
373 if (insert)
374 memblock_insert_region(type, i++, base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200375 rbase - base, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000376 }
Tejun Heo784656f92011-07-12 11:15:55 +0200377 /* area below @rend is dealt with, forget about it */
378 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000379 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000380
Tejun Heo784656f92011-07-12 11:15:55 +0200381 /* insert the remaining portion */
382 if (base < end) {
383 nr_new++;
384 if (insert)
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200385 memblock_insert_region(type, i, base, end - base,
386 MAX_NUMNODES);
Tejun Heo784656f92011-07-12 11:15:55 +0200387 }
388
389 /*
390 * If this was the first round, resize array and repeat for actual
391 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700392 */
Tejun Heo784656f92011-07-12 11:15:55 +0200393 if (!insert) {
394 while (type->cnt + nr_new > type->max)
395 if (memblock_double_array(type) < 0)
396 return -ENOMEM;
397 insert = true;
398 goto repeat;
399 } else {
400 memblock_merge_regions(type);
401 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700402 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000403}
404
Tejun Heo581adcb2011-12-08 10:22:06 -0800405int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000406{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000407 return memblock_add_region(&memblock.memory, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000408}
409
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800410/**
411 * memblock_isolate_range - isolate given range into disjoint memblocks
412 * @type: memblock type to isolate range for
413 * @base: base of range to isolate
414 * @size: size of range to isolate
415 * @start_rgn: out parameter for the start of isolated region
416 * @end_rgn: out parameter for the end of isolated region
417 *
418 * Walk @type and ensure that regions don't cross the boundaries defined by
419 * [@base,@base+@size). Crossing regions are split at the boundaries,
420 * which may create at most two more regions. The index of the first
421 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
422 *
423 * RETURNS:
424 * 0 on success, -errno on failure.
425 */
426static int __init_memblock memblock_isolate_range(struct memblock_type *type,
427 phys_addr_t base, phys_addr_t size,
428 int *start_rgn, int *end_rgn)
429{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800430 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800431 int i;
432
433 *start_rgn = *end_rgn = 0;
434
435 /* we'll create at most two more regions */
436 while (type->cnt + 2 > type->max)
437 if (memblock_double_array(type) < 0)
438 return -ENOMEM;
439
440 for (i = 0; i < type->cnt; i++) {
441 struct memblock_region *rgn = &type->regions[i];
442 phys_addr_t rbase = rgn->base;
443 phys_addr_t rend = rbase + rgn->size;
444
445 if (rbase >= end)
446 break;
447 if (rend <= base)
448 continue;
449
450 if (rbase < base) {
451 /*
452 * @rgn intersects from below. Split and continue
453 * to process the next region - the new top half.
454 */
455 rgn->base = base;
456 rgn->size = rend - rgn->base;
457 memblock_insert_region(type, i, rbase, base - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800458 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800459 } else if (rend > end) {
460 /*
461 * @rgn intersects from above. Split and redo the
462 * current region - the new bottom half.
463 */
464 rgn->base = end;
465 rgn->size = rend - rgn->base;
466 memblock_insert_region(type, i--, rbase, end - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800467 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800468 } else {
469 /* @rgn is fully contained, record it */
470 if (!*end_rgn)
471 *start_rgn = i;
472 *end_rgn = i + 1;
473 }
474 }
475
476 return 0;
477}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800478
Tejun Heo581adcb2011-12-08 10:22:06 -0800479static int __init_memblock __memblock_remove(struct memblock_type *type,
480 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000481{
Tejun Heo71936182011-12-08 10:22:07 -0800482 int start_rgn, end_rgn;
483 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000484
Tejun Heo71936182011-12-08 10:22:07 -0800485 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
486 if (ret)
487 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000488
Tejun Heo71936182011-12-08 10:22:07 -0800489 for (i = end_rgn - 1; i >= start_rgn; i--)
490 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700491 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000492}
493
Tejun Heo581adcb2011-12-08 10:22:06 -0800494int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000495{
496 return __memblock_remove(&memblock.memory, base, size);
497}
498
Tejun Heo581adcb2011-12-08 10:22:06 -0800499int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000500{
Tejun Heo24aa0782011-07-12 11:16:06 +0200501 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700502 (unsigned long long)base,
503 (unsigned long long)base + size,
504 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200505
Yinghai Lu95f72d12010-07-12 14:36:09 +1000506 return __memblock_remove(&memblock.reserved, base, size);
507}
508
Tejun Heo581adcb2011-12-08 10:22:06 -0800509int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000510{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000511 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000512
Tejun Heo24aa0782011-07-12 11:16:06 +0200513 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700514 (unsigned long long)base,
515 (unsigned long long)base + size,
516 (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000517 BUG_ON(0 == size);
518
519 return memblock_add_region(_rgn, base, size);
520}
521
Tejun Heo35fd0802011-07-12 11:15:59 +0200522/**
523 * __next_free_mem_range - next function for for_each_free_mem_range()
524 * @idx: pointer to u64 loop variable
525 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
526 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
527 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
528 * @p_nid: ptr to int for nid of the range, can be %NULL
529 *
530 * Find the first free area from *@idx which matches @nid, fill the out
531 * parameters, and update *@idx for the next iteration. The lower 32bit of
532 * *@idx contains index into memory region and the upper 32bit indexes the
533 * areas before each reserved region. For example, if reserved regions
534 * look like the following,
535 *
536 * 0:[0-16), 1:[32-48), 2:[128-130)
537 *
538 * The upper 32bit indexes the following regions.
539 *
540 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
541 *
542 * As both region arrays are sorted, the function advances the two indices
543 * in lockstep and returns each intersection.
544 */
545void __init_memblock __next_free_mem_range(u64 *idx, int nid,
546 phys_addr_t *out_start,
547 phys_addr_t *out_end, int *out_nid)
548{
549 struct memblock_type *mem = &memblock.memory;
550 struct memblock_type *rsv = &memblock.reserved;
551 int mi = *idx & 0xffffffff;
552 int ri = *idx >> 32;
553
554 for ( ; mi < mem->cnt; mi++) {
555 struct memblock_region *m = &mem->regions[mi];
556 phys_addr_t m_start = m->base;
557 phys_addr_t m_end = m->base + m->size;
558
559 /* only memory regions are associated with nodes, check it */
560 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
561 continue;
562
563 /* scan areas before each reservation for intersection */
564 for ( ; ri < rsv->cnt + 1; ri++) {
565 struct memblock_region *r = &rsv->regions[ri];
566 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
567 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
568
569 /* if ri advanced past mi, break out to advance mi */
570 if (r_start >= m_end)
571 break;
572 /* if the two regions intersect, we're done */
573 if (m_start < r_end) {
574 if (out_start)
575 *out_start = max(m_start, r_start);
576 if (out_end)
577 *out_end = min(m_end, r_end);
578 if (out_nid)
579 *out_nid = memblock_get_region_node(m);
580 /*
581 * The region which ends first is advanced
582 * for the next iteration.
583 */
584 if (m_end <= r_end)
585 mi++;
586 else
587 ri++;
588 *idx = (u32)mi | (u64)ri << 32;
589 return;
590 }
591 }
592 }
593
594 /* signal end of iteration */
595 *idx = ULLONG_MAX;
596}
597
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200598#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
599/*
600 * Common iterator interface used to define for_each_mem_range().
601 */
602void __init_memblock __next_mem_pfn_range(int *idx, int nid,
603 unsigned long *out_start_pfn,
604 unsigned long *out_end_pfn, int *out_nid)
605{
606 struct memblock_type *type = &memblock.memory;
607 struct memblock_region *r;
608
609 while (++*idx < type->cnt) {
610 r = &type->regions[*idx];
611
612 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
613 continue;
614 if (nid == MAX_NUMNODES || nid == r->nid)
615 break;
616 }
617 if (*idx >= type->cnt) {
618 *idx = -1;
619 return;
620 }
621
622 if (out_start_pfn)
623 *out_start_pfn = PFN_UP(r->base);
624 if (out_end_pfn)
625 *out_end_pfn = PFN_DOWN(r->base + r->size);
626 if (out_nid)
627 *out_nid = r->nid;
628}
629
630/**
631 * memblock_set_node - set node ID on memblock regions
632 * @base: base of area to set node ID for
633 * @size: size of area to set node ID for
634 * @nid: node ID to set
635 *
636 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
637 * Regions which cross the area boundaries are split as necessary.
638 *
639 * RETURNS:
640 * 0 on success, -errno on failure.
641 */
642int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
643 int nid)
644{
645 struct memblock_type *type = &memblock.memory;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800646 int start_rgn, end_rgn;
647 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200648
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800649 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
650 if (ret)
651 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200652
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800653 for (i = start_rgn; i < end_rgn; i++)
654 type->regions[i].nid = nid;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200655
656 memblock_merge_regions(type);
657 return 0;
658}
659#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
660
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000661phys_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 +1000662{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000663 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000664
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000665 /* We align the size to limit fragmentation. Without this, a lot of
666 * small allocs quickly eat up the whole reserve array on sparc
667 */
Tejun Heo348968e2011-07-12 09:58:08 +0200668 size = round_up(size, align);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000669
Tejun Heofc769a82011-07-12 09:58:10 +0200670 found = memblock_find_in_range(0, max_addr, size, align);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800671 if (found && !memblock_reserve(found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000672 return found;
673
674 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000675}
676
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000677phys_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 +1000678{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000679 phys_addr_t alloc;
680
681 alloc = __memblock_alloc_base(size, align, max_addr);
682
683 if (alloc == 0)
684 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
685 (unsigned long long) size, (unsigned long long) max_addr);
686
687 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000688}
689
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000690phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000691{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000692 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000693}
694
Yinghai Lu95f72d12010-07-12 14:36:09 +1000695
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000696/*
Tejun Heo34e18452011-07-12 10:46:33 +0200697 * Additional node-local top-down allocators.
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700698 *
699 * WARNING: Only available after early_node_map[] has been populated,
700 * on some architectures, that is after all the calls to add_active_range()
701 * have been done to populate it.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000702 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000703
Tejun Heo34e18452011-07-12 10:46:33 +0200704static phys_addr_t __init memblock_nid_range_rev(phys_addr_t start,
705 phys_addr_t end, int *nid)
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700706{
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700707#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700708 unsigned long start_pfn, end_pfn;
709 int i;
710
Tejun Heob2fea982011-07-12 10:46:31 +0200711 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, nid)
Tejun Heo34e18452011-07-12 10:46:33 +0200712 if (end > PFN_PHYS(start_pfn) && end <= PFN_PHYS(end_pfn))
713 return max(start, PFN_PHYS(start_pfn));
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700714#endif
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700715 *nid = 0;
Tejun Heo34e18452011-07-12 10:46:33 +0200716 return start;
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700717}
718
Tejun Heoe6498042011-07-12 10:46:34 +0200719phys_addr_t __init memblock_find_in_range_node(phys_addr_t start,
720 phys_addr_t end,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000721 phys_addr_t size,
722 phys_addr_t align, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000723{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000724 struct memblock_type *mem = &memblock.memory;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000725 int i;
726
727 BUG_ON(0 == size);
728
Tejun Heoe6498042011-07-12 10:46:34 +0200729 /* Pump up max_addr */
730 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
731 end = memblock.current_limit;
732
733 for (i = mem->cnt - 1; i >= 0; i--) {
734 struct memblock_region *r = &mem->regions[i];
735 phys_addr_t base = max(start, r->base);
736 phys_addr_t top = min(end, r->base + r->size);
737
738 while (base < top) {
739 phys_addr_t tbase, ret;
740 int tnid;
741
742 tbase = memblock_nid_range_rev(base, top, &tnid);
743 if (nid == MAX_NUMNODES || tnid == nid) {
744 ret = memblock_find_region(tbase, top, size, align);
745 if (ret)
746 return ret;
747 }
748 top = tbase;
749 }
750 }
751
752 return 0;
753}
754
755phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
756{
757 phys_addr_t found;
758
759 /*
760 * We align the size to limit fragmentation. Without this, a lot of
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000761 * small allocs quickly eat up the whole reserve array on sparc
762 */
Tejun Heo348968e2011-07-12 09:58:08 +0200763 size = round_up(size, align);
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000764
Tejun Heoe6498042011-07-12 10:46:34 +0200765 found = memblock_find_in_range_node(0, MEMBLOCK_ALLOC_ACCESSIBLE,
766 size, align, nid);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800767 if (found && !memblock_reserve(found, size))
Tejun Heoe6498042011-07-12 10:46:34 +0200768 return found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000769
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700770 return 0;
771}
772
773phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
774{
775 phys_addr_t res = memblock_alloc_nid(size, align, nid);
776
777 if (res)
778 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200779 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000780}
781
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700782
783/*
784 * Remaining API functions
785 */
786
Yinghai Lu95f72d12010-07-12 14:36:09 +1000787/* You must call memblock_analyze() before this. */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000788phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000789{
Benjamin Herrenschmidt4734b592010-07-28 14:31:29 +1000790 return memblock.memory_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000791}
792
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -0700793/* lowest address */
794phys_addr_t __init_memblock memblock_start_of_DRAM(void)
795{
796 return memblock.memory.regions[0].base;
797}
798
Yinghai Lu10d06432010-07-28 15:43:02 +1000799phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000800{
801 int idx = memblock.memory.cnt - 1;
802
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000803 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000804}
805
806/* You must call memblock_analyze() after this. */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000807void __init memblock_enforce_memory_limit(phys_addr_t memory_limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000808{
809 unsigned long i;
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000810 phys_addr_t limit;
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000811 struct memblock_region *p;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000812
813 if (!memory_limit)
814 return;
815
816 /* Truncate the memblock regions to satisfy the memory limit. */
817 limit = memory_limit;
818 for (i = 0; i < memblock.memory.cnt; i++) {
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000819 if (limit > memblock.memory.regions[i].size) {
820 limit -= memblock.memory.regions[i].size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000821 continue;
822 }
823
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000824 memblock.memory.regions[i].size = limit;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000825 memblock.memory.cnt = i + 1;
826 break;
827 }
828
Yinghai Lu95f72d12010-07-12 14:36:09 +1000829 memory_limit = memblock_end_of_DRAM();
830
831 /* And truncate any reserves above the limit also. */
832 for (i = 0; i < memblock.reserved.cnt; i++) {
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000833 p = &memblock.reserved.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000834
835 if (p->base > memory_limit)
836 p->size = 0;
837 else if ((p->base + p->size) > memory_limit)
838 p->size = memory_limit - p->base;
839
840 if (p->size == 0) {
841 memblock_remove_region(&memblock.reserved, i);
842 i--;
843 }
844 }
845}
846
Yinghai Lucd794812010-10-11 12:34:09 -0700847static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000848{
849 unsigned int left = 0, right = type->cnt;
850
851 do {
852 unsigned int mid = (right + left) / 2;
853
854 if (addr < type->regions[mid].base)
855 right = mid;
856 else if (addr >= (type->regions[mid].base +
857 type->regions[mid].size))
858 left = mid + 1;
859 else
860 return mid;
861 } while (left < right);
862 return -1;
863}
864
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000865int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000866{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000867 return memblock_search(&memblock.reserved, addr) != -1;
868}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000869
Yinghai Lu3661ca62010-09-15 13:05:29 -0700870int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000871{
872 return memblock_search(&memblock.memory, addr) != -1;
873}
874
Yinghai Lu3661ca62010-09-15 13:05:29 -0700875int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000876{
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800877 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800878 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000879
880 if (idx == -1)
881 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800882 return memblock.memory.regions[idx].base <= base &&
883 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800884 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000885}
886
Yinghai Lu10d06432010-07-28 15:43:02 +1000887int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000888{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800889 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +1000890 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000891}
892
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700893
Yinghai Lu3661ca62010-09-15 13:05:29 -0700894void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700895{
896 memblock.current_limit = limit;
897}
898
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200899static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000900{
901 unsigned long long base, size;
902 int i;
903
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200904 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000905
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200906 for (i = 0; i < type->cnt; i++) {
907 struct memblock_region *rgn = &type->regions[i];
908 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000909
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200910 base = rgn->base;
911 size = rgn->size;
912#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
913 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
914 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
915 memblock_get_region_node(rgn));
916#endif
917 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
918 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000919 }
920}
921
Tejun Heo4ff7b822011-12-08 10:22:06 -0800922void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000923{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000924 pr_info("MEMBLOCK configuration:\n");
925 pr_info(" memory size = 0x%llx\n", (unsigned long long)memblock.memory_size);
926
927 memblock_dump(&memblock.memory, "memory");
928 memblock_dump(&memblock.reserved, "reserved");
929}
930
931void __init memblock_analyze(void)
932{
933 int i;
934
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000935 memblock.memory_size = 0;
936
937 for (i = 0; i < memblock.memory.cnt; i++)
938 memblock.memory_size += memblock.memory.regions[i].size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700939
940 /* We allow resizing from there */
941 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000942}
943
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000944static int __init early_memblock(char *p)
945{
946 if (p && strstr(p, "debug"))
947 memblock_debug = 1;
948 return 0;
949}
950early_param("memblock", early_memblock);
951
Tejun Heoc378ddd2011-07-14 11:46:03 +0200952#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -0700953
954static int memblock_debug_show(struct seq_file *m, void *private)
955{
956 struct memblock_type *type = m->private;
957 struct memblock_region *reg;
958 int i;
959
960 for (i = 0; i < type->cnt; i++) {
961 reg = &type->regions[i];
962 seq_printf(m, "%4d: ", i);
963 if (sizeof(phys_addr_t) == 4)
964 seq_printf(m, "0x%08lx..0x%08lx\n",
965 (unsigned long)reg->base,
966 (unsigned long)(reg->base + reg->size - 1));
967 else
968 seq_printf(m, "0x%016llx..0x%016llx\n",
969 (unsigned long long)reg->base,
970 (unsigned long long)(reg->base + reg->size - 1));
971
972 }
973 return 0;
974}
975
976static int memblock_debug_open(struct inode *inode, struct file *file)
977{
978 return single_open(file, memblock_debug_show, inode->i_private);
979}
980
981static const struct file_operations memblock_debug_fops = {
982 .open = memblock_debug_open,
983 .read = seq_read,
984 .llseek = seq_lseek,
985 .release = single_release,
986};
987
988static int __init memblock_init_debugfs(void)
989{
990 struct dentry *root = debugfs_create_dir("memblock", NULL);
991 if (!root)
992 return -ENXIO;
993 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
994 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
995
996 return 0;
997}
998__initcall(memblock_init_debugfs);
999
1000#endif /* CONFIG_DEBUG_FS */