memblock: replace free_bootmem_late with memblock_free_late
[linux-2.6-block.git] / mm / memblock.c
1 /*
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>
14 #include <linux/slab.h>
15 #include <linux/init.h>
16 #include <linux/bitops.h>
17 #include <linux/poison.h>
18 #include <linux/pfn.h>
19 #include <linux/debugfs.h>
20 #include <linux/kmemleak.h>
21 #include <linux/seq_file.h>
22 #include <linux/memblock.h>
23 #include <linux/bootmem.h>
24
25 #include <asm/sections.h>
26 #include <linux/io.h>
27
28 #include "internal.h"
29
30 /**
31  * DOC: memblock overview
32  *
33  * Memblock is a method of managing memory regions during the early
34  * boot period when the usual kernel memory allocators are not up and
35  * running.
36  *
37  * Memblock views the system memory as collections of contiguous
38  * regions. There are several types of these collections:
39  *
40  * * ``memory`` - describes the physical memory available to the
41  *   kernel; this may differ from the actual physical memory installed
42  *   in the system, for instance when the memory is restricted with
43  *   ``mem=`` command line parameter
44  * * ``reserved`` - describes the regions that were allocated
45  * * ``physmap`` - describes the actual physical memory regardless of
46  *   the possible restrictions; the ``physmap`` type is only available
47  *   on some architectures.
48  *
49  * Each region is represented by :c:type:`struct memblock_region` that
50  * defines the region extents, its attributes and NUMA node id on NUMA
51  * systems. Every memory type is described by the :c:type:`struct
52  * memblock_type` which contains an array of memory regions along with
53  * the allocator metadata. The memory types are nicely wrapped with
54  * :c:type:`struct memblock`. This structure is statically initialzed
55  * at build time. The region arrays for the "memory" and "reserved"
56  * types are initially sized to %INIT_MEMBLOCK_REGIONS and for the
57  * "physmap" type to %INIT_PHYSMEM_REGIONS.
58  * The :c:func:`memblock_allow_resize` enables automatic resizing of
59  * the region arrays during addition of new regions. This feature
60  * should be used with care so that memory allocated for the region
61  * array will not overlap with areas that should be reserved, for
62  * example initrd.
63  *
64  * The early architecture setup should tell memblock what the physical
65  * memory layout is by using :c:func:`memblock_add` or
66  * :c:func:`memblock_add_node` functions. The first function does not
67  * assign the region to a NUMA node and it is appropriate for UMA
68  * systems. Yet, it is possible to use it on NUMA systems as well and
69  * assign the region to a NUMA node later in the setup process using
70  * :c:func:`memblock_set_node`. The :c:func:`memblock_add_node`
71  * performs such an assignment directly.
72  *
73  * Once memblock is setup the memory can be allocated using either
74  * memblock or bootmem APIs.
75  *
76  * As the system boot progresses, the architecture specific
77  * :c:func:`mem_init` function frees all the memory to the buddy page
78  * allocator.
79  *
80  * If an architecure enables %CONFIG_ARCH_DISCARD_MEMBLOCK, the
81  * memblock data structures will be discarded after the system
82  * initialization compltes.
83  */
84
85 static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
86 static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
87 #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
88 static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS] __initdata_memblock;
89 #endif
90
91 struct memblock memblock __initdata_memblock = {
92         .memory.regions         = memblock_memory_init_regions,
93         .memory.cnt             = 1,    /* empty dummy entry */
94         .memory.max             = INIT_MEMBLOCK_REGIONS,
95         .memory.name            = "memory",
96
97         .reserved.regions       = memblock_reserved_init_regions,
98         .reserved.cnt           = 1,    /* empty dummy entry */
99         .reserved.max           = INIT_MEMBLOCK_REGIONS,
100         .reserved.name          = "reserved",
101
102 #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
103         .physmem.regions        = memblock_physmem_init_regions,
104         .physmem.cnt            = 1,    /* empty dummy entry */
105         .physmem.max            = INIT_PHYSMEM_REGIONS,
106         .physmem.name           = "physmem",
107 #endif
108
109         .bottom_up              = false,
110         .current_limit          = MEMBLOCK_ALLOC_ANYWHERE,
111 };
112
113 int memblock_debug __initdata_memblock;
114 static bool system_has_some_mirror __initdata_memblock = false;
115 static int memblock_can_resize __initdata_memblock;
116 static int memblock_memory_in_slab __initdata_memblock = 0;
117 static int memblock_reserved_in_slab __initdata_memblock = 0;
118
119 enum memblock_flags __init_memblock choose_memblock_flags(void)
120 {
121         return system_has_some_mirror ? MEMBLOCK_MIRROR : MEMBLOCK_NONE;
122 }
123
124 /* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
125 static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
126 {
127         return *size = min(*size, PHYS_ADDR_MAX - base);
128 }
129
130 /*
131  * Address comparison utilities
132  */
133 static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
134                                        phys_addr_t base2, phys_addr_t size2)
135 {
136         return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
137 }
138
139 bool __init_memblock memblock_overlaps_region(struct memblock_type *type,
140                                         phys_addr_t base, phys_addr_t size)
141 {
142         unsigned long i;
143
144         for (i = 0; i < type->cnt; i++)
145                 if (memblock_addrs_overlap(base, size, type->regions[i].base,
146                                            type->regions[i].size))
147                         break;
148         return i < type->cnt;
149 }
150
151 /**
152  * __memblock_find_range_bottom_up - find free area utility in bottom-up
153  * @start: start of candidate range
154  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
155  *       %MEMBLOCK_ALLOC_ACCESSIBLE
156  * @size: size of free area to find
157  * @align: alignment of free area to find
158  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
159  * @flags: pick from blocks based on memory attributes
160  *
161  * Utility called from memblock_find_in_range_node(), find free area bottom-up.
162  *
163  * Return:
164  * Found address on success, 0 on failure.
165  */
166 static phys_addr_t __init_memblock
167 __memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
168                                 phys_addr_t size, phys_addr_t align, int nid,
169                                 enum memblock_flags flags)
170 {
171         phys_addr_t this_start, this_end, cand;
172         u64 i;
173
174         for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) {
175                 this_start = clamp(this_start, start, end);
176                 this_end = clamp(this_end, start, end);
177
178                 cand = round_up(this_start, align);
179                 if (cand < this_end && this_end - cand >= size)
180                         return cand;
181         }
182
183         return 0;
184 }
185
186 /**
187  * __memblock_find_range_top_down - find free area utility, in top-down
188  * @start: start of candidate range
189  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
190  *       %MEMBLOCK_ALLOC_ACCESSIBLE
191  * @size: size of free area to find
192  * @align: alignment of free area to find
193  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
194  * @flags: pick from blocks based on memory attributes
195  *
196  * Utility called from memblock_find_in_range_node(), find free area top-down.
197  *
198  * Return:
199  * Found address on success, 0 on failure.
200  */
201 static phys_addr_t __init_memblock
202 __memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
203                                phys_addr_t size, phys_addr_t align, int nid,
204                                enum memblock_flags flags)
205 {
206         phys_addr_t this_start, this_end, cand;
207         u64 i;
208
209         for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end,
210                                         NULL) {
211                 this_start = clamp(this_start, start, end);
212                 this_end = clamp(this_end, start, end);
213
214                 if (this_end < size)
215                         continue;
216
217                 cand = round_down(this_end - size, align);
218                 if (cand >= this_start)
219                         return cand;
220         }
221
222         return 0;
223 }
224
225 /**
226  * memblock_find_in_range_node - find free area in given range and node
227  * @size: size of free area to find
228  * @align: alignment of free area to find
229  * @start: start of candidate range
230  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
231  *       %MEMBLOCK_ALLOC_ACCESSIBLE
232  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
233  * @flags: pick from blocks based on memory attributes
234  *
235  * Find @size free area aligned to @align in the specified range and node.
236  *
237  * When allocation direction is bottom-up, the @start should be greater
238  * than the end of the kernel image. Otherwise, it will be trimmed. The
239  * reason is that we want the bottom-up allocation just near the kernel
240  * image so it is highly likely that the allocated memory and the kernel
241  * will reside in the same node.
242  *
243  * If bottom-up allocation failed, will try to allocate memory top-down.
244  *
245  * Return:
246  * Found address on success, 0 on failure.
247  */
248 phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size,
249                                         phys_addr_t align, phys_addr_t start,
250                                         phys_addr_t end, int nid,
251                                         enum memblock_flags flags)
252 {
253         phys_addr_t kernel_end, ret;
254
255         /* pump up @end */
256         if (end == MEMBLOCK_ALLOC_ACCESSIBLE)
257                 end = memblock.current_limit;
258
259         /* avoid allocating the first page */
260         start = max_t(phys_addr_t, start, PAGE_SIZE);
261         end = max(start, end);
262         kernel_end = __pa_symbol(_end);
263
264         /*
265          * try bottom-up allocation only when bottom-up mode
266          * is set and @end is above the kernel image.
267          */
268         if (memblock_bottom_up() && end > kernel_end) {
269                 phys_addr_t bottom_up_start;
270
271                 /* make sure we will allocate above the kernel */
272                 bottom_up_start = max(start, kernel_end);
273
274                 /* ok, try bottom-up allocation first */
275                 ret = __memblock_find_range_bottom_up(bottom_up_start, end,
276                                                       size, align, nid, flags);
277                 if (ret)
278                         return ret;
279
280                 /*
281                  * we always limit bottom-up allocation above the kernel,
282                  * but top-down allocation doesn't have the limit, so
283                  * retrying top-down allocation may succeed when bottom-up
284                  * allocation failed.
285                  *
286                  * bottom-up allocation is expected to be fail very rarely,
287                  * so we use WARN_ONCE() here to see the stack trace if
288                  * fail happens.
289                  */
290                 WARN_ONCE(IS_ENABLED(CONFIG_MEMORY_HOTREMOVE),
291                           "memblock: bottom-up allocation failed, memory hotremove may be affected\n");
292         }
293
294         return __memblock_find_range_top_down(start, end, size, align, nid,
295                                               flags);
296 }
297
298 /**
299  * memblock_find_in_range - find free area in given range
300  * @start: start of candidate range
301  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
302  *       %MEMBLOCK_ALLOC_ACCESSIBLE
303  * @size: size of free area to find
304  * @align: alignment of free area to find
305  *
306  * Find @size free area aligned to @align in the specified range.
307  *
308  * Return:
309  * Found address on success, 0 on failure.
310  */
311 phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
312                                         phys_addr_t end, phys_addr_t size,
313                                         phys_addr_t align)
314 {
315         phys_addr_t ret;
316         enum memblock_flags flags = choose_memblock_flags();
317
318 again:
319         ret = memblock_find_in_range_node(size, align, start, end,
320                                             NUMA_NO_NODE, flags);
321
322         if (!ret && (flags & MEMBLOCK_MIRROR)) {
323                 pr_warn("Could not allocate %pap bytes of mirrored memory\n",
324                         &size);
325                 flags &= ~MEMBLOCK_MIRROR;
326                 goto again;
327         }
328
329         return ret;
330 }
331
332 static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
333 {
334         type->total_size -= type->regions[r].size;
335         memmove(&type->regions[r], &type->regions[r + 1],
336                 (type->cnt - (r + 1)) * sizeof(type->regions[r]));
337         type->cnt--;
338
339         /* Special case for empty arrays */
340         if (type->cnt == 0) {
341                 WARN_ON(type->total_size != 0);
342                 type->cnt = 1;
343                 type->regions[0].base = 0;
344                 type->regions[0].size = 0;
345                 type->regions[0].flags = 0;
346                 memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
347         }
348 }
349
350 #ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
351 /**
352  * memblock_discard - discard memory and reserved arrays if they were allocated
353  */
354 void __init memblock_discard(void)
355 {
356         phys_addr_t addr, size;
357
358         if (memblock.reserved.regions != memblock_reserved_init_regions) {
359                 addr = __pa(memblock.reserved.regions);
360                 size = PAGE_ALIGN(sizeof(struct memblock_region) *
361                                   memblock.reserved.max);
362                 __memblock_free_late(addr, size);
363         }
364
365         if (memblock.memory.regions != memblock_memory_init_regions) {
366                 addr = __pa(memblock.memory.regions);
367                 size = PAGE_ALIGN(sizeof(struct memblock_region) *
368                                   memblock.memory.max);
369                 __memblock_free_late(addr, size);
370         }
371 }
372 #endif
373
374 /**
375  * memblock_double_array - double the size of the memblock regions array
376  * @type: memblock type of the regions array being doubled
377  * @new_area_start: starting address of memory range to avoid overlap with
378  * @new_area_size: size of memory range to avoid overlap with
379  *
380  * Double the size of the @type regions array. If memblock is being used to
381  * allocate memory for a new reserved regions array and there is a previously
382  * allocated memory range [@new_area_start, @new_area_start + @new_area_size]
383  * waiting to be reserved, ensure the memory used by the new array does
384  * not overlap.
385  *
386  * Return:
387  * 0 on success, -1 on failure.
388  */
389 static int __init_memblock memblock_double_array(struct memblock_type *type,
390                                                 phys_addr_t new_area_start,
391                                                 phys_addr_t new_area_size)
392 {
393         struct memblock_region *new_array, *old_array;
394         phys_addr_t old_alloc_size, new_alloc_size;
395         phys_addr_t old_size, new_size, addr, new_end;
396         int use_slab = slab_is_available();
397         int *in_slab;
398
399         /* We don't allow resizing until we know about the reserved regions
400          * of memory that aren't suitable for allocation
401          */
402         if (!memblock_can_resize)
403                 return -1;
404
405         /* Calculate new doubled size */
406         old_size = type->max * sizeof(struct memblock_region);
407         new_size = old_size << 1;
408         /*
409          * We need to allocated new one align to PAGE_SIZE,
410          *   so we can free them completely later.
411          */
412         old_alloc_size = PAGE_ALIGN(old_size);
413         new_alloc_size = PAGE_ALIGN(new_size);
414
415         /* Retrieve the slab flag */
416         if (type == &memblock.memory)
417                 in_slab = &memblock_memory_in_slab;
418         else
419                 in_slab = &memblock_reserved_in_slab;
420
421         /* Try to find some space for it.
422          *
423          * WARNING: We assume that either slab_is_available() and we use it or
424          * we use MEMBLOCK for allocations. That means that this is unsafe to
425          * use when bootmem is currently active (unless bootmem itself is
426          * implemented on top of MEMBLOCK which isn't the case yet)
427          *
428          * This should however not be an issue for now, as we currently only
429          * call into MEMBLOCK while it's still active, or much later when slab
430          * is active for memory hotplug operations
431          */
432         if (use_slab) {
433                 new_array = kmalloc(new_size, GFP_KERNEL);
434                 addr = new_array ? __pa(new_array) : 0;
435         } else {
436                 /* only exclude range when trying to double reserved.regions */
437                 if (type != &memblock.reserved)
438                         new_area_start = new_area_size = 0;
439
440                 addr = memblock_find_in_range(new_area_start + new_area_size,
441                                                 memblock.current_limit,
442                                                 new_alloc_size, PAGE_SIZE);
443                 if (!addr && new_area_size)
444                         addr = memblock_find_in_range(0,
445                                 min(new_area_start, memblock.current_limit),
446                                 new_alloc_size, PAGE_SIZE);
447
448                 new_array = addr ? __va(addr) : NULL;
449         }
450         if (!addr) {
451                 pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
452                        type->name, type->max, type->max * 2);
453                 return -1;
454         }
455
456         new_end = addr + new_size - 1;
457         memblock_dbg("memblock: %s is doubled to %ld at [%pa-%pa]",
458                         type->name, type->max * 2, &addr, &new_end);
459
460         /*
461          * Found space, we now need to move the array over before we add the
462          * reserved region since it may be our reserved array itself that is
463          * full.
464          */
465         memcpy(new_array, type->regions, old_size);
466         memset(new_array + type->max, 0, old_size);
467         old_array = type->regions;
468         type->regions = new_array;
469         type->max <<= 1;
470
471         /* Free old array. We needn't free it if the array is the static one */
472         if (*in_slab)
473                 kfree(old_array);
474         else if (old_array != memblock_memory_init_regions &&
475                  old_array != memblock_reserved_init_regions)
476                 memblock_free(__pa(old_array), old_alloc_size);
477
478         /*
479          * Reserve the new array if that comes from the memblock.  Otherwise, we
480          * needn't do it
481          */
482         if (!use_slab)
483                 BUG_ON(memblock_reserve(addr, new_alloc_size));
484
485         /* Update slab flag */
486         *in_slab = use_slab;
487
488         return 0;
489 }
490
491 /**
492  * memblock_merge_regions - merge neighboring compatible regions
493  * @type: memblock type to scan
494  *
495  * Scan @type and merge neighboring compatible regions.
496  */
497 static void __init_memblock memblock_merge_regions(struct memblock_type *type)
498 {
499         int i = 0;
500
501         /* cnt never goes below 1 */
502         while (i < type->cnt - 1) {
503                 struct memblock_region *this = &type->regions[i];
504                 struct memblock_region *next = &type->regions[i + 1];
505
506                 if (this->base + this->size != next->base ||
507                     memblock_get_region_node(this) !=
508                     memblock_get_region_node(next) ||
509                     this->flags != next->flags) {
510                         BUG_ON(this->base + this->size > next->base);
511                         i++;
512                         continue;
513                 }
514
515                 this->size += next->size;
516                 /* move forward from next + 1, index of which is i + 2 */
517                 memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
518                 type->cnt--;
519         }
520 }
521
522 /**
523  * memblock_insert_region - insert new memblock region
524  * @type:       memblock type to insert into
525  * @idx:        index for the insertion point
526  * @base:       base address of the new region
527  * @size:       size of the new region
528  * @nid:        node id of the new region
529  * @flags:      flags of the new region
530  *
531  * Insert new memblock region [@base, @base + @size) into @type at @idx.
532  * @type must already have extra room to accommodate the new region.
533  */
534 static void __init_memblock memblock_insert_region(struct memblock_type *type,
535                                                    int idx, phys_addr_t base,
536                                                    phys_addr_t size,
537                                                    int nid,
538                                                    enum memblock_flags flags)
539 {
540         struct memblock_region *rgn = &type->regions[idx];
541
542         BUG_ON(type->cnt >= type->max);
543         memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
544         rgn->base = base;
545         rgn->size = size;
546         rgn->flags = flags;
547         memblock_set_region_node(rgn, nid);
548         type->cnt++;
549         type->total_size += size;
550 }
551
552 /**
553  * memblock_add_range - add new memblock region
554  * @type: memblock type to add new region into
555  * @base: base address of the new region
556  * @size: size of the new region
557  * @nid: nid of the new region
558  * @flags: flags of the new region
559  *
560  * Add new memblock region [@base, @base + @size) into @type.  The new region
561  * is allowed to overlap with existing ones - overlaps don't affect already
562  * existing regions.  @type is guaranteed to be minimal (all neighbouring
563  * compatible regions are merged) after the addition.
564  *
565  * Return:
566  * 0 on success, -errno on failure.
567  */
568 int __init_memblock memblock_add_range(struct memblock_type *type,
569                                 phys_addr_t base, phys_addr_t size,
570                                 int nid, enum memblock_flags flags)
571 {
572         bool insert = false;
573         phys_addr_t obase = base;
574         phys_addr_t end = base + memblock_cap_size(base, &size);
575         int idx, nr_new;
576         struct memblock_region *rgn;
577
578         if (!size)
579                 return 0;
580
581         /* special case for empty array */
582         if (type->regions[0].size == 0) {
583                 WARN_ON(type->cnt != 1 || type->total_size);
584                 type->regions[0].base = base;
585                 type->regions[0].size = size;
586                 type->regions[0].flags = flags;
587                 memblock_set_region_node(&type->regions[0], nid);
588                 type->total_size = size;
589                 return 0;
590         }
591 repeat:
592         /*
593          * The following is executed twice.  Once with %false @insert and
594          * then with %true.  The first counts the number of regions needed
595          * to accommodate the new area.  The second actually inserts them.
596          */
597         base = obase;
598         nr_new = 0;
599
600         for_each_memblock_type(idx, type, rgn) {
601                 phys_addr_t rbase = rgn->base;
602                 phys_addr_t rend = rbase + rgn->size;
603
604                 if (rbase >= end)
605                         break;
606                 if (rend <= base)
607                         continue;
608                 /*
609                  * @rgn overlaps.  If it separates the lower part of new
610                  * area, insert that portion.
611                  */
612                 if (rbase > base) {
613 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
614                         WARN_ON(nid != memblock_get_region_node(rgn));
615 #endif
616                         WARN_ON(flags != rgn->flags);
617                         nr_new++;
618                         if (insert)
619                                 memblock_insert_region(type, idx++, base,
620                                                        rbase - base, nid,
621                                                        flags);
622                 }
623                 /* area below @rend is dealt with, forget about it */
624                 base = min(rend, end);
625         }
626
627         /* insert the remaining portion */
628         if (base < end) {
629                 nr_new++;
630                 if (insert)
631                         memblock_insert_region(type, idx, base, end - base,
632                                                nid, flags);
633         }
634
635         if (!nr_new)
636                 return 0;
637
638         /*
639          * If this was the first round, resize array and repeat for actual
640          * insertions; otherwise, merge and return.
641          */
642         if (!insert) {
643                 while (type->cnt + nr_new > type->max)
644                         if (memblock_double_array(type, obase, size) < 0)
645                                 return -ENOMEM;
646                 insert = true;
647                 goto repeat;
648         } else {
649                 memblock_merge_regions(type);
650                 return 0;
651         }
652 }
653
654 /**
655  * memblock_add_node - add new memblock region within a NUMA node
656  * @base: base address of the new region
657  * @size: size of the new region
658  * @nid: nid of the new region
659  *
660  * Add new memblock region [@base, @base + @size) to the "memory"
661  * type. See memblock_add_range() description for mode details
662  *
663  * Return:
664  * 0 on success, -errno on failure.
665  */
666 int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
667                                        int nid)
668 {
669         return memblock_add_range(&memblock.memory, base, size, nid, 0);
670 }
671
672 /**
673  * memblock_add - add new memblock region
674  * @base: base address of the new region
675  * @size: size of the new region
676  *
677  * Add new memblock region [@base, @base + @size) to the "memory"
678  * type. See memblock_add_range() description for mode details
679  *
680  * Return:
681  * 0 on success, -errno on failure.
682  */
683 int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
684 {
685         phys_addr_t end = base + size - 1;
686
687         memblock_dbg("memblock_add: [%pa-%pa] %pF\n",
688                      &base, &end, (void *)_RET_IP_);
689
690         return memblock_add_range(&memblock.memory, base, size, MAX_NUMNODES, 0);
691 }
692
693 /**
694  * memblock_isolate_range - isolate given range into disjoint memblocks
695  * @type: memblock type to isolate range for
696  * @base: base of range to isolate
697  * @size: size of range to isolate
698  * @start_rgn: out parameter for the start of isolated region
699  * @end_rgn: out parameter for the end of isolated region
700  *
701  * Walk @type and ensure that regions don't cross the boundaries defined by
702  * [@base, @base + @size).  Crossing regions are split at the boundaries,
703  * which may create at most two more regions.  The index of the first
704  * region inside the range is returned in *@start_rgn and end in *@end_rgn.
705  *
706  * Return:
707  * 0 on success, -errno on failure.
708  */
709 static int __init_memblock memblock_isolate_range(struct memblock_type *type,
710                                         phys_addr_t base, phys_addr_t size,
711                                         int *start_rgn, int *end_rgn)
712 {
713         phys_addr_t end = base + memblock_cap_size(base, &size);
714         int idx;
715         struct memblock_region *rgn;
716
717         *start_rgn = *end_rgn = 0;
718
719         if (!size)
720                 return 0;
721
722         /* we'll create at most two more regions */
723         while (type->cnt + 2 > type->max)
724                 if (memblock_double_array(type, base, size) < 0)
725                         return -ENOMEM;
726
727         for_each_memblock_type(idx, type, rgn) {
728                 phys_addr_t rbase = rgn->base;
729                 phys_addr_t rend = rbase + rgn->size;
730
731                 if (rbase >= end)
732                         break;
733                 if (rend <= base)
734                         continue;
735
736                 if (rbase < base) {
737                         /*
738                          * @rgn intersects from below.  Split and continue
739                          * to process the next region - the new top half.
740                          */
741                         rgn->base = base;
742                         rgn->size -= base - rbase;
743                         type->total_size -= base - rbase;
744                         memblock_insert_region(type, idx, rbase, base - rbase,
745                                                memblock_get_region_node(rgn),
746                                                rgn->flags);
747                 } else if (rend > end) {
748                         /*
749                          * @rgn intersects from above.  Split and redo the
750                          * current region - the new bottom half.
751                          */
752                         rgn->base = end;
753                         rgn->size -= end - rbase;
754                         type->total_size -= end - rbase;
755                         memblock_insert_region(type, idx--, rbase, end - rbase,
756                                                memblock_get_region_node(rgn),
757                                                rgn->flags);
758                 } else {
759                         /* @rgn is fully contained, record it */
760                         if (!*end_rgn)
761                                 *start_rgn = idx;
762                         *end_rgn = idx + 1;
763                 }
764         }
765
766         return 0;
767 }
768
769 static int __init_memblock memblock_remove_range(struct memblock_type *type,
770                                           phys_addr_t base, phys_addr_t size)
771 {
772         int start_rgn, end_rgn;
773         int i, ret;
774
775         ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
776         if (ret)
777                 return ret;
778
779         for (i = end_rgn - 1; i >= start_rgn; i--)
780                 memblock_remove_region(type, i);
781         return 0;
782 }
783
784 int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
785 {
786         phys_addr_t end = base + size - 1;
787
788         memblock_dbg("memblock_remove: [%pa-%pa] %pS\n",
789                      &base, &end, (void *)_RET_IP_);
790
791         return memblock_remove_range(&memblock.memory, base, size);
792 }
793
794
795 int __init_memblock memblock_free(phys_addr_t base, phys_addr_t size)
796 {
797         phys_addr_t end = base + size - 1;
798
799         memblock_dbg("   memblock_free: [%pa-%pa] %pF\n",
800                      &base, &end, (void *)_RET_IP_);
801
802         kmemleak_free_part_phys(base, size);
803         return memblock_remove_range(&memblock.reserved, base, size);
804 }
805
806 int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
807 {
808         phys_addr_t end = base + size - 1;
809
810         memblock_dbg("memblock_reserve: [%pa-%pa] %pF\n",
811                      &base, &end, (void *)_RET_IP_);
812
813         return memblock_add_range(&memblock.reserved, base, size, MAX_NUMNODES, 0);
814 }
815
816 /**
817  * memblock_setclr_flag - set or clear flag for a memory region
818  * @base: base address of the region
819  * @size: size of the region
820  * @set: set or clear the flag
821  * @flag: the flag to udpate
822  *
823  * This function isolates region [@base, @base + @size), and sets/clears flag
824  *
825  * Return: 0 on success, -errno on failure.
826  */
827 static int __init_memblock memblock_setclr_flag(phys_addr_t base,
828                                 phys_addr_t size, int set, int flag)
829 {
830         struct memblock_type *type = &memblock.memory;
831         int i, ret, start_rgn, end_rgn;
832
833         ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
834         if (ret)
835                 return ret;
836
837         for (i = start_rgn; i < end_rgn; i++)
838                 if (set)
839                         memblock_set_region_flags(&type->regions[i], flag);
840                 else
841                         memblock_clear_region_flags(&type->regions[i], flag);
842
843         memblock_merge_regions(type);
844         return 0;
845 }
846
847 /**
848  * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG.
849  * @base: the base phys addr of the region
850  * @size: the size of the region
851  *
852  * Return: 0 on success, -errno on failure.
853  */
854 int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size)
855 {
856         return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG);
857 }
858
859 /**
860  * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region.
861  * @base: the base phys addr of the region
862  * @size: the size of the region
863  *
864  * Return: 0 on success, -errno on failure.
865  */
866 int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size)
867 {
868         return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG);
869 }
870
871 /**
872  * memblock_mark_mirror - Mark mirrored memory with flag MEMBLOCK_MIRROR.
873  * @base: the base phys addr of the region
874  * @size: the size of the region
875  *
876  * Return: 0 on success, -errno on failure.
877  */
878 int __init_memblock memblock_mark_mirror(phys_addr_t base, phys_addr_t size)
879 {
880         system_has_some_mirror = true;
881
882         return memblock_setclr_flag(base, size, 1, MEMBLOCK_MIRROR);
883 }
884
885 /**
886  * memblock_mark_nomap - Mark a memory region with flag MEMBLOCK_NOMAP.
887  * @base: the base phys addr of the region
888  * @size: the size of the region
889  *
890  * Return: 0 on success, -errno on failure.
891  */
892 int __init_memblock memblock_mark_nomap(phys_addr_t base, phys_addr_t size)
893 {
894         return memblock_setclr_flag(base, size, 1, MEMBLOCK_NOMAP);
895 }
896
897 /**
898  * memblock_clear_nomap - Clear flag MEMBLOCK_NOMAP for a specified region.
899  * @base: the base phys addr of the region
900  * @size: the size of the region
901  *
902  * Return: 0 on success, -errno on failure.
903  */
904 int __init_memblock memblock_clear_nomap(phys_addr_t base, phys_addr_t size)
905 {
906         return memblock_setclr_flag(base, size, 0, MEMBLOCK_NOMAP);
907 }
908
909 /**
910  * __next_reserved_mem_region - next function for for_each_reserved_region()
911  * @idx: pointer to u64 loop variable
912  * @out_start: ptr to phys_addr_t for start address of the region, can be %NULL
913  * @out_end: ptr to phys_addr_t for end address of the region, can be %NULL
914  *
915  * Iterate over all reserved memory regions.
916  */
917 void __init_memblock __next_reserved_mem_region(u64 *idx,
918                                            phys_addr_t *out_start,
919                                            phys_addr_t *out_end)
920 {
921         struct memblock_type *type = &memblock.reserved;
922
923         if (*idx < type->cnt) {
924                 struct memblock_region *r = &type->regions[*idx];
925                 phys_addr_t base = r->base;
926                 phys_addr_t size = r->size;
927
928                 if (out_start)
929                         *out_start = base;
930                 if (out_end)
931                         *out_end = base + size - 1;
932
933                 *idx += 1;
934                 return;
935         }
936
937         /* signal end of iteration */
938         *idx = ULLONG_MAX;
939 }
940
941 /**
942  * __next__mem_range - next function for for_each_free_mem_range() etc.
943  * @idx: pointer to u64 loop variable
944  * @nid: node selector, %NUMA_NO_NODE for all nodes
945  * @flags: pick from blocks based on memory attributes
946  * @type_a: pointer to memblock_type from where the range is taken
947  * @type_b: pointer to memblock_type which excludes memory from being taken
948  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
949  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
950  * @out_nid: ptr to int for nid of the range, can be %NULL
951  *
952  * Find the first area from *@idx which matches @nid, fill the out
953  * parameters, and update *@idx for the next iteration.  The lower 32bit of
954  * *@idx contains index into type_a and the upper 32bit indexes the
955  * areas before each region in type_b.  For example, if type_b regions
956  * look like the following,
957  *
958  *      0:[0-16), 1:[32-48), 2:[128-130)
959  *
960  * The upper 32bit indexes the following regions.
961  *
962  *      0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
963  *
964  * As both region arrays are sorted, the function advances the two indices
965  * in lockstep and returns each intersection.
966  */
967 void __init_memblock __next_mem_range(u64 *idx, int nid,
968                                       enum memblock_flags flags,
969                                       struct memblock_type *type_a,
970                                       struct memblock_type *type_b,
971                                       phys_addr_t *out_start,
972                                       phys_addr_t *out_end, int *out_nid)
973 {
974         int idx_a = *idx & 0xffffffff;
975         int idx_b = *idx >> 32;
976
977         if (WARN_ONCE(nid == MAX_NUMNODES,
978         "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
979                 nid = NUMA_NO_NODE;
980
981         for (; idx_a < type_a->cnt; idx_a++) {
982                 struct memblock_region *m = &type_a->regions[idx_a];
983
984                 phys_addr_t m_start = m->base;
985                 phys_addr_t m_end = m->base + m->size;
986                 int         m_nid = memblock_get_region_node(m);
987
988                 /* only memory regions are associated with nodes, check it */
989                 if (nid != NUMA_NO_NODE && nid != m_nid)
990                         continue;
991
992                 /* skip hotpluggable memory regions if needed */
993                 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
994                         continue;
995
996                 /* if we want mirror memory skip non-mirror memory regions */
997                 if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
998                         continue;
999
1000                 /* skip nomap memory unless we were asked for it explicitly */
1001                 if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
1002                         continue;
1003
1004                 if (!type_b) {
1005                         if (out_start)
1006                                 *out_start = m_start;
1007                         if (out_end)
1008                                 *out_end = m_end;
1009                         if (out_nid)
1010                                 *out_nid = m_nid;
1011                         idx_a++;
1012                         *idx = (u32)idx_a | (u64)idx_b << 32;
1013                         return;
1014                 }
1015
1016                 /* scan areas before each reservation */
1017                 for (; idx_b < type_b->cnt + 1; idx_b++) {
1018                         struct memblock_region *r;
1019                         phys_addr_t r_start;
1020                         phys_addr_t r_end;
1021
1022                         r = &type_b->regions[idx_b];
1023                         r_start = idx_b ? r[-1].base + r[-1].size : 0;
1024                         r_end = idx_b < type_b->cnt ?
1025                                 r->base : PHYS_ADDR_MAX;
1026
1027                         /*
1028                          * if idx_b advanced past idx_a,
1029                          * break out to advance idx_a
1030                          */
1031                         if (r_start >= m_end)
1032                                 break;
1033                         /* if the two regions intersect, we're done */
1034                         if (m_start < r_end) {
1035                                 if (out_start)
1036                                         *out_start =
1037                                                 max(m_start, r_start);
1038                                 if (out_end)
1039                                         *out_end = min(m_end, r_end);
1040                                 if (out_nid)
1041                                         *out_nid = m_nid;
1042                                 /*
1043                                  * The region which ends first is
1044                                  * advanced for the next iteration.
1045                                  */
1046                                 if (m_end <= r_end)
1047                                         idx_a++;
1048                                 else
1049                                         idx_b++;
1050                                 *idx = (u32)idx_a | (u64)idx_b << 32;
1051                                 return;
1052                         }
1053                 }
1054         }
1055
1056         /* signal end of iteration */
1057         *idx = ULLONG_MAX;
1058 }
1059
1060 /**
1061  * __next_mem_range_rev - generic next function for for_each_*_range_rev()
1062  *
1063  * @idx: pointer to u64 loop variable
1064  * @nid: node selector, %NUMA_NO_NODE for all nodes
1065  * @flags: pick from blocks based on memory attributes
1066  * @type_a: pointer to memblock_type from where the range is taken
1067  * @type_b: pointer to memblock_type which excludes memory from being taken
1068  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
1069  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
1070  * @out_nid: ptr to int for nid of the range, can be %NULL
1071  *
1072  * Finds the next range from type_a which is not marked as unsuitable
1073  * in type_b.
1074  *
1075  * Reverse of __next_mem_range().
1076  */
1077 void __init_memblock __next_mem_range_rev(u64 *idx, int nid,
1078                                           enum memblock_flags flags,
1079                                           struct memblock_type *type_a,
1080                                           struct memblock_type *type_b,
1081                                           phys_addr_t *out_start,
1082                                           phys_addr_t *out_end, int *out_nid)
1083 {
1084         int idx_a = *idx & 0xffffffff;
1085         int idx_b = *idx >> 32;
1086
1087         if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1088                 nid = NUMA_NO_NODE;
1089
1090         if (*idx == (u64)ULLONG_MAX) {
1091                 idx_a = type_a->cnt - 1;
1092                 if (type_b != NULL)
1093                         idx_b = type_b->cnt;
1094                 else
1095                         idx_b = 0;
1096         }
1097
1098         for (; idx_a >= 0; idx_a--) {
1099                 struct memblock_region *m = &type_a->regions[idx_a];
1100
1101                 phys_addr_t m_start = m->base;
1102                 phys_addr_t m_end = m->base + m->size;
1103                 int m_nid = memblock_get_region_node(m);
1104
1105                 /* only memory regions are associated with nodes, check it */
1106                 if (nid != NUMA_NO_NODE && nid != m_nid)
1107                         continue;
1108
1109                 /* skip hotpluggable memory regions if needed */
1110                 if (movable_node_is_enabled() && memblock_is_hotpluggable(m))
1111                         continue;
1112
1113                 /* if we want mirror memory skip non-mirror memory regions */
1114                 if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
1115                         continue;
1116
1117                 /* skip nomap memory unless we were asked for it explicitly */
1118                 if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
1119                         continue;
1120
1121                 if (!type_b) {
1122                         if (out_start)
1123                                 *out_start = m_start;
1124                         if (out_end)
1125                                 *out_end = m_end;
1126                         if (out_nid)
1127                                 *out_nid = m_nid;
1128                         idx_a--;
1129                         *idx = (u32)idx_a | (u64)idx_b << 32;
1130                         return;
1131                 }
1132
1133                 /* scan areas before each reservation */
1134                 for (; idx_b >= 0; idx_b--) {
1135                         struct memblock_region *r;
1136                         phys_addr_t r_start;
1137                         phys_addr_t r_end;
1138
1139                         r = &type_b->regions[idx_b];
1140                         r_start = idx_b ? r[-1].base + r[-1].size : 0;
1141                         r_end = idx_b < type_b->cnt ?
1142                                 r->base : PHYS_ADDR_MAX;
1143                         /*
1144                          * if idx_b advanced past idx_a,
1145                          * break out to advance idx_a
1146                          */
1147
1148                         if (r_end <= m_start)
1149                                 break;
1150                         /* if the two regions intersect, we're done */
1151                         if (m_end > r_start) {
1152                                 if (out_start)
1153                                         *out_start = max(m_start, r_start);
1154                                 if (out_end)
1155                                         *out_end = min(m_end, r_end);
1156                                 if (out_nid)
1157                                         *out_nid = m_nid;
1158                                 if (m_start >= r_start)
1159                                         idx_a--;
1160                                 else
1161                                         idx_b--;
1162                                 *idx = (u32)idx_a | (u64)idx_b << 32;
1163                                 return;
1164                         }
1165                 }
1166         }
1167         /* signal end of iteration */
1168         *idx = ULLONG_MAX;
1169 }
1170
1171 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1172 /*
1173  * Common iterator interface used to define for_each_mem_range().
1174  */
1175 void __init_memblock __next_mem_pfn_range(int *idx, int nid,
1176                                 unsigned long *out_start_pfn,
1177                                 unsigned long *out_end_pfn, int *out_nid)
1178 {
1179         struct memblock_type *type = &memblock.memory;
1180         struct memblock_region *r;
1181
1182         while (++*idx < type->cnt) {
1183                 r = &type->regions[*idx];
1184
1185                 if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
1186                         continue;
1187                 if (nid == MAX_NUMNODES || nid == r->nid)
1188                         break;
1189         }
1190         if (*idx >= type->cnt) {
1191                 *idx = -1;
1192                 return;
1193         }
1194
1195         if (out_start_pfn)
1196                 *out_start_pfn = PFN_UP(r->base);
1197         if (out_end_pfn)
1198                 *out_end_pfn = PFN_DOWN(r->base + r->size);
1199         if (out_nid)
1200                 *out_nid = r->nid;
1201 }
1202
1203 /**
1204  * memblock_set_node - set node ID on memblock regions
1205  * @base: base of area to set node ID for
1206  * @size: size of area to set node ID for
1207  * @type: memblock type to set node ID for
1208  * @nid: node ID to set
1209  *
1210  * Set the nid of memblock @type regions in [@base, @base + @size) to @nid.
1211  * Regions which cross the area boundaries are split as necessary.
1212  *
1213  * Return:
1214  * 0 on success, -errno on failure.
1215  */
1216 int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
1217                                       struct memblock_type *type, int nid)
1218 {
1219         int start_rgn, end_rgn;
1220         int i, ret;
1221
1222         ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
1223         if (ret)
1224                 return ret;
1225
1226         for (i = start_rgn; i < end_rgn; i++)
1227                 memblock_set_region_node(&type->regions[i], nid);
1228
1229         memblock_merge_regions(type);
1230         return 0;
1231 }
1232 #endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
1233
1234 static phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
1235                                         phys_addr_t align, phys_addr_t start,
1236                                         phys_addr_t end, int nid,
1237                                         enum memblock_flags flags)
1238 {
1239         phys_addr_t found;
1240
1241         if (!align)
1242                 align = SMP_CACHE_BYTES;
1243
1244         found = memblock_find_in_range_node(size, align, start, end, nid,
1245                                             flags);
1246         if (found && !memblock_reserve(found, size)) {
1247                 /*
1248                  * The min_count is set to 0 so that memblock allocations are
1249                  * never reported as leaks.
1250                  */
1251                 kmemleak_alloc_phys(found, size, 0, 0);
1252                 return found;
1253         }
1254         return 0;
1255 }
1256
1257 phys_addr_t __init memblock_alloc_range(phys_addr_t size, phys_addr_t align,
1258                                         phys_addr_t start, phys_addr_t end,
1259                                         enum memblock_flags flags)
1260 {
1261         return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE,
1262                                         flags);
1263 }
1264
1265 phys_addr_t __init memblock_alloc_base_nid(phys_addr_t size,
1266                                         phys_addr_t align, phys_addr_t max_addr,
1267                                         int nid, enum memblock_flags flags)
1268 {
1269         return memblock_alloc_range_nid(size, align, 0, max_addr, nid, flags);
1270 }
1271
1272 phys_addr_t __init memblock_phys_alloc_nid(phys_addr_t size, phys_addr_t align, int nid)
1273 {
1274         enum memblock_flags flags = choose_memblock_flags();
1275         phys_addr_t ret;
1276
1277 again:
1278         ret = memblock_alloc_base_nid(size, align, MEMBLOCK_ALLOC_ACCESSIBLE,
1279                                       nid, flags);
1280
1281         if (!ret && (flags & MEMBLOCK_MIRROR)) {
1282                 flags &= ~MEMBLOCK_MIRROR;
1283                 goto again;
1284         }
1285         return ret;
1286 }
1287
1288 phys_addr_t __init __memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
1289 {
1290         return memblock_alloc_base_nid(size, align, max_addr, NUMA_NO_NODE,
1291                                        MEMBLOCK_NONE);
1292 }
1293
1294 phys_addr_t __init memblock_alloc_base(phys_addr_t size, phys_addr_t align, phys_addr_t max_addr)
1295 {
1296         phys_addr_t alloc;
1297
1298         alloc = __memblock_alloc_base(size, align, max_addr);
1299
1300         if (alloc == 0)
1301                 panic("ERROR: Failed to allocate %pa bytes below %pa.\n",
1302                       &size, &max_addr);
1303
1304         return alloc;
1305 }
1306
1307 phys_addr_t __init memblock_phys_alloc(phys_addr_t size, phys_addr_t align)
1308 {
1309         return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
1310 }
1311
1312 phys_addr_t __init memblock_phys_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
1313 {
1314         phys_addr_t res = memblock_phys_alloc_nid(size, align, nid);
1315
1316         if (res)
1317                 return res;
1318         return memblock_alloc_base(size, align, MEMBLOCK_ALLOC_ACCESSIBLE);
1319 }
1320
1321 /**
1322  * memblock_alloc_internal - allocate boot memory block
1323  * @size: size of memory block to be allocated in bytes
1324  * @align: alignment of the region and block's size
1325  * @min_addr: the lower bound of the memory region to allocate (phys address)
1326  * @max_addr: the upper bound of the memory region to allocate (phys address)
1327  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1328  *
1329  * The @min_addr limit is dropped if it can not be satisfied and the allocation
1330  * will fall back to memory below @min_addr. Also, allocation may fall back
1331  * to any node in the system if the specified node can not
1332  * hold the requested memory.
1333  *
1334  * The allocation is performed from memory region limited by
1335  * memblock.current_limit if @max_addr == %BOOTMEM_ALLOC_ACCESSIBLE.
1336  *
1337  * The memory block is aligned on %SMP_CACHE_BYTES if @align == 0.
1338  *
1339  * The phys address of allocated boot memory block is converted to virtual and
1340  * allocated memory is reset to 0.
1341  *
1342  * In addition, function sets the min_count to 0 using kmemleak_alloc for
1343  * allocated boot memory block, so that it is never reported as leaks.
1344  *
1345  * Return:
1346  * Virtual address of allocated memory block on success, NULL on failure.
1347  */
1348 static void * __init memblock_alloc_internal(
1349                                 phys_addr_t size, phys_addr_t align,
1350                                 phys_addr_t min_addr, phys_addr_t max_addr,
1351                                 int nid)
1352 {
1353         phys_addr_t alloc;
1354         void *ptr;
1355         enum memblock_flags flags = choose_memblock_flags();
1356
1357         if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1358                 nid = NUMA_NO_NODE;
1359
1360         /*
1361          * Detect any accidental use of these APIs after slab is ready, as at
1362          * this moment memblock may be deinitialized already and its
1363          * internal data may be destroyed (after execution of free_all_bootmem)
1364          */
1365         if (WARN_ON_ONCE(slab_is_available()))
1366                 return kzalloc_node(size, GFP_NOWAIT, nid);
1367
1368         if (!align)
1369                 align = SMP_CACHE_BYTES;
1370
1371         if (max_addr > memblock.current_limit)
1372                 max_addr = memblock.current_limit;
1373 again:
1374         alloc = memblock_find_in_range_node(size, align, min_addr, max_addr,
1375                                             nid, flags);
1376         if (alloc && !memblock_reserve(alloc, size))
1377                 goto done;
1378
1379         if (nid != NUMA_NO_NODE) {
1380                 alloc = memblock_find_in_range_node(size, align, min_addr,
1381                                                     max_addr, NUMA_NO_NODE,
1382                                                     flags);
1383                 if (alloc && !memblock_reserve(alloc, size))
1384                         goto done;
1385         }
1386
1387         if (min_addr) {
1388                 min_addr = 0;
1389                 goto again;
1390         }
1391
1392         if (flags & MEMBLOCK_MIRROR) {
1393                 flags &= ~MEMBLOCK_MIRROR;
1394                 pr_warn("Could not allocate %pap bytes of mirrored memory\n",
1395                         &size);
1396                 goto again;
1397         }
1398
1399         return NULL;
1400 done:
1401         ptr = phys_to_virt(alloc);
1402
1403         /*
1404          * The min_count is set to 0 so that bootmem allocated blocks
1405          * are never reported as leaks. This is because many of these blocks
1406          * are only referred via the physical address which is not
1407          * looked up by kmemleak.
1408          */
1409         kmemleak_alloc(ptr, size, 0, 0);
1410
1411         return ptr;
1412 }
1413
1414 /**
1415  * memblock_alloc_try_nid_raw - allocate boot memory block without zeroing
1416  * memory and without panicking
1417  * @size: size of memory block to be allocated in bytes
1418  * @align: alignment of the region and block's size
1419  * @min_addr: the lower bound of the memory region from where the allocation
1420  *        is preferred (phys address)
1421  * @max_addr: the upper bound of the memory region from where the allocation
1422  *            is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1423  *            allocate only from memory limited by memblock.current_limit value
1424  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1425  *
1426  * Public function, provides additional debug information (including caller
1427  * info), if enabled. Does not zero allocated memory, does not panic if request
1428  * cannot be satisfied.
1429  *
1430  * Return:
1431  * Virtual address of allocated memory block on success, NULL on failure.
1432  */
1433 void * __init memblock_alloc_try_nid_raw(
1434                         phys_addr_t size, phys_addr_t align,
1435                         phys_addr_t min_addr, phys_addr_t max_addr,
1436                         int nid)
1437 {
1438         void *ptr;
1439
1440         memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pF\n",
1441                      __func__, (u64)size, (u64)align, nid, &min_addr,
1442                      &max_addr, (void *)_RET_IP_);
1443
1444         ptr = memblock_alloc_internal(size, align,
1445                                            min_addr, max_addr, nid);
1446         if (ptr && size > 0)
1447                 page_init_poison(ptr, size);
1448
1449         return ptr;
1450 }
1451
1452 /**
1453  * memblock_alloc_try_nid_nopanic - allocate boot memory block
1454  * @size: size of memory block to be allocated in bytes
1455  * @align: alignment of the region and block's size
1456  * @min_addr: the lower bound of the memory region from where the allocation
1457  *        is preferred (phys address)
1458  * @max_addr: the upper bound of the memory region from where the allocation
1459  *            is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1460  *            allocate only from memory limited by memblock.current_limit value
1461  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1462  *
1463  * Public function, provides additional debug information (including caller
1464  * info), if enabled. This function zeroes the allocated memory.
1465  *
1466  * Return:
1467  * Virtual address of allocated memory block on success, NULL on failure.
1468  */
1469 void * __init memblock_alloc_try_nid_nopanic(
1470                                 phys_addr_t size, phys_addr_t align,
1471                                 phys_addr_t min_addr, phys_addr_t max_addr,
1472                                 int nid)
1473 {
1474         void *ptr;
1475
1476         memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pF\n",
1477                      __func__, (u64)size, (u64)align, nid, &min_addr,
1478                      &max_addr, (void *)_RET_IP_);
1479
1480         ptr = memblock_alloc_internal(size, align,
1481                                            min_addr, max_addr, nid);
1482         if (ptr)
1483                 memset(ptr, 0, size);
1484         return ptr;
1485 }
1486
1487 /**
1488  * memblock_alloc_try_nid - allocate boot memory block with panicking
1489  * @size: size of memory block to be allocated in bytes
1490  * @align: alignment of the region and block's size
1491  * @min_addr: the lower bound of the memory region from where the allocation
1492  *        is preferred (phys address)
1493  * @max_addr: the upper bound of the memory region from where the allocation
1494  *            is preferred (phys address), or %BOOTMEM_ALLOC_ACCESSIBLE to
1495  *            allocate only from memory limited by memblock.current_limit value
1496  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1497  *
1498  * Public panicking version of memblock_alloc_try_nid_nopanic()
1499  * which provides debug information (including caller info), if enabled,
1500  * and panics if the request can not be satisfied.
1501  *
1502  * Return:
1503  * Virtual address of allocated memory block on success, NULL on failure.
1504  */
1505 void * __init memblock_alloc_try_nid(
1506                         phys_addr_t size, phys_addr_t align,
1507                         phys_addr_t min_addr, phys_addr_t max_addr,
1508                         int nid)
1509 {
1510         void *ptr;
1511
1512         memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pF\n",
1513                      __func__, (u64)size, (u64)align, nid, &min_addr,
1514                      &max_addr, (void *)_RET_IP_);
1515         ptr = memblock_alloc_internal(size, align,
1516                                            min_addr, max_addr, nid);
1517         if (ptr) {
1518                 memset(ptr, 0, size);
1519                 return ptr;
1520         }
1521
1522         panic("%s: Failed to allocate %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa\n",
1523               __func__, (u64)size, (u64)align, nid, &min_addr, &max_addr);
1524         return NULL;
1525 }
1526
1527 /**
1528  * __memblock_free_early - free boot memory block
1529  * @base: phys starting address of the  boot memory block
1530  * @size: size of the boot memory block in bytes
1531  *
1532  * Free boot memory block previously allocated by memblock_alloc_xx() API.
1533  * The freeing memory will not be released to the buddy allocator.
1534  */
1535 void __init __memblock_free_early(phys_addr_t base, phys_addr_t size)
1536 {
1537         phys_addr_t end = base + size - 1;
1538
1539         memblock_dbg("%s: [%pa-%pa] %pF\n",
1540                      __func__, &base, &end, (void *)_RET_IP_);
1541         kmemleak_free_part_phys(base, size);
1542         memblock_remove_range(&memblock.reserved, base, size);
1543 }
1544
1545 /**
1546  * __memblock_free_late - free bootmem block pages directly to buddy allocator
1547  * @base: phys starting address of the  boot memory block
1548  * @size: size of the boot memory block in bytes
1549  *
1550  * This is only useful when the bootmem allocator has already been torn
1551  * down, but we are still initializing the system.  Pages are released directly
1552  * to the buddy allocator, no bootmem metadata is updated because it is gone.
1553  */
1554 void __init __memblock_free_late(phys_addr_t base, phys_addr_t size)
1555 {
1556         phys_addr_t cursor, end;
1557
1558         end = base + size - 1;
1559         memblock_dbg("%s: [%pa-%pa] %pF\n",
1560                      __func__, &base, &end, (void *)_RET_IP_);
1561         kmemleak_free_part_phys(base, size);
1562         cursor = PFN_UP(base);
1563         end = PFN_DOWN(base + size);
1564
1565         for (; cursor < end; cursor++) {
1566                 __free_pages_bootmem(pfn_to_page(cursor), cursor, 0);
1567                 totalram_pages++;
1568         }
1569 }
1570
1571 /*
1572  * Remaining API functions
1573  */
1574
1575 phys_addr_t __init_memblock memblock_phys_mem_size(void)
1576 {
1577         return memblock.memory.total_size;
1578 }
1579
1580 phys_addr_t __init_memblock memblock_reserved_size(void)
1581 {
1582         return memblock.reserved.total_size;
1583 }
1584
1585 phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
1586 {
1587         unsigned long pages = 0;
1588         struct memblock_region *r;
1589         unsigned long start_pfn, end_pfn;
1590
1591         for_each_memblock(memory, r) {
1592                 start_pfn = memblock_region_memory_base_pfn(r);
1593                 end_pfn = memblock_region_memory_end_pfn(r);
1594                 start_pfn = min_t(unsigned long, start_pfn, limit_pfn);
1595                 end_pfn = min_t(unsigned long, end_pfn, limit_pfn);
1596                 pages += end_pfn - start_pfn;
1597         }
1598
1599         return PFN_PHYS(pages);
1600 }
1601
1602 /* lowest address */
1603 phys_addr_t __init_memblock memblock_start_of_DRAM(void)
1604 {
1605         return memblock.memory.regions[0].base;
1606 }
1607
1608 phys_addr_t __init_memblock memblock_end_of_DRAM(void)
1609 {
1610         int idx = memblock.memory.cnt - 1;
1611
1612         return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
1613 }
1614
1615 static phys_addr_t __init_memblock __find_max_addr(phys_addr_t limit)
1616 {
1617         phys_addr_t max_addr = PHYS_ADDR_MAX;
1618         struct memblock_region *r;
1619
1620         /*
1621          * translate the memory @limit size into the max address within one of
1622          * the memory memblock regions, if the @limit exceeds the total size
1623          * of those regions, max_addr will keep original value PHYS_ADDR_MAX
1624          */
1625         for_each_memblock(memory, r) {
1626                 if (limit <= r->size) {
1627                         max_addr = r->base + limit;
1628                         break;
1629                 }
1630                 limit -= r->size;
1631         }
1632
1633         return max_addr;
1634 }
1635
1636 void __init memblock_enforce_memory_limit(phys_addr_t limit)
1637 {
1638         phys_addr_t max_addr = PHYS_ADDR_MAX;
1639
1640         if (!limit)
1641                 return;
1642
1643         max_addr = __find_max_addr(limit);
1644
1645         /* @limit exceeds the total size of the memory, do nothing */
1646         if (max_addr == PHYS_ADDR_MAX)
1647                 return;
1648
1649         /* truncate both memory and reserved regions */
1650         memblock_remove_range(&memblock.memory, max_addr,
1651                               PHYS_ADDR_MAX);
1652         memblock_remove_range(&memblock.reserved, max_addr,
1653                               PHYS_ADDR_MAX);
1654 }
1655
1656 void __init memblock_cap_memory_range(phys_addr_t base, phys_addr_t size)
1657 {
1658         int start_rgn, end_rgn;
1659         int i, ret;
1660
1661         if (!size)
1662                 return;
1663
1664         ret = memblock_isolate_range(&memblock.memory, base, size,
1665                                                 &start_rgn, &end_rgn);
1666         if (ret)
1667                 return;
1668
1669         /* remove all the MAP regions */
1670         for (i = memblock.memory.cnt - 1; i >= end_rgn; i--)
1671                 if (!memblock_is_nomap(&memblock.memory.regions[i]))
1672                         memblock_remove_region(&memblock.memory, i);
1673
1674         for (i = start_rgn - 1; i >= 0; i--)
1675                 if (!memblock_is_nomap(&memblock.memory.regions[i]))
1676                         memblock_remove_region(&memblock.memory, i);
1677
1678         /* truncate the reserved regions */
1679         memblock_remove_range(&memblock.reserved, 0, base);
1680         memblock_remove_range(&memblock.reserved,
1681                         base + size, PHYS_ADDR_MAX);
1682 }
1683
1684 void __init memblock_mem_limit_remove_map(phys_addr_t limit)
1685 {
1686         phys_addr_t max_addr;
1687
1688         if (!limit)
1689                 return;
1690
1691         max_addr = __find_max_addr(limit);
1692
1693         /* @limit exceeds the total size of the memory, do nothing */
1694         if (max_addr == PHYS_ADDR_MAX)
1695                 return;
1696
1697         memblock_cap_memory_range(0, max_addr);
1698 }
1699
1700 static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
1701 {
1702         unsigned int left = 0, right = type->cnt;
1703
1704         do {
1705                 unsigned int mid = (right + left) / 2;
1706
1707                 if (addr < type->regions[mid].base)
1708                         right = mid;
1709                 else if (addr >= (type->regions[mid].base +
1710                                   type->regions[mid].size))
1711                         left = mid + 1;
1712                 else
1713                         return mid;
1714         } while (left < right);
1715         return -1;
1716 }
1717
1718 bool __init memblock_is_reserved(phys_addr_t addr)
1719 {
1720         return memblock_search(&memblock.reserved, addr) != -1;
1721 }
1722
1723 bool __init_memblock memblock_is_memory(phys_addr_t addr)
1724 {
1725         return memblock_search(&memblock.memory, addr) != -1;
1726 }
1727
1728 bool __init_memblock memblock_is_map_memory(phys_addr_t addr)
1729 {
1730         int i = memblock_search(&memblock.memory, addr);
1731
1732         if (i == -1)
1733                 return false;
1734         return !memblock_is_nomap(&memblock.memory.regions[i]);
1735 }
1736
1737 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1738 int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1739                          unsigned long *start_pfn, unsigned long *end_pfn)
1740 {
1741         struct memblock_type *type = &memblock.memory;
1742         int mid = memblock_search(type, PFN_PHYS(pfn));
1743
1744         if (mid == -1)
1745                 return -1;
1746
1747         *start_pfn = PFN_DOWN(type->regions[mid].base);
1748         *end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size);
1749
1750         return type->regions[mid].nid;
1751 }
1752 #endif
1753
1754 /**
1755  * memblock_is_region_memory - check if a region is a subset of memory
1756  * @base: base of region to check
1757  * @size: size of region to check
1758  *
1759  * Check if the region [@base, @base + @size) is a subset of a memory block.
1760  *
1761  * Return:
1762  * 0 if false, non-zero if true
1763  */
1764 bool __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
1765 {
1766         int idx = memblock_search(&memblock.memory, base);
1767         phys_addr_t end = base + memblock_cap_size(base, &size);
1768
1769         if (idx == -1)
1770                 return false;
1771         return (memblock.memory.regions[idx].base +
1772                  memblock.memory.regions[idx].size) >= end;
1773 }
1774
1775 /**
1776  * memblock_is_region_reserved - check if a region intersects reserved memory
1777  * @base: base of region to check
1778  * @size: size of region to check
1779  *
1780  * Check if the region [@base, @base + @size) intersects a reserved
1781  * memory block.
1782  *
1783  * Return:
1784  * True if they intersect, false if not.
1785  */
1786 bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
1787 {
1788         memblock_cap_size(base, &size);
1789         return memblock_overlaps_region(&memblock.reserved, base, size);
1790 }
1791
1792 void __init_memblock memblock_trim_memory(phys_addr_t align)
1793 {
1794         phys_addr_t start, end, orig_start, orig_end;
1795         struct memblock_region *r;
1796
1797         for_each_memblock(memory, r) {
1798                 orig_start = r->base;
1799                 orig_end = r->base + r->size;
1800                 start = round_up(orig_start, align);
1801                 end = round_down(orig_end, align);
1802
1803                 if (start == orig_start && end == orig_end)
1804                         continue;
1805
1806                 if (start < end) {
1807                         r->base = start;
1808                         r->size = end - start;
1809                 } else {
1810                         memblock_remove_region(&memblock.memory,
1811                                                r - memblock.memory.regions);
1812                         r--;
1813                 }
1814         }
1815 }
1816
1817 void __init_memblock memblock_set_current_limit(phys_addr_t limit)
1818 {
1819         memblock.current_limit = limit;
1820 }
1821
1822 phys_addr_t __init_memblock memblock_get_current_limit(void)
1823 {
1824         return memblock.current_limit;
1825 }
1826
1827 static void __init_memblock memblock_dump(struct memblock_type *type)
1828 {
1829         phys_addr_t base, end, size;
1830         enum memblock_flags flags;
1831         int idx;
1832         struct memblock_region *rgn;
1833
1834         pr_info(" %s.cnt  = 0x%lx\n", type->name, type->cnt);
1835
1836         for_each_memblock_type(idx, type, rgn) {
1837                 char nid_buf[32] = "";
1838
1839                 base = rgn->base;
1840                 size = rgn->size;
1841                 end = base + size - 1;
1842                 flags = rgn->flags;
1843 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1844                 if (memblock_get_region_node(rgn) != MAX_NUMNODES)
1845                         snprintf(nid_buf, sizeof(nid_buf), " on node %d",
1846                                  memblock_get_region_node(rgn));
1847 #endif
1848                 pr_info(" %s[%#x]\t[%pa-%pa], %pa bytes%s flags: %#x\n",
1849                         type->name, idx, &base, &end, &size, nid_buf, flags);
1850         }
1851 }
1852
1853 void __init_memblock __memblock_dump_all(void)
1854 {
1855         pr_info("MEMBLOCK configuration:\n");
1856         pr_info(" memory size = %pa reserved size = %pa\n",
1857                 &memblock.memory.total_size,
1858                 &memblock.reserved.total_size);
1859
1860         memblock_dump(&memblock.memory);
1861         memblock_dump(&memblock.reserved);
1862 #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
1863         memblock_dump(&memblock.physmem);
1864 #endif
1865 }
1866
1867 void __init memblock_allow_resize(void)
1868 {
1869         memblock_can_resize = 1;
1870 }
1871
1872 static int __init early_memblock(char *p)
1873 {
1874         if (p && strstr(p, "debug"))
1875                 memblock_debug = 1;
1876         return 0;
1877 }
1878 early_param("memblock", early_memblock);
1879
1880 #if defined(CONFIG_DEBUG_FS) && !defined(CONFIG_ARCH_DISCARD_MEMBLOCK)
1881
1882 static int memblock_debug_show(struct seq_file *m, void *private)
1883 {
1884         struct memblock_type *type = m->private;
1885         struct memblock_region *reg;
1886         int i;
1887         phys_addr_t end;
1888
1889         for (i = 0; i < type->cnt; i++) {
1890                 reg = &type->regions[i];
1891                 end = reg->base + reg->size - 1;
1892
1893                 seq_printf(m, "%4d: ", i);
1894                 seq_printf(m, "%pa..%pa\n", &reg->base, &end);
1895         }
1896         return 0;
1897 }
1898 DEFINE_SHOW_ATTRIBUTE(memblock_debug);
1899
1900 static int __init memblock_init_debugfs(void)
1901 {
1902         struct dentry *root = debugfs_create_dir("memblock", NULL);
1903         if (!root)
1904                 return -ENXIO;
1905         debugfs_create_file("memory", 0444, root,
1906                             &memblock.memory, &memblock_debug_fops);
1907         debugfs_create_file("reserved", 0444, root,
1908                             &memblock.reserved, &memblock_debug_fops);
1909 #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
1910         debugfs_create_file("physmem", 0444, root,
1911                             &memblock.physmem, &memblock_debug_fops);
1912 #endif
1913
1914         return 0;
1915 }
1916 __initcall(memblock_init_debugfs);
1917
1918 #endif /* CONFIG_DEBUG_FS */