blob: ebc6119f12804df5afb0d19e01ecbeaff44de5b0 [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
Yinghai Lu10d06432010-07-28 15:43:02 +100023struct memblock memblock __initdata_memblock;
Yinghai Lu95f72d12010-07-12 14:36:09 +100024
Yinghai Lu10d06432010-07-28 15:43:02 +100025int memblock_debug __initdata_memblock;
26int memblock_can_resize __initdata_memblock;
27static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS + 1] __initdata_memblock;
28static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS + 1] __initdata_memblock;
Yinghai Lu95f72d12010-07-12 14:36:09 +100029
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070030/* inline so we don't get a warning when pr_debug is compiled out */
31static inline const char *memblock_type_name(struct memblock_type *type)
32{
33 if (type == &memblock.memory)
34 return "memory";
35 else if (type == &memblock.reserved)
36 return "reserved";
37 else
38 return "unknown";
39}
40
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100041/*
42 * Address comparison utilities
43 */
Yinghai Lu10d06432010-07-28 15:43:02 +100044static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100045 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100046{
47 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
48}
49
Yinghai Lu10d06432010-07-28 15:43:02 +100050long __init_memblock memblock_overlaps_region(struct memblock_type *type, phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100051{
52 unsigned long i;
53
54 for (i = 0; i < type->cnt; i++) {
55 phys_addr_t rgnbase = type->regions[i].base;
56 phys_addr_t rgnsize = type->regions[i].size;
57 if (memblock_addrs_overlap(base, size, rgnbase, rgnsize))
58 break;
59 }
60
61 return (i < type->cnt) ? i : -1;
62}
63
64/*
65 * Find, allocate, deallocate or reserve unreserved regions. All allocations
66 * are top-down.
67 */
68
Yinghai Lucd794812010-10-11 12:34:09 -070069static phys_addr_t __init_memblock memblock_find_region(phys_addr_t start, phys_addr_t end,
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100070 phys_addr_t size, phys_addr_t align)
71{
72 phys_addr_t base, res_base;
73 long j;
74
Yinghai Luf1af98c2010-10-04 14:57:39 -070075 /* In case, huge size is requested */
76 if (end < size)
Tejun Heo1f5026a2011-07-12 09:58:09 +020077 return 0;
Yinghai Luf1af98c2010-10-04 14:57:39 -070078
Tejun Heo348968e2011-07-12 09:58:08 +020079 base = round_down(end - size, align);
Yinghai Luf1af98c2010-10-04 14:57:39 -070080
Benjamin Herrenschmidt25818f02010-07-28 15:25:10 +100081 /* Prevent allocations returning 0 as it's also used to
82 * indicate an allocation failure
83 */
84 if (start == 0)
85 start = PAGE_SIZE;
86
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100087 while (start <= base) {
88 j = memblock_overlaps_region(&memblock.reserved, base, size);
89 if (j < 0)
90 return base;
91 res_base = memblock.reserved.regions[j].base;
92 if (res_base < size)
93 break;
Tejun Heo348968e2011-07-12 09:58:08 +020094 base = round_down(res_base - size, align);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100095 }
96
Tejun Heo1f5026a2011-07-12 09:58:09 +020097 return 0;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100098}
99
Tejun Heofc769a82011-07-12 09:58:10 +0200100/*
101 * Find a free area with specified alignment in a specific range.
102 */
103phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start, phys_addr_t end,
104 phys_addr_t size, phys_addr_t align)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000105{
106 long i;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000107
108 BUG_ON(0 == size);
109
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000110 /* Pump up max_addr */
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000111 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
112 end = memblock.current_limit;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000113
114 /* We do a top-down search, this tends to limit memory
115 * fragmentation by keeping early boot allocs near the
116 * top of memory
117 */
118 for (i = memblock.memory.cnt - 1; i >= 0; i--) {
119 phys_addr_t memblockbase = memblock.memory.regions[i].base;
120 phys_addr_t memblocksize = memblock.memory.regions[i].size;
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000121 phys_addr_t bottom, top, found;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000122
123 if (memblocksize < size)
124 continue;
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000125 if ((memblockbase + memblocksize) <= start)
126 break;
127 bottom = max(memblockbase, start);
128 top = min(memblockbase + memblocksize, end);
129 if (bottom >= top)
130 continue;
131 found = memblock_find_region(bottom, top, size, align);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200132 if (found)
Benjamin Herrenschmidtfef501d2010-07-12 15:00:34 +1000133 return found;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000134 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200135 return 0;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000136}
137
Yinghai Lu5303b682010-07-28 15:38:40 +1000138/*
Yinghai Lu7950c402010-08-25 13:39:14 -0700139 * Free memblock.reserved.regions
140 */
141int __init_memblock memblock_free_reserved_regions(void)
142{
143 if (memblock.reserved.regions == memblock_reserved_init_regions)
144 return 0;
145
146 return memblock_free(__pa(memblock.reserved.regions),
147 sizeof(struct memblock_region) * memblock.reserved.max);
148}
149
150/*
151 * Reserve memblock.reserved.regions
152 */
153int __init_memblock memblock_reserve_reserved_regions(void)
154{
155 if (memblock.reserved.regions == memblock_reserved_init_regions)
156 return 0;
157
158 return memblock_reserve(__pa(memblock.reserved.regions),
159 sizeof(struct memblock_region) * memblock.reserved.max);
160}
161
Yinghai Lu10d06432010-07-28 15:43:02 +1000162static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000163{
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200164 memmove(&type->regions[r], &type->regions[r + 1],
165 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000166 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000167
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700168 /* Special case for empty arrays */
169 if (type->cnt == 0) {
170 type->cnt = 1;
171 type->regions[0].base = 0;
172 type->regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200173 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700174 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000175}
176
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700177/* Defined below but needed now */
178static long memblock_add_region(struct memblock_type *type, phys_addr_t base, phys_addr_t size);
179
Yinghai Lu10d06432010-07-28 15:43:02 +1000180static int __init_memblock memblock_double_array(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700181{
182 struct memblock_region *new_array, *old_array;
183 phys_addr_t old_size, new_size, addr;
184 int use_slab = slab_is_available();
185
186 /* We don't allow resizing until we know about the reserved regions
187 * of memory that aren't suitable for allocation
188 */
189 if (!memblock_can_resize)
190 return -1;
191
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700192 /* Calculate new doubled size */
193 old_size = type->max * sizeof(struct memblock_region);
194 new_size = old_size << 1;
195
196 /* Try to find some space for it.
197 *
198 * WARNING: We assume that either slab_is_available() and we use it or
199 * we use MEMBLOCK for allocations. That means that this is unsafe to use
200 * when bootmem is currently active (unless bootmem itself is implemented
201 * on top of MEMBLOCK which isn't the case yet)
202 *
203 * This should however not be an issue for now, as we currently only
204 * call into MEMBLOCK while it's still active, or much later when slab is
205 * active for memory hotplug operations
206 */
207 if (use_slab) {
208 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200209 addr = new_array ? __pa(new_array) : 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700210 } else
Tejun Heofc769a82011-07-12 09:58:10 +0200211 addr = memblock_find_in_range(0, MEMBLOCK_ALLOC_ACCESSIBLE, new_size, sizeof(phys_addr_t));
Tejun Heo1f5026a2011-07-12 09:58:09 +0200212 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700213 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
214 memblock_type_name(type), type->max, type->max * 2);
215 return -1;
216 }
217 new_array = __va(addr);
218
Yinghai Luea9e4372010-07-28 15:13:22 +1000219 memblock_dbg("memblock: %s array is doubled to %ld at [%#010llx-%#010llx]",
220 memblock_type_name(type), type->max * 2, (u64)addr, (u64)addr + new_size - 1);
221
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700222 /* Found space, we now need to move the array over before
223 * we add the reserved region since it may be our reserved
224 * array itself that is full.
225 */
226 memcpy(new_array, type->regions, old_size);
227 memset(new_array + type->max, 0, old_size);
228 old_array = type->regions;
229 type->regions = new_array;
230 type->max <<= 1;
231
232 /* If we use SLAB that's it, we are done */
233 if (use_slab)
234 return 0;
235
236 /* Add the new reserved region now. Should not fail ! */
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700237 BUG_ON(memblock_add_region(&memblock.reserved, addr, new_size));
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700238
239 /* If the array wasn't our static init one, then free it. We only do
240 * that before SLAB is available as later on, we don't know whether
241 * to use kfree or free_bootmem_pages(). Shouldn't be a big deal
242 * anyways
243 */
244 if (old_array != memblock_memory_init_regions &&
245 old_array != memblock_reserved_init_regions)
246 memblock_free(__pa(old_array), old_size);
247
248 return 0;
249}
250
Tejun Heo784656f92011-07-12 11:15:55 +0200251/**
252 * memblock_merge_regions - merge neighboring compatible regions
253 * @type: memblock type to scan
254 *
255 * Scan @type and merge neighboring compatible regions.
256 */
257static void __init_memblock memblock_merge_regions(struct memblock_type *type)
258{
259 int i = 0;
260
261 /* cnt never goes below 1 */
262 while (i < type->cnt - 1) {
263 struct memblock_region *this = &type->regions[i];
264 struct memblock_region *next = &type->regions[i + 1];
265
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200266 if (this->base + this->size != next->base ||
267 memblock_get_region_node(this) !=
268 memblock_get_region_node(next)) {
Tejun Heo784656f92011-07-12 11:15:55 +0200269 BUG_ON(this->base + this->size > next->base);
270 i++;
271 continue;
272 }
273
274 this->size += next->size;
275 memmove(next, next + 1, (type->cnt - (i + 1)) * sizeof(*next));
276 type->cnt--;
277 }
278}
279
280/**
281 * memblock_insert_region - insert new memblock region
282 * @type: memblock type to insert into
283 * @idx: index for the insertion point
284 * @base: base address of the new region
285 * @size: size of the new region
286 *
287 * Insert new memblock region [@base,@base+@size) into @type at @idx.
288 * @type must already have extra room to accomodate the new region.
289 */
290static void __init_memblock memblock_insert_region(struct memblock_type *type,
291 int idx, phys_addr_t base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200292 phys_addr_t size, int nid)
Tejun Heo784656f92011-07-12 11:15:55 +0200293{
294 struct memblock_region *rgn = &type->regions[idx];
295
296 BUG_ON(type->cnt >= type->max);
297 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
298 rgn->base = base;
299 rgn->size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200300 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200301 type->cnt++;
302}
303
304/**
305 * memblock_add_region - add new memblock region
306 * @type: memblock type to add new region into
307 * @base: base address of the new region
308 * @size: size of the new region
309 *
310 * Add new memblock region [@base,@base+@size) into @type. The new region
311 * is allowed to overlap with existing ones - overlaps don't affect already
312 * existing regions. @type is guaranteed to be minimal (all neighbouring
313 * compatible regions are merged) after the addition.
314 *
315 * RETURNS:
316 * 0 on success, -errno on failure.
317 */
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700318static long __init_memblock memblock_add_region(struct memblock_type *type,
319 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000320{
Tejun Heo784656f92011-07-12 11:15:55 +0200321 bool insert = false;
322 phys_addr_t obase = base, end = base + size;
323 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000324
Tejun Heo784656f92011-07-12 11:15:55 +0200325 /* special case for empty array */
326 if (type->regions[0].size == 0) {
327 WARN_ON(type->cnt != 1);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000328 type->regions[0].base = base;
329 type->regions[0].size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200330 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000331 return 0;
332 }
Tejun Heo784656f92011-07-12 11:15:55 +0200333repeat:
334 /*
335 * The following is executed twice. Once with %false @insert and
336 * then with %true. The first counts the number of regions needed
337 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700338 */
Tejun Heo784656f92011-07-12 11:15:55 +0200339 base = obase;
340 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000341
Tejun Heo784656f92011-07-12 11:15:55 +0200342 for (i = 0; i < type->cnt; i++) {
343 struct memblock_region *rgn = &type->regions[i];
344 phys_addr_t rbase = rgn->base;
345 phys_addr_t rend = rbase + rgn->size;
346
347 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000348 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200349 if (rend <= base)
350 continue;
351 /*
352 * @rgn overlaps. If it separates the lower part of new
353 * area, insert that portion.
354 */
355 if (rbase > base) {
356 nr_new++;
357 if (insert)
358 memblock_insert_region(type, i++, base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200359 rbase - base, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000360 }
Tejun Heo784656f92011-07-12 11:15:55 +0200361 /* area below @rend is dealt with, forget about it */
362 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000363 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000364
Tejun Heo784656f92011-07-12 11:15:55 +0200365 /* insert the remaining portion */
366 if (base < end) {
367 nr_new++;
368 if (insert)
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200369 memblock_insert_region(type, i, base, end - base,
370 MAX_NUMNODES);
Tejun Heo784656f92011-07-12 11:15:55 +0200371 }
372
373 /*
374 * If this was the first round, resize array and repeat for actual
375 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700376 */
Tejun Heo784656f92011-07-12 11:15:55 +0200377 if (!insert) {
378 while (type->cnt + nr_new > type->max)
379 if (memblock_double_array(type) < 0)
380 return -ENOMEM;
381 insert = true;
382 goto repeat;
383 } else {
384 memblock_merge_regions(type);
385 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700386 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000387}
388
Yinghai Lu10d06432010-07-28 15:43:02 +1000389long __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000390{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000391 return memblock_add_region(&memblock.memory, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000392}
393
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700394static long __init_memblock __memblock_remove(struct memblock_type *type,
395 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000396{
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000397 phys_addr_t end = base + size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000398 int i;
399
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700400 /* Walk through the array for collisions */
401 for (i = 0; i < type->cnt; i++) {
402 struct memblock_region *rgn = &type->regions[i];
403 phys_addr_t rend = rgn->base + rgn->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000404
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700405 /* Nothing more to do, exit */
406 if (rgn->base > end || rgn->size == 0)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000407 break;
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700408
409 /* If we fully enclose the block, drop it */
410 if (base <= rgn->base && end >= rend) {
411 memblock_remove_region(type, i--);
412 continue;
413 }
414
415 /* If we are fully enclosed within a block
416 * then we need to split it and we are done
417 */
418 if (base > rgn->base && end < rend) {
419 rgn->size = base - rgn->base;
420 if (!memblock_add_region(type, end, rend - end))
421 return 0;
422 /* Failure to split is bad, we at least
423 * restore the block before erroring
424 */
425 rgn->size = rend - rgn->base;
426 WARN_ON(1);
427 return -1;
428 }
429
430 /* Check if we need to trim the bottom of a block */
431 if (rgn->base < end && rend > end) {
432 rgn->size -= end - rgn->base;
433 rgn->base = end;
434 break;
435 }
436
437 /* And check if we need to trim the top of a block */
438 if (base < rend)
439 rgn->size -= rend - base;
440
Yinghai Lu95f72d12010-07-12 14:36:09 +1000441 }
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700442 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000443}
444
Yinghai Lu10d06432010-07-28 15:43:02 +1000445long __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000446{
447 return __memblock_remove(&memblock.memory, base, size);
448}
449
Yinghai Lu3661ca62010-09-15 13:05:29 -0700450long __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000451{
452 return __memblock_remove(&memblock.reserved, base, size);
453}
454
Yinghai Lu3661ca62010-09-15 13:05:29 -0700455long __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000456{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000457 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000458
459 BUG_ON(0 == size);
460
461 return memblock_add_region(_rgn, base, size);
462}
463
Tejun Heo35fd0802011-07-12 11:15:59 +0200464/**
465 * __next_free_mem_range - next function for for_each_free_mem_range()
466 * @idx: pointer to u64 loop variable
467 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
468 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
469 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
470 * @p_nid: ptr to int for nid of the range, can be %NULL
471 *
472 * Find the first free area from *@idx which matches @nid, fill the out
473 * parameters, and update *@idx for the next iteration. The lower 32bit of
474 * *@idx contains index into memory region and the upper 32bit indexes the
475 * areas before each reserved region. For example, if reserved regions
476 * look like the following,
477 *
478 * 0:[0-16), 1:[32-48), 2:[128-130)
479 *
480 * The upper 32bit indexes the following regions.
481 *
482 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
483 *
484 * As both region arrays are sorted, the function advances the two indices
485 * in lockstep and returns each intersection.
486 */
487void __init_memblock __next_free_mem_range(u64 *idx, int nid,
488 phys_addr_t *out_start,
489 phys_addr_t *out_end, int *out_nid)
490{
491 struct memblock_type *mem = &memblock.memory;
492 struct memblock_type *rsv = &memblock.reserved;
493 int mi = *idx & 0xffffffff;
494 int ri = *idx >> 32;
495
496 for ( ; mi < mem->cnt; mi++) {
497 struct memblock_region *m = &mem->regions[mi];
498 phys_addr_t m_start = m->base;
499 phys_addr_t m_end = m->base + m->size;
500
501 /* only memory regions are associated with nodes, check it */
502 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
503 continue;
504
505 /* scan areas before each reservation for intersection */
506 for ( ; ri < rsv->cnt + 1; ri++) {
507 struct memblock_region *r = &rsv->regions[ri];
508 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
509 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
510
511 /* if ri advanced past mi, break out to advance mi */
512 if (r_start >= m_end)
513 break;
514 /* if the two regions intersect, we're done */
515 if (m_start < r_end) {
516 if (out_start)
517 *out_start = max(m_start, r_start);
518 if (out_end)
519 *out_end = min(m_end, r_end);
520 if (out_nid)
521 *out_nid = memblock_get_region_node(m);
522 /*
523 * The region which ends first is advanced
524 * for the next iteration.
525 */
526 if (m_end <= r_end)
527 mi++;
528 else
529 ri++;
530 *idx = (u32)mi | (u64)ri << 32;
531 return;
532 }
533 }
534 }
535
536 /* signal end of iteration */
537 *idx = ULLONG_MAX;
538}
539
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200540#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
541/*
542 * Common iterator interface used to define for_each_mem_range().
543 */
544void __init_memblock __next_mem_pfn_range(int *idx, int nid,
545 unsigned long *out_start_pfn,
546 unsigned long *out_end_pfn, int *out_nid)
547{
548 struct memblock_type *type = &memblock.memory;
549 struct memblock_region *r;
550
551 while (++*idx < type->cnt) {
552 r = &type->regions[*idx];
553
554 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
555 continue;
556 if (nid == MAX_NUMNODES || nid == r->nid)
557 break;
558 }
559 if (*idx >= type->cnt) {
560 *idx = -1;
561 return;
562 }
563
564 if (out_start_pfn)
565 *out_start_pfn = PFN_UP(r->base);
566 if (out_end_pfn)
567 *out_end_pfn = PFN_DOWN(r->base + r->size);
568 if (out_nid)
569 *out_nid = r->nid;
570}
571
572/**
573 * memblock_set_node - set node ID on memblock regions
574 * @base: base of area to set node ID for
575 * @size: size of area to set node ID for
576 * @nid: node ID to set
577 *
578 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
579 * Regions which cross the area boundaries are split as necessary.
580 *
581 * RETURNS:
582 * 0 on success, -errno on failure.
583 */
584int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
585 int nid)
586{
587 struct memblock_type *type = &memblock.memory;
588 phys_addr_t end = base + size;
589 int i;
590
591 /* we'll create at most two more regions */
592 while (type->cnt + 2 > type->max)
593 if (memblock_double_array(type) < 0)
594 return -ENOMEM;
595
596 for (i = 0; i < type->cnt; i++) {
597 struct memblock_region *rgn = &type->regions[i];
598 phys_addr_t rbase = rgn->base;
599 phys_addr_t rend = rbase + rgn->size;
600
601 if (rbase >= end)
602 break;
603 if (rend <= base)
604 continue;
605
606 if (rbase < base) {
607 /*
608 * @rgn intersects from below. Split and continue
609 * to process the next region - the new top half.
610 */
611 rgn->base = base;
612 rgn->size = rend - rgn->base;
613 memblock_insert_region(type, i, rbase, base - rbase,
614 rgn->nid);
615 } else if (rend > end) {
616 /*
617 * @rgn intersects from above. Split and redo the
618 * current region - the new bottom half.
619 */
620 rgn->base = end;
621 rgn->size = rend - rgn->base;
622 memblock_insert_region(type, i--, rbase, end - rbase,
623 rgn->nid);
624 } else {
625 /* @rgn is fully contained, set ->nid */
626 rgn->nid = nid;
627 }
628 }
629
630 memblock_merge_regions(type);
631 return 0;
632}
633#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
634
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000635phys_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 +1000636{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000637 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000638
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000639 /* We align the size to limit fragmentation. Without this, a lot of
640 * small allocs quickly eat up the whole reserve array on sparc
641 */
Tejun Heo348968e2011-07-12 09:58:08 +0200642 size = round_up(size, align);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000643
Tejun Heofc769a82011-07-12 09:58:10 +0200644 found = memblock_find_in_range(0, max_addr, size, align);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200645 if (found && !memblock_add_region(&memblock.reserved, found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000646 return found;
647
648 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000649}
650
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000651phys_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 +1000652{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000653 phys_addr_t alloc;
654
655 alloc = __memblock_alloc_base(size, align, max_addr);
656
657 if (alloc == 0)
658 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
659 (unsigned long long) size, (unsigned long long) max_addr);
660
661 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000662}
663
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000664phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000665{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000666 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000667}
668
Yinghai Lu95f72d12010-07-12 14:36:09 +1000669
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000670/*
Tejun Heo34e18452011-07-12 10:46:33 +0200671 * Additional node-local top-down allocators.
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700672 *
673 * WARNING: Only available after early_node_map[] has been populated,
674 * on some architectures, that is after all the calls to add_active_range()
675 * have been done to populate it.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000676 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000677
Tejun Heo34e18452011-07-12 10:46:33 +0200678static phys_addr_t __init memblock_nid_range_rev(phys_addr_t start,
679 phys_addr_t end, int *nid)
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700680{
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700681#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700682 unsigned long start_pfn, end_pfn;
683 int i;
684
Tejun Heob2fea982011-07-12 10:46:31 +0200685 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, nid)
Tejun Heo34e18452011-07-12 10:46:33 +0200686 if (end > PFN_PHYS(start_pfn) && end <= PFN_PHYS(end_pfn))
687 return max(start, PFN_PHYS(start_pfn));
Benjamin Herrenschmidtc196f762010-07-06 15:39:16 -0700688#endif
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700689 *nid = 0;
Tejun Heo34e18452011-07-12 10:46:33 +0200690 return start;
Benjamin Herrenschmidtc3f72b52010-07-06 15:38:59 -0700691}
692
Tejun Heoe6498042011-07-12 10:46:34 +0200693phys_addr_t __init memblock_find_in_range_node(phys_addr_t start,
694 phys_addr_t end,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000695 phys_addr_t size,
696 phys_addr_t align, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000697{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000698 struct memblock_type *mem = &memblock.memory;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000699 int i;
700
701 BUG_ON(0 == size);
702
Tejun Heoe6498042011-07-12 10:46:34 +0200703 /* Pump up max_addr */
704 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
705 end = memblock.current_limit;
706
707 for (i = mem->cnt - 1; i >= 0; i--) {
708 struct memblock_region *r = &mem->regions[i];
709 phys_addr_t base = max(start, r->base);
710 phys_addr_t top = min(end, r->base + r->size);
711
712 while (base < top) {
713 phys_addr_t tbase, ret;
714 int tnid;
715
716 tbase = memblock_nid_range_rev(base, top, &tnid);
717 if (nid == MAX_NUMNODES || tnid == nid) {
718 ret = memblock_find_region(tbase, top, size, align);
719 if (ret)
720 return ret;
721 }
722 top = tbase;
723 }
724 }
725
726 return 0;
727}
728
729phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
730{
731 phys_addr_t found;
732
733 /*
734 * We align the size to limit fragmentation. Without this, a lot of
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000735 * small allocs quickly eat up the whole reserve array on sparc
736 */
Tejun Heo348968e2011-07-12 09:58:08 +0200737 size = round_up(size, align);
Benjamin Herrenschmidt7f219c72010-07-12 14:24:57 +1000738
Tejun Heoe6498042011-07-12 10:46:34 +0200739 found = memblock_find_in_range_node(0, MEMBLOCK_ALLOC_ACCESSIBLE,
740 size, align, nid);
741 if (found && !memblock_add_region(&memblock.reserved, found, size))
742 return found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000743
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700744 return 0;
745}
746
747phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
748{
749 phys_addr_t res = memblock_alloc_nid(size, align, nid);
750
751 if (res)
752 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200753 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000754}
755
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700756
757/*
758 * Remaining API functions
759 */
760
Yinghai Lu95f72d12010-07-12 14:36:09 +1000761/* You must call memblock_analyze() before this. */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000762phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000763{
Benjamin Herrenschmidt4734b592010-07-28 14:31:29 +1000764 return memblock.memory_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000765}
766
Yinghai Lu10d06432010-07-28 15:43:02 +1000767phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000768{
769 int idx = memblock.memory.cnt - 1;
770
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000771 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000772}
773
774/* You must call memblock_analyze() after this. */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000775void __init memblock_enforce_memory_limit(phys_addr_t memory_limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000776{
777 unsigned long i;
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000778 phys_addr_t limit;
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000779 struct memblock_region *p;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000780
781 if (!memory_limit)
782 return;
783
784 /* Truncate the memblock regions to satisfy the memory limit. */
785 limit = memory_limit;
786 for (i = 0; i < memblock.memory.cnt; i++) {
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000787 if (limit > memblock.memory.regions[i].size) {
788 limit -= memblock.memory.regions[i].size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000789 continue;
790 }
791
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000792 memblock.memory.regions[i].size = limit;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000793 memblock.memory.cnt = i + 1;
794 break;
795 }
796
Yinghai Lu95f72d12010-07-12 14:36:09 +1000797 memory_limit = memblock_end_of_DRAM();
798
799 /* And truncate any reserves above the limit also. */
800 for (i = 0; i < memblock.reserved.cnt; i++) {
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000801 p = &memblock.reserved.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000802
803 if (p->base > memory_limit)
804 p->size = 0;
805 else if ((p->base + p->size) > memory_limit)
806 p->size = memory_limit - p->base;
807
808 if (p->size == 0) {
809 memblock_remove_region(&memblock.reserved, i);
810 i--;
811 }
812 }
813}
814
Yinghai Lucd794812010-10-11 12:34:09 -0700815static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000816{
817 unsigned int left = 0, right = type->cnt;
818
819 do {
820 unsigned int mid = (right + left) / 2;
821
822 if (addr < type->regions[mid].base)
823 right = mid;
824 else if (addr >= (type->regions[mid].base +
825 type->regions[mid].size))
826 left = mid + 1;
827 else
828 return mid;
829 } while (left < right);
830 return -1;
831}
832
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000833int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000834{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000835 return memblock_search(&memblock.reserved, addr) != -1;
836}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000837
Yinghai Lu3661ca62010-09-15 13:05:29 -0700838int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000839{
840 return memblock_search(&memblock.memory, addr) != -1;
841}
842
Yinghai Lu3661ca62010-09-15 13:05:29 -0700843int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000844{
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800845 int idx = memblock_search(&memblock.memory, base);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000846
847 if (idx == -1)
848 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -0800849 return memblock.memory.regions[idx].base <= base &&
850 (memblock.memory.regions[idx].base +
851 memblock.memory.regions[idx].size) >= (base + size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000852}
853
Yinghai Lu10d06432010-07-28 15:43:02 +1000854int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000855{
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +1000856 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000857}
858
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700859
Yinghai Lu3661ca62010-09-15 13:05:29 -0700860void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700861{
862 memblock.current_limit = limit;
863}
864
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200865static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000866{
867 unsigned long long base, size;
868 int i;
869
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200870 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000871
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200872 for (i = 0; i < type->cnt; i++) {
873 struct memblock_region *rgn = &type->regions[i];
874 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000875
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200876 base = rgn->base;
877 size = rgn->size;
878#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
879 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
880 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
881 memblock_get_region_node(rgn));
882#endif
883 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
884 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000885 }
886}
887
Yinghai Lu10d06432010-07-28 15:43:02 +1000888void __init_memblock memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000889{
890 if (!memblock_debug)
891 return;
892
893 pr_info("MEMBLOCK configuration:\n");
894 pr_info(" memory size = 0x%llx\n", (unsigned long long)memblock.memory_size);
895
896 memblock_dump(&memblock.memory, "memory");
897 memblock_dump(&memblock.reserved, "reserved");
898}
899
900void __init memblock_analyze(void)
901{
902 int i;
903
904 /* Check marker in the unused last array entry */
905 WARN_ON(memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS].base
906 != (phys_addr_t)RED_INACTIVE);
907 WARN_ON(memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS].base
908 != (phys_addr_t)RED_INACTIVE);
909
910 memblock.memory_size = 0;
911
912 for (i = 0; i < memblock.memory.cnt; i++)
913 memblock.memory_size += memblock.memory.regions[i].size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700914
915 /* We allow resizing from there */
916 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000917}
918
Benjamin Herrenschmidt7590abe2010-07-06 15:39:10 -0700919void __init memblock_init(void)
920{
Jeremy Fitzhardinge236260b2010-10-06 15:52:29 -0700921 static int init_done __initdata = 0;
922
923 if (init_done)
924 return;
925 init_done = 1;
926
Benjamin Herrenschmidt7590abe2010-07-06 15:39:10 -0700927 /* Hookup the initial arrays */
928 memblock.memory.regions = memblock_memory_init_regions;
929 memblock.memory.max = INIT_MEMBLOCK_REGIONS;
930 memblock.reserved.regions = memblock_reserved_init_regions;
931 memblock.reserved.max = INIT_MEMBLOCK_REGIONS;
932
933 /* Write a marker in the unused last array entry */
934 memblock.memory.regions[INIT_MEMBLOCK_REGIONS].base = (phys_addr_t)RED_INACTIVE;
935 memblock.reserved.regions[INIT_MEMBLOCK_REGIONS].base = (phys_addr_t)RED_INACTIVE;
936
937 /* Create a dummy zero size MEMBLOCK which will get coalesced away later.
938 * This simplifies the memblock_add() code below...
939 */
940 memblock.memory.regions[0].base = 0;
941 memblock.memory.regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200942 memblock_set_region_node(&memblock.memory.regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt7590abe2010-07-06 15:39:10 -0700943 memblock.memory.cnt = 1;
944
945 /* Ditto. */
946 memblock.reserved.regions[0].base = 0;
947 memblock.reserved.regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200948 memblock_set_region_node(&memblock.reserved.regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt7590abe2010-07-06 15:39:10 -0700949 memblock.reserved.cnt = 1;
950
951 memblock.current_limit = MEMBLOCK_ALLOC_ANYWHERE;
952}
953
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000954static int __init early_memblock(char *p)
955{
956 if (p && strstr(p, "debug"))
957 memblock_debug = 1;
958 return 0;
959}
960early_param("memblock", early_memblock);
961
Tejun Heoc378ddd2011-07-14 11:46:03 +0200962#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -0700963
964static int memblock_debug_show(struct seq_file *m, void *private)
965{
966 struct memblock_type *type = m->private;
967 struct memblock_region *reg;
968 int i;
969
970 for (i = 0; i < type->cnt; i++) {
971 reg = &type->regions[i];
972 seq_printf(m, "%4d: ", i);
973 if (sizeof(phys_addr_t) == 4)
974 seq_printf(m, "0x%08lx..0x%08lx\n",
975 (unsigned long)reg->base,
976 (unsigned long)(reg->base + reg->size - 1));
977 else
978 seq_printf(m, "0x%016llx..0x%016llx\n",
979 (unsigned long long)reg->base,
980 (unsigned long long)(reg->base + reg->size - 1));
981
982 }
983 return 0;
984}
985
986static int memblock_debug_open(struct inode *inode, struct file *file)
987{
988 return single_open(file, memblock_debug_show, inode->i_private);
989}
990
991static const struct file_operations memblock_debug_fops = {
992 .open = memblock_debug_open,
993 .read = seq_read,
994 .llseek = seq_lseek,
995 .release = single_release,
996};
997
998static int __init memblock_init_debugfs(void)
999{
1000 struct dentry *root = debugfs_create_dir("memblock", NULL);
1001 if (!root)
1002 return -ENXIO;
1003 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
1004 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
1005
1006 return 0;
1007}
1008__initcall(memblock_init_debugfs);
1009
1010#endif /* CONFIG_DEBUG_FS */