blob: 53e477bb55587aff585558f91c96a04db9f5c965 [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
Tang Chen79442ed2013-11-12 15:07:59 -080023#include <asm-generic/sections.h>
24
Tejun Heofe091c22011-12-08 10:22:07 -080025static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
26static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
27
28struct memblock memblock __initdata_memblock = {
29 .memory.regions = memblock_memory_init_regions,
30 .memory.cnt = 1, /* empty dummy entry */
31 .memory.max = INIT_MEMBLOCK_REGIONS,
32
33 .reserved.regions = memblock_reserved_init_regions,
34 .reserved.cnt = 1, /* empty dummy entry */
35 .reserved.max = INIT_MEMBLOCK_REGIONS,
36
Tang Chen79442ed2013-11-12 15:07:59 -080037 .bottom_up = false,
Tejun Heofe091c22011-12-08 10:22:07 -080038 .current_limit = MEMBLOCK_ALLOC_ANYWHERE,
39};
Yinghai Lu95f72d12010-07-12 14:36:09 +100040
Yinghai Lu10d06432010-07-28 15:43:02 +100041int memblock_debug __initdata_memblock;
Tejun Heo1aadc052011-12-08 10:22:08 -080042static int memblock_can_resize __initdata_memblock;
Gavin Shan181eb392012-05-29 15:06:50 -070043static int memblock_memory_in_slab __initdata_memblock = 0;
44static int memblock_reserved_in_slab __initdata_memblock = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +100045
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070046/* inline so we don't get a warning when pr_debug is compiled out */
Raghavendra D Prabhuc2233112012-10-08 16:33:55 -070047static __init_memblock const char *
48memblock_type_name(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070049{
50 if (type == &memblock.memory)
51 return "memory";
52 else if (type == &memblock.reserved)
53 return "reserved";
54 else
55 return "unknown";
56}
57
Tejun Heoeb18f1b2011-12-08 10:22:07 -080058/* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
59static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
60{
61 return *size = min(*size, (phys_addr_t)ULLONG_MAX - base);
62}
63
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100064/*
65 * Address comparison utilities
66 */
Yinghai Lu10d06432010-07-28 15:43:02 +100067static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100068 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100069{
70 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
71}
72
H Hartley Sweeten2d7d3eb2011-10-31 17:09:15 -070073static long __init_memblock memblock_overlaps_region(struct memblock_type *type,
74 phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100075{
76 unsigned long i;
77
78 for (i = 0; i < type->cnt; i++) {
79 phys_addr_t rgnbase = type->regions[i].base;
80 phys_addr_t rgnsize = type->regions[i].size;
81 if (memblock_addrs_overlap(base, size, rgnbase, rgnsize))
82 break;
83 }
84
85 return (i < type->cnt) ? i : -1;
86}
87
Tang Chen79442ed2013-11-12 15:07:59 -080088/*
89 * __memblock_find_range_bottom_up - find free area utility in bottom-up
90 * @start: start of candidate range
91 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
92 * @size: size of free area to find
93 * @align: alignment of free area to find
94 * @nid: nid of the free area to find, %MAX_NUMNODES for any node
95 *
96 * Utility called from memblock_find_in_range_node(), find free area bottom-up.
97 *
98 * RETURNS:
99 * Found address on success, 0 on failure.
100 */
101static phys_addr_t __init_memblock
102__memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
103 phys_addr_t size, phys_addr_t align, int nid)
104{
105 phys_addr_t this_start, this_end, cand;
106 u64 i;
107
108 for_each_free_mem_range(i, nid, &this_start, &this_end, NULL) {
109 this_start = clamp(this_start, start, end);
110 this_end = clamp(this_end, start, end);
111
112 cand = round_up(this_start, align);
113 if (cand < this_end && this_end - cand >= size)
114 return cand;
115 }
116
117 return 0;
118}
119
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800120/**
Tang Chen14028992013-11-12 15:07:57 -0800121 * __memblock_find_range_top_down - find free area utility, in top-down
122 * @start: start of candidate range
123 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
124 * @size: size of free area to find
125 * @align: alignment of free area to find
126 * @nid: nid of the free area to find, %MAX_NUMNODES for any node
127 *
128 * Utility called from memblock_find_in_range_node(), find free area top-down.
129 *
130 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800131 * Found address on success, 0 on failure.
Tang Chen14028992013-11-12 15:07:57 -0800132 */
133static phys_addr_t __init_memblock
134__memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
135 phys_addr_t size, phys_addr_t align, int nid)
136{
137 phys_addr_t this_start, this_end, cand;
138 u64 i;
139
140 for_each_free_mem_range_reverse(i, nid, &this_start, &this_end, NULL) {
141 this_start = clamp(this_start, start, end);
142 this_end = clamp(this_end, start, end);
143
144 if (this_end < size)
145 continue;
146
147 cand = round_down(this_end - size, align);
148 if (cand >= this_start)
149 return cand;
150 }
151
152 return 0;
153}
154
155/**
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800156 * memblock_find_in_range_node - find free area in given range and node
157 * @start: start of candidate range
158 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
159 * @size: size of free area to find
160 * @align: alignment of free area to find
161 * @nid: nid of the free area to find, %MAX_NUMNODES for any node
162 *
163 * Find @size free area aligned to @align in the specified range and node.
164 *
Tang Chen79442ed2013-11-12 15:07:59 -0800165 * When allocation direction is bottom-up, the @start should be greater
166 * than the end of the kernel image. Otherwise, it will be trimmed. The
167 * reason is that we want the bottom-up allocation just near the kernel
168 * image so it is highly likely that the allocated memory and the kernel
169 * will reside in the same node.
170 *
171 * If bottom-up allocation failed, will try to allocate memory top-down.
172 *
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800173 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800174 * Found address on success, 0 on failure.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000175 */
Tang Chenf7210e62013-02-22 16:33:51 -0800176phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t start,
177 phys_addr_t end, phys_addr_t size,
178 phys_addr_t align, int nid)
179{
Tang Chen79442ed2013-11-12 15:07:59 -0800180 int ret;
181 phys_addr_t kernel_end;
182
Tang Chenf7210e62013-02-22 16:33:51 -0800183 /* pump up @end */
184 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
185 end = memblock.current_limit;
186
187 /* avoid allocating the first page */
188 start = max_t(phys_addr_t, start, PAGE_SIZE);
189 end = max(start, end);
Tang Chen79442ed2013-11-12 15:07:59 -0800190 kernel_end = __pa_symbol(_end);
191
192 /*
193 * try bottom-up allocation only when bottom-up mode
194 * is set and @end is above the kernel image.
195 */
196 if (memblock_bottom_up() && end > kernel_end) {
197 phys_addr_t bottom_up_start;
198
199 /* make sure we will allocate above the kernel */
200 bottom_up_start = max(start, kernel_end);
201
202 /* ok, try bottom-up allocation first */
203 ret = __memblock_find_range_bottom_up(bottom_up_start, end,
204 size, align, nid);
205 if (ret)
206 return ret;
207
208 /*
209 * we always limit bottom-up allocation above the kernel,
210 * but top-down allocation doesn't have the limit, so
211 * retrying top-down allocation may succeed when bottom-up
212 * allocation failed.
213 *
214 * bottom-up allocation is expected to be fail very rarely,
215 * so we use WARN_ONCE() here to see the stack trace if
216 * fail happens.
217 */
218 WARN_ONCE(1, "memblock: bottom-up allocation failed, "
219 "memory hotunplug may be affected\n");
220 }
Tang Chenf7210e62013-02-22 16:33:51 -0800221
Tang Chen14028992013-11-12 15:07:57 -0800222 return __memblock_find_range_top_down(start, end, size, align, nid);
Tang Chenf7210e62013-02-22 16:33:51 -0800223}
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000224
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800225/**
226 * memblock_find_in_range - find free area in given range
227 * @start: start of candidate range
228 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
229 * @size: size of free area to find
230 * @align: alignment of free area to find
231 *
232 * Find @size free area aligned to @align in the specified range.
233 *
234 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800235 * Found address on success, 0 on failure.
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800236 */
237phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
238 phys_addr_t end, phys_addr_t size,
239 phys_addr_t align)
240{
241 return memblock_find_in_range_node(start, end, size, align,
242 MAX_NUMNODES);
243}
244
Yinghai Lu10d06432010-07-28 15:43:02 +1000245static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000246{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800247 type->total_size -= type->regions[r].size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200248 memmove(&type->regions[r], &type->regions[r + 1],
249 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000250 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000251
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700252 /* Special case for empty arrays */
253 if (type->cnt == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800254 WARN_ON(type->total_size != 0);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700255 type->cnt = 1;
256 type->regions[0].base = 0;
257 type->regions[0].size = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200258 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700259 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000260}
261
Yinghai Lu29f67382012-07-11 14:02:56 -0700262phys_addr_t __init_memblock get_allocated_memblock_reserved_regions_info(
263 phys_addr_t *addr)
264{
265 if (memblock.reserved.regions == memblock_reserved_init_regions)
266 return 0;
267
268 *addr = __pa(memblock.reserved.regions);
269
270 return PAGE_ALIGN(sizeof(struct memblock_region) *
271 memblock.reserved.max);
272}
273
Greg Pearson48c3b582012-06-20 12:53:05 -0700274/**
275 * memblock_double_array - double the size of the memblock regions array
276 * @type: memblock type of the regions array being doubled
277 * @new_area_start: starting address of memory range to avoid overlap with
278 * @new_area_size: size of memory range to avoid overlap with
279 *
280 * Double the size of the @type regions array. If memblock is being used to
281 * allocate memory for a new reserved regions array and there is a previously
282 * allocated memory range [@new_area_start,@new_area_start+@new_area_size]
283 * waiting to be reserved, ensure the memory used by the new array does
284 * not overlap.
285 *
286 * RETURNS:
287 * 0 on success, -1 on failure.
288 */
289static int __init_memblock memblock_double_array(struct memblock_type *type,
290 phys_addr_t new_area_start,
291 phys_addr_t new_area_size)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700292{
293 struct memblock_region *new_array, *old_array;
Yinghai Lu29f67382012-07-11 14:02:56 -0700294 phys_addr_t old_alloc_size, new_alloc_size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700295 phys_addr_t old_size, new_size, addr;
296 int use_slab = slab_is_available();
Gavin Shan181eb392012-05-29 15:06:50 -0700297 int *in_slab;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700298
299 /* We don't allow resizing until we know about the reserved regions
300 * of memory that aren't suitable for allocation
301 */
302 if (!memblock_can_resize)
303 return -1;
304
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700305 /* Calculate new doubled size */
306 old_size = type->max * sizeof(struct memblock_region);
307 new_size = old_size << 1;
Yinghai Lu29f67382012-07-11 14:02:56 -0700308 /*
309 * We need to allocated new one align to PAGE_SIZE,
310 * so we can free them completely later.
311 */
312 old_alloc_size = PAGE_ALIGN(old_size);
313 new_alloc_size = PAGE_ALIGN(new_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700314
Gavin Shan181eb392012-05-29 15:06:50 -0700315 /* Retrieve the slab flag */
316 if (type == &memblock.memory)
317 in_slab = &memblock_memory_in_slab;
318 else
319 in_slab = &memblock_reserved_in_slab;
320
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700321 /* Try to find some space for it.
322 *
323 * WARNING: We assume that either slab_is_available() and we use it or
Andrew Mortonfd073832012-07-31 16:42:40 -0700324 * we use MEMBLOCK for allocations. That means that this is unsafe to
325 * use when bootmem is currently active (unless bootmem itself is
326 * implemented on top of MEMBLOCK which isn't the case yet)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700327 *
328 * This should however not be an issue for now, as we currently only
Andrew Mortonfd073832012-07-31 16:42:40 -0700329 * call into MEMBLOCK while it's still active, or much later when slab
330 * is active for memory hotplug operations
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700331 */
332 if (use_slab) {
333 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200334 addr = new_array ? __pa(new_array) : 0;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700335 } else {
Greg Pearson48c3b582012-06-20 12:53:05 -0700336 /* only exclude range when trying to double reserved.regions */
337 if (type != &memblock.reserved)
338 new_area_start = new_area_size = 0;
339
340 addr = memblock_find_in_range(new_area_start + new_area_size,
341 memblock.current_limit,
Yinghai Lu29f67382012-07-11 14:02:56 -0700342 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700343 if (!addr && new_area_size)
344 addr = memblock_find_in_range(0,
Andrew Mortonfd073832012-07-31 16:42:40 -0700345 min(new_area_start, memblock.current_limit),
346 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700347
Sachin Kamat15674862012-09-04 13:55:05 +0530348 new_array = addr ? __va(addr) : NULL;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700349 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200350 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700351 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
352 memblock_type_name(type), type->max, type->max * 2);
353 return -1;
354 }
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700355
Andrew Mortonfd073832012-07-31 16:42:40 -0700356 memblock_dbg("memblock: %s is doubled to %ld at [%#010llx-%#010llx]",
357 memblock_type_name(type), type->max * 2, (u64)addr,
358 (u64)addr + new_size - 1);
Yinghai Luea9e4372010-07-28 15:13:22 +1000359
Andrew Mortonfd073832012-07-31 16:42:40 -0700360 /*
361 * Found space, we now need to move the array over before we add the
362 * reserved region since it may be our reserved array itself that is
363 * full.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700364 */
365 memcpy(new_array, type->regions, old_size);
366 memset(new_array + type->max, 0, old_size);
367 old_array = type->regions;
368 type->regions = new_array;
369 type->max <<= 1;
370
Andrew Mortonfd073832012-07-31 16:42:40 -0700371 /* Free old array. We needn't free it if the array is the static one */
Gavin Shan181eb392012-05-29 15:06:50 -0700372 if (*in_slab)
373 kfree(old_array);
374 else if (old_array != memblock_memory_init_regions &&
375 old_array != memblock_reserved_init_regions)
Yinghai Lu29f67382012-07-11 14:02:56 -0700376 memblock_free(__pa(old_array), old_alloc_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700377
Andrew Mortonfd073832012-07-31 16:42:40 -0700378 /*
379 * Reserve the new array if that comes from the memblock. Otherwise, we
380 * needn't do it
Gavin Shan181eb392012-05-29 15:06:50 -0700381 */
382 if (!use_slab)
Yinghai Lu29f67382012-07-11 14:02:56 -0700383 BUG_ON(memblock_reserve(addr, new_alloc_size));
Gavin Shan181eb392012-05-29 15:06:50 -0700384
385 /* Update slab flag */
386 *in_slab = use_slab;
387
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700388 return 0;
389}
390
Tejun Heo784656f92011-07-12 11:15:55 +0200391/**
392 * memblock_merge_regions - merge neighboring compatible regions
393 * @type: memblock type to scan
394 *
395 * Scan @type and merge neighboring compatible regions.
396 */
397static void __init_memblock memblock_merge_regions(struct memblock_type *type)
398{
399 int i = 0;
400
401 /* cnt never goes below 1 */
402 while (i < type->cnt - 1) {
403 struct memblock_region *this = &type->regions[i];
404 struct memblock_region *next = &type->regions[i + 1];
405
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200406 if (this->base + this->size != next->base ||
407 memblock_get_region_node(this) !=
408 memblock_get_region_node(next)) {
Tejun Heo784656f92011-07-12 11:15:55 +0200409 BUG_ON(this->base + this->size > next->base);
410 i++;
411 continue;
412 }
413
414 this->size += next->size;
Lin Fengc0232ae2013-01-11 14:31:44 -0800415 /* move forward from next + 1, index of which is i + 2 */
416 memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
Tejun Heo784656f92011-07-12 11:15:55 +0200417 type->cnt--;
418 }
419}
420
421/**
422 * memblock_insert_region - insert new memblock region
Tang Chen209ff862013-04-29 15:08:41 -0700423 * @type: memblock type to insert into
424 * @idx: index for the insertion point
425 * @base: base address of the new region
426 * @size: size of the new region
427 * @nid: node id of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200428 *
429 * Insert new memblock region [@base,@base+@size) into @type at @idx.
430 * @type must already have extra room to accomodate the new region.
431 */
432static void __init_memblock memblock_insert_region(struct memblock_type *type,
433 int idx, phys_addr_t base,
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200434 phys_addr_t size, int nid)
Tejun Heo784656f92011-07-12 11:15:55 +0200435{
436 struct memblock_region *rgn = &type->regions[idx];
437
438 BUG_ON(type->cnt >= type->max);
439 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
440 rgn->base = base;
441 rgn->size = size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200442 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200443 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800444 type->total_size += size;
Tejun Heo784656f92011-07-12 11:15:55 +0200445}
446
447/**
448 * memblock_add_region - add new memblock region
449 * @type: memblock type to add new region into
450 * @base: base address of the new region
451 * @size: size of the new region
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800452 * @nid: nid of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200453 *
454 * Add new memblock region [@base,@base+@size) into @type. The new region
455 * is allowed to overlap with existing ones - overlaps don't affect already
456 * existing regions. @type is guaranteed to be minimal (all neighbouring
457 * compatible regions are merged) after the addition.
458 *
459 * RETURNS:
460 * 0 on success, -errno on failure.
461 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800462static int __init_memblock memblock_add_region(struct memblock_type *type,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800463 phys_addr_t base, phys_addr_t size, int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000464{
Tejun Heo784656f92011-07-12 11:15:55 +0200465 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800466 phys_addr_t obase = base;
467 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo784656f92011-07-12 11:15:55 +0200468 int i, nr_new;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000469
Tejun Heob3dc6272012-04-20 08:31:34 -0700470 if (!size)
471 return 0;
472
Tejun Heo784656f92011-07-12 11:15:55 +0200473 /* special case for empty array */
474 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800475 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000476 type->regions[0].base = base;
477 type->regions[0].size = size;
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800478 memblock_set_region_node(&type->regions[0], nid);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800479 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000480 return 0;
481 }
Tejun Heo784656f92011-07-12 11:15:55 +0200482repeat:
483 /*
484 * The following is executed twice. Once with %false @insert and
485 * then with %true. The first counts the number of regions needed
486 * to accomodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700487 */
Tejun Heo784656f92011-07-12 11:15:55 +0200488 base = obase;
489 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000490
Tejun Heo784656f92011-07-12 11:15:55 +0200491 for (i = 0; i < type->cnt; i++) {
492 struct memblock_region *rgn = &type->regions[i];
493 phys_addr_t rbase = rgn->base;
494 phys_addr_t rend = rbase + rgn->size;
495
496 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000497 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200498 if (rend <= base)
499 continue;
500 /*
501 * @rgn overlaps. If it separates the lower part of new
502 * area, insert that portion.
503 */
504 if (rbase > base) {
505 nr_new++;
506 if (insert)
507 memblock_insert_region(type, i++, base,
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800508 rbase - base, nid);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000509 }
Tejun Heo784656f92011-07-12 11:15:55 +0200510 /* area below @rend is dealt with, forget about it */
511 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000512 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000513
Tejun Heo784656f92011-07-12 11:15:55 +0200514 /* insert the remaining portion */
515 if (base < end) {
516 nr_new++;
517 if (insert)
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800518 memblock_insert_region(type, i, base, end - base, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200519 }
520
521 /*
522 * If this was the first round, resize array and repeat for actual
523 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700524 */
Tejun Heo784656f92011-07-12 11:15:55 +0200525 if (!insert) {
526 while (type->cnt + nr_new > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700527 if (memblock_double_array(type, obase, size) < 0)
Tejun Heo784656f92011-07-12 11:15:55 +0200528 return -ENOMEM;
529 insert = true;
530 goto repeat;
531 } else {
532 memblock_merge_regions(type);
533 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700534 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000535}
536
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800537int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
538 int nid)
539{
540 return memblock_add_region(&memblock.memory, base, size, nid);
541}
542
Tejun Heo581adcb2011-12-08 10:22:06 -0800543int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000544{
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800545 return memblock_add_region(&memblock.memory, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000546}
547
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800548/**
549 * memblock_isolate_range - isolate given range into disjoint memblocks
550 * @type: memblock type to isolate range for
551 * @base: base of range to isolate
552 * @size: size of range to isolate
553 * @start_rgn: out parameter for the start of isolated region
554 * @end_rgn: out parameter for the end of isolated region
555 *
556 * Walk @type and ensure that regions don't cross the boundaries defined by
557 * [@base,@base+@size). Crossing regions are split at the boundaries,
558 * which may create at most two more regions. The index of the first
559 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
560 *
561 * RETURNS:
562 * 0 on success, -errno on failure.
563 */
564static int __init_memblock memblock_isolate_range(struct memblock_type *type,
565 phys_addr_t base, phys_addr_t size,
566 int *start_rgn, int *end_rgn)
567{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800568 phys_addr_t end = base + memblock_cap_size(base, &size);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800569 int i;
570
571 *start_rgn = *end_rgn = 0;
572
Tejun Heob3dc6272012-04-20 08:31:34 -0700573 if (!size)
574 return 0;
575
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800576 /* we'll create at most two more regions */
577 while (type->cnt + 2 > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700578 if (memblock_double_array(type, base, size) < 0)
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800579 return -ENOMEM;
580
581 for (i = 0; i < type->cnt; i++) {
582 struct memblock_region *rgn = &type->regions[i];
583 phys_addr_t rbase = rgn->base;
584 phys_addr_t rend = rbase + rgn->size;
585
586 if (rbase >= end)
587 break;
588 if (rend <= base)
589 continue;
590
591 if (rbase < base) {
592 /*
593 * @rgn intersects from below. Split and continue
594 * to process the next region - the new top half.
595 */
596 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800597 rgn->size -= base - rbase;
598 type->total_size -= base - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800599 memblock_insert_region(type, i, rbase, base - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800600 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800601 } else if (rend > end) {
602 /*
603 * @rgn intersects from above. Split and redo the
604 * current region - the new bottom half.
605 */
606 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800607 rgn->size -= end - rbase;
608 type->total_size -= end - rbase;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800609 memblock_insert_region(type, i--, rbase, end - rbase,
Tejun Heo71936182011-12-08 10:22:07 -0800610 memblock_get_region_node(rgn));
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800611 } else {
612 /* @rgn is fully contained, record it */
613 if (!*end_rgn)
614 *start_rgn = i;
615 *end_rgn = i + 1;
616 }
617 }
618
619 return 0;
620}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800621
Tejun Heo581adcb2011-12-08 10:22:06 -0800622static int __init_memblock __memblock_remove(struct memblock_type *type,
623 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000624{
Tejun Heo71936182011-12-08 10:22:07 -0800625 int start_rgn, end_rgn;
626 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000627
Tejun Heo71936182011-12-08 10:22:07 -0800628 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
629 if (ret)
630 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000631
Tejun Heo71936182011-12-08 10:22:07 -0800632 for (i = end_rgn - 1; i >= start_rgn; i--)
633 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700634 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000635}
636
Tejun Heo581adcb2011-12-08 10:22:06 -0800637int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000638{
639 return __memblock_remove(&memblock.memory, base, size);
640}
641
Tejun Heo581adcb2011-12-08 10:22:06 -0800642int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000643{
Tejun Heo24aa0782011-07-12 11:16:06 +0200644 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700645 (unsigned long long)base,
646 (unsigned long long)base + size,
647 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200648
Yinghai Lu95f72d12010-07-12 14:36:09 +1000649 return __memblock_remove(&memblock.reserved, base, size);
650}
651
Tejun Heo581adcb2011-12-08 10:22:06 -0800652int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000653{
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000654 struct memblock_type *_rgn = &memblock.reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000655
Tejun Heo24aa0782011-07-12 11:16:06 +0200656 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700657 (unsigned long long)base,
658 (unsigned long long)base + size,
659 (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000660
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800661 return memblock_add_region(_rgn, base, size, MAX_NUMNODES);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000662}
663
Tejun Heo35fd0802011-07-12 11:15:59 +0200664/**
665 * __next_free_mem_range - next function for for_each_free_mem_range()
666 * @idx: pointer to u64 loop variable
Tang Chend8bbdd72013-07-08 16:00:22 -0700667 * @nid: node selector, %MAX_NUMNODES for all nodes
Wanpeng Lidad75572012-06-20 12:53:01 -0700668 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
669 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
670 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo35fd0802011-07-12 11:15:59 +0200671 *
672 * Find the first free area from *@idx which matches @nid, fill the out
673 * parameters, and update *@idx for the next iteration. The lower 32bit of
674 * *@idx contains index into memory region and the upper 32bit indexes the
675 * areas before each reserved region. For example, if reserved regions
676 * look like the following,
677 *
678 * 0:[0-16), 1:[32-48), 2:[128-130)
679 *
680 * The upper 32bit indexes the following regions.
681 *
682 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
683 *
684 * As both region arrays are sorted, the function advances the two indices
685 * in lockstep and returns each intersection.
686 */
687void __init_memblock __next_free_mem_range(u64 *idx, int nid,
688 phys_addr_t *out_start,
689 phys_addr_t *out_end, int *out_nid)
690{
691 struct memblock_type *mem = &memblock.memory;
692 struct memblock_type *rsv = &memblock.reserved;
693 int mi = *idx & 0xffffffff;
694 int ri = *idx >> 32;
695
696 for ( ; mi < mem->cnt; mi++) {
697 struct memblock_region *m = &mem->regions[mi];
698 phys_addr_t m_start = m->base;
699 phys_addr_t m_end = m->base + m->size;
700
701 /* only memory regions are associated with nodes, check it */
702 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
703 continue;
704
705 /* scan areas before each reservation for intersection */
706 for ( ; ri < rsv->cnt + 1; ri++) {
707 struct memblock_region *r = &rsv->regions[ri];
708 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
709 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
710
711 /* if ri advanced past mi, break out to advance mi */
712 if (r_start >= m_end)
713 break;
714 /* if the two regions intersect, we're done */
715 if (m_start < r_end) {
716 if (out_start)
717 *out_start = max(m_start, r_start);
718 if (out_end)
719 *out_end = min(m_end, r_end);
720 if (out_nid)
721 *out_nid = memblock_get_region_node(m);
722 /*
723 * The region which ends first is advanced
724 * for the next iteration.
725 */
726 if (m_end <= r_end)
727 mi++;
728 else
729 ri++;
730 *idx = (u32)mi | (u64)ri << 32;
731 return;
732 }
733 }
734 }
735
736 /* signal end of iteration */
737 *idx = ULLONG_MAX;
738}
739
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800740/**
741 * __next_free_mem_range_rev - next function for for_each_free_mem_range_reverse()
742 * @idx: pointer to u64 loop variable
743 * @nid: nid: node selector, %MAX_NUMNODES for all nodes
Wanpeng Lidad75572012-06-20 12:53:01 -0700744 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
745 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
746 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800747 *
748 * Reverse of __next_free_mem_range().
749 */
750void __init_memblock __next_free_mem_range_rev(u64 *idx, int nid,
751 phys_addr_t *out_start,
752 phys_addr_t *out_end, int *out_nid)
753{
754 struct memblock_type *mem = &memblock.memory;
755 struct memblock_type *rsv = &memblock.reserved;
756 int mi = *idx & 0xffffffff;
757 int ri = *idx >> 32;
758
759 if (*idx == (u64)ULLONG_MAX) {
760 mi = mem->cnt - 1;
761 ri = rsv->cnt;
762 }
763
764 for ( ; mi >= 0; mi--) {
765 struct memblock_region *m = &mem->regions[mi];
766 phys_addr_t m_start = m->base;
767 phys_addr_t m_end = m->base + m->size;
768
769 /* only memory regions are associated with nodes, check it */
770 if (nid != MAX_NUMNODES && nid != memblock_get_region_node(m))
771 continue;
772
773 /* scan areas before each reservation for intersection */
774 for ( ; ri >= 0; ri--) {
775 struct memblock_region *r = &rsv->regions[ri];
776 phys_addr_t r_start = ri ? r[-1].base + r[-1].size : 0;
777 phys_addr_t r_end = ri < rsv->cnt ? r->base : ULLONG_MAX;
778
779 /* if ri advanced past mi, break out to advance mi */
780 if (r_end <= m_start)
781 break;
782 /* if the two regions intersect, we're done */
783 if (m_end > r_start) {
784 if (out_start)
785 *out_start = max(m_start, r_start);
786 if (out_end)
787 *out_end = min(m_end, r_end);
788 if (out_nid)
789 *out_nid = memblock_get_region_node(m);
790
791 if (m_start >= r_start)
792 mi--;
793 else
794 ri--;
795 *idx = (u32)mi | (u64)ri << 32;
796 return;
797 }
798 }
799 }
800
801 *idx = ULLONG_MAX;
802}
803
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200804#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
805/*
806 * Common iterator interface used to define for_each_mem_range().
807 */
808void __init_memblock __next_mem_pfn_range(int *idx, int nid,
809 unsigned long *out_start_pfn,
810 unsigned long *out_end_pfn, int *out_nid)
811{
812 struct memblock_type *type = &memblock.memory;
813 struct memblock_region *r;
814
815 while (++*idx < type->cnt) {
816 r = &type->regions[*idx];
817
818 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
819 continue;
820 if (nid == MAX_NUMNODES || nid == r->nid)
821 break;
822 }
823 if (*idx >= type->cnt) {
824 *idx = -1;
825 return;
826 }
827
828 if (out_start_pfn)
829 *out_start_pfn = PFN_UP(r->base);
830 if (out_end_pfn)
831 *out_end_pfn = PFN_DOWN(r->base + r->size);
832 if (out_nid)
833 *out_nid = r->nid;
834}
835
836/**
837 * memblock_set_node - set node ID on memblock regions
838 * @base: base of area to set node ID for
839 * @size: size of area to set node ID for
840 * @nid: node ID to set
841 *
842 * Set the nid of memblock memory regions in [@base,@base+@size) to @nid.
843 * Regions which cross the area boundaries are split as necessary.
844 *
845 * RETURNS:
846 * 0 on success, -errno on failure.
847 */
848int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
849 int nid)
850{
851 struct memblock_type *type = &memblock.memory;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800852 int start_rgn, end_rgn;
853 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200854
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800855 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
856 if (ret)
857 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200858
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800859 for (i = start_rgn; i < end_rgn; i++)
Wanpeng Lie9d24ad2012-10-08 16:32:21 -0700860 memblock_set_region_node(&type->regions[i], nid);
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200861
862 memblock_merge_regions(type);
863 return 0;
864}
865#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
866
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800867static phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size,
868 phys_addr_t align, phys_addr_t max_addr,
869 int nid)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000870{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000871 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000872
Vineet Gupta94f3d3a2013-04-29 15:06:15 -0700873 if (WARN_ON(!align))
874 align = __alignof__(long long);
875
Tejun Heo847854f2012-02-29 05:56:21 +0900876 /* align @size to avoid excessive fragmentation on reserved array */
877 size = round_up(size, align);
878
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800879 found = memblock_find_in_range_node(0, max_addr, size, align, nid);
Tejun Heo9c8c27e2011-12-08 10:22:06 -0800880 if (found && !memblock_reserve(found, size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000881 return found;
882
883 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000884}
885
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800886phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
887{
888 return memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE, nid);
889}
890
891phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
892{
893 return memblock_alloc_base_nid(size, align, max_addr, MAX_NUMNODES);
894}
895
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000896phys_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 +1000897{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000898 phys_addr_t alloc;
899
900 alloc = __memblock_alloc_base(size, align, max_addr);
901
902 if (alloc == 0)
903 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
904 (unsigned long long) size, (unsigned long long) max_addr);
905
906 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000907}
908
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000909phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000910{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000911 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000912}
913
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700914phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
915{
916 phys_addr_t res = memblock_alloc_nid(size, align, nid);
917
918 if (res)
919 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +0200920 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000921}
922
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700923
924/*
925 * Remaining API functions
926 */
927
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000928phys_addr_t __init memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000929{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800930 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000931}
932
Yinghai Lu595ad9a2013-01-24 12:20:09 -0800933phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
934{
935 unsigned long pages = 0;
936 struct memblock_region *r;
937 unsigned long start_pfn, end_pfn;
938
939 for_each_memblock(memory, r) {
940 start_pfn = memblock_region_memory_base_pfn(r);
941 end_pfn = memblock_region_memory_end_pfn(r);
942 start_pfn = min_t(unsigned long, start_pfn, limit_pfn);
943 end_pfn = min_t(unsigned long, end_pfn, limit_pfn);
944 pages += end_pfn - start_pfn;
945 }
946
947 return (phys_addr_t)pages << PAGE_SHIFT;
948}
949
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -0700950/* lowest address */
951phys_addr_t __init_memblock memblock_start_of_DRAM(void)
952{
953 return memblock.memory.regions[0].base;
954}
955
Yinghai Lu10d06432010-07-28 15:43:02 +1000956phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000957{
958 int idx = memblock.memory.cnt - 1;
959
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000960 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000961}
962
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800963void __init memblock_enforce_memory_limit(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000964{
965 unsigned long i;
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800966 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000967
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800968 if (!limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000969 return;
970
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800971 /* find out max address */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000972 for (i = 0; i < memblock.memory.cnt; i++) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800973 struct memblock_region *r = &memblock.memory.regions[i];
Yinghai Lu95f72d12010-07-12 14:36:09 +1000974
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800975 if (limit <= r->size) {
976 max_addr = r->base + limit;
977 break;
978 }
979 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000980 }
981
Tejun Heoc0ce8fe2011-12-08 10:22:07 -0800982 /* truncate both memory and reserved regions */
983 __memblock_remove(&memblock.memory, max_addr, (phys_addr_t)ULLONG_MAX);
984 __memblock_remove(&memblock.reserved, max_addr, (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000985}
986
Yinghai Lucd794812010-10-11 12:34:09 -0700987static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +1000988{
989 unsigned int left = 0, right = type->cnt;
990
991 do {
992 unsigned int mid = (right + left) / 2;
993
994 if (addr < type->regions[mid].base)
995 right = mid;
996 else if (addr >= (type->regions[mid].base +
997 type->regions[mid].size))
998 left = mid + 1;
999 else
1000 return mid;
1001 } while (left < right);
1002 return -1;
1003}
1004
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +10001005int __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001006{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001007 return memblock_search(&memblock.reserved, addr) != -1;
1008}
Yinghai Lu95f72d12010-07-12 14:36:09 +10001009
Yinghai Lu3661ca62010-09-15 13:05:29 -07001010int __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001011{
1012 return memblock_search(&memblock.memory, addr) != -1;
1013}
1014
Yinghai Lue76b63f2013-09-11 14:22:17 -07001015#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1016int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1017 unsigned long *start_pfn, unsigned long *end_pfn)
1018{
1019 struct memblock_type *type = &memblock.memory;
1020 int mid = memblock_search(type, (phys_addr_t)pfn << PAGE_SHIFT);
1021
1022 if (mid == -1)
1023 return -1;
1024
1025 *start_pfn = type->regions[mid].base >> PAGE_SHIFT;
1026 *end_pfn = (type->regions[mid].base + type->regions[mid].size)
1027 >> PAGE_SHIFT;
1028
1029 return type->regions[mid].nid;
1030}
1031#endif
1032
Stephen Boydeab30942012-05-24 00:45:21 -07001033/**
1034 * memblock_is_region_memory - check if a region is a subset of memory
1035 * @base: base of region to check
1036 * @size: size of region to check
1037 *
1038 * Check if the region [@base, @base+@size) is a subset of a memory block.
1039 *
1040 * RETURNS:
1041 * 0 if false, non-zero if true
1042 */
Yinghai Lu3661ca62010-09-15 13:05:29 -07001043int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001044{
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001045 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001046 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001047
1048 if (idx == -1)
1049 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001050 return memblock.memory.regions[idx].base <= base &&
1051 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001052 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001053}
1054
Stephen Boydeab30942012-05-24 00:45:21 -07001055/**
1056 * memblock_is_region_reserved - check if a region intersects reserved memory
1057 * @base: base of region to check
1058 * @size: size of region to check
1059 *
1060 * Check if the region [@base, @base+@size) intersects a reserved memory block.
1061 *
1062 * RETURNS:
1063 * 0 if false, non-zero if true
1064 */
Yinghai Lu10d06432010-07-28 15:43:02 +10001065int __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001066{
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001067 memblock_cap_size(base, &size);
Benjamin Herrenschmidtf1c2c192010-08-04 14:17:17 +10001068 return memblock_overlaps_region(&memblock.reserved, base, size) >= 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001069}
1070
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001071void __init_memblock memblock_trim_memory(phys_addr_t align)
1072{
1073 int i;
1074 phys_addr_t start, end, orig_start, orig_end;
1075 struct memblock_type *mem = &memblock.memory;
1076
1077 for (i = 0; i < mem->cnt; i++) {
1078 orig_start = mem->regions[i].base;
1079 orig_end = mem->regions[i].base + mem->regions[i].size;
1080 start = round_up(orig_start, align);
1081 end = round_down(orig_end, align);
1082
1083 if (start == orig_start && end == orig_end)
1084 continue;
1085
1086 if (start < end) {
1087 mem->regions[i].base = start;
1088 mem->regions[i].size = end - start;
1089 } else {
1090 memblock_remove_region(mem, i);
1091 i--;
1092 }
1093 }
1094}
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001095
Yinghai Lu3661ca62010-09-15 13:05:29 -07001096void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001097{
1098 memblock.current_limit = limit;
1099}
1100
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001101static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001102{
1103 unsigned long long base, size;
1104 int i;
1105
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001106 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001107
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001108 for (i = 0; i < type->cnt; i++) {
1109 struct memblock_region *rgn = &type->regions[i];
1110 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001111
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001112 base = rgn->base;
1113 size = rgn->size;
1114#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1115 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
1116 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
1117 memblock_get_region_node(rgn));
1118#endif
1119 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s\n",
1120 name, i, base, base + size - 1, size, nid_buf);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001121 }
1122}
1123
Tejun Heo4ff7b822011-12-08 10:22:06 -08001124void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001125{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001126 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -08001127 pr_info(" memory size = %#llx reserved size = %#llx\n",
1128 (unsigned long long)memblock.memory.total_size,
1129 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001130
1131 memblock_dump(&memblock.memory, "memory");
1132 memblock_dump(&memblock.reserved, "reserved");
1133}
1134
Tejun Heo1aadc052011-12-08 10:22:08 -08001135void __init memblock_allow_resize(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001136{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -07001137 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001138}
1139
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001140static int __init early_memblock(char *p)
1141{
1142 if (p && strstr(p, "debug"))
1143 memblock_debug = 1;
1144 return 0;
1145}
1146early_param("memblock", early_memblock);
1147
Tejun Heoc378ddd2011-07-14 11:46:03 +02001148#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001149
1150static int memblock_debug_show(struct seq_file *m, void *private)
1151{
1152 struct memblock_type *type = m->private;
1153 struct memblock_region *reg;
1154 int i;
1155
1156 for (i = 0; i < type->cnt; i++) {
1157 reg = &type->regions[i];
1158 seq_printf(m, "%4d: ", i);
1159 if (sizeof(phys_addr_t) == 4)
1160 seq_printf(m, "0x%08lx..0x%08lx\n",
1161 (unsigned long)reg->base,
1162 (unsigned long)(reg->base + reg->size - 1));
1163 else
1164 seq_printf(m, "0x%016llx..0x%016llx\n",
1165 (unsigned long long)reg->base,
1166 (unsigned long long)(reg->base + reg->size - 1));
1167
1168 }
1169 return 0;
1170}
1171
1172static int memblock_debug_open(struct inode *inode, struct file *file)
1173{
1174 return single_open(file, memblock_debug_show, inode->i_private);
1175}
1176
1177static const struct file_operations memblock_debug_fops = {
1178 .open = memblock_debug_open,
1179 .read = seq_read,
1180 .llseek = seq_lseek,
1181 .release = single_release,
1182};
1183
1184static int __init memblock_init_debugfs(void)
1185{
1186 struct dentry *root = debugfs_create_dir("memblock", NULL);
1187 if (!root)
1188 return -ENXIO;
1189 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
1190 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
1191
1192 return 0;
1193}
1194__initcall(memblock_init_debugfs);
1195
1196#endif /* CONFIG_DEBUG_FS */