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