blob: ef4987b03afd3e3b40154809e6a65f2d94bf4595 [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;
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 Heo1440c4e2011-12-08 10:22:08 -0800182 type->total_size -= type->regions[r].size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200183 memmove(&type->regions[r], &type->regions[r + 1],
184 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000185 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000186
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700187 /* Special case for empty arrays */
188 if (type->cnt == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800189 WARN_ON(type->total_size != 0);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700190 type->cnt = 1;
191 type->regions[0].base = 0;
192 type->regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200193 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700194 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000195}
196
Yinghai Lu10d06432010-07-28 15:43:02 +1000197static int __init_memblock memblock_double_array(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700198{
199 struct memblock_region *new_array, *old_array;
200 phys_addr_t old_size, new_size, addr;
201 int use_slab = slab_is_available();
202
203 /* We don't allow resizing until we know about the reserved regions
204 * of memory that aren't suitable for allocation
205 */
206 if (!memblock_can_resize)
207 return -1;
208
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700209 /* Calculate new doubled size */
210 old_size = type->max * sizeof(struct memblock_region);
211 new_size = old_size << 1;
212
213 /* Try to find some space for it.
214 *
215 * WARNING: We assume that either slab_is_available() and we use it or
216 * we use MEMBLOCK for allocations. That means that this is unsafe to use
217 * when bootmem is currently active (unless bootmem itself is implemented
218 * on top of MEMBLOCK which isn't the case yet)
219 *
220 * This should however not be an issue for now, as we currently only
221 * call into MEMBLOCK while it's still active, or much later when slab is
222 * active for memory hotplug operations
223 */
224 if (use_slab) {
225 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200226 addr = new_array ? __pa(new_array) : 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700227 } else
Tejun Heofc769a82011-07-12 09:58:10 +0200228 addr = memblock_find_in_range(0, MEMBLOCK_ALLOC_ACCESSIBLE, new_size, sizeof(phys_addr_t));
Tejun Heo1f5026a2011-07-12 09:58:09 +0200229 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700230 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
231 memblock_type_name(type), type->max, type->max * 2);
232 return -1;
233 }
234 new_array = __va(addr);
235
Yinghai Luea9e4372010-07-28 15:13:22 +1000236 memblock_dbg("memblock: %s array is doubled to %ld at [%#010llx-%#010llx]",
237 memblock_type_name(type), type->max * 2, (u64)addr, (u64)addr + new_size - 1);
238
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700239 /* Found space, we now need to move the array over before
240 * we add the reserved region since it may be our reserved
241 * array itself that is full.
242 */
243 memcpy(new_array, type->regions, old_size);
244 memset(new_array + type->max, 0, old_size);
245 old_array = type->regions;
246 type->regions = new_array;
247 type->max <<= 1;
248
249 /* If we use SLAB that's it, we are done */
250 if (use_slab)
251 return 0;
252
253 /* Add the new reserved region now. Should not fail ! */
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800254 BUG_ON(memblock_reserve(addr, new_size));
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700255
256 /* If the array wasn't our static init one, then free it. We only do
257 * that before SLAB is available as later on, we don't know whether
258 * to use kfree or free_bootmem_pages(). Shouldn't be a big deal
259 * anyways
260 */
261 if (old_array != memblock_memory_init_regions &&
262 old_array != memblock_reserved_init_regions)
263 memblock_free(__pa(old_array), old_size);
264
265 return 0;
266}
267
Tejun Heo784656f2011-07-12 11:15:55 +0200268/**
269 * memblock_merge_regions - merge neighboring compatible regions
270 * @type: memblock type to scan
271 *
272 * Scan @type and merge neighboring compatible regions.
273 */
274static void __init_memblock memblock_merge_regions(struct memblock_type *type)
275{
276 int i = 0;
277
278 /* cnt never goes below 1 */
279 while (i < type->cnt - 1) {
280 struct memblock_region *this = &type->regions[i];
281 struct memblock_region *next = &type->regions[i + 1];
282
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200283 if (this->base + this->size != next->base ||
284 memblock_get_region_node(this) !=
285 memblock_get_region_node(next)) {
Tejun Heo784656f2011-07-12 11:15:55 +0200286 BUG_ON(this->base + this->size > next->base);
287 i++;
288 continue;
289 }
290
291 this->size += next->size;
292 memmove(next, next + 1, (type->cnt - (i + 1)) * sizeof(*next));
293 type->cnt--;
294 }
295}
296
297/**
298 * memblock_insert_region - insert new memblock region
299 * @type: memblock type to insert into
300 * @idx: index for the insertion point
301 * @base: base address of the new region
302 * @size: size of the new region
303 *
304 * Insert new memblock region [@base,@base+@size) into @type at @idx.
305 * @type must already have extra room to accomodate the new region.
306 */
307static void __init_memblock memblock_insert_region(struct memblock_type *type,
308 int idx, phys_addr_t base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200309 phys_addr_t size, int nid)
Tejun Heo784656f2011-07-12 11:15:55 +0200310{
311 struct memblock_region *rgn = &type->regions[idx];
312
313 BUG_ON(type->cnt >= type->max);
314 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
315 rgn->base = base;
316 rgn->size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200317 memblock_set_region_node(rgn, nid);
Tejun Heo784656f2011-07-12 11:15:55 +0200318 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800319 type->total_size += size;
Tejun Heo784656f2011-07-12 11:15:55 +0200320}
321
322/**
323 * memblock_add_region - add new memblock region
324 * @type: memblock type to add new region into
325 * @base: base address of the new region
326 * @size: size of the new region
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800327 * @nid: nid of the new region
Tejun Heo784656f2011-07-12 11:15:55 +0200328 *
329 * Add new memblock region [@base,@base+@size) into @type. The new region
330 * is allowed to overlap with existing ones - overlaps don't affect already
331 * existing regions. @type is guaranteed to be minimal (all neighbouring
332 * compatible regions are merged) after the addition.
333 *
334 * RETURNS:
335 * 0 on success, -errno on failure.
336 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800337static int __init_memblock memblock_add_region(struct memblock_type *type,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800338 phys_addr_t base, phys_addr_t size, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000339{
Tejun Heo784656f2011-07-12 11:15:55 +0200340 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800341 phys_addr_t obase = base;
342 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f2011-07-12 11:15:55 +0200343 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000344
Tejun Heo784656f2011-07-12 11:15:55 +0200345 /* special case for empty array */
346 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800347 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000348 type->regions[0].base = base;
349 type->regions[0].size = size;
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800350 memblock_set_region_node(&type->regions[0], nid);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800351 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000352 return 0;
353 }
Tejun Heo784656f2011-07-12 11:15:55 +0200354repeat:
355 /*
356 * The following is executed twice. Once with %false @insert and
357 * then with %true. The first counts the number of regions needed
358 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700359 */
Tejun Heo784656f2011-07-12 11:15:55 +0200360 base = obase;
361 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000362
Tejun Heo784656f2011-07-12 11:15:55 +0200363 for (i = 0; i < type->cnt; i++) {
364 struct memblock_region *rgn = &type->regions[i];
365 phys_addr_t rbase = rgn->base;
366 phys_addr_t rend = rbase + rgn->size;
367
368 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000369 break;
Tejun Heo784656f2011-07-12 11:15:55 +0200370 if (rend <= base)
371 continue;
372 /*
373 * @rgn overlaps. If it separates the lower part of new
374 * area, insert that portion.
375 */
376 if (rbase > base) {
377 nr_new++;
378 if (insert)
379 memblock_insert_region(type, i++, base,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800380 rbase - base, nid);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000381 }
Tejun Heo784656f2011-07-12 11:15:55 +0200382 /* area below @rend is dealt with, forget about it */
383 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000384 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000385
Tejun Heo784656f2011-07-12 11:15:55 +0200386 /* insert the remaining portion */
387 if (base < end) {
388 nr_new++;
389 if (insert)
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800390 memblock_insert_region(type, i, base, end - base, nid);
Tejun Heo784656f2011-07-12 11:15:55 +0200391 }
392
393 /*
394 * If this was the first round, resize array and repeat for actual
395 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700396 */
Tejun Heo784656f2011-07-12 11:15:55 +0200397 if (!insert) {
398 while (type->cnt + nr_new > type->max)
399 if (memblock_double_array(type) < 0)
400 return -ENOMEM;
401 insert = true;
402 goto repeat;
403 } else {
404 memblock_merge_regions(type);
405 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700406 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000407}
408
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800409int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
410 int nid)
411{
412 return memblock_add_region(&memblock.memory, base, size, nid);
413}
414
Tejun Heo581adcb2011-12-08 10:22:06 -0800415int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000416{
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800417 return memblock_add_region(&memblock.memory, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000418}
419
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800420/**
421 * memblock_isolate_range - isolate given range into disjoint memblocks
422 * @type: memblock type to isolate range for
423 * @base: base of range to isolate
424 * @size: size of range to isolate
425 * @start_rgn: out parameter for the start of isolated region
426 * @end_rgn: out parameter for the end of isolated region
427 *
428 * Walk @type and ensure that regions don't cross the boundaries defined by
429 * [@base,@base+@size). Crossing regions are split at the boundaries,
430 * which may create at most two more regions. The index of the first
431 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
432 *
433 * RETURNS:
434 * 0 on success, -errno on failure.
435 */
436static int __init_memblock memblock_isolate_range(struct memblock_type *type,
437 phys_addr_t base, phys_addr_t size,
438 int *start_rgn, int *end_rgn)
439{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800440 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800441 int i;
442
443 *start_rgn = *end_rgn = 0;
444
445 /* we'll create at most two more regions */
446 while (type->cnt + 2 > type->max)
447 if (memblock_double_array(type) < 0)
448 return -ENOMEM;
449
450 for (i = 0; i < type->cnt; i++) {
451 struct memblock_region *rgn = &type->regions[i];
452 phys_addr_t rbase = rgn->base;
453 phys_addr_t rend = rbase + rgn->size;
454
455 if (rbase >= end)
456 break;
457 if (rend <= base)
458 continue;
459
460 if (rbase < base) {
461 /*
462 * @rgn intersects from below. Split and continue
463 * to process the next region - the new top half.
464 */
465 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800466 rgn->size -= base - rbase;
467 type->total_size -= base - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800468 memblock_insert_region(type, i, rbase, base - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800469 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800470 } else if (rend > end) {
471 /*
472 * @rgn intersects from above. Split and redo the
473 * current region - the new bottom half.
474 */
475 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800476 rgn->size -= end - rbase;
477 type->total_size -= end - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800478 memblock_insert_region(type, i--, rbase, end - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800479 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800480 } else {
481 /* @rgn is fully contained, record it */
482 if (!*end_rgn)
483 *start_rgn = i;
484 *end_rgn = i + 1;
485 }
486 }
487
488 return 0;
489}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800490
Tejun Heo581adcb2011-12-08 10:22:06 -0800491static int __init_memblock __memblock_remove(struct memblock_type *type,
492 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000493{
Tejun Heo71936182011-12-08 10:22:07 -0800494 int start_rgn, end_rgn;
495 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000496
Tejun Heo71936182011-12-08 10:22:07 -0800497 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
498 if (ret)
499 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000500
Tejun Heo71936182011-12-08 10:22:07 -0800501 for (i = end_rgn - 1; i >= start_rgn; i--)
502 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700503 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000504}
505
Tejun Heo581adcb2011-12-08 10:22:06 -0800506int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000507{
508 return __memblock_remove(&memblock.memory, base, size);
509}
510
Tejun Heo581adcb2011-12-08 10:22:06 -0800511int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000512{
Tejun Heo24aa0782011-07-12 11:16:06 +0200513 memblock_dbg(" memblock_free: [%#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_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200517
Yinghai Lu95f72d12010-07-12 14:36:09 +1000518 return __memblock_remove(&memblock.reserved, base, size);
519}
520
Tejun Heo581adcb2011-12-08 10:22:06 -0800521int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000522{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000523 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000524
Tejun Heo24aa0782011-07-12 11:16:06 +0200525 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700526 (unsigned long long)base,
527 (unsigned long long)base + size,
528 (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000529 BUG_ON(0 == size);
530
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800531 return memblock_add_region(_rgn, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000532}
533
Tejun Heo35fd0802011-07-12 11:15:59 +0200534/**
535 * __next_free_mem_range - next function for for_each_free_mem_range()
536 * @idx: pointer to u64 loop variable
537 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
538 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
539 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
540 * @p_nid: ptr to int for nid of the range, can be %NULL
541 *
542 * Find the first free area from *@idx which matches @nid, fill the out
543 * parameters, and update *@idx for the next iteration. The lower 32bit of
544 * *@idx contains index into memory region and the upper 32bit indexes the
545 * areas before each reserved region. For example, if reserved regions
546 * look like the following,
547 *
548 * 0:[0-16), 1:[32-48), 2:[128-130)
549 *
550 * The upper 32bit indexes the following regions.
551 *
552 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
553 *
554 * As both region arrays are sorted, the function advances the two indices
555 * in lockstep and returns each intersection.
556 */
557void __init_memblock __next_free_mem_range(u64 *idx, int nid,
558 phys_addr_t *out_start,
559 phys_addr_t *out_end, int *out_nid)
560{
561 struct memblock_type *mem = &memblock.memory;
562 struct memblock_type *rsv = &memblock.reserved;
563 int mi = *idx & 0xffffffff;
564 int ri = *idx >> 32;
565
566 for ( ; mi < mem->cnt; mi++) {
567 struct memblock_region *m = &mem->regions[mi];
568 phys_addr_t m_start = m->base;
569 phys_addr_t m_end = m->base + m->size;
570
571 /* only memory regions are associated with nodes, check it */
572 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
573 continue;
574
575 /* scan areas before each reservation for intersection */
576 for ( ; ri < rsv->cnt + 1; ri++) {
577 struct memblock_region *r = &rsv->regions[ri];
578 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
579 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
580
581 /* if ri advanced past mi, break out to advance mi */
582 if (r_start >= m_end)
583 break;
584 /* if the two regions intersect, we're done */
585 if (m_start < r_end) {
586 if (out_start)
587 *out_start = max(m_start, r_start);
588 if (out_end)
589 *out_end = min(m_end, r_end);
590 if (out_nid)
591 *out_nid = memblock_get_region_node(m);
592 /*
593 * The region which ends first is advanced
594 * for the next iteration.
595 */
596 if (m_end <= r_end)
597 mi++;
598 else
599 ri++;
600 *idx = (u32)mi | (u64)ri << 32;
601 return;
602 }
603 }
604 }
605
606 /* signal end of iteration */
607 *idx = ULLONG_MAX;
608}
609
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200610#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
611/*
612 * Common iterator interface used to define for_each_mem_range().
613 */
614void __init_memblock __next_mem_pfn_range(int *idx, int nid,
615 unsigned long *out_start_pfn,
616 unsigned long *out_end_pfn, int *out_nid)
617{
618 struct memblock_type *type = &memblock.memory;
619 struct memblock_region *r;
620
621 while (++*idx < type->cnt) {
622 r = &type->regions[*idx];
623
624 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
625 continue;
626 if (nid == MAX_NUMNODES || nid == r->nid)
627 break;
628 }
629 if (*idx >= type->cnt) {
630 *idx = -1;
631 return;
632 }
633
634 if (out_start_pfn)
635 *out_start_pfn = PFN_UP(r->base);
636 if (out_end_pfn)
637 *out_end_pfn = PFN_DOWN(r->base + r->size);
638 if (out_nid)
639 *out_nid = r->nid;
640}
641
642/**
643 * memblock_set_node - set node ID on memblock regions
644 * @base: base of area to set node ID for
645 * @size: size of area to set node ID for
646 * @nid: node ID to set
647 *
648 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
649 * Regions which cross the area boundaries are split as necessary.
650 *
651 * RETURNS:
652 * 0 on success, -errno on failure.
653 */
654int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
655 int nid)
656{
657 struct memblock_type *type = &memblock.memory;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800658 int start_rgn, end_rgn;
659 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200660
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800661 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
662 if (ret)
663 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200664
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800665 for (i = start_rgn; i < end_rgn; i++)
666 type->regions[i].nid = nid;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200667
668 memblock_merge_regions(type);
669 return 0;
670}
671#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
672
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000673phys_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 +1000674{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000675 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000676
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000677 /* We align the size to limit fragmentation. Without this, a lot of
678 * small allocs quickly eat up the whole reserve array on sparc
679 */
Tejun Heo348968e2011-07-12 09:58:08 +0200680 size = round_up(size, align);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000681
Tejun Heofc769a82011-07-12 09:58:10 +0200682 found = memblock_find_in_range(0, max_addr, size, align);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800683 if (found && !memblock_reserve(found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000684 return found;
685
686 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000687}
688
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000689phys_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 +1000690{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000691 phys_addr_t alloc;
692
693 alloc = __memblock_alloc_base(size, align, max_addr);
694
695 if (alloc == 0)
696 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
697 (unsigned long long) size, (unsigned long long) max_addr);
698
699 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000700}
701
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000702phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000703{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000704 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000705}
706
Yinghai Lu95f72d12010-07-12 14:36:09 +1000707
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000708/*
Tejun Heo34e18452011-07-12 10:46:33 +0200709 * Additional node-local top-down allocators.
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700710 *
711 * WARNING: Only available after early_node_map[] has been populated,
712 * on some architectures, that is after all the calls to add_active_range()
713 * have been done to populate it.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000714 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000715
Tejun Heo34e18452011-07-12 10:46:33 +0200716static phys_addr_t __init memblock_nid_range_rev(phys_addr_t start,
717 phys_addr_t end, int *nid)
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700718{
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700719#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700720 unsigned long start_pfn, end_pfn;
721 int i;
722
Tejun Heob2fea982011-07-12 10:46:31 +0200723 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, nid)
Tejun Heo34e18452011-07-12 10:46:33 +0200724 if (end > PFN_PHYS(start_pfn) && end <= PFN_PHYS(end_pfn))
725 return max(start, PFN_PHYS(start_pfn));
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700726#endif
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700727 *nid = 0;
Tejun Heo34e18452011-07-12 10:46:33 +0200728 return start;
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700729}
730
Tejun Heoe6498042011-07-12 10:46:34 +0200731phys_addr_t __init memblock_find_in_range_node(phys_addr_t start,
732 phys_addr_t end,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000733 phys_addr_t size,
734 phys_addr_t align, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000735{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000736 struct memblock_type *mem = &memblock.memory;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000737 int i;
738
739 BUG_ON(0 == size);
740
Tejun Heoe6498042011-07-12 10:46:34 +0200741 /* Pump up max_addr */
742 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
743 end = memblock.current_limit;
744
745 for (i = mem->cnt - 1; i >= 0; i--) {
746 struct memblock_region *r = &mem->regions[i];
747 phys_addr_t base = max(start, r->base);
748 phys_addr_t top = min(end, r->base + r->size);
749
750 while (base < top) {
751 phys_addr_t tbase, ret;
752 int tnid;
753
754 tbase = memblock_nid_range_rev(base, top, &tnid);
755 if (nid == MAX_NUMNODES || tnid == nid) {
756 ret = memblock_find_region(tbase, top, size, align);
757 if (ret)
758 return ret;
759 }
760 top = tbase;
761 }
762 }
763
764 return 0;
765}
766
767phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
768{
769 phys_addr_t found;
770
771 /*
772 * We align the size to limit fragmentation. Without this, a lot of
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000773 * small allocs quickly eat up the whole reserve array on sparc
774 */
Tejun Heo348968e2011-07-12 09:58:08 +0200775 size = round_up(size, align);
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000776
Tejun Heoe6498042011-07-12 10:46:34 +0200777 found = memblock_find_in_range_node(0, MEMBLOCK_ALLOC_ACCESSIBLE,
778 size, align, nid);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800779 if (found && !memblock_reserve(found, size))
Tejun Heoe6498042011-07-12 10:46:34 +0200780 return found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000781
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700782 return 0;
783}
784
785phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
786{
787 phys_addr_t res = memblock_alloc_nid(size, align, nid);
788
789 if (res)
790 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200791 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000792}
793
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700794
795/*
796 * Remaining API functions
797 */
798
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000799phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000800{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800801 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000802}
803
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -0700804/* lowest address */
805phys_addr_t __init_memblock memblock_start_of_DRAM(void)
806{
807 return memblock.memory.regions[0].base;
808}
809
Yinghai Lu10d06432010-07-28 15:43:02 +1000810phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000811{
812 int idx = memblock.memory.cnt - 1;
813
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000814 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000815}
816
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800817void __init memblock_enforce_memory_limit(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000818{
819 unsigned long i;
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800820 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000821
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800822 if (!limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000823 return;
824
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800825 /* find out max address */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000826 for (i = 0; i < memblock.memory.cnt; i++) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800827 struct memblock_region *r = &memblock.memory.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000828
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800829 if (limit <= r->size) {
830 max_addr = r->base + limit;
831 break;
832 }
833 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000834 }
835
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800836 /* truncate both memory and reserved regions */
837 __memblock_remove(&memblock.memory, max_addr, (phys_addr_t)ULLONG_MAX);
838 __memblock_remove(&memblock.reserved, max_addr, (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000839}
840
Yinghai Lucd794812010-10-11 12:34:09 -0700841static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000842{
843 unsigned int left = 0, right = type->cnt;
844
845 do {
846 unsigned int mid = (right + left) / 2;
847
848 if (addr < type->regions[mid].base)
849 right = mid;
850 else if (addr >= (type->regions[mid].base +
851 type->regions[mid].size))
852 left = mid + 1;
853 else
854 return mid;
855 } while (left < right);
856 return -1;
857}
858
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000859int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000860{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000861 return memblock_search(&memblock.reserved, addr) != -1;
862}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000863
Yinghai Lu3661ca62010-09-15 13:05:29 -0700864int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000865{
866 return memblock_search(&memblock.memory, addr) != -1;
867}
868
Yinghai Lu3661ca62010-09-15 13:05:29 -0700869int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000870{
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800871 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800872 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000873
874 if (idx == -1)
875 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800876 return memblock.memory.regions[idx].base <= base &&
877 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800878 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000879}
880
Yinghai Lu10d06432010-07-28 15:43:02 +1000881int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000882{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800883 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +1000884 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000885}
886
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700887
Yinghai Lu3661ca62010-09-15 13:05:29 -0700888void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700889{
890 memblock.current_limit = limit;
891}
892
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200893static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000894{
895 unsigned long long base, size;
896 int i;
897
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200898 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000899
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200900 for (i = 0; i < type->cnt; i++) {
901 struct memblock_region *rgn = &type->regions[i];
902 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000903
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200904 base = rgn->base;
905 size = rgn->size;
906#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
907 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
908 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
909 memblock_get_region_node(rgn));
910#endif
911 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
912 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000913 }
914}
915
Tejun Heo4ff7b822011-12-08 10:22:06 -0800916void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000917{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000918 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -0800919 pr_info(" memory size = %#llx reserved size = %#llx\n",
920 (unsigned long long)memblock.memory.total_size,
921 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000922
923 memblock_dump(&memblock.memory, "memory");
924 memblock_dump(&memblock.reserved, "reserved");
925}
926
Tejun Heo1aadc052011-12-08 10:22:08 -0800927void __init memblock_allow_resize(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000928{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700929 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000930}
931
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000932static int __init early_memblock(char *p)
933{
934 if (p && strstr(p, "debug"))
935 memblock_debug = 1;
936 return 0;
937}
938early_param("memblock", early_memblock);
939
Tejun Heoc378ddd2011-07-14 11:46:03 +0200940#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -0700941
942static int memblock_debug_show(struct seq_file *m, void *private)
943{
944 struct memblock_type *type = m->private;
945 struct memblock_region *reg;
946 int i;
947
948 for (i = 0; i < type->cnt; i++) {
949 reg = &type->regions[i];
950 seq_printf(m, "%4d: ", i);
951 if (sizeof(phys_addr_t) == 4)
952 seq_printf(m, "0x%08lx..0x%08lx\n",
953 (unsigned long)reg->base,
954 (unsigned long)(reg->base + reg->size - 1));
955 else
956 seq_printf(m, "0x%016llx..0x%016llx\n",
957 (unsigned long long)reg->base,
958 (unsigned long long)(reg->base + reg->size - 1));
959
960 }
961 return 0;
962}
963
964static int memblock_debug_open(struct inode *inode, struct file *file)
965{
966 return single_open(file, memblock_debug_show, inode->i_private);
967}
968
969static const struct file_operations memblock_debug_fops = {
970 .open = memblock_debug_open,
971 .read = seq_read,
972 .llseek = seq_lseek,
973 .release = single_release,
974};
975
976static int __init memblock_init_debugfs(void)
977{
978 struct dentry *root = debugfs_create_dir("memblock", NULL);
979 if (!root)
980 return -ENXIO;
981 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
982 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
983
984 return 0;
985}
986__initcall(memblock_init_debugfs);
987
988#endif /* CONFIG_DEBUG_FS */