blob: abaed7ae15971d1d2bef72c749ffb89a5bd4dd72 [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>
Shiraz Hashime1525702016-02-04 14:53:33 +053022#include <linux/preempt.h>
23#include <linux/seqlock.h>
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +053024#include <linux/irqflags.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100025
Christoph Hellwigc4c5ad62016-07-28 15:48:06 -070026#include <asm/sections.h>
Santosh Shilimkar26f09e92014-01-21 15:50:19 -080027#include <linux/io.h>
28
29#include "internal.h"
Tang Chen79442ed2013-11-12 15:07:59 -080030
Tejun Heofe091c22011-12-08 10:22:07 -080031static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
32static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
Philipp Hachtmann70210ed2014-01-29 18:16:01 +010033#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
34static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS] __initdata_memblock;
35#endif
Tejun Heofe091c22011-12-08 10:22:07 -080036
Shiraz Hashime1525702016-02-04 14:53:33 +053037static seqcount_t memblock_seq;
Tejun Heofe091c22011-12-08 10:22:07 -080038struct memblock memblock __initdata_memblock = {
39 .memory.regions = memblock_memory_init_regions,
40 .memory.cnt = 1, /* empty dummy entry */
41 .memory.max = INIT_MEMBLOCK_REGIONS,
42
43 .reserved.regions = memblock_reserved_init_regions,
44 .reserved.cnt = 1, /* empty dummy entry */
45 .reserved.max = INIT_MEMBLOCK_REGIONS,
46
Philipp Hachtmann70210ed2014-01-29 18:16:01 +010047#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
48 .physmem.regions = memblock_physmem_init_regions,
49 .physmem.cnt = 1, /* empty dummy entry */
50 .physmem.max = INIT_PHYSMEM_REGIONS,
51#endif
52
Tang Chen79442ed2013-11-12 15:07:59 -080053 .bottom_up = false,
Tejun Heofe091c22011-12-08 10:22:07 -080054 .current_limit = MEMBLOCK_ALLOC_ANYWHERE,
55};
Yinghai Lu95f72d12010-07-12 14:36:09 +100056
Yinghai Lu10d06432010-07-28 15:43:02 +100057int memblock_debug __initdata_memblock;
Tang Chen55ac5902014-01-21 15:49:35 -080058#ifdef CONFIG_MOVABLE_NODE
59bool movable_node_enabled __initdata_memblock = false;
60#endif
Tony Lucka3f5baf2015-06-24 16:58:12 -070061static bool system_has_some_mirror __initdata_memblock = false;
Tejun Heo1aadc052011-12-08 10:22:08 -080062static int memblock_can_resize __initdata_memblock;
Gavin Shan181eb392012-05-29 15:06:50 -070063static int memblock_memory_in_slab __initdata_memblock = 0;
64static int memblock_reserved_in_slab __initdata_memblock = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +100065
Tony Lucka3f5baf2015-06-24 16:58:12 -070066ulong __init_memblock choose_memblock_flags(void)
67{
68 return system_has_some_mirror ? MEMBLOCK_MIRROR : MEMBLOCK_NONE;
69}
70
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070071/* inline so we don't get a warning when pr_debug is compiled out */
Raghavendra D Prabhuc2233112012-10-08 16:33:55 -070072static __init_memblock const char *
73memblock_type_name(struct memblock_type *type)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -070074{
75 if (type == &memblock.memory)
76 return "memory";
77 else if (type == &memblock.reserved)
78 return "reserved";
79 else
80 return "unknown";
81}
82
Tejun Heoeb18f1b2011-12-08 10:22:07 -080083/* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
84static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
85{
86 return *size = min(*size, (phys_addr_t)ULLONG_MAX - base);
87}
88
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +100089/*
90 * Address comparison utilities
91 */
Yinghai Lu10d06432010-07-28 15:43:02 +100092static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100093 phys_addr_t base2, phys_addr_t size2)
Yinghai Lu95f72d12010-07-12 14:36:09 +100094{
95 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
96}
97
Tang Chen95cf82e2015-09-08 15:02:03 -070098bool __init_memblock memblock_overlaps_region(struct memblock_type *type,
H Hartley Sweeten2d7d3eb2011-10-31 17:09:15 -070099 phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000100{
101 unsigned long i;
102
Alexander Kuleshovf14516f2016-01-14 15:20:39 -0800103 for (i = 0; i < type->cnt; i++)
104 if (memblock_addrs_overlap(base, size, type->regions[i].base,
105 type->regions[i].size))
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000106 break;
Tang Chenc5c5c9d2015-09-08 15:02:00 -0700107 return i < type->cnt;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000108}
109
Tang Chen79442ed2013-11-12 15:07:59 -0800110/*
111 * __memblock_find_range_bottom_up - find free area utility in bottom-up
112 * @start: start of candidate range
113 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
114 * @size: size of free area to find
115 * @align: alignment of free area to find
Grygorii Strashkob1154232014-01-21 15:50:16 -0800116 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700117 * @flags: pick from blocks based on memory attributes
Tang Chen79442ed2013-11-12 15:07:59 -0800118 *
119 * Utility called from memblock_find_in_range_node(), find free area bottom-up.
120 *
121 * RETURNS:
122 * Found address on success, 0 on failure.
123 */
124static phys_addr_t __init_memblock
125__memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700126 phys_addr_t size, phys_addr_t align, int nid,
127 ulong flags)
Tang Chen79442ed2013-11-12 15:07:59 -0800128{
129 phys_addr_t this_start, this_end, cand;
130 u64 i;
131
Tony Luckfc6daaf2015-06-24 16:58:09 -0700132 for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) {
Tang Chen79442ed2013-11-12 15:07:59 -0800133 this_start = clamp(this_start, start, end);
134 this_end = clamp(this_end, start, end);
135
136 cand = round_up(this_start, align);
137 if (cand < this_end && this_end - cand >= size)
138 return cand;
139 }
140
141 return 0;
142}
143
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800144/**
Tang Chen14028992013-11-12 15:07:57 -0800145 * __memblock_find_range_top_down - find free area utility, in top-down
146 * @start: start of candidate range
147 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
148 * @size: size of free area to find
149 * @align: alignment of free area to find
Grygorii Strashkob1154232014-01-21 15:50:16 -0800150 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700151 * @flags: pick from blocks based on memory attributes
Tang Chen14028992013-11-12 15:07:57 -0800152 *
153 * Utility called from memblock_find_in_range_node(), find free area top-down.
154 *
155 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800156 * Found address on success, 0 on failure.
Tang Chen14028992013-11-12 15:07:57 -0800157 */
158static phys_addr_t __init_memblock
159__memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700160 phys_addr_t size, phys_addr_t align, int nid,
161 ulong flags)
Tang Chen14028992013-11-12 15:07:57 -0800162{
163 phys_addr_t this_start, this_end, cand;
164 u64 i;
165
Tony Luckfc6daaf2015-06-24 16:58:09 -0700166 for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end,
167 NULL) {
Tang Chen14028992013-11-12 15:07:57 -0800168 this_start = clamp(this_start, start, end);
169 this_end = clamp(this_end, start, end);
170
171 if (this_end < size)
172 continue;
173
174 cand = round_down(this_end - size, align);
175 if (cand >= this_start)
176 return cand;
177 }
178
179 return 0;
180}
181
182/**
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800183 * memblock_find_in_range_node - find free area in given range and node
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800184 * @size: size of free area to find
185 * @align: alignment of free area to find
Grygorii Strashko87029ee2014-01-21 15:50:14 -0800186 * @start: start of candidate range
187 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
Grygorii Strashkob1154232014-01-21 15:50:16 -0800188 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
Tony Luckfc6daaf2015-06-24 16:58:09 -0700189 * @flags: pick from blocks based on memory attributes
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800190 *
191 * Find @size free area aligned to @align in the specified range and node.
192 *
Tang Chen79442ed2013-11-12 15:07:59 -0800193 * When allocation direction is bottom-up, the @start should be greater
194 * than the end of the kernel image. Otherwise, it will be trimmed. The
195 * reason is that we want the bottom-up allocation just near the kernel
196 * image so it is highly likely that the allocated memory and the kernel
197 * will reside in the same node.
198 *
199 * If bottom-up allocation failed, will try to allocate memory top-down.
200 *
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800201 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800202 * Found address on success, 0 on failure.
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000203 */
Grygorii Strashko87029ee2014-01-21 15:50:14 -0800204phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size,
205 phys_addr_t align, phys_addr_t start,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700206 phys_addr_t end, int nid, ulong flags)
Tang Chenf7210e62013-02-22 16:33:51 -0800207{
Tang Chen0cfb8f02014-08-29 15:18:31 -0700208 phys_addr_t kernel_end, ret;
Tang Chen79442ed2013-11-12 15:07:59 -0800209
Tang Chenf7210e62013-02-22 16:33:51 -0800210 /* pump up @end */
211 if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
212 end = memblock.current_limit;
213
214 /* avoid allocating the first page */
215 start = max_t(phys_addr_t, start, PAGE_SIZE);
216 end = max(start, end);
Tang Chen79442ed2013-11-12 15:07:59 -0800217 kernel_end = __pa_symbol(_end);
218
219 /*
220 * try bottom-up allocation only when bottom-up mode
221 * is set and @end is above the kernel image.
222 */
223 if (memblock_bottom_up() && end > kernel_end) {
224 phys_addr_t bottom_up_start;
225
226 /* make sure we will allocate above the kernel */
227 bottom_up_start = max(start, kernel_end);
228
229 /* ok, try bottom-up allocation first */
230 ret = __memblock_find_range_bottom_up(bottom_up_start, end,
Tony Luckfc6daaf2015-06-24 16:58:09 -0700231 size, align, nid, flags);
Tang Chen79442ed2013-11-12 15:07:59 -0800232 if (ret)
233 return ret;
234
235 /*
236 * we always limit bottom-up allocation above the kernel,
237 * but top-down allocation doesn't have the limit, so
238 * retrying top-down allocation may succeed when bottom-up
239 * allocation failed.
240 *
241 * bottom-up allocation is expected to be fail very rarely,
242 * so we use WARN_ONCE() here to see the stack trace if
243 * fail happens.
244 */
Joe Perches756a025f02016-03-17 14:19:47 -0700245 WARN_ONCE(1, "memblock: bottom-up allocation failed, memory hotunplug may be affected\n");
Tang Chen79442ed2013-11-12 15:07:59 -0800246 }
Tang Chenf7210e62013-02-22 16:33:51 -0800247
Tony Luckfc6daaf2015-06-24 16:58:09 -0700248 return __memblock_find_range_top_down(start, end, size, align, nid,
249 flags);
Tang Chenf7210e62013-02-22 16:33:51 -0800250}
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +1000251
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800252/**
253 * memblock_find_in_range - find free area in given range
254 * @start: start of candidate range
255 * @end: end of candidate range, can be %MEMBLOCK_ALLOC_{ANYWHERE|ACCESSIBLE}
256 * @size: size of free area to find
257 * @align: alignment of free area to find
258 *
259 * Find @size free area aligned to @align in the specified range.
260 *
261 * RETURNS:
Tang Chen79442ed2013-11-12 15:07:59 -0800262 * Found address on success, 0 on failure.
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800263 */
264phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
265 phys_addr_t end, phys_addr_t size,
266 phys_addr_t align)
267{
Tony Lucka3f5baf2015-06-24 16:58:12 -0700268 phys_addr_t ret;
269 ulong flags = choose_memblock_flags();
270
271again:
272 ret = memblock_find_in_range_node(size, align, start, end,
273 NUMA_NO_NODE, flags);
274
275 if (!ret && (flags & MEMBLOCK_MIRROR)) {
276 pr_warn("Could not allocate %pap bytes of mirrored memory\n",
277 &size);
278 flags &= ~MEMBLOCK_MIRROR;
279 goto again;
280 }
281
282 return ret;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800283}
284
Yinghai Lu10d06432010-07-28 15:43:02 +1000285static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000286{
Tejun Heo1440c4e2011-12-08 10:22:08 -0800287 type->total_size -= type->regions[r].size;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200288 memmove(&type->regions[r], &type->regions[r + 1],
289 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000290 type->cnt--;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000291
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700292 /* Special case for empty arrays */
293 if (type->cnt == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800294 WARN_ON(type->total_size != 0);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700295 type->cnt = 1;
296 type->regions[0].base = 0;
297 type->regions[0].size = 0;
Tang Chen66a20752014-01-21 15:49:20 -0800298 type->regions[0].flags = 0;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200299 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700300 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000301}
302
Philipp Hachtmann354f17e2014-01-23 15:53:24 -0800303#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
Pavel Tatashin87395ee2017-08-18 15:16:05 -0700304/**
305 * Discard memory and reserved arrays if they were allocated
306 */
307void __init memblock_discard(void)
Yinghai Lu29f67382012-07-11 14:02:56 -0700308{
Pavel Tatashin87395ee2017-08-18 15:16:05 -0700309 phys_addr_t addr, size;
Yinghai Lu29f67382012-07-11 14:02:56 -0700310
Pavel Tatashin87395ee2017-08-18 15:16:05 -0700311 if (memblock.reserved.regions != memblock_reserved_init_regions) {
312 addr = __pa(memblock.reserved.regions);
313 size = PAGE_ALIGN(sizeof(struct memblock_region) *
314 memblock.reserved.max);
315 __memblock_free_late(addr, size);
316 }
Yinghai Lu29f67382012-07-11 14:02:56 -0700317
Pavel Tatashin9d263322017-08-25 15:55:46 -0700318 if (memblock.memory.regions != memblock_memory_init_regions) {
Pavel Tatashin87395ee2017-08-18 15:16:05 -0700319 addr = __pa(memblock.memory.regions);
320 size = PAGE_ALIGN(sizeof(struct memblock_region) *
321 memblock.memory.max);
322 __memblock_free_late(addr, size);
323 }
Yinghai Lu29f67382012-07-11 14:02:56 -0700324}
Philipp Hachtmann5e270e22014-01-23 15:53:11 -0800325#endif
326
Greg Pearson48c3b582012-06-20 12:53:05 -0700327/**
328 * memblock_double_array - double the size of the memblock regions array
329 * @type: memblock type of the regions array being doubled
330 * @new_area_start: starting address of memory range to avoid overlap with
331 * @new_area_size: size of memory range to avoid overlap with
332 *
333 * Double the size of the @type regions array. If memblock is being used to
334 * allocate memory for a new reserved regions array and there is a previously
335 * allocated memory range [@new_area_start,@new_area_start+@new_area_size]
336 * waiting to be reserved, ensure the memory used by the new array does
337 * not overlap.
338 *
339 * RETURNS:
340 * 0 on success, -1 on failure.
341 */
342static int __init_memblock memblock_double_array(struct memblock_type *type,
343 phys_addr_t new_area_start,
344 phys_addr_t new_area_size)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700345{
346 struct memblock_region *new_array, *old_array;
Yinghai Lu29f67382012-07-11 14:02:56 -0700347 phys_addr_t old_alloc_size, new_alloc_size;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700348 phys_addr_t old_size, new_size, addr;
349 int use_slab = slab_is_available();
Gavin Shan181eb392012-05-29 15:06:50 -0700350 int *in_slab;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700351
352 /* We don't allow resizing until we know about the reserved regions
353 * of memory that aren't suitable for allocation
354 */
355 if (!memblock_can_resize)
356 return -1;
357
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700358 /* Calculate new doubled size */
359 old_size = type->max * sizeof(struct memblock_region);
360 new_size = old_size << 1;
Yinghai Lu29f67382012-07-11 14:02:56 -0700361 /*
362 * We need to allocated new one align to PAGE_SIZE,
363 * so we can free them completely later.
364 */
365 old_alloc_size = PAGE_ALIGN(old_size);
366 new_alloc_size = PAGE_ALIGN(new_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700367
Gavin Shan181eb392012-05-29 15:06:50 -0700368 /* Retrieve the slab flag */
369 if (type == &memblock.memory)
370 in_slab = &memblock_memory_in_slab;
371 else
372 in_slab = &memblock_reserved_in_slab;
373
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700374 /* Try to find some space for it.
375 *
376 * WARNING: We assume that either slab_is_available() and we use it or
Andrew Mortonfd073832012-07-31 16:42:40 -0700377 * we use MEMBLOCK for allocations. That means that this is unsafe to
378 * use when bootmem is currently active (unless bootmem itself is
379 * implemented on top of MEMBLOCK which isn't the case yet)
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700380 *
381 * This should however not be an issue for now, as we currently only
Andrew Mortonfd073832012-07-31 16:42:40 -0700382 * call into MEMBLOCK while it's still active, or much later when slab
383 * is active for memory hotplug operations
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700384 */
385 if (use_slab) {
386 new_array = kmalloc(new_size, GFP_KERNEL);
Tejun Heo1f5026a2011-07-12 09:58:09 +0200387 addr = new_array ? __pa(new_array) : 0;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700388 } else {
Greg Pearson48c3b582012-06-20 12:53:05 -0700389 /* only exclude range when trying to double reserved.regions */
390 if (type != &memblock.reserved)
391 new_area_start = new_area_size = 0;
392
393 addr = memblock_find_in_range(new_area_start + new_area_size,
394 memblock.current_limit,
Yinghai Lu29f67382012-07-11 14:02:56 -0700395 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700396 if (!addr && new_area_size)
397 addr = memblock_find_in_range(0,
Andrew Mortonfd073832012-07-31 16:42:40 -0700398 min(new_area_start, memblock.current_limit),
399 new_alloc_size, PAGE_SIZE);
Greg Pearson48c3b582012-06-20 12:53:05 -0700400
Sachin Kamat15674862012-09-04 13:55:05 +0530401 new_array = addr ? __va(addr) : NULL;
Gavin Shan4e2f0772012-05-29 15:06:50 -0700402 }
Tejun Heo1f5026a2011-07-12 09:58:09 +0200403 if (!addr) {
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700404 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
405 memblock_type_name(type), type->max, type->max * 2);
406 return -1;
407 }
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700408
Andrew Mortonfd073832012-07-31 16:42:40 -0700409 memblock_dbg("memblock: %s is doubled to %ld at [%#010llx-%#010llx]",
410 memblock_type_name(type), type->max * 2, (u64)addr,
411 (u64)addr + new_size - 1);
Yinghai Luea9e4372010-07-28 15:13:22 +1000412
Andrew Mortonfd073832012-07-31 16:42:40 -0700413 /*
414 * Found space, we now need to move the array over before we add the
415 * reserved region since it may be our reserved array itself that is
416 * full.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700417 */
418 memcpy(new_array, type->regions, old_size);
419 memset(new_array + type->max, 0, old_size);
420 old_array = type->regions;
421 type->regions = new_array;
422 type->max <<= 1;
423
Andrew Mortonfd073832012-07-31 16:42:40 -0700424 /* Free old array. We needn't free it if the array is the static one */
Gavin Shan181eb392012-05-29 15:06:50 -0700425 if (*in_slab)
426 kfree(old_array);
427 else if (old_array != memblock_memory_init_regions &&
428 old_array != memblock_reserved_init_regions)
Yinghai Lu29f67382012-07-11 14:02:56 -0700429 memblock_free(__pa(old_array), old_alloc_size);
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700430
Andrew Mortonfd073832012-07-31 16:42:40 -0700431 /*
432 * Reserve the new array if that comes from the memblock. Otherwise, we
433 * needn't do it
Gavin Shan181eb392012-05-29 15:06:50 -0700434 */
435 if (!use_slab)
Yinghai Lu29f67382012-07-11 14:02:56 -0700436 BUG_ON(memblock_reserve(addr, new_alloc_size));
Gavin Shan181eb392012-05-29 15:06:50 -0700437
438 /* Update slab flag */
439 *in_slab = use_slab;
440
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700441 return 0;
442}
443
Tejun Heo784656f92011-07-12 11:15:55 +0200444/**
445 * memblock_merge_regions - merge neighboring compatible regions
446 * @type: memblock type to scan
447 *
448 * Scan @type and merge neighboring compatible regions.
449 */
450static void __init_memblock memblock_merge_regions(struct memblock_type *type)
451{
452 int i = 0;
453
454 /* cnt never goes below 1 */
455 while (i < type->cnt - 1) {
456 struct memblock_region *this = &type->regions[i];
457 struct memblock_region *next = &type->regions[i + 1];
458
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200459 if (this->base + this->size != next->base ||
460 memblock_get_region_node(this) !=
Tang Chen66a20752014-01-21 15:49:20 -0800461 memblock_get_region_node(next) ||
462 this->flags != next->flags) {
Tejun Heo784656f92011-07-12 11:15:55 +0200463 BUG_ON(this->base + this->size > next->base);
464 i++;
465 continue;
466 }
467
468 this->size += next->size;
Lin Fengc0232ae2013-01-11 14:31:44 -0800469 /* move forward from next + 1, index of which is i + 2 */
470 memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
Tejun Heo784656f92011-07-12 11:15:55 +0200471 type->cnt--;
472 }
473}
474
475/**
476 * memblock_insert_region - insert new memblock region
Tang Chen209ff862013-04-29 15:08:41 -0700477 * @type: memblock type to insert into
478 * @idx: index for the insertion point
479 * @base: base address of the new region
480 * @size: size of the new region
481 * @nid: node id of the new region
Tang Chen66a20752014-01-21 15:49:20 -0800482 * @flags: flags of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200483 *
484 * Insert new memblock region [@base,@base+@size) into @type at @idx.
Alexander Kuleshov412d0002016-08-04 15:31:46 -0700485 * @type must already have extra room to accommodate the new region.
Tejun Heo784656f92011-07-12 11:15:55 +0200486 */
487static void __init_memblock memblock_insert_region(struct memblock_type *type,
488 int idx, phys_addr_t base,
Tang Chen66a20752014-01-21 15:49:20 -0800489 phys_addr_t size,
490 int nid, unsigned long flags)
Tejun Heo784656f92011-07-12 11:15:55 +0200491{
492 struct memblock_region *rgn = &type->regions[idx];
493
494 BUG_ON(type->cnt >= type->max);
495 memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
496 rgn->base = base;
497 rgn->size = size;
Tang Chen66a20752014-01-21 15:49:20 -0800498 rgn->flags = flags;
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200499 memblock_set_region_node(rgn, nid);
Tejun Heo784656f92011-07-12 11:15:55 +0200500 type->cnt++;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800501 type->total_size += size;
Tejun Heo784656f92011-07-12 11:15:55 +0200502}
503
504/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100505 * memblock_add_range - add new memblock region
Tejun Heo784656f92011-07-12 11:15:55 +0200506 * @type: memblock type to add new region into
507 * @base: base address of the new region
508 * @size: size of the new region
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800509 * @nid: nid of the new region
Tang Chen66a20752014-01-21 15:49:20 -0800510 * @flags: flags of the new region
Tejun Heo784656f92011-07-12 11:15:55 +0200511 *
512 * Add new memblock region [@base,@base+@size) into @type. The new region
513 * is allowed to overlap with existing ones - overlaps don't affect already
514 * existing regions. @type is guaranteed to be minimal (all neighbouring
515 * compatible regions are merged) after the addition.
516 *
517 * RETURNS:
518 * 0 on success, -errno on failure.
519 */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100520int __init_memblock memblock_add_range(struct memblock_type *type,
Tang Chen66a20752014-01-21 15:49:20 -0800521 phys_addr_t base, phys_addr_t size,
522 int nid, unsigned long flags)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000523{
Tejun Heo784656f92011-07-12 11:15:55 +0200524 bool insert = false;
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800525 phys_addr_t obase = base;
526 phys_addr_t end = base + memblock_cap_size(base, &size);
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800527 int idx, nr_new;
528 struct memblock_region *rgn;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000529
Tejun Heob3dc6272012-04-20 08:31:34 -0700530 if (!size)
531 return 0;
532
Tejun Heo784656f92011-07-12 11:15:55 +0200533 /* special case for empty array */
534 if (type->regions[0].size == 0) {
Tejun Heo1440c4e2011-12-08 10:22:08 -0800535 WARN_ON(type->cnt != 1 || type->total_size);
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +1000536 type->regions[0].base = base;
537 type->regions[0].size = size;
Tang Chen66a20752014-01-21 15:49:20 -0800538 type->regions[0].flags = flags;
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800539 memblock_set_region_node(&type->regions[0], nid);
Tejun Heo1440c4e2011-12-08 10:22:08 -0800540 type->total_size = size;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000541 return 0;
542 }
Tejun Heo784656f92011-07-12 11:15:55 +0200543repeat:
544 /*
545 * The following is executed twice. Once with %false @insert and
546 * then with %true. The first counts the number of regions needed
Alexander Kuleshov412d0002016-08-04 15:31:46 -0700547 * to accommodate the new area. The second actually inserts them.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700548 */
Tejun Heo784656f92011-07-12 11:15:55 +0200549 base = obase;
550 nr_new = 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000551
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800552 for_each_memblock_type(type, rgn) {
Tejun Heo784656f92011-07-12 11:15:55 +0200553 phys_addr_t rbase = rgn->base;
554 phys_addr_t rend = rbase + rgn->size;
555
556 if (rbase >= end)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000557 break;
Tejun Heo784656f92011-07-12 11:15:55 +0200558 if (rend <= base)
559 continue;
560 /*
561 * @rgn overlaps. If it separates the lower part of new
562 * area, insert that portion.
563 */
564 if (rbase > base) {
Wei Yangc0a29492015-09-04 15:47:38 -0700565#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
566 WARN_ON(nid != memblock_get_region_node(rgn));
567#endif
Wei Yang4fcab5f2015-09-08 14:59:53 -0700568 WARN_ON(flags != rgn->flags);
Tejun Heo784656f92011-07-12 11:15:55 +0200569 nr_new++;
570 if (insert)
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800571 memblock_insert_region(type, idx++, base,
Tang Chen66a20752014-01-21 15:49:20 -0800572 rbase - base, nid,
573 flags);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000574 }
Tejun Heo784656f92011-07-12 11:15:55 +0200575 /* area below @rend is dealt with, forget about it */
576 base = min(rend, end);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000577 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000578
Tejun Heo784656f92011-07-12 11:15:55 +0200579 /* insert the remaining portion */
580 if (base < end) {
581 nr_new++;
582 if (insert)
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800583 memblock_insert_region(type, idx, base, end - base,
Tang Chen66a20752014-01-21 15:49:20 -0800584 nid, flags);
Tejun Heo784656f92011-07-12 11:15:55 +0200585 }
586
nimisoloef3cc4d2016-07-26 15:24:56 -0700587 if (!nr_new)
588 return 0;
589
Tejun Heo784656f92011-07-12 11:15:55 +0200590 /*
591 * If this was the first round, resize array and repeat for actual
592 * insertions; otherwise, merge and return.
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700593 */
Tejun Heo784656f92011-07-12 11:15:55 +0200594 if (!insert) {
595 while (type->cnt + nr_new > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700596 if (memblock_double_array(type, obase, size) < 0)
Tejun Heo784656f92011-07-12 11:15:55 +0200597 return -ENOMEM;
598 insert = true;
599 goto repeat;
600 } else {
601 memblock_merge_regions(type);
602 return 0;
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -0700603 }
Yinghai Lu95f72d12010-07-12 14:36:09 +1000604}
605
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800606int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
607 int nid)
608{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100609 return memblock_add_range(&memblock.memory, base, size, nid, 0);
Tejun Heo7fb0bc32011-12-08 10:22:08 -0800610}
611
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700612int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
Alexander Kuleshov6a4055b2015-04-15 16:14:44 -0700613{
Alexander Kuleshov6a4055b2015-04-15 16:14:44 -0700614 memblock_dbg("memblock_add: [%#016llx-%#016llx] flags %#02lx %pF\n",
615 (unsigned long long)base,
616 (unsigned long long)base + size - 1,
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700617 0UL, (void *)_RET_IP_);
Alexander Kuleshov6a4055b2015-04-15 16:14:44 -0700618
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700619 return memblock_add_range(&memblock.memory, base, size, MAX_NUMNODES, 0);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000620}
621
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800622/**
623 * memblock_isolate_range - isolate given range into disjoint memblocks
624 * @type: memblock type to isolate range for
625 * @base: base of range to isolate
626 * @size: size of range to isolate
627 * @start_rgn: out parameter for the start of isolated region
628 * @end_rgn: out parameter for the end of isolated region
629 *
630 * Walk @type and ensure that regions don't cross the boundaries defined by
631 * [@base,@base+@size). Crossing regions are split at the boundaries,
632 * which may create at most two more regions. The index of the first
633 * region inside the range is returned in *@start_rgn and end in *@end_rgn.
634 *
635 * RETURNS:
636 * 0 on success, -errno on failure.
637 */
638static int __init_memblock memblock_isolate_range(struct memblock_type *type,
639 phys_addr_t base, phys_addr_t size,
640 int *start_rgn, int *end_rgn)
641{
Tejun Heoeb18f1b2011-12-08 10:22:07 -0800642 phys_addr_t end = base + memblock_cap_size(base, &size);
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800643 int idx;
644 struct memblock_region *rgn;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800645
646 *start_rgn = *end_rgn = 0;
647
Tejun Heob3dc6272012-04-20 08:31:34 -0700648 if (!size)
649 return 0;
650
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800651 /* we'll create at most two more regions */
652 while (type->cnt + 2 > type->max)
Greg Pearson48c3b582012-06-20 12:53:05 -0700653 if (memblock_double_array(type, base, size) < 0)
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800654 return -ENOMEM;
655
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800656 for_each_memblock_type(type, rgn) {
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800657 phys_addr_t rbase = rgn->base;
658 phys_addr_t rend = rbase + rgn->size;
659
660 if (rbase >= end)
661 break;
662 if (rend <= base)
663 continue;
664
665 if (rbase < base) {
666 /*
667 * @rgn intersects from below. Split and continue
668 * to process the next region - the new top half.
669 */
670 rgn->base = base;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800671 rgn->size -= base - rbase;
672 type->total_size -= base - rbase;
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800673 memblock_insert_region(type, idx, rbase, base - rbase,
Tang Chen66a20752014-01-21 15:49:20 -0800674 memblock_get_region_node(rgn),
675 rgn->flags);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800676 } else if (rend > end) {
677 /*
678 * @rgn intersects from above. Split and redo the
679 * current region - the new bottom half.
680 */
681 rgn->base = end;
Tejun Heo1440c4e2011-12-08 10:22:08 -0800682 rgn->size -= end - rbase;
683 type->total_size -= end - rbase;
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800684 memblock_insert_region(type, idx--, rbase, end - rbase,
Tang Chen66a20752014-01-21 15:49:20 -0800685 memblock_get_region_node(rgn),
686 rgn->flags);
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800687 } else {
688 /* @rgn is fully contained, record it */
689 if (!*end_rgn)
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -0800690 *start_rgn = idx;
691 *end_rgn = idx + 1;
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800692 }
693 }
694
695 return 0;
696}
Tejun Heo6a9ceb32011-12-08 10:22:07 -0800697
Alexander Kuleshov35bd16a2015-11-05 18:47:00 -0800698static int __init_memblock memblock_remove_range(struct memblock_type *type,
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100699 phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000700{
Tejun Heo71936182011-12-08 10:22:07 -0800701 int start_rgn, end_rgn;
702 int i, ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000703
Tejun Heo71936182011-12-08 10:22:07 -0800704 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
705 if (ret)
706 return ret;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000707
Tejun Heo71936182011-12-08 10:22:07 -0800708 for (i = end_rgn - 1; i >= start_rgn; i--)
709 memblock_remove_region(type, i);
Benjamin Herrenschmidt8f7a6602011-03-22 16:33:43 -0700710 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000711}
712
Tejun Heo581adcb2011-12-08 10:22:06 -0800713int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000714{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100715 return memblock_remove_range(&memblock.memory, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000716}
717
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100718
Tejun Heo581adcb2011-12-08 10:22:06 -0800719int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000720{
Tejun Heo24aa0782011-07-12 11:16:06 +0200721 memblock_dbg(" memblock_free: [%#016llx-%#016llx] %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700722 (unsigned long long)base,
Grygorii Strashko931d13f2014-01-21 15:49:17 -0800723 (unsigned long long)base + size - 1,
H. Peter Anvina1504392011-07-14 11:57:10 -0700724 (void *)_RET_IP_);
Tejun Heo24aa0782011-07-12 11:16:06 +0200725
Shiraz Hashimcb3a9222016-01-19 15:11:10 +0530726 if (base < memblock.current_limit)
Kyle Yan65be4a52016-10-31 15:05:00 -0700727 kmemleak_free_part_phys(base, size);
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100728 return memblock_remove_range(&memblock.reserved, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000729}
730
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700731int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000732{
Tang Chen66a20752014-01-21 15:49:20 -0800733 memblock_dbg("memblock_reserve: [%#016llx-%#016llx] flags %#02lx %pF\n",
H. Peter Anvina1504392011-07-14 11:57:10 -0700734 (unsigned long long)base,
Grygorii Strashko931d13f2014-01-21 15:49:17 -0800735 (unsigned long long)base + size - 1,
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700736 0UL, (void *)_RET_IP_);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000737
Alexander Kuleshovf705ac42016-05-20 16:57:35 -0700738 return memblock_add_range(&memblock.reserved, base, size, MAX_NUMNODES, 0);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000739}
740
Tejun Heo35fd0802011-07-12 11:15:59 +0200741/**
Tang Chen66b16ed2014-01-21 15:49:23 -0800742 *
Tony Luck4308ce12014-12-12 16:54:59 -0800743 * This function isolates region [@base, @base + @size), and sets/clears flag
Tang Chen66b16ed2014-01-21 15:49:23 -0800744 *
Alexander Kuleshovc1153932015-09-08 15:04:02 -0700745 * Return 0 on success, -errno on failure.
Tang Chen66b16ed2014-01-21 15:49:23 -0800746 */
Tony Luck4308ce12014-12-12 16:54:59 -0800747static int __init_memblock memblock_setclr_flag(phys_addr_t base,
748 phys_addr_t size, int set, int flag)
Tang Chen66b16ed2014-01-21 15:49:23 -0800749{
750 struct memblock_type *type = &memblock.memory;
751 int i, ret, start_rgn, end_rgn;
752
753 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
754 if (ret)
755 return ret;
756
757 for (i = start_rgn; i < end_rgn; i++)
Tony Luck4308ce12014-12-12 16:54:59 -0800758 if (set)
759 memblock_set_region_flags(&type->regions[i], flag);
760 else
761 memblock_clear_region_flags(&type->regions[i], flag);
Tang Chen66b16ed2014-01-21 15:49:23 -0800762
763 memblock_merge_regions(type);
764 return 0;
765}
766
767/**
Tony Luck4308ce12014-12-12 16:54:59 -0800768 * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG.
769 * @base: the base phys addr of the region
770 * @size: the size of the region
771 *
Alexander Kuleshovc1153932015-09-08 15:04:02 -0700772 * Return 0 on success, -errno on failure.
Tony Luck4308ce12014-12-12 16:54:59 -0800773 */
774int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size)
775{
776 return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG);
777}
778
779/**
Tang Chen66b16ed2014-01-21 15:49:23 -0800780 * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region.
781 * @base: the base phys addr of the region
782 * @size: the size of the region
783 *
Alexander Kuleshovc1153932015-09-08 15:04:02 -0700784 * Return 0 on success, -errno on failure.
Tang Chen66b16ed2014-01-21 15:49:23 -0800785 */
786int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size)
787{
Tony Luck4308ce12014-12-12 16:54:59 -0800788 return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG);
Tang Chen66b16ed2014-01-21 15:49:23 -0800789}
790
791/**
Tony Lucka3f5baf2015-06-24 16:58:12 -0700792 * memblock_mark_mirror - Mark mirrored memory with flag MEMBLOCK_MIRROR.
793 * @base: the base phys addr of the region
794 * @size: the size of the region
795 *
Alexander Kuleshovc1153932015-09-08 15:04:02 -0700796 * Return 0 on success, -errno on failure.
Tony Lucka3f5baf2015-06-24 16:58:12 -0700797 */
798int __init_memblock memblock_mark_mirror(phys_addr_t base, phys_addr_t size)
799{
800 system_has_some_mirror = true;
801
802 return memblock_setclr_flag(base, size, 1, MEMBLOCK_MIRROR);
803}
804
Ard Biesheuvelbf3d3cc2015-11-30 13:28:15 +0100805/**
806 * memblock_mark_nomap - Mark a memory region with flag MEMBLOCK_NOMAP.
807 * @base: the base phys addr of the region
808 * @size: the size of the region
809 *
810 * Return 0 on success, -errno on failure.
811 */
812int __init_memblock memblock_mark_nomap(phys_addr_t base, phys_addr_t size)
813{
814 return memblock_setclr_flag(base, size, 1, MEMBLOCK_NOMAP);
815}
Tony Lucka3f5baf2015-06-24 16:58:12 -0700816
817/**
Robin Holt8e7a7f82015-06-30 14:56:41 -0700818 * __next_reserved_mem_region - next function for for_each_reserved_region()
819 * @idx: pointer to u64 loop variable
820 * @out_start: ptr to phys_addr_t for start address of the region, can be %NULL
821 * @out_end: ptr to phys_addr_t for end address of the region, can be %NULL
822 *
823 * Iterate over all reserved memory regions.
824 */
825void __init_memblock __next_reserved_mem_region(u64 *idx,
826 phys_addr_t *out_start,
827 phys_addr_t *out_end)
828{
Alexander Kuleshov567d1172015-09-08 15:03:33 -0700829 struct memblock_type *type = &memblock.reserved;
Robin Holt8e7a7f82015-06-30 14:56:41 -0700830
Richard Leitnercd33a762016-05-20 16:58:33 -0700831 if (*idx < type->cnt) {
Alexander Kuleshov567d1172015-09-08 15:03:33 -0700832 struct memblock_region *r = &type->regions[*idx];
Robin Holt8e7a7f82015-06-30 14:56:41 -0700833 phys_addr_t base = r->base;
834 phys_addr_t size = r->size;
835
836 if (out_start)
837 *out_start = base;
838 if (out_end)
839 *out_end = base + size - 1;
840
841 *idx += 1;
842 return;
843 }
844
845 /* signal end of iteration */
846 *idx = ULLONG_MAX;
847}
848
849/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100850 * __next__mem_range - next function for for_each_free_mem_range() etc.
Tejun Heo35fd0802011-07-12 11:15:59 +0200851 * @idx: pointer to u64 loop variable
Grygorii Strashkob1154232014-01-21 15:50:16 -0800852 * @nid: node selector, %NUMA_NO_NODE for all nodes
Tony Luckfc6daaf2015-06-24 16:58:09 -0700853 * @flags: pick from blocks based on memory attributes
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100854 * @type_a: pointer to memblock_type from where the range is taken
855 * @type_b: pointer to memblock_type which excludes memory from being taken
Wanpeng Lidad75572012-06-20 12:53:01 -0700856 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
857 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
858 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo35fd0802011-07-12 11:15:59 +0200859 *
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100860 * Find the first area from *@idx which matches @nid, fill the out
Tejun Heo35fd0802011-07-12 11:15:59 +0200861 * parameters, and update *@idx for the next iteration. The lower 32bit of
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100862 * *@idx contains index into type_a and the upper 32bit indexes the
863 * areas before each region in type_b. For example, if type_b regions
Tejun Heo35fd0802011-07-12 11:15:59 +0200864 * look like the following,
865 *
866 * 0:[0-16), 1:[32-48), 2:[128-130)
867 *
868 * The upper 32bit indexes the following regions.
869 *
870 * 0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
871 *
872 * As both region arrays are sorted, the function advances the two indices
873 * in lockstep and returns each intersection.
874 */
Tony Luckfc6daaf2015-06-24 16:58:09 -0700875void __init_memblock __next_mem_range(u64 *idx, int nid, ulong flags,
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100876 struct memblock_type *type_a,
877 struct memblock_type *type_b,
878 phys_addr_t *out_start,
879 phys_addr_t *out_end, int *out_nid)
Tejun Heo35fd0802011-07-12 11:15:59 +0200880{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100881 int idx_a = *idx & 0xffffffff;
882 int idx_b = *idx >> 32;
Grygorii Strashkob1154232014-01-21 15:50:16 -0800883
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100884 if (WARN_ONCE(nid == MAX_NUMNODES,
885 "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
Grygorii Strashko560dca272014-01-21 15:50:55 -0800886 nid = NUMA_NO_NODE;
Tejun Heo35fd0802011-07-12 11:15:59 +0200887
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100888 for (; idx_a < type_a->cnt; idx_a++) {
889 struct memblock_region *m = &type_a->regions[idx_a];
890
Tejun Heo35fd0802011-07-12 11:15:59 +0200891 phys_addr_t m_start = m->base;
892 phys_addr_t m_end = m->base + m->size;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100893 int m_nid = memblock_get_region_node(m);
Tejun Heo35fd0802011-07-12 11:15:59 +0200894
895 /* only memory regions are associated with nodes, check it */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100896 if (nid != NUMA_NO_NODE && nid != m_nid)
Tejun Heo35fd0802011-07-12 11:15:59 +0200897 continue;
898
Xishi Qiu0a313a92014-09-09 14:50:46 -0700899 /* skip hotpluggable memory regions if needed */
900 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
901 continue;
902
Tony Lucka3f5baf2015-06-24 16:58:12 -0700903 /* if we want mirror memory skip non-mirror memory regions */
904 if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
905 continue;
906
Ard Biesheuvelbf3d3cc2015-11-30 13:28:15 +0100907 /* skip nomap memory unless we were asked for it explicitly */
908 if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
909 continue;
910
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100911 if (!type_b) {
912 if (out_start)
913 *out_start = m_start;
914 if (out_end)
915 *out_end = m_end;
916 if (out_nid)
917 *out_nid = m_nid;
918 idx_a++;
919 *idx = (u32)idx_a | (u64)idx_b << 32;
920 return;
921 }
Tejun Heo35fd0802011-07-12 11:15:59 +0200922
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100923 /* scan areas before each reservation */
924 for (; idx_b < type_b->cnt + 1; idx_b++) {
925 struct memblock_region *r;
926 phys_addr_t r_start;
927 phys_addr_t r_end;
928
929 r = &type_b->regions[idx_b];
930 r_start = idx_b ? r[-1].base + r[-1].size : 0;
931 r_end = idx_b < type_b->cnt ?
Stefan Agner15c3e892018-04-05 16:25:38 -0700932 r->base : (phys_addr_t)ULLONG_MAX;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100933
934 /*
935 * if idx_b advanced past idx_a,
936 * break out to advance idx_a
937 */
Tejun Heo35fd0802011-07-12 11:15:59 +0200938 if (r_start >= m_end)
939 break;
940 /* if the two regions intersect, we're done */
941 if (m_start < r_end) {
942 if (out_start)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100943 *out_start =
944 max(m_start, r_start);
Tejun Heo35fd0802011-07-12 11:15:59 +0200945 if (out_end)
946 *out_end = min(m_end, r_end);
947 if (out_nid)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100948 *out_nid = m_nid;
Tejun Heo35fd0802011-07-12 11:15:59 +0200949 /*
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100950 * The region which ends first is
951 * advanced for the next iteration.
Tejun Heo35fd0802011-07-12 11:15:59 +0200952 */
953 if (m_end <= r_end)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100954 idx_a++;
Tejun Heo35fd0802011-07-12 11:15:59 +0200955 else
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100956 idx_b++;
957 *idx = (u32)idx_a | (u64)idx_b << 32;
Tejun Heo35fd0802011-07-12 11:15:59 +0200958 return;
959 }
960 }
961 }
962
963 /* signal end of iteration */
964 *idx = ULLONG_MAX;
965}
966
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800967/**
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100968 * __next_mem_range_rev - generic next function for for_each_*_range_rev()
969 *
970 * Finds the next range from type_a which is not marked as unsuitable
971 * in type_b.
972 *
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800973 * @idx: pointer to u64 loop variable
Alexander Kuleshovad5ea8c2015-09-08 15:04:22 -0700974 * @nid: node selector, %NUMA_NO_NODE for all nodes
Tony Luckfc6daaf2015-06-24 16:58:09 -0700975 * @flags: pick from blocks based on memory attributes
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100976 * @type_a: pointer to memblock_type from where the range is taken
977 * @type_b: pointer to memblock_type which excludes memory from being taken
Wanpeng Lidad75572012-06-20 12:53:01 -0700978 * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
979 * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
980 * @out_nid: ptr to int for nid of the range, can be %NULL
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800981 *
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100982 * Reverse of __next_mem_range().
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800983 */
Tony Luckfc6daaf2015-06-24 16:58:09 -0700984void __init_memblock __next_mem_range_rev(u64 *idx, int nid, ulong flags,
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100985 struct memblock_type *type_a,
986 struct memblock_type *type_b,
987 phys_addr_t *out_start,
988 phys_addr_t *out_end, int *out_nid)
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800989{
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100990 int idx_a = *idx & 0xffffffff;
991 int idx_b = *idx >> 32;
Grygorii Strashkob1154232014-01-21 15:50:16 -0800992
Grygorii Strashko560dca272014-01-21 15:50:55 -0800993 if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
994 nid = NUMA_NO_NODE;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800995
996 if (*idx == (u64)ULLONG_MAX) {
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +0100997 idx_a = type_a->cnt - 1;
zijun_hue47608a2016-08-04 15:32:00 -0700998 if (type_b != NULL)
999 idx_b = type_b->cnt;
1000 else
1001 idx_b = 0;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001002 }
1003
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001004 for (; idx_a >= 0; idx_a--) {
1005 struct memblock_region *m = &type_a->regions[idx_a];
1006
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001007 phys_addr_t m_start = m->base;
1008 phys_addr_t m_end = m->base + m->size;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001009 int m_nid = memblock_get_region_node(m);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001010
1011 /* only memory regions are associated with nodes, check it */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001012 if (nid != NUMA_NO_NODE && nid != m_nid)
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001013 continue;
1014
Tang Chen55ac5902014-01-21 15:49:35 -08001015 /* skip hotpluggable memory regions if needed */
1016 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
1017 continue;
1018
Tony Lucka3f5baf2015-06-24 16:58:12 -07001019 /* if we want mirror memory skip non-mirror memory regions */
1020 if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
1021 continue;
1022
Ard Biesheuvelbf3d3cc2015-11-30 13:28:15 +01001023 /* skip nomap memory unless we were asked for it explicitly */
1024 if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
1025 continue;
1026
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001027 if (!type_b) {
1028 if (out_start)
1029 *out_start = m_start;
1030 if (out_end)
1031 *out_end = m_end;
1032 if (out_nid)
1033 *out_nid = m_nid;
zijun_hufb399b42016-07-28 15:48:56 -07001034 idx_a--;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001035 *idx = (u32)idx_a | (u64)idx_b << 32;
1036 return;
1037 }
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001038
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001039 /* scan areas before each reservation */
1040 for (; idx_b >= 0; idx_b--) {
1041 struct memblock_region *r;
1042 phys_addr_t r_start;
1043 phys_addr_t r_end;
1044
1045 r = &type_b->regions[idx_b];
1046 r_start = idx_b ? r[-1].base + r[-1].size : 0;
1047 r_end = idx_b < type_b->cnt ?
Stefan Agner15c3e892018-04-05 16:25:38 -07001048 r->base : (phys_addr_t)ULLONG_MAX;
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001049 /*
1050 * if idx_b advanced past idx_a,
1051 * break out to advance idx_a
1052 */
1053
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001054 if (r_end <= m_start)
1055 break;
1056 /* if the two regions intersect, we're done */
1057 if (m_end > r_start) {
1058 if (out_start)
1059 *out_start = max(m_start, r_start);
1060 if (out_end)
1061 *out_end = min(m_end, r_end);
1062 if (out_nid)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001063 *out_nid = m_nid;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001064 if (m_start >= r_start)
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001065 idx_a--;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001066 else
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001067 idx_b--;
1068 *idx = (u32)idx_a | (u64)idx_b << 32;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001069 return;
1070 }
1071 }
1072 }
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001073 /* signal end of iteration */
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001074 *idx = ULLONG_MAX;
1075}
1076
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001077#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1078/*
1079 * Common iterator interface used to define for_each_mem_range().
1080 */
1081void __init_memblock __next_mem_pfn_range(int *idx, int nid,
1082 unsigned long *out_start_pfn,
1083 unsigned long *out_end_pfn, int *out_nid)
1084{
1085 struct memblock_type *type = &memblock.memory;
1086 struct memblock_region *r;
1087
1088 while (++*idx < type->cnt) {
1089 r = &type->regions[*idx];
1090
1091 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
1092 continue;
1093 if (nid == MAX_NUMNODES || nid == r->nid)
1094 break;
1095 }
1096 if (*idx >= type->cnt) {
1097 *idx = -1;
1098 return;
1099 }
1100
1101 if (out_start_pfn)
1102 *out_start_pfn = PFN_UP(r->base);
1103 if (out_end_pfn)
1104 *out_end_pfn = PFN_DOWN(r->base + r->size);
1105 if (out_nid)
1106 *out_nid = r->nid;
1107}
1108
1109/**
1110 * memblock_set_node - set node ID on memblock regions
1111 * @base: base of area to set node ID for
1112 * @size: size of area to set node ID for
Tang Chene7e8de52014-01-21 15:49:26 -08001113 * @type: memblock type to set node ID for
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001114 * @nid: node ID to set
1115 *
Tang Chene7e8de52014-01-21 15:49:26 -08001116 * Set the nid of memblock @type regions in [@base,@base+@size) to @nid.
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001117 * Regions which cross the area boundaries are split as necessary.
1118 *
1119 * RETURNS:
1120 * 0 on success, -errno on failure.
1121 */
1122int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
Tang Chene7e8de52014-01-21 15:49:26 -08001123 struct memblock_type *type, int nid)
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001124{
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001125 int start_rgn, end_rgn;
1126 int i, ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001127
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001128 ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
1129 if (ret)
1130 return ret;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001131
Tejun Heo6a9ceb32011-12-08 10:22:07 -08001132 for (i = start_rgn; i < end_rgn; i++)
Wanpeng Lie9d24ad2012-10-08 16:32:21 -07001133 memblock_set_region_node(&type->regions[i], nid);
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001134
1135 memblock_merge_regions(type);
1136 return 0;
1137}
1138#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
1139
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001140static phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
1141 phys_addr_t align, phys_addr_t start,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001142 phys_addr_t end, int nid, ulong flags)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001143{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001144 phys_addr_t found;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001145
Grygorii Strashko79f40fa2014-01-21 15:50:12 -08001146 if (!align)
1147 align = SMP_CACHE_BYTES;
Vineet Gupta94f3d3a2013-04-29 15:06:15 -07001148
Tony Luckfc6daaf2015-06-24 16:58:09 -07001149 found = memblock_find_in_range_node(size, align, start, end, nid,
1150 flags);
Catalin Marinasaedf95e2014-06-06 14:38:20 -07001151 if (found && !memblock_reserve(found, size)) {
1152 /*
1153 * The min_count is set to 0 so that memblock allocations are
1154 * never reported as leaks.
1155 */
Shiraz Hashimcb3a9222016-01-19 15:11:10 +05301156 if (found < memblock.current_limit)
Kyle Yan65be4a52016-10-31 15:05:00 -07001157 kmemleak_alloc_phys(found, size, 0, 0);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001158 return found;
Catalin Marinasaedf95e2014-06-06 14:38:20 -07001159 }
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001160 return 0;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001161}
1162
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001163phys_addr_t __init memblock_alloc_range(phys_addr_t size, phys_addr_t align,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001164 phys_addr_t start, phys_addr_t end,
1165 ulong flags)
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001166{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001167 return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE,
1168 flags);
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001169}
1170
1171static phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size,
1172 phys_addr_t align, phys_addr_t max_addr,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001173 int nid, ulong flags)
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001174{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001175 return memblock_alloc_range_nid(size, align, 0, max_addr, nid, flags);
Akinobu Mita2bfc2862014-06-04 16:06:53 -07001176}
1177
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001178phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
1179{
Tony Lucka3f5baf2015-06-24 16:58:12 -07001180 ulong flags = choose_memblock_flags();
1181 phys_addr_t ret;
1182
1183again:
1184 ret = memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE,
1185 nid, flags);
1186
1187 if (!ret && (flags & MEMBLOCK_MIRROR)) {
1188 flags &= ~MEMBLOCK_MIRROR;
1189 goto again;
1190 }
1191 return ret;
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001192}
1193
1194phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
1195{
Tony Luckfc6daaf2015-06-24 16:58:09 -07001196 return memblock_alloc_base_nid(size, align, max_addr, NUMA_NO_NODE,
1197 MEMBLOCK_NONE);
Tejun Heo7bd0b0f2011-12-08 10:22:09 -08001198}
1199
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001200phys_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 +10001201{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001202 phys_addr_t alloc;
1203
1204 alloc = __memblock_alloc_base(size, align, max_addr);
1205
1206 if (alloc == 0)
1207 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
1208 (unsigned long long) size, (unsigned long long) max_addr);
1209
1210 return alloc;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001211}
1212
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001213phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001214{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001215 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001216}
1217
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -07001218phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
1219{
1220 phys_addr_t res = memblock_alloc_nid(size, align, nid);
1221
1222 if (res)
1223 return res;
Tejun Heo15fb0972011-07-12 09:58:07 +02001224 return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001225}
1226
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001227/**
1228 * memblock_virt_alloc_internal - allocate boot memory block
1229 * @size: size of memory block to be allocated in bytes
1230 * @align: alignment of the region and block's size
1231 * @min_addr: the lower bound of the memory region to allocate (phys address)
1232 * @max_addr: the upper bound of the memory region to allocate (phys address)
1233 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1234 *
1235 * The @min_addr limit is dropped if it can not be satisfied and the allocation
1236 * will fall back to memory below @min_addr. Also, allocation may fall back
1237 * to any node in the system if the specified node can not
1238 * hold the requested memory.
1239 *
1240 * The allocation is performed from memory region limited by
1241 * memblock.current_limit if @max_addr == %BOOTMEM_ALLOC_ACCESSIBLE.
1242 *
1243 * The memory block is aligned on SMP_CACHE_BYTES if @align == 0.
1244 *
1245 * The phys address of allocated boot memory block is converted to virtual and
1246 * allocated memory is reset to 0.
1247 *
1248 * In addition, function sets the min_count to 0 using kmemleak_alloc for
1249 * allocated boot memory block, so that it is never reported as leaks.
1250 *
1251 * RETURNS:
1252 * Virtual address of allocated memory block on success, NULL on failure.
1253 */
1254static void * __init memblock_virt_alloc_internal(
1255 phys_addr_t size, phys_addr_t align,
1256 phys_addr_t min_addr, phys_addr_t max_addr,
1257 int nid)
1258{
1259 phys_addr_t alloc;
1260 void *ptr;
Tony Lucka3f5baf2015-06-24 16:58:12 -07001261 ulong flags = choose_memblock_flags();
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001262
Grygorii Strashko560dca272014-01-21 15:50:55 -08001263 if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1264 nid = NUMA_NO_NODE;
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001265
1266 /*
1267 * Detect any accidental use of these APIs after slab is ready, as at
1268 * this moment memblock may be deinitialized already and its
1269 * internal data may be destroyed (after execution of free_all_bootmem)
1270 */
1271 if (WARN_ON_ONCE(slab_is_available()))
1272 return kzalloc_node(size, GFP_NOWAIT, nid);
1273
1274 if (!align)
1275 align = SMP_CACHE_BYTES;
1276
Yinghai Luf544e142014-01-29 14:05:52 -08001277 if (max_addr > memblock.current_limit)
1278 max_addr = memblock.current_limit;
1279
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001280again:
1281 alloc = memblock_find_in_range_node(size, align, min_addr, max_addr,
Tony Lucka3f5baf2015-06-24 16:58:12 -07001282 nid, flags);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001283 if (alloc)
1284 goto done;
1285
1286 if (nid != NUMA_NO_NODE) {
1287 alloc = memblock_find_in_range_node(size, align, min_addr,
Tony Luckfc6daaf2015-06-24 16:58:09 -07001288 max_addr, NUMA_NO_NODE,
Tony Lucka3f5baf2015-06-24 16:58:12 -07001289 flags);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001290 if (alloc)
1291 goto done;
1292 }
1293
1294 if (min_addr) {
1295 min_addr = 0;
1296 goto again;
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001297 }
1298
Tony Lucka3f5baf2015-06-24 16:58:12 -07001299 if (flags & MEMBLOCK_MIRROR) {
1300 flags &= ~MEMBLOCK_MIRROR;
1301 pr_warn("Could not allocate %pap bytes of mirrored memory\n",
1302 &size);
1303 goto again;
1304 }
1305
1306 return NULL;
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001307done:
1308 memblock_reserve(alloc, size);
1309 ptr = phys_to_virt(alloc);
1310 memset(ptr, 0, size);
1311
1312 /*
1313 * The min_count is set to 0 so that bootmem allocated blocks
1314 * are never reported as leaks. This is because many of these blocks
1315 * are only referred via the physical address which is not
1316 * looked up by kmemleak.
1317 */
1318 kmemleak_alloc(ptr, size, 0, 0);
1319
1320 return ptr;
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001321}
1322
1323/**
1324 * memblock_virt_alloc_try_nid_nopanic - allocate boot memory block
1325 * @size: size of memory block to be allocated in bytes
1326 * @align: alignment of the region and block's size
1327 * @min_addr: the lower bound of the memory region from where the allocation
1328 * is preferred (phys address)
1329 * @max_addr: the upper bound of the memory region from where the allocation
1330 * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1331 * allocate only from memory limited by memblock.current_limit value
1332 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1333 *
1334 * Public version of _memblock_virt_alloc_try_nid_nopanic() which provides
1335 * additional debug information (including caller info), if enabled.
1336 *
1337 * RETURNS:
1338 * Virtual address of allocated memory block on success, NULL on failure.
1339 */
1340void * __init memblock_virt_alloc_try_nid_nopanic(
1341 phys_addr_t size, phys_addr_t align,
1342 phys_addr_t min_addr, phys_addr_t max_addr,
1343 int nid)
1344{
1345 memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n",
1346 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1347 (u64)max_addr, (void *)_RET_IP_);
1348 return memblock_virt_alloc_internal(size, align, min_addr,
1349 max_addr, nid);
1350}
1351
1352/**
1353 * memblock_virt_alloc_try_nid - allocate boot memory block with panicking
1354 * @size: size of memory block to be allocated in bytes
1355 * @align: alignment of the region and block's size
1356 * @min_addr: the lower bound of the memory region from where the allocation
1357 * is preferred (phys address)
1358 * @max_addr: the upper bound of the memory region from where the allocation
1359 * is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1360 * allocate only from memory limited by memblock.current_limit value
1361 * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1362 *
1363 * Public panicking version of _memblock_virt_alloc_try_nid_nopanic()
1364 * which provides debug information (including caller info), if enabled,
1365 * and panics if the request can not be satisfied.
1366 *
1367 * RETURNS:
1368 * Virtual address of allocated memory block on success, NULL on failure.
1369 */
1370void * __init memblock_virt_alloc_try_nid(
1371 phys_addr_t size, phys_addr_t align,
1372 phys_addr_t min_addr, phys_addr_t max_addr,
1373 int nid)
1374{
1375 void *ptr;
1376
1377 memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx %pF\n",
1378 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1379 (u64)max_addr, (void *)_RET_IP_);
1380 ptr = memblock_virt_alloc_internal(size, align,
1381 min_addr, max_addr, nid);
1382 if (ptr)
1383 return ptr;
1384
1385 panic("%s: Failed to allocate %llu bytes align=0x%llx nid=%d from=0x%llx max_addr=0x%llx\n",
1386 __func__, (u64)size, (u64)align, nid, (u64)min_addr,
1387 (u64)max_addr);
1388 return NULL;
1389}
1390
1391/**
1392 * __memblock_free_early - free boot memory block
1393 * @base: phys starting address of the boot memory block
1394 * @size: size of the boot memory block in bytes
1395 *
1396 * Free boot memory block previously allocated by memblock_virt_alloc_xx() API.
1397 * The freeing memory will not be released to the buddy allocator.
1398 */
1399void __init __memblock_free_early(phys_addr_t base, phys_addr_t size)
1400{
1401 memblock_dbg("%s: [%#016llx-%#016llx] %pF\n",
1402 __func__, (u64)base, (u64)base + size - 1,
1403 (void *)_RET_IP_);
Catalin Marinas9099dae2016-10-11 13:55:11 -07001404 kmemleak_free_part_phys(base, size);
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001405 memblock_remove_range(&memblock.reserved, base, size);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001406}
1407
1408/*
1409 * __memblock_free_late - free bootmem block pages directly to buddy allocator
1410 * @addr: phys starting address of the boot memory block
1411 * @size: size of the boot memory block in bytes
1412 *
1413 * This is only useful when the bootmem allocator has already been torn
1414 * down, but we are still initializing the system. Pages are released directly
1415 * to the buddy allocator, no bootmem metadata is updated because it is gone.
1416 */
1417void __init __memblock_free_late(phys_addr_t base, phys_addr_t size)
1418{
1419 u64 cursor, end;
1420
1421 memblock_dbg("%s: [%#016llx-%#016llx] %pF\n",
1422 __func__, (u64)base, (u64)base + size - 1,
1423 (void *)_RET_IP_);
Catalin Marinas9099dae2016-10-11 13:55:11 -07001424 kmemleak_free_part_phys(base, size);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001425 cursor = PFN_UP(base);
1426 end = PFN_DOWN(base + size);
1427
1428 for (; cursor < end; cursor++) {
Mel Gormand70ddd72015-06-30 14:56:52 -07001429 __free_pages_bootmem(pfn_to_page(cursor), cursor, 0);
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08001430 totalram_pages++;
1431 }
1432}
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -07001433
1434/*
1435 * Remaining API functions
1436 */
1437
David Gibson1f1ffb8a2016-02-05 15:36:19 -08001438phys_addr_t __init_memblock memblock_phys_mem_size(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001439{
Tejun Heo1440c4e2011-12-08 10:22:08 -08001440 return memblock.memory.total_size;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001441}
1442
Srikar Dronamraju8907de52016-10-07 16:59:18 -07001443phys_addr_t __init_memblock memblock_reserved_size(void)
1444{
1445 return memblock.reserved.total_size;
1446}
1447
Yinghai Lu595ad9a2013-01-24 12:20:09 -08001448phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
1449{
1450 unsigned long pages = 0;
1451 struct memblock_region *r;
1452 unsigned long start_pfn, end_pfn;
1453
1454 for_each_memblock(memory, r) {
1455 start_pfn = memblock_region_memory_base_pfn(r);
1456 end_pfn = memblock_region_memory_end_pfn(r);
1457 start_pfn = min_t(unsigned long, start_pfn, limit_pfn);
1458 end_pfn = min_t(unsigned long, end_pfn, limit_pfn);
1459 pages += end_pfn - start_pfn;
1460 }
1461
Fabian Frederick16763232014-04-07 15:37:53 -07001462 return PFN_PHYS(pages);
Yinghai Lu595ad9a2013-01-24 12:20:09 -08001463}
1464
Sam Ravnborg0a93ebe2011-10-31 17:08:16 -07001465/* lowest address */
1466phys_addr_t __init_memblock memblock_start_of_DRAM(void)
1467{
1468 return memblock.memory.regions[0].base;
1469}
1470
Yinghai Lu10d06432010-07-28 15:43:02 +10001471phys_addr_t __init_memblock memblock_end_of_DRAM(void)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001472{
1473 int idx = memblock.memory.cnt - 1;
1474
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +10001475 return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001476}
1477
Dennis Chena571d4e2016-07-28 15:48:26 -07001478static phys_addr_t __init_memblock __find_max_addr(phys_addr_t limit)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001479{
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001480 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
Emil Medve136199f2014-04-07 15:37:52 -07001481 struct memblock_region *r;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001482
Dennis Chena571d4e2016-07-28 15:48:26 -07001483 /*
1484 * translate the memory @limit size into the max address within one of
1485 * the memory memblock regions, if the @limit exceeds the total size
1486 * of those regions, max_addr will keep original value ULLONG_MAX
1487 */
Emil Medve136199f2014-04-07 15:37:52 -07001488 for_each_memblock(memory, r) {
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001489 if (limit <= r->size) {
1490 max_addr = r->base + limit;
1491 break;
1492 }
1493 limit -= r->size;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001494 }
1495
Dennis Chena571d4e2016-07-28 15:48:26 -07001496 return max_addr;
1497}
1498
1499void __init memblock_enforce_memory_limit(phys_addr_t limit)
1500{
1501 phys_addr_t max_addr = (phys_addr_t)ULLONG_MAX;
1502
1503 if (!limit)
1504 return;
1505
1506 max_addr = __find_max_addr(limit);
1507
1508 /* @limit exceeds the total size of the memory, do nothing */
1509 if (max_addr == (phys_addr_t)ULLONG_MAX)
1510 return;
1511
Tejun Heoc0ce8fe2011-12-08 10:22:07 -08001512 /* truncate both memory and reserved regions */
Philipp Hachtmannf1af9d32014-01-29 18:16:01 +01001513 memblock_remove_range(&memblock.memory, max_addr,
1514 (phys_addr_t)ULLONG_MAX);
1515 memblock_remove_range(&memblock.reserved, max_addr,
1516 (phys_addr_t)ULLONG_MAX);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001517}
1518
Dennis Chena571d4e2016-07-28 15:48:26 -07001519void __init memblock_mem_limit_remove_map(phys_addr_t limit)
1520{
1521 struct memblock_type *type = &memblock.memory;
1522 phys_addr_t max_addr;
1523 int i, ret, start_rgn, end_rgn;
1524
1525 if (!limit)
1526 return;
1527
1528 max_addr = __find_max_addr(limit);
1529
1530 /* @limit exceeds the total size of the memory, do nothing */
1531 if (max_addr == (phys_addr_t)ULLONG_MAX)
1532 return;
1533
1534 ret = memblock_isolate_range(type, max_addr, (phys_addr_t)ULLONG_MAX,
1535 &start_rgn, &end_rgn);
1536 if (ret)
1537 return;
1538
1539 /* remove all the MAP regions above the limit */
1540 for (i = end_rgn - 1; i >= start_rgn; i--) {
1541 if (!memblock_is_nomap(&type->regions[i]))
1542 memblock_remove_region(type, i);
1543 }
1544 /* truncate the reserved regions */
1545 memblock_remove_range(&memblock.reserved, max_addr,
1546 (phys_addr_t)ULLONG_MAX);
1547}
1548
Shiraz Hashime1525702016-02-04 14:53:33 +05301549static int __init_memblock __memblock_search(struct memblock_type *type,
1550 phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001551{
1552 unsigned int left = 0, right = type->cnt;
1553
1554 do {
1555 unsigned int mid = (right + left) / 2;
1556
1557 if (addr < type->regions[mid].base)
1558 right = mid;
1559 else if (addr >= (type->regions[mid].base +
1560 type->regions[mid].size))
1561 left = mid + 1;
1562 else
1563 return mid;
1564 } while (left < right);
1565 return -1;
1566}
1567
Shiraz Hashime1525702016-02-04 14:53:33 +05301568static int __init_memblock memblock_search(struct memblock_type *type,
1569 phys_addr_t addr)
1570{
1571 int ret;
1572 unsigned long seq;
1573
1574 do {
1575 seq = raw_read_seqcount_begin(&memblock_seq);
1576 ret = __memblock_search(type, addr);
1577 } while (unlikely(read_seqcount_retry(&memblock_seq, seq)));
1578
1579 return ret;
1580}
1581
Yaowei Baib4ad0c72016-01-14 15:18:54 -08001582bool __init memblock_is_reserved(phys_addr_t addr)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001583{
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001584 return memblock_search(&memblock.reserved, addr) != -1;
1585}
Yinghai Lu95f72d12010-07-12 14:36:09 +10001586
Yaowei Baib4ad0c72016-01-14 15:18:54 -08001587bool __init_memblock memblock_is_memory(phys_addr_t addr)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001588{
1589 return memblock_search(&memblock.memory, addr) != -1;
1590}
1591
Ard Biesheuvelbf3d3cc2015-11-30 13:28:15 +01001592int __init_memblock memblock_is_map_memory(phys_addr_t addr)
1593{
1594 int i = memblock_search(&memblock.memory, addr);
1595
1596 if (i == -1)
1597 return false;
1598 return !memblock_is_nomap(&memblock.memory.regions[i]);
1599}
1600
Yinghai Lue76b63f2013-09-11 14:22:17 -07001601#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1602int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1603 unsigned long *start_pfn, unsigned long *end_pfn)
1604{
1605 struct memblock_type *type = &memblock.memory;
Fabian Frederick16763232014-04-07 15:37:53 -07001606 int mid = memblock_search(type, PFN_PHYS(pfn));
Yinghai Lue76b63f2013-09-11 14:22:17 -07001607
1608 if (mid == -1)
1609 return -1;
1610
Fabian Frederickf7e2f7e2014-06-04 16:07:51 -07001611 *start_pfn = PFN_DOWN(type->regions[mid].base);
1612 *end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size);
Yinghai Lue76b63f2013-09-11 14:22:17 -07001613
1614 return type->regions[mid].nid;
1615}
1616#endif
1617
Stephen Boydeab30942012-05-24 00:45:21 -07001618/**
1619 * memblock_is_region_memory - check if a region is a subset of memory
1620 * @base: base of region to check
1621 * @size: size of region to check
1622 *
1623 * Check if the region [@base, @base+@size) is a subset of a memory block.
1624 *
1625 * RETURNS:
1626 * 0 if false, non-zero if true
1627 */
Yinghai Lu3661ca62010-09-15 13:05:29 -07001628int __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001629{
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001630 int idx = memblock_search(&memblock.memory, base);
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001631 phys_addr_t end = base + memblock_cap_size(base, &size);
Benjamin Herrenschmidt72d4b0b2010-08-04 14:38:47 +10001632
1633 if (idx == -1)
1634 return 0;
Tomi Valkeinenabb65272011-01-20 14:44:20 -08001635 return memblock.memory.regions[idx].base <= base &&
1636 (memblock.memory.regions[idx].base +
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001637 memblock.memory.regions[idx].size) >= end;
Yinghai Lu95f72d12010-07-12 14:36:09 +10001638}
1639
Stephen Boyd48cc5402017-03-01 16:42:02 -08001640bool __init_memblock memblock_overlaps_memory(phys_addr_t base,
1641 phys_addr_t size)
Stephen Boyd39ea1a32012-05-14 18:55:50 -07001642{
1643 memblock_cap_size(base, &size);
1644
Stephen Boyd48cc5402017-03-01 16:42:02 -08001645 return memblock_overlaps_region(&memblock.memory, base, size);
Stephen Boyd39ea1a32012-05-14 18:55:50 -07001646}
1647
Stephen Boydeab30942012-05-24 00:45:21 -07001648/**
1649 * memblock_is_region_reserved - check if a region intersects reserved memory
1650 * @base: base of region to check
1651 * @size: size of region to check
1652 *
1653 * Check if the region [@base, @base+@size) intersects a reserved memory block.
1654 *
1655 * RETURNS:
Tang Chenc5c5c9d2015-09-08 15:02:00 -07001656 * True if they intersect, false if not.
Stephen Boydeab30942012-05-24 00:45:21 -07001657 */
Tang Chenc5c5c9d2015-09-08 15:02:00 -07001658bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
Yinghai Lu95f72d12010-07-12 14:36:09 +10001659{
Tejun Heoeb18f1b2011-12-08 10:22:07 -08001660 memblock_cap_size(base, &size);
Tang Chenc5c5c9d2015-09-08 15:02:00 -07001661 return memblock_overlaps_region(&memblock.reserved, base, size);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001662}
1663
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001664void __init_memblock memblock_trim_memory(phys_addr_t align)
1665{
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001666 phys_addr_t start, end, orig_start, orig_end;
Emil Medve136199f2014-04-07 15:37:52 -07001667 struct memblock_region *r;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001668
Emil Medve136199f2014-04-07 15:37:52 -07001669 for_each_memblock(memory, r) {
1670 orig_start = r->base;
1671 orig_end = r->base + r->size;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001672 start = round_up(orig_start, align);
1673 end = round_down(orig_end, align);
1674
1675 if (start == orig_start && end == orig_end)
1676 continue;
1677
1678 if (start < end) {
Emil Medve136199f2014-04-07 15:37:52 -07001679 r->base = start;
1680 r->size = end - start;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001681 } else {
Emil Medve136199f2014-04-07 15:37:52 -07001682 memblock_remove_region(&memblock.memory,
1683 r - memblock.memory.regions);
1684 r--;
Yinghai Lu6ede1fd2012-10-22 16:35:18 -07001685 }
1686 }
1687}
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001688
Yinghai Lu3661ca62010-09-15 13:05:29 -07001689void __init_memblock memblock_set_current_limit(phys_addr_t limit)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -07001690{
1691 memblock.current_limit = limit;
1692}
1693
Laura Abbottfec51012014-02-27 01:23:43 +01001694phys_addr_t __init_memblock memblock_get_current_limit(void)
1695{
1696 return memblock.current_limit;
1697}
1698
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001699static void __init_memblock memblock_dump(struct memblock_type *type, char *name)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001700{
1701 unsigned long long base, size;
Tang Chen66a20752014-01-21 15:49:20 -08001702 unsigned long flags;
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -08001703 int idx;
1704 struct memblock_region *rgn;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001705
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001706 pr_info(" %s.cnt = 0x%lx\n", name, type->cnt);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001707
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -08001708 for_each_memblock_type(type, rgn) {
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001709 char nid_buf[32] = "";
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001710
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001711 base = rgn->base;
1712 size = rgn->size;
Tang Chen66a20752014-01-21 15:49:20 -08001713 flags = rgn->flags;
Tejun Heo7c0caeb2011-07-14 11:43:42 +02001714#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1715 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
1716 snprintf(nid_buf, sizeof(nid_buf), " on node %d",
1717 memblock_get_region_node(rgn));
1718#endif
Tang Chen66a20752014-01-21 15:49:20 -08001719 pr_info(" %s[%#x]\t[%#016llx-%#016llx], %#llx bytes%s flags: %#lx\n",
Alexander Kuleshov8c9c1702016-01-14 15:20:42 -08001720 name, idx, base, base + size - 1, size, nid_buf, flags);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001721 }
1722}
1723
Michal Hocko292f70c2017-06-02 14:46:49 -07001724extern unsigned long __init_memblock
1725memblock_reserved_memory_within(phys_addr_t start_addr, phys_addr_t end_addr)
1726{
1727 struct memblock_region *rgn;
1728 unsigned long size = 0;
1729 int idx;
1730
1731 for_each_memblock_type((&memblock.reserved), rgn) {
1732 phys_addr_t start, end;
1733
1734 if (rgn->base + rgn->size < start_addr)
1735 continue;
1736 if (rgn->base > end_addr)
1737 continue;
1738
1739 start = rgn->base;
1740 end = start + rgn->size;
1741 size += end - start;
1742 }
1743
1744 return size;
1745}
1746
Tejun Heo4ff7b822011-12-08 10:22:06 -08001747void __init_memblock __memblock_dump_all(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001748{
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001749 pr_info("MEMBLOCK configuration:\n");
Tejun Heo1440c4e2011-12-08 10:22:08 -08001750 pr_info(" memory size = %#llx reserved size = %#llx\n",
1751 (unsigned long long)memblock.memory.total_size,
1752 (unsigned long long)memblock.reserved.total_size);
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001753
1754 memblock_dump(&memblock.memory, "memory");
1755 memblock_dump(&memblock.reserved, "reserved");
1756}
1757
Tejun Heo1aadc052011-12-08 10:22:08 -08001758void __init memblock_allow_resize(void)
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001759{
Benjamin Herrenschmidt142b45a2010-07-06 15:39:13 -07001760 memblock_can_resize = 1;
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001761}
1762
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301763static unsigned long __init_memblock
1764memblock_resize_late(int begin, unsigned long flags)
Shiraz Hashime1525702016-02-04 14:53:33 +05301765{
1766 static int memblock_can_resize_old;
1767
1768 if (begin) {
1769 preempt_disable();
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301770 local_irq_save(flags);
Shiraz Hashime1525702016-02-04 14:53:33 +05301771 memblock_can_resize_old = memblock_can_resize;
1772 memblock_can_resize = 0;
1773 raw_write_seqcount_begin(&memblock_seq);
1774 } else {
1775 raw_write_seqcount_end(&memblock_seq);
1776 memblock_can_resize = memblock_can_resize_old;
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301777 local_irq_restore(flags);
Shiraz Hashime1525702016-02-04 14:53:33 +05301778 preempt_enable();
1779 }
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301780
1781 return flags;
Shiraz Hashime1525702016-02-04 14:53:33 +05301782}
1783
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301784unsigned long __init_memblock memblock_region_resize_late_begin(void)
Shiraz Hashime1525702016-02-04 14:53:33 +05301785{
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301786 return memblock_resize_late(1, 0);
Shiraz Hashime1525702016-02-04 14:53:33 +05301787}
1788
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301789void __init_memblock memblock_region_resize_late_end(unsigned long flags)
Shiraz Hashime1525702016-02-04 14:53:33 +05301790{
Shiraz Hashim3eaf6e62016-04-16 11:43:02 +05301791 memblock_resize_late(0, flags);
Shiraz Hashime1525702016-02-04 14:53:33 +05301792}
1793
Benjamin Herrenschmidt6ed311b2010-07-12 14:36:48 +10001794static int __init early_memblock(char *p)
1795{
1796 if (p && strstr(p, "debug"))
1797 memblock_debug = 1;
1798 return 0;
1799}
1800early_param("memblock", early_memblock);
1801
Tejun Heoc378ddd2011-07-14 11:46:03 +02001802#if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001803
1804static int memblock_debug_show(struct seq_file *m, void *private)
1805{
1806 struct memblock_type *type = m->private;
1807 struct memblock_region *reg;
1808 int i;
1809
1810 for (i = 0; i < type->cnt; i++) {
1811 reg = &type->regions[i];
1812 seq_printf(m, "%4d: ", i);
1813 if (sizeof(phys_addr_t) == 4)
1814 seq_printf(m, "0x%08lx..0x%08lx\n",
1815 (unsigned long)reg->base,
1816 (unsigned long)(reg->base + reg->size - 1));
1817 else
1818 seq_printf(m, "0x%016llx..0x%016llx\n",
1819 (unsigned long long)reg->base,
1820 (unsigned long long)(reg->base + reg->size - 1));
1821
1822 }
1823 return 0;
1824}
1825
1826static int memblock_debug_open(struct inode *inode, struct file *file)
1827{
1828 return single_open(file, memblock_debug_show, inode->i_private);
1829}
1830
1831static const struct file_operations memblock_debug_fops = {
1832 .open = memblock_debug_open,
1833 .read = seq_read,
1834 .llseek = seq_lseek,
1835 .release = single_release,
1836};
1837
1838static int __init memblock_init_debugfs(void)
1839{
1840 struct dentry *root = debugfs_create_dir("memblock", NULL);
1841 if (!root)
1842 return -ENXIO;
1843 debugfs_create_file("memory", S_IRUGO, root, &memblock.memory, &memblock_debug_fops);
1844 debugfs_create_file("reserved", S_IRUGO, root, &memblock.reserved, &memblock_debug_fops);
Philipp Hachtmann70210ed2014-01-29 18:16:01 +01001845#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
1846 debugfs_create_file("physmem", S_IRUGO, root, &memblock.physmem, &memblock_debug_fops);
1847#endif
Benjamin Herrenschmidt6d03b882010-07-06 15:39:19 -07001848
1849 return 0;
1850}
1851__initcall(memblock_init_debugfs);
1852
1853#endif /* CONFIG_DEBUG_FS */