blob: f39964184b4adbda6ba62197d2828bd4206747fe [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 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 Heo784656f92011-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 Heo784656f92011-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 Heo784656f92011-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 Heo784656f92011-07-12 11:15:55 +0200318 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800319 type->total_size += size;
Tejun Heo784656f92011-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
327 *
328 * Add new memblock region [@base,@base+@size) into @type. The new region
329 * is allowed to overlap with existing ones - overlaps don't affect already
330 * existing regions. @type is guaranteed to be minimal (all neighbouring
331 * compatible regions are merged) after the addition.
332 *
333 * RETURNS:
334 * 0 on success, -errno on failure.
335 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800336static int __init_memblock memblock_add_region(struct memblock_type *type,
337 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000338{
Tejun Heo784656f92011-07-12 11:15:55 +0200339 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800340 phys_addr_t obase = base;
341 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f92011-07-12 11:15:55 +0200342 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000343
Tejun Heo784656f92011-07-12 11:15:55 +0200344 /* special case for empty array */
345 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800346 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000347 type->regions[0].base = base;
348 type->regions[0].size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200349 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800350 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000351 return 0;
352 }
Tejun Heo784656f92011-07-12 11:15:55 +0200353repeat:
354 /*
355 * The following is executed twice. Once with %false @insert and
356 * then with %true. The first counts the number of regions needed
357 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700358 */
Tejun Heo784656f92011-07-12 11:15:55 +0200359 base = obase;
360 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000361
Tejun Heo784656f92011-07-12 11:15:55 +0200362 for (i = 0; i < type->cnt; i++) {
363 struct memblock_region *rgn = &type->regions[i];
364 phys_addr_t rbase = rgn->base;
365 phys_addr_t rend = rbase + rgn->size;
366
367 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000368 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200369 if (rend <= base)
370 continue;
371 /*
372 * @rgn overlaps. If it separates the lower part of new
373 * area, insert that portion.
374 */
375 if (rbase > base) {
376 nr_new++;
377 if (insert)
378 memblock_insert_region(type, i++, base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200379 rbase - base, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000380 }
Tejun Heo784656f92011-07-12 11:15:55 +0200381 /* area below @rend is dealt with, forget about it */
382 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000383 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000384
Tejun Heo784656f92011-07-12 11:15:55 +0200385 /* insert the remaining portion */
386 if (base < end) {
387 nr_new++;
388 if (insert)
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200389 memblock_insert_region(type, i, base, end - base,
390 MAX_NUMNODES);
Tejun Heo784656f92011-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 Heo784656f92011-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 Heo581adcb2011-12-08 10:22:06 -0800409int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000410{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000411 return memblock_add_region(&memblock.memory, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000412}
413
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800414/**
415 * memblock_isolate_range - isolate given range into disjoint memblocks
416 * @type: memblock type to isolate range for
417 * @base: base of range to isolate
418 * @size: size of range to isolate
419 * @start_rgn: out parameter for the start of isolated region
420 * @end_rgn: out parameter for the end of isolated region
421 *
422 * Walk @type and ensure that regions don't cross the boundaries defined by
423 * [@base,@base+@size). Crossing regions are split at the boundaries,
424 * which may create at most two more regions. The index of the first
425 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
426 *
427 * RETURNS:
428 * 0 on success, -errno on failure.
429 */
430static int __init_memblock memblock_isolate_range(struct memblock_type *type,
431 phys_addr_t base, phys_addr_t size,
432 int *start_rgn, int *end_rgn)
433{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800434 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800435 int i;
436
437 *start_rgn = *end_rgn = 0;
438
439 /* we'll create at most two more regions */
440 while (type->cnt + 2 > type->max)
441 if (memblock_double_array(type) < 0)
442 return -ENOMEM;
443
444 for (i = 0; i < type->cnt; i++) {
445 struct memblock_region *rgn = &type->regions[i];
446 phys_addr_t rbase = rgn->base;
447 phys_addr_t rend = rbase + rgn->size;
448
449 if (rbase >= end)
450 break;
451 if (rend <= base)
452 continue;
453
454 if (rbase < base) {
455 /*
456 * @rgn intersects from below. Split and continue
457 * to process the next region - the new top half.
458 */
459 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800460 rgn->size -= base - rbase;
461 type->total_size -= base - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800462 memblock_insert_region(type, i, rbase, base - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800463 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800464 } else if (rend > end) {
465 /*
466 * @rgn intersects from above. Split and redo the
467 * current region - the new bottom half.
468 */
469 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800470 rgn->size -= end - rbase;
471 type->total_size -= end - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800472 memblock_insert_region(type, i--, rbase, end - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800473 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800474 } else {
475 /* @rgn is fully contained, record it */
476 if (!*end_rgn)
477 *start_rgn = i;
478 *end_rgn = i + 1;
479 }
480 }
481
482 return 0;
483}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800484
Tejun Heo581adcb2011-12-08 10:22:06 -0800485static int __init_memblock __memblock_remove(struct memblock_type *type,
486 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000487{
Tejun Heo71936182011-12-08 10:22:07 -0800488 int start_rgn, end_rgn;
489 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000490
Tejun Heo71936182011-12-08 10:22:07 -0800491 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
492 if (ret)
493 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000494
Tejun Heo71936182011-12-08 10:22:07 -0800495 for (i = end_rgn - 1; i >= start_rgn; i--)
496 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700497 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000498}
499
Tejun Heo581adcb2011-12-08 10:22:06 -0800500int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000501{
502 return __memblock_remove(&memblock.memory, base, size);
503}
504
Tejun Heo581adcb2011-12-08 10:22:06 -0800505int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000506{
Tejun Heo24aa0782011-07-12 11:16:06 +0200507 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700508 (unsigned long long)base,
509 (unsigned long long)base + size,
510 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200511
Yinghai Lu95f72d12010-07-12 14:36:09 +1000512 return __memblock_remove(&memblock.reserved, base, size);
513}
514
Tejun Heo581adcb2011-12-08 10:22:06 -0800515int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000516{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000517 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000518
Tejun Heo24aa0782011-07-12 11:16:06 +0200519 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700520 (unsigned long long)base,
521 (unsigned long long)base + size,
522 (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000523 BUG_ON(0 == size);
524
525 return memblock_add_region(_rgn, base, size);
526}
527
Tejun Heo35fd0802011-07-12 11:15:59 +0200528/**
529 * __next_free_mem_range - next function for for_each_free_mem_range()
530 * @idx: pointer to u64 loop variable
531 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
532 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
533 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
534 * @p_nid: ptr to int for nid of the range, can be %NULL
535 *
536 * Find the first free area from *@idx which matches @nid, fill the out
537 * parameters, and update *@idx for the next iteration. The lower 32bit of
538 * *@idx contains index into memory region and the upper 32bit indexes the
539 * areas before each reserved region. For example, if reserved regions
540 * look like the following,
541 *
542 * 0:[0-16), 1:[32-48), 2:[128-130)
543 *
544 * The upper 32bit indexes the following regions.
545 *
546 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
547 *
548 * As both region arrays are sorted, the function advances the two indices
549 * in lockstep and returns each intersection.
550 */
551void __init_memblock __next_free_mem_range(u64 *idx, int nid,
552 phys_addr_t *out_start,
553 phys_addr_t *out_end, int *out_nid)
554{
555 struct memblock_type *mem = &memblock.memory;
556 struct memblock_type *rsv = &memblock.reserved;
557 int mi = *idx & 0xffffffff;
558 int ri = *idx >> 32;
559
560 for ( ; mi < mem->cnt; mi++) {
561 struct memblock_region *m = &mem->regions[mi];
562 phys_addr_t m_start = m->base;
563 phys_addr_t m_end = m->base + m->size;
564
565 /* only memory regions are associated with nodes, check it */
566 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
567 continue;
568
569 /* scan areas before each reservation for intersection */
570 for ( ; ri < rsv->cnt + 1; ri++) {
571 struct memblock_region *r = &rsv->regions[ri];
572 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
573 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
574
575 /* if ri advanced past mi, break out to advance mi */
576 if (r_start >= m_end)
577 break;
578 /* if the two regions intersect, we're done */
579 if (m_start < r_end) {
580 if (out_start)
581 *out_start = max(m_start, r_start);
582 if (out_end)
583 *out_end = min(m_end, r_end);
584 if (out_nid)
585 *out_nid = memblock_get_region_node(m);
586 /*
587 * The region which ends first is advanced
588 * for the next iteration.
589 */
590 if (m_end <= r_end)
591 mi++;
592 else
593 ri++;
594 *idx = (u32)mi | (u64)ri << 32;
595 return;
596 }
597 }
598 }
599
600 /* signal end of iteration */
601 *idx = ULLONG_MAX;
602}
603
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200604#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
605/*
606 * Common iterator interface used to define for_each_mem_range().
607 */
608void __init_memblock __next_mem_pfn_range(int *idx, int nid,
609 unsigned long *out_start_pfn,
610 unsigned long *out_end_pfn, int *out_nid)
611{
612 struct memblock_type *type = &memblock.memory;
613 struct memblock_region *r;
614
615 while (++*idx < type->cnt) {
616 r = &type->regions[*idx];
617
618 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
619 continue;
620 if (nid == MAX_NUMNODES || nid == r->nid)
621 break;
622 }
623 if (*idx >= type->cnt) {
624 *idx = -1;
625 return;
626 }
627
628 if (out_start_pfn)
629 *out_start_pfn = PFN_UP(r->base);
630 if (out_end_pfn)
631 *out_end_pfn = PFN_DOWN(r->base + r->size);
632 if (out_nid)
633 *out_nid = r->nid;
634}
635
636/**
637 * memblock_set_node - set node ID on memblock regions
638 * @base: base of area to set node ID for
639 * @size: size of area to set node ID for
640 * @nid: node ID to set
641 *
642 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
643 * Regions which cross the area boundaries are split as necessary.
644 *
645 * RETURNS:
646 * 0 on success, -errno on failure.
647 */
648int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
649 int nid)
650{
651 struct memblock_type *type = &memblock.memory;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800652 int start_rgn, end_rgn;
653 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200654
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800655 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
656 if (ret)
657 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200658
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800659 for (i = start_rgn; i < end_rgn; i++)
660 type->regions[i].nid = nid;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200661
662 memblock_merge_regions(type);
663 return 0;
664}
665#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
666
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000667phys_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 +1000668{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000669 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000670
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000671 /* We align the size to limit fragmentation. Without this, a lot of
672 * small allocs quickly eat up the whole reserve array on sparc
673 */
Tejun Heo348968e2011-07-12 09:58:08 +0200674 size = round_up(size, align);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000675
Tejun Heofc769a82011-07-12 09:58:10 +0200676 found = memblock_find_in_range(0, max_addr, size, align);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800677 if (found && !memblock_reserve(found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000678 return found;
679
680 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000681}
682
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000683phys_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 +1000684{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000685 phys_addr_t alloc;
686
687 alloc = __memblock_alloc_base(size, align, max_addr);
688
689 if (alloc == 0)
690 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
691 (unsigned long long) size, (unsigned long long) max_addr);
692
693 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000694}
695
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000696phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000697{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000698 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000699}
700
Yinghai Lu95f72d12010-07-12 14:36:09 +1000701
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000702/*
Tejun Heo34e18452011-07-12 10:46:33 +0200703 * Additional node-local top-down allocators.
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700704 *
705 * WARNING: Only available after early_node_map[] has been populated,
706 * on some architectures, that is after all the calls to add_active_range()
707 * have been done to populate it.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000708 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000709
Tejun Heo34e18452011-07-12 10:46:33 +0200710static phys_addr_t __init memblock_nid_range_rev(phys_addr_t start,
711 phys_addr_t end, int *nid)
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700712{
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700713#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700714 unsigned long start_pfn, end_pfn;
715 int i;
716
Tejun Heob2fea982011-07-12 10:46:31 +0200717 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, nid)
Tejun Heo34e18452011-07-12 10:46:33 +0200718 if (end > PFN_PHYS(start_pfn) && end <= PFN_PHYS(end_pfn))
719 return max(start, PFN_PHYS(start_pfn));
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700720#endif
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700721 *nid = 0;
Tejun Heo34e18452011-07-12 10:46:33 +0200722 return start;
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700723}
724
Tejun Heoe6498042011-07-12 10:46:34 +0200725phys_addr_t __init memblock_find_in_range_node(phys_addr_t start,
726 phys_addr_t end,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000727 phys_addr_t size,
728 phys_addr_t align, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000729{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000730 struct memblock_type *mem = &memblock.memory;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000731 int i;
732
733 BUG_ON(0 == size);
734
Tejun Heoe6498042011-07-12 10:46:34 +0200735 /* Pump up max_addr */
736 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
737 end = memblock.current_limit;
738
739 for (i = mem->cnt - 1; i >= 0; i--) {
740 struct memblock_region *r = &mem->regions[i];
741 phys_addr_t base = max(start, r->base);
742 phys_addr_t top = min(end, r->base + r->size);
743
744 while (base < top) {
745 phys_addr_t tbase, ret;
746 int tnid;
747
748 tbase = memblock_nid_range_rev(base, top, &tnid);
749 if (nid == MAX_NUMNODES || tnid == nid) {
750 ret = memblock_find_region(tbase, top, size, align);
751 if (ret)
752 return ret;
753 }
754 top = tbase;
755 }
756 }
757
758 return 0;
759}
760
761phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
762{
763 phys_addr_t found;
764
765 /*
766 * We align the size to limit fragmentation. Without this, a lot of
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000767 * small allocs quickly eat up the whole reserve array on sparc
768 */
Tejun Heo348968e2011-07-12 09:58:08 +0200769 size = round_up(size, align);
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000770
Tejun Heoe6498042011-07-12 10:46:34 +0200771 found = memblock_find_in_range_node(0, MEMBLOCK_ALLOC_ACCESSIBLE,
772 size, align, nid);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800773 if (found && !memblock_reserve(found, size))
Tejun Heoe6498042011-07-12 10:46:34 +0200774 return found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000775
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700776 return 0;
777}
778
779phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
780{
781 phys_addr_t res = memblock_alloc_nid(size, align, nid);
782
783 if (res)
784 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200785 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000786}
787
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700788
789/*
790 * Remaining API functions
791 */
792
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000793phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000794{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800795 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000796}
797
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -0700798/* lowest address */
799phys_addr_t __init_memblock memblock_start_of_DRAM(void)
800{
801 return memblock.memory.regions[0].base;
802}
803
Yinghai Lu10d06432010-07-28 15:43:02 +1000804phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000805{
806 int idx = memblock.memory.cnt - 1;
807
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000808 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000809}
810
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800811void __init memblock_enforce_memory_limit(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000812{
813 unsigned long i;
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800814 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000815
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800816 if (!limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000817 return;
818
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800819 /* find out max address */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000820 for (i = 0; i < memblock.memory.cnt; i++) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800821 struct memblock_region *r = &memblock.memory.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000822
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800823 if (limit <= r->size) {
824 max_addr = r->base + limit;
825 break;
826 }
827 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000828 }
829
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800830 /* truncate both memory and reserved regions */
831 __memblock_remove(&memblock.memory, max_addr, (phys_addr_t)ULLONG_MAX);
832 __memblock_remove(&memblock.reserved, max_addr, (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000833}
834
Yinghai Lucd794812010-10-11 12:34:09 -0700835static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000836{
837 unsigned int left = 0, right = type->cnt;
838
839 do {
840 unsigned int mid = (right + left) / 2;
841
842 if (addr < type->regions[mid].base)
843 right = mid;
844 else if (addr >= (type->regions[mid].base +
845 type->regions[mid].size))
846 left = mid + 1;
847 else
848 return mid;
849 } while (left < right);
850 return -1;
851}
852
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000853int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000854{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000855 return memblock_search(&memblock.reserved, addr) != -1;
856}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000857
Yinghai Lu3661ca62010-09-15 13:05:29 -0700858int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000859{
860 return memblock_search(&memblock.memory, addr) != -1;
861}
862
Yinghai Lu3661ca62010-09-15 13:05:29 -0700863int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000864{
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800865 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800866 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000867
868 if (idx == -1)
869 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800870 return memblock.memory.regions[idx].base <= base &&
871 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800872 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000873}
874
Yinghai Lu10d06432010-07-28 15:43:02 +1000875int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000876{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800877 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +1000878 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000879}
880
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700881
Yinghai Lu3661ca62010-09-15 13:05:29 -0700882void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700883{
884 memblock.current_limit = limit;
885}
886
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200887static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000888{
889 unsigned long long base, size;
890 int i;
891
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200892 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000893
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200894 for (i = 0; i < type->cnt; i++) {
895 struct memblock_region *rgn = &type->regions[i];
896 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000897
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200898 base = rgn->base;
899 size = rgn->size;
900#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
901 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
902 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
903 memblock_get_region_node(rgn));
904#endif
905 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
906 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000907 }
908}
909
Tejun Heo4ff7b822011-12-08 10:22:06 -0800910void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000911{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000912 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -0800913 pr_info(" memory size = %#llx reserved size = %#llx\n",
914 (unsigned long long)memblock.memory.total_size,
915 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000916
917 memblock_dump(&memblock.memory, "memory");
918 memblock_dump(&memblock.reserved, "reserved");
919}
920
921void __init memblock_analyze(void)
922{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700923 /* We allow resizing from there */
924 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000925}
926
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000927static int __init early_memblock(char *p)
928{
929 if (p && strstr(p, "debug"))
930 memblock_debug = 1;
931 return 0;
932}
933early_param("memblock", early_memblock);
934
Tejun Heoc378ddd2011-07-14 11:46:03 +0200935#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -0700936
937static int memblock_debug_show(struct seq_file *m, void *private)
938{
939 struct memblock_type *type = m->private;
940 struct memblock_region *reg;
941 int i;
942
943 for (i = 0; i < type->cnt; i++) {
944 reg = &type->regions[i];
945 seq_printf(m, "%4d: ", i);
946 if (sizeof(phys_addr_t) == 4)
947 seq_printf(m, "0x%08lx..0x%08lx\n",
948 (unsigned long)reg->base,
949 (unsigned long)(reg->base + reg->size - 1));
950 else
951 seq_printf(m, "0x%016llx..0x%016llx\n",
952 (unsigned long long)reg->base,
953 (unsigned long long)(reg->base + reg->size - 1));
954
955 }
956 return 0;
957}
958
959static int memblock_debug_open(struct inode *inode, struct file *file)
960{
961 return single_open(file, memblock_debug_show, inode->i_private);
962}
963
964static const struct file_operations memblock_debug_fops = {
965 .open = memblock_debug_open,
966 .read = seq_read,
967 .llseek = seq_lseek,
968 .release = single_release,
969};
970
971static int __init memblock_init_debugfs(void)
972{
973 struct dentry *root = debugfs_create_dir("memblock", NULL);
974 if (!root)
975 return -ENXIO;
976 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
977 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
978
979 return 0;
980}
981__initcall(memblock_init_debugfs);
982
983#endif /* CONFIG_DEBUG_FS */