xref: /linux/mm/memblock.c (revision 647037adcad00f2bab8828d3d41cd0553d41f3bd)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
295f72d1eSYinghai Lu /*
395f72d1eSYinghai Lu  * Procedures for maintaining information about logical memory blocks.
495f72d1eSYinghai Lu  *
595f72d1eSYinghai Lu  * Peter Bergner, IBM Corp.	June 2001.
695f72d1eSYinghai Lu  * Copyright (C) 2001 Peter Bergner.
795f72d1eSYinghai Lu  */
895f72d1eSYinghai Lu 
995f72d1eSYinghai Lu #include <linux/kernel.h>
10142b45a7SBenjamin Herrenschmidt #include <linux/slab.h>
1195f72d1eSYinghai Lu #include <linux/init.h>
1295f72d1eSYinghai Lu #include <linux/bitops.h>
13449e8df3SBenjamin Herrenschmidt #include <linux/poison.h>
14c196f76fSBenjamin Herrenschmidt #include <linux/pfn.h>
156d03b885SBenjamin Herrenschmidt #include <linux/debugfs.h>
16514c6032SRandy Dunlap #include <linux/kmemleak.h>
176d03b885SBenjamin Herrenschmidt #include <linux/seq_file.h>
1895f72d1eSYinghai Lu #include <linux/memblock.h>
1995f72d1eSYinghai Lu 
20c4c5ad6bSChristoph Hellwig #include <asm/sections.h>
2126f09e9bSSantosh Shilimkar #include <linux/io.h>
2226f09e9bSSantosh Shilimkar 
2326f09e9bSSantosh Shilimkar #include "internal.h"
2479442ed1STang Chen 
258a5b403dSArd Biesheuvel #define INIT_MEMBLOCK_REGIONS			128
268a5b403dSArd Biesheuvel #define INIT_PHYSMEM_REGIONS			4
278a5b403dSArd Biesheuvel 
288a5b403dSArd Biesheuvel #ifndef INIT_MEMBLOCK_RESERVED_REGIONS
298a5b403dSArd Biesheuvel # define INIT_MEMBLOCK_RESERVED_REGIONS		INIT_MEMBLOCK_REGIONS
308a5b403dSArd Biesheuvel #endif
318a5b403dSArd Biesheuvel 
32450d0e74SZhou Guanghui #ifndef INIT_MEMBLOCK_MEMORY_REGIONS
33450d0e74SZhou Guanghui #define INIT_MEMBLOCK_MEMORY_REGIONS		INIT_MEMBLOCK_REGIONS
34450d0e74SZhou Guanghui #endif
35450d0e74SZhou Guanghui 
363e039c5cSMike Rapoport /**
373e039c5cSMike Rapoport  * DOC: memblock overview
383e039c5cSMike Rapoport  *
393e039c5cSMike Rapoport  * Memblock is a method of managing memory regions during the early
403e039c5cSMike Rapoport  * boot period when the usual kernel memory allocators are not up and
413e039c5cSMike Rapoport  * running.
423e039c5cSMike Rapoport  *
433e039c5cSMike Rapoport  * Memblock views the system memory as collections of contiguous
443e039c5cSMike Rapoport  * regions. There are several types of these collections:
453e039c5cSMike Rapoport  *
463e039c5cSMike Rapoport  * * ``memory`` - describes the physical memory available to the
473e039c5cSMike Rapoport  *   kernel; this may differ from the actual physical memory installed
483e039c5cSMike Rapoport  *   in the system, for instance when the memory is restricted with
493e039c5cSMike Rapoport  *   ``mem=`` command line parameter
503e039c5cSMike Rapoport  * * ``reserved`` - describes the regions that were allocated
5177649905SDavid Hildenbrand  * * ``physmem`` - describes the actual physical memory available during
5277649905SDavid Hildenbrand  *   boot regardless of the possible restrictions and memory hot(un)plug;
5377649905SDavid Hildenbrand  *   the ``physmem`` type is only available on some architectures.
543e039c5cSMike Rapoport  *
559303c9d5SMauro Carvalho Chehab  * Each region is represented by struct memblock_region that
563e039c5cSMike Rapoport  * defines the region extents, its attributes and NUMA node id on NUMA
571bf162e4SMauro Carvalho Chehab  * systems. Every memory type is described by the struct memblock_type
581bf162e4SMauro Carvalho Chehab  * which contains an array of memory regions along with
5977649905SDavid Hildenbrand  * the allocator metadata. The "memory" and "reserved" types are nicely
609303c9d5SMauro Carvalho Chehab  * wrapped with struct memblock. This structure is statically
6177649905SDavid Hildenbrand  * initialized at build time. The region arrays are initially sized to
62450d0e74SZhou Guanghui  * %INIT_MEMBLOCK_MEMORY_REGIONS for "memory" and
63450d0e74SZhou Guanghui  * %INIT_MEMBLOCK_RESERVED_REGIONS for "reserved". The region array
64450d0e74SZhou Guanghui  * for "physmem" is initially sized to %INIT_PHYSMEM_REGIONS.
656e5af9a8SCao jin  * The memblock_allow_resize() enables automatic resizing of the region
666e5af9a8SCao jin  * arrays during addition of new regions. This feature should be used
676e5af9a8SCao jin  * with care so that memory allocated for the region array will not
686e5af9a8SCao jin  * overlap with areas that should be reserved, for example initrd.
693e039c5cSMike Rapoport  *
703e039c5cSMike Rapoport  * The early architecture setup should tell memblock what the physical
716e5af9a8SCao jin  * memory layout is by using memblock_add() or memblock_add_node()
726e5af9a8SCao jin  * functions. The first function does not assign the region to a NUMA
736e5af9a8SCao jin  * node and it is appropriate for UMA systems. Yet, it is possible to
746e5af9a8SCao jin  * use it on NUMA systems as well and assign the region to a NUMA node
756e5af9a8SCao jin  * later in the setup process using memblock_set_node(). The
766e5af9a8SCao jin  * memblock_add_node() performs such an assignment directly.
773e039c5cSMike Rapoport  *
78a2974133SMike Rapoport  * Once memblock is setup the memory can be allocated using one of the
79a2974133SMike Rapoport  * API variants:
80a2974133SMike Rapoport  *
816e5af9a8SCao jin  * * memblock_phys_alloc*() - these functions return the **physical**
826e5af9a8SCao jin  *   address of the allocated memory
836e5af9a8SCao jin  * * memblock_alloc*() - these functions return the **virtual** address
846e5af9a8SCao jin  *   of the allocated memory.
85a2974133SMike Rapoport  *
86df1758d9SEthon Paul  * Note, that both API variants use implicit assumptions about allowed
87a2974133SMike Rapoport  * memory ranges and the fallback methods. Consult the documentation
886e5af9a8SCao jin  * of memblock_alloc_internal() and memblock_alloc_range_nid()
896e5af9a8SCao jin  * functions for more elaborate description.
903e039c5cSMike Rapoport  *
916e5af9a8SCao jin  * As the system boot progresses, the architecture specific mem_init()
926e5af9a8SCao jin  * function frees all the memory to the buddy page allocator.
933e039c5cSMike Rapoport  *
946e5af9a8SCao jin  * Unless an architecture enables %CONFIG_ARCH_KEEP_MEMBLOCK, the
9577649905SDavid Hildenbrand  * memblock data structures (except "physmem") will be discarded after the
9677649905SDavid Hildenbrand  * system initialization completes.
973e039c5cSMike Rapoport  */
983e039c5cSMike Rapoport 
99a9ee6cf5SMike Rapoport #ifndef CONFIG_NUMA
100bda49a81SMike Rapoport struct pglist_data __refdata contig_page_data;
101bda49a81SMike Rapoport EXPORT_SYMBOL(contig_page_data);
102bda49a81SMike Rapoport #endif
103bda49a81SMike Rapoport 
104bda49a81SMike Rapoport unsigned long max_low_pfn;
105bda49a81SMike Rapoport unsigned long min_low_pfn;
106bda49a81SMike Rapoport unsigned long max_pfn;
107bda49a81SMike Rapoport unsigned long long max_possible_pfn;
108bda49a81SMike Rapoport 
109450d0e74SZhou Guanghui static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_MEMORY_REGIONS] __initdata_memblock;
1108a5b403dSArd Biesheuvel static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_RESERVED_REGIONS] __initdata_memblock;
11170210ed9SPhilipp Hachtmann #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
11277649905SDavid Hildenbrand static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS];
11370210ed9SPhilipp Hachtmann #endif
114fe091c20STejun Heo 
115fe091c20STejun Heo struct memblock memblock __initdata_memblock = {
116fe091c20STejun Heo 	.memory.regions		= memblock_memory_init_regions,
117fe091c20STejun Heo 	.memory.cnt		= 1,	/* empty dummy entry */
118450d0e74SZhou Guanghui 	.memory.max		= INIT_MEMBLOCK_MEMORY_REGIONS,
1190262d9c8SHeiko Carstens 	.memory.name		= "memory",
120fe091c20STejun Heo 
121fe091c20STejun Heo 	.reserved.regions	= memblock_reserved_init_regions,
122fe091c20STejun Heo 	.reserved.cnt		= 1,	/* empty dummy entry */
1238a5b403dSArd Biesheuvel 	.reserved.max		= INIT_MEMBLOCK_RESERVED_REGIONS,
1240262d9c8SHeiko Carstens 	.reserved.name		= "reserved",
125fe091c20STejun Heo 
12679442ed1STang Chen 	.bottom_up		= false,
127fe091c20STejun Heo 	.current_limit		= MEMBLOCK_ALLOC_ANYWHERE,
128fe091c20STejun Heo };
12995f72d1eSYinghai Lu 
13077649905SDavid Hildenbrand #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
13177649905SDavid Hildenbrand struct memblock_type physmem = {
13277649905SDavid Hildenbrand 	.regions		= memblock_physmem_init_regions,
13377649905SDavid Hildenbrand 	.cnt			= 1,	/* empty dummy entry */
13477649905SDavid Hildenbrand 	.max			= INIT_PHYSMEM_REGIONS,
13577649905SDavid Hildenbrand 	.name			= "physmem",
13677649905SDavid Hildenbrand };
13777649905SDavid Hildenbrand #endif
13877649905SDavid Hildenbrand 
1399f3d5eaaSMike Rapoport /*
1409f3d5eaaSMike Rapoport  * keep a pointer to &memblock.memory in the text section to use it in
1419f3d5eaaSMike Rapoport  * __next_mem_range() and its helpers.
1429f3d5eaaSMike Rapoport  *  For architectures that do not keep memblock data after init, this
1439f3d5eaaSMike Rapoport  * pointer will be reset to NULL at memblock_discard()
1449f3d5eaaSMike Rapoport  */
1459f3d5eaaSMike Rapoport static __refdata struct memblock_type *memblock_memory = &memblock.memory;
1469f3d5eaaSMike Rapoport 
147cd991db8SMike Rapoport #define for_each_memblock_type(i, memblock_type, rgn)			\
148cd991db8SMike Rapoport 	for (i = 0, rgn = &memblock_type->regions[0];			\
149cd991db8SMike Rapoport 	     i < memblock_type->cnt;					\
150cd991db8SMike Rapoport 	     i++, rgn = &memblock_type->regions[i])
151cd991db8SMike Rapoport 
15287c55870SMike Rapoport #define memblock_dbg(fmt, ...)						\
15387c55870SMike Rapoport 	do {								\
15487c55870SMike Rapoport 		if (memblock_debug)					\
15587c55870SMike Rapoport 			pr_info(fmt, ##__VA_ARGS__);			\
15687c55870SMike Rapoport 	} while (0)
15787c55870SMike Rapoport 
15887c55870SMike Rapoport static int memblock_debug __initdata_memblock;
159a3f5bafcSTony Luck static bool system_has_some_mirror __initdata_memblock = false;
1601aadc056STejun Heo static int memblock_can_resize __initdata_memblock;
161181eb394SGavin Shan static int memblock_memory_in_slab __initdata_memblock = 0;
162181eb394SGavin Shan static int memblock_reserved_in_slab __initdata_memblock = 0;
16395f72d1eSYinghai Lu 
164c366ea89SMike Rapoport static enum memblock_flags __init_memblock choose_memblock_flags(void)
165a3f5bafcSTony Luck {
166a3f5bafcSTony Luck 	return system_has_some_mirror ? MEMBLOCK_MIRROR : MEMBLOCK_NONE;
167a3f5bafcSTony Luck }
168a3f5bafcSTony Luck 
169eb18f1b5STejun Heo /* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
170eb18f1b5STejun Heo static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
171eb18f1b5STejun Heo {
1721c4bc43dSStefan Agner 	return *size = min(*size, PHYS_ADDR_MAX - base);
173eb18f1b5STejun Heo }
174eb18f1b5STejun Heo 
1756ed311b2SBenjamin Herrenschmidt /*
1766ed311b2SBenjamin Herrenschmidt  * Address comparison utilities
1776ed311b2SBenjamin Herrenschmidt  */
17810d06439SYinghai Lu static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
1792898cc4cSBenjamin Herrenschmidt 				       phys_addr_t base2, phys_addr_t size2)
18095f72d1eSYinghai Lu {
18195f72d1eSYinghai Lu 	return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
18295f72d1eSYinghai Lu }
18395f72d1eSYinghai Lu 
18495cf82ecSTang Chen bool __init_memblock memblock_overlaps_region(struct memblock_type *type,
1852d7d3eb2SH Hartley Sweeten 					phys_addr_t base, phys_addr_t size)
1866ed311b2SBenjamin Herrenschmidt {
1876ed311b2SBenjamin Herrenschmidt 	unsigned long i;
1886ed311b2SBenjamin Herrenschmidt 
189023accf5SMike Rapoport 	memblock_cap_size(base, &size);
190023accf5SMike Rapoport 
191f14516fbSAlexander Kuleshov 	for (i = 0; i < type->cnt; i++)
192f14516fbSAlexander Kuleshov 		if (memblock_addrs_overlap(base, size, type->regions[i].base,
193f14516fbSAlexander Kuleshov 					   type->regions[i].size))
1946ed311b2SBenjamin Herrenschmidt 			break;
195c5c5c9d1STang Chen 	return i < type->cnt;
1966ed311b2SBenjamin Herrenschmidt }
1976ed311b2SBenjamin Herrenschmidt 
19847cec443SMike Rapoport /**
19979442ed1STang Chen  * __memblock_find_range_bottom_up - find free area utility in bottom-up
20079442ed1STang Chen  * @start: start of candidate range
20147cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
20247cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
20379442ed1STang Chen  * @size: size of free area to find
20479442ed1STang Chen  * @align: alignment of free area to find
205b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
206fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
20779442ed1STang Chen  *
20879442ed1STang Chen  * Utility called from memblock_find_in_range_node(), find free area bottom-up.
20979442ed1STang Chen  *
21047cec443SMike Rapoport  * Return:
21179442ed1STang Chen  * Found address on success, 0 on failure.
21279442ed1STang Chen  */
21379442ed1STang Chen static phys_addr_t __init_memblock
21479442ed1STang Chen __memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
215fc6daaf9STony Luck 				phys_addr_t size, phys_addr_t align, int nid,
216e1720feeSMike Rapoport 				enum memblock_flags flags)
21779442ed1STang Chen {
21879442ed1STang Chen 	phys_addr_t this_start, this_end, cand;
21979442ed1STang Chen 	u64 i;
22079442ed1STang Chen 
221fc6daaf9STony Luck 	for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) {
22279442ed1STang Chen 		this_start = clamp(this_start, start, end);
22379442ed1STang Chen 		this_end = clamp(this_end, start, end);
22479442ed1STang Chen 
22579442ed1STang Chen 		cand = round_up(this_start, align);
22679442ed1STang Chen 		if (cand < this_end && this_end - cand >= size)
22779442ed1STang Chen 			return cand;
22879442ed1STang Chen 	}
22979442ed1STang Chen 
23079442ed1STang Chen 	return 0;
23179442ed1STang Chen }
23279442ed1STang Chen 
2337bd0b0f0STejun Heo /**
2341402899eSTang Chen  * __memblock_find_range_top_down - find free area utility, in top-down
2351402899eSTang Chen  * @start: start of candidate range
23647cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
23747cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
2381402899eSTang Chen  * @size: size of free area to find
2391402899eSTang Chen  * @align: alignment of free area to find
240b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
241fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
2421402899eSTang Chen  *
2431402899eSTang Chen  * Utility called from memblock_find_in_range_node(), find free area top-down.
2441402899eSTang Chen  *
24547cec443SMike Rapoport  * Return:
24679442ed1STang Chen  * Found address on success, 0 on failure.
2471402899eSTang Chen  */
2481402899eSTang Chen static phys_addr_t __init_memblock
2491402899eSTang Chen __memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
250fc6daaf9STony Luck 			       phys_addr_t size, phys_addr_t align, int nid,
251e1720feeSMike Rapoport 			       enum memblock_flags flags)
2521402899eSTang Chen {
2531402899eSTang Chen 	phys_addr_t this_start, this_end, cand;
2541402899eSTang Chen 	u64 i;
2551402899eSTang Chen 
256fc6daaf9STony Luck 	for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end,
257fc6daaf9STony Luck 					NULL) {
2581402899eSTang Chen 		this_start = clamp(this_start, start, end);
2591402899eSTang Chen 		this_end = clamp(this_end, start, end);
2601402899eSTang Chen 
2611402899eSTang Chen 		if (this_end < size)
2621402899eSTang Chen 			continue;
2631402899eSTang Chen 
2641402899eSTang Chen 		cand = round_down(this_end - size, align);
2651402899eSTang Chen 		if (cand >= this_start)
2661402899eSTang Chen 			return cand;
2671402899eSTang Chen 	}
2681402899eSTang Chen 
2691402899eSTang Chen 	return 0;
2701402899eSTang Chen }
2711402899eSTang Chen 
2721402899eSTang Chen /**
2737bd0b0f0STejun Heo  * memblock_find_in_range_node - find free area in given range and node
2747bd0b0f0STejun Heo  * @size: size of free area to find
2757bd0b0f0STejun Heo  * @align: alignment of free area to find
27687029ee9SGrygorii Strashko  * @start: start of candidate range
27747cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
27847cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
279b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
280fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
2817bd0b0f0STejun Heo  *
2827bd0b0f0STejun Heo  * Find @size free area aligned to @align in the specified range and node.
2837bd0b0f0STejun Heo  *
28447cec443SMike Rapoport  * Return:
28579442ed1STang Chen  * Found address on success, 0 on failure.
2866ed311b2SBenjamin Herrenschmidt  */
287c366ea89SMike Rapoport static phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size,
28887029ee9SGrygorii Strashko 					phys_addr_t align, phys_addr_t start,
289e1720feeSMike Rapoport 					phys_addr_t end, int nid,
290e1720feeSMike Rapoport 					enum memblock_flags flags)
291f7210e6cSTang Chen {
292f7210e6cSTang Chen 	/* pump up @end */
293fed84c78SQian Cai 	if (end == MEMBLOCK_ALLOC_ACCESSIBLE ||
294c6975d7cSQian Cai 	    end == MEMBLOCK_ALLOC_NOLEAKTRACE)
295f7210e6cSTang Chen 		end = memblock.current_limit;
296f7210e6cSTang Chen 
297f7210e6cSTang Chen 	/* avoid allocating the first page */
298f7210e6cSTang Chen 	start = max_t(phys_addr_t, start, PAGE_SIZE);
299f7210e6cSTang Chen 	end = max(start, end);
30079442ed1STang Chen 
3012dcb3964SRoman Gushchin 	if (memblock_bottom_up())
3022dcb3964SRoman Gushchin 		return __memblock_find_range_bottom_up(start, end, size, align,
3032dcb3964SRoman Gushchin 						       nid, flags);
3042dcb3964SRoman Gushchin 	else
3052dcb3964SRoman Gushchin 		return __memblock_find_range_top_down(start, end, size, align,
3062dcb3964SRoman Gushchin 						      nid, flags);
307f7210e6cSTang Chen }
3086ed311b2SBenjamin Herrenschmidt 
3097bd0b0f0STejun Heo /**
3107bd0b0f0STejun Heo  * memblock_find_in_range - find free area in given range
3117bd0b0f0STejun Heo  * @start: start of candidate range
31247cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
31347cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
3147bd0b0f0STejun Heo  * @size: size of free area to find
3157bd0b0f0STejun Heo  * @align: alignment of free area to find
3167bd0b0f0STejun Heo  *
3177bd0b0f0STejun Heo  * Find @size free area aligned to @align in the specified range.
3187bd0b0f0STejun Heo  *
31947cec443SMike Rapoport  * Return:
32079442ed1STang Chen  * Found address on success, 0 on failure.
3217bd0b0f0STejun Heo  */
322a7259df7SMike Rapoport static phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
3237bd0b0f0STejun Heo 					phys_addr_t end, phys_addr_t size,
3247bd0b0f0STejun Heo 					phys_addr_t align)
3257bd0b0f0STejun Heo {
326a3f5bafcSTony Luck 	phys_addr_t ret;
327e1720feeSMike Rapoport 	enum memblock_flags flags = choose_memblock_flags();
328a3f5bafcSTony Luck 
329a3f5bafcSTony Luck again:
330a3f5bafcSTony Luck 	ret = memblock_find_in_range_node(size, align, start, end,
331a3f5bafcSTony Luck 					    NUMA_NO_NODE, flags);
332a3f5bafcSTony Luck 
333a3f5bafcSTony Luck 	if (!ret && (flags & MEMBLOCK_MIRROR)) {
33414d9a675SMa Wupeng 		pr_warn_ratelimited("Could not allocate %pap bytes of mirrored memory\n",
335a3f5bafcSTony Luck 			&size);
336a3f5bafcSTony Luck 		flags &= ~MEMBLOCK_MIRROR;
337a3f5bafcSTony Luck 		goto again;
338a3f5bafcSTony Luck 	}
339a3f5bafcSTony Luck 
340a3f5bafcSTony Luck 	return ret;
3417bd0b0f0STejun Heo }
3427bd0b0f0STejun Heo 
34310d06439SYinghai Lu static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
34495f72d1eSYinghai Lu {
3451440c4e2STejun Heo 	type->total_size -= type->regions[r].size;
3467c0caeb8STejun Heo 	memmove(&type->regions[r], &type->regions[r + 1],
3477c0caeb8STejun Heo 		(type->cnt - (r + 1)) * sizeof(type->regions[r]));
348e3239ff9SBenjamin Herrenschmidt 	type->cnt--;
34995f72d1eSYinghai Lu 
3508f7a6605SBenjamin Herrenschmidt 	/* Special case for empty arrays */
3518f7a6605SBenjamin Herrenschmidt 	if (type->cnt == 0) {
3521440c4e2STejun Heo 		WARN_ON(type->total_size != 0);
3538f7a6605SBenjamin Herrenschmidt 		type->cnt = 1;
3548f7a6605SBenjamin Herrenschmidt 		type->regions[0].base = 0;
3558f7a6605SBenjamin Herrenschmidt 		type->regions[0].size = 0;
35666a20757STang Chen 		type->regions[0].flags = 0;
3577c0caeb8STejun Heo 		memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
3588f7a6605SBenjamin Herrenschmidt 	}
35995f72d1eSYinghai Lu }
36095f72d1eSYinghai Lu 
361350e88baSMike Rapoport #ifndef CONFIG_ARCH_KEEP_MEMBLOCK
3623010f876SPavel Tatashin /**
36347cec443SMike Rapoport  * memblock_discard - discard memory and reserved arrays if they were allocated
3643010f876SPavel Tatashin  */
3653010f876SPavel Tatashin void __init memblock_discard(void)
36629f67386SYinghai Lu {
3673010f876SPavel Tatashin 	phys_addr_t addr, size;
36829f67386SYinghai Lu 
3693010f876SPavel Tatashin 	if (memblock.reserved.regions != memblock_reserved_init_regions) {
3703010f876SPavel Tatashin 		addr = __pa(memblock.reserved.regions);
3713010f876SPavel Tatashin 		size = PAGE_ALIGN(sizeof(struct memblock_region) *
37229f67386SYinghai Lu 				  memblock.reserved.max);
373c94afc46SMiaohe Lin 		if (memblock_reserved_in_slab)
374c94afc46SMiaohe Lin 			kfree(memblock.reserved.regions);
375c94afc46SMiaohe Lin 		else
376621d9739SMike Rapoport 			memblock_free_late(addr, size);
37729f67386SYinghai Lu 	}
37829f67386SYinghai Lu 
37991b540f9SPavel Tatashin 	if (memblock.memory.regions != memblock_memory_init_regions) {
3803010f876SPavel Tatashin 		addr = __pa(memblock.memory.regions);
3813010f876SPavel Tatashin 		size = PAGE_ALIGN(sizeof(struct memblock_region) *
3825e270e25SPhilipp Hachtmann 				  memblock.memory.max);
383c94afc46SMiaohe Lin 		if (memblock_memory_in_slab)
384c94afc46SMiaohe Lin 			kfree(memblock.memory.regions);
385c94afc46SMiaohe Lin 		else
386621d9739SMike Rapoport 			memblock_free_late(addr, size);
3875e270e25SPhilipp Hachtmann 	}
3889f3d5eaaSMike Rapoport 
3899f3d5eaaSMike Rapoport 	memblock_memory = NULL;
3903010f876SPavel Tatashin }
3915e270e25SPhilipp Hachtmann #endif
3925e270e25SPhilipp Hachtmann 
39348c3b583SGreg Pearson /**
39448c3b583SGreg Pearson  * memblock_double_array - double the size of the memblock regions array
39548c3b583SGreg Pearson  * @type: memblock type of the regions array being doubled
39648c3b583SGreg Pearson  * @new_area_start: starting address of memory range to avoid overlap with
39748c3b583SGreg Pearson  * @new_area_size: size of memory range to avoid overlap with
39848c3b583SGreg Pearson  *
39948c3b583SGreg Pearson  * Double the size of the @type regions array. If memblock is being used to
40048c3b583SGreg Pearson  * allocate memory for a new reserved regions array and there is a previously
40148c3b583SGreg Pearson  * allocated memory range [@new_area_start, @new_area_start + @new_area_size]
40248c3b583SGreg Pearson  * waiting to be reserved, ensure the memory used by the new array does
40348c3b583SGreg Pearson  * not overlap.
40448c3b583SGreg Pearson  *
40547cec443SMike Rapoport  * Return:
40648c3b583SGreg Pearson  * 0 on success, -1 on failure.
40748c3b583SGreg Pearson  */
40848c3b583SGreg Pearson static int __init_memblock memblock_double_array(struct memblock_type *type,
40948c3b583SGreg Pearson 						phys_addr_t new_area_start,
41048c3b583SGreg Pearson 						phys_addr_t new_area_size)
411142b45a7SBenjamin Herrenschmidt {
412142b45a7SBenjamin Herrenschmidt 	struct memblock_region *new_array, *old_array;
41329f67386SYinghai Lu 	phys_addr_t old_alloc_size, new_alloc_size;
414a36aab89SMike Rapoport 	phys_addr_t old_size, new_size, addr, new_end;
415142b45a7SBenjamin Herrenschmidt 	int use_slab = slab_is_available();
416181eb394SGavin Shan 	int *in_slab;
417142b45a7SBenjamin Herrenschmidt 
418142b45a7SBenjamin Herrenschmidt 	/* We don't allow resizing until we know about the reserved regions
419142b45a7SBenjamin Herrenschmidt 	 * of memory that aren't suitable for allocation
420142b45a7SBenjamin Herrenschmidt 	 */
421142b45a7SBenjamin Herrenschmidt 	if (!memblock_can_resize)
422142b45a7SBenjamin Herrenschmidt 		return -1;
423142b45a7SBenjamin Herrenschmidt 
424142b45a7SBenjamin Herrenschmidt 	/* Calculate new doubled size */
425142b45a7SBenjamin Herrenschmidt 	old_size = type->max * sizeof(struct memblock_region);
426142b45a7SBenjamin Herrenschmidt 	new_size = old_size << 1;
42729f67386SYinghai Lu 	/*
42829f67386SYinghai Lu 	 * We need to allocated new one align to PAGE_SIZE,
42929f67386SYinghai Lu 	 *   so we can free them completely later.
43029f67386SYinghai Lu 	 */
43129f67386SYinghai Lu 	old_alloc_size = PAGE_ALIGN(old_size);
43229f67386SYinghai Lu 	new_alloc_size = PAGE_ALIGN(new_size);
433142b45a7SBenjamin Herrenschmidt 
434181eb394SGavin Shan 	/* Retrieve the slab flag */
435181eb394SGavin Shan 	if (type == &memblock.memory)
436181eb394SGavin Shan 		in_slab = &memblock_memory_in_slab;
437181eb394SGavin Shan 	else
438181eb394SGavin Shan 		in_slab = &memblock_reserved_in_slab;
439181eb394SGavin Shan 
440a2974133SMike Rapoport 	/* Try to find some space for it */
441142b45a7SBenjamin Herrenschmidt 	if (use_slab) {
442142b45a7SBenjamin Herrenschmidt 		new_array = kmalloc(new_size, GFP_KERNEL);
4431f5026a7STejun Heo 		addr = new_array ? __pa(new_array) : 0;
4444e2f0775SGavin Shan 	} else {
44548c3b583SGreg Pearson 		/* only exclude range when trying to double reserved.regions */
44648c3b583SGreg Pearson 		if (type != &memblock.reserved)
44748c3b583SGreg Pearson 			new_area_start = new_area_size = 0;
44848c3b583SGreg Pearson 
44948c3b583SGreg Pearson 		addr = memblock_find_in_range(new_area_start + new_area_size,
45048c3b583SGreg Pearson 						memblock.current_limit,
45129f67386SYinghai Lu 						new_alloc_size, PAGE_SIZE);
45248c3b583SGreg Pearson 		if (!addr && new_area_size)
45348c3b583SGreg Pearson 			addr = memblock_find_in_range(0,
45448c3b583SGreg Pearson 				min(new_area_start, memblock.current_limit),
45529f67386SYinghai Lu 				new_alloc_size, PAGE_SIZE);
45648c3b583SGreg Pearson 
45715674868SSachin Kamat 		new_array = addr ? __va(addr) : NULL;
4584e2f0775SGavin Shan 	}
4591f5026a7STejun Heo 	if (!addr) {
460142b45a7SBenjamin Herrenschmidt 		pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
4610262d9c8SHeiko Carstens 		       type->name, type->max, type->max * 2);
462142b45a7SBenjamin Herrenschmidt 		return -1;
463142b45a7SBenjamin Herrenschmidt 	}
464142b45a7SBenjamin Herrenschmidt 
465a36aab89SMike Rapoport 	new_end = addr + new_size - 1;
466a36aab89SMike Rapoport 	memblock_dbg("memblock: %s is doubled to %ld at [%pa-%pa]",
467a36aab89SMike Rapoport 			type->name, type->max * 2, &addr, &new_end);
468ea9e4376SYinghai Lu 
469fd07383bSAndrew Morton 	/*
470fd07383bSAndrew Morton 	 * Found space, we now need to move the array over before we add the
471fd07383bSAndrew Morton 	 * reserved region since it may be our reserved array itself that is
472fd07383bSAndrew Morton 	 * full.
473142b45a7SBenjamin Herrenschmidt 	 */
474142b45a7SBenjamin Herrenschmidt 	memcpy(new_array, type->regions, old_size);
475142b45a7SBenjamin Herrenschmidt 	memset(new_array + type->max, 0, old_size);
476142b45a7SBenjamin Herrenschmidt 	old_array = type->regions;
477142b45a7SBenjamin Herrenschmidt 	type->regions = new_array;
478142b45a7SBenjamin Herrenschmidt 	type->max <<= 1;
479142b45a7SBenjamin Herrenschmidt 
480fd07383bSAndrew Morton 	/* Free old array. We needn't free it if the array is the static one */
481181eb394SGavin Shan 	if (*in_slab)
482181eb394SGavin Shan 		kfree(old_array);
483181eb394SGavin Shan 	else if (old_array != memblock_memory_init_regions &&
484142b45a7SBenjamin Herrenschmidt 		 old_array != memblock_reserved_init_regions)
4854421cca0SMike Rapoport 		memblock_free(old_array, old_alloc_size);
486142b45a7SBenjamin Herrenschmidt 
487fd07383bSAndrew Morton 	/*
488fd07383bSAndrew Morton 	 * Reserve the new array if that comes from the memblock.  Otherwise, we
489fd07383bSAndrew Morton 	 * needn't do it
490181eb394SGavin Shan 	 */
491181eb394SGavin Shan 	if (!use_slab)
49229f67386SYinghai Lu 		BUG_ON(memblock_reserve(addr, new_alloc_size));
493181eb394SGavin Shan 
494181eb394SGavin Shan 	/* Update slab flag */
495181eb394SGavin Shan 	*in_slab = use_slab;
496181eb394SGavin Shan 
497142b45a7SBenjamin Herrenschmidt 	return 0;
498142b45a7SBenjamin Herrenschmidt }
499142b45a7SBenjamin Herrenschmidt 
500784656f9STejun Heo /**
501784656f9STejun Heo  * memblock_merge_regions - merge neighboring compatible regions
502784656f9STejun Heo  * @type: memblock type to scan
503784656f9STejun Heo  *
504784656f9STejun Heo  * Scan @type and merge neighboring compatible regions.
505784656f9STejun Heo  */
506784656f9STejun Heo static void __init_memblock memblock_merge_regions(struct memblock_type *type)
507784656f9STejun Heo {
508784656f9STejun Heo 	int i = 0;
509784656f9STejun Heo 
510784656f9STejun Heo 	/* cnt never goes below 1 */
511784656f9STejun Heo 	while (i < type->cnt - 1) {
512784656f9STejun Heo 		struct memblock_region *this = &type->regions[i];
513784656f9STejun Heo 		struct memblock_region *next = &type->regions[i + 1];
514784656f9STejun Heo 
5157c0caeb8STejun Heo 		if (this->base + this->size != next->base ||
5167c0caeb8STejun Heo 		    memblock_get_region_node(this) !=
51766a20757STang Chen 		    memblock_get_region_node(next) ||
51866a20757STang Chen 		    this->flags != next->flags) {
519784656f9STejun Heo 			BUG_ON(this->base + this->size > next->base);
520784656f9STejun Heo 			i++;
521784656f9STejun Heo 			continue;
522784656f9STejun Heo 		}
523784656f9STejun Heo 
524784656f9STejun Heo 		this->size += next->size;
525c0232ae8SLin Feng 		/* move forward from next + 1, index of which is i + 2 */
526c0232ae8SLin Feng 		memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
527784656f9STejun Heo 		type->cnt--;
528784656f9STejun Heo 	}
529784656f9STejun Heo }
530784656f9STejun Heo 
531784656f9STejun Heo /**
532784656f9STejun Heo  * memblock_insert_region - insert new memblock region
533784656f9STejun Heo  * @type:	memblock type to insert into
534784656f9STejun Heo  * @idx:	index for the insertion point
535784656f9STejun Heo  * @base:	base address of the new region
536784656f9STejun Heo  * @size:	size of the new region
537209ff86dSTang Chen  * @nid:	node id of the new region
53866a20757STang Chen  * @flags:	flags of the new region
539784656f9STejun Heo  *
540784656f9STejun Heo  * Insert new memblock region [@base, @base + @size) into @type at @idx.
541412d0008SAlexander Kuleshov  * @type must already have extra room to accommodate the new region.
542784656f9STejun Heo  */
543784656f9STejun Heo static void __init_memblock memblock_insert_region(struct memblock_type *type,
544784656f9STejun Heo 						   int idx, phys_addr_t base,
54566a20757STang Chen 						   phys_addr_t size,
546e1720feeSMike Rapoport 						   int nid,
547e1720feeSMike Rapoport 						   enum memblock_flags flags)
548784656f9STejun Heo {
549784656f9STejun Heo 	struct memblock_region *rgn = &type->regions[idx];
550784656f9STejun Heo 
551784656f9STejun Heo 	BUG_ON(type->cnt >= type->max);
552784656f9STejun Heo 	memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
553784656f9STejun Heo 	rgn->base = base;
554784656f9STejun Heo 	rgn->size = size;
55566a20757STang Chen 	rgn->flags = flags;
5567c0caeb8STejun Heo 	memblock_set_region_node(rgn, nid);
557784656f9STejun Heo 	type->cnt++;
5581440c4e2STejun Heo 	type->total_size += size;
559784656f9STejun Heo }
560784656f9STejun Heo 
561784656f9STejun Heo /**
562f1af9d3aSPhilipp Hachtmann  * memblock_add_range - add new memblock region
563784656f9STejun Heo  * @type: memblock type to add new region into
564784656f9STejun Heo  * @base: base address of the new region
565784656f9STejun Heo  * @size: size of the new region
5667fb0bc3fSTejun Heo  * @nid: nid of the new region
56766a20757STang Chen  * @flags: flags of the new region
568784656f9STejun Heo  *
569784656f9STejun Heo  * Add new memblock region [@base, @base + @size) into @type.  The new region
570784656f9STejun Heo  * is allowed to overlap with existing ones - overlaps don't affect already
571784656f9STejun Heo  * existing regions.  @type is guaranteed to be minimal (all neighbouring
572784656f9STejun Heo  * compatible regions are merged) after the addition.
573784656f9STejun Heo  *
57447cec443SMike Rapoport  * Return:
575784656f9STejun Heo  * 0 on success, -errno on failure.
576784656f9STejun Heo  */
57702634a44SAnshuman Khandual static int __init_memblock memblock_add_range(struct memblock_type *type,
57866a20757STang Chen 				phys_addr_t base, phys_addr_t size,
579e1720feeSMike Rapoport 				int nid, enum memblock_flags flags)
58095f72d1eSYinghai Lu {
581784656f9STejun Heo 	bool insert = false;
582eb18f1b5STejun Heo 	phys_addr_t obase = base;
583eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
5848c9c1701SAlexander Kuleshov 	int idx, nr_new;
5858c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
58695f72d1eSYinghai Lu 
587b3dc627cSTejun Heo 	if (!size)
588b3dc627cSTejun Heo 		return 0;
589b3dc627cSTejun Heo 
590784656f9STejun Heo 	/* special case for empty array */
591784656f9STejun Heo 	if (type->regions[0].size == 0) {
5921440c4e2STejun Heo 		WARN_ON(type->cnt != 1 || type->total_size);
593784656f9STejun Heo 		type->regions[0].base = base;
594784656f9STejun Heo 		type->regions[0].size = size;
59566a20757STang Chen 		type->regions[0].flags = flags;
5967fb0bc3fSTejun Heo 		memblock_set_region_node(&type->regions[0], nid);
5971440c4e2STejun Heo 		type->total_size = size;
598784656f9STejun Heo 		return 0;
599784656f9STejun Heo 	}
60028e1a8f4SJinyu Tang 
60128e1a8f4SJinyu Tang 	/*
60228e1a8f4SJinyu Tang 	 * The worst case is when new range overlaps all existing regions,
60328e1a8f4SJinyu Tang 	 * then we'll need type->cnt + 1 empty regions in @type. So if
60428e1a8f4SJinyu Tang 	 * type->cnt * 2 + 1 is less than type->max, we know
60528e1a8f4SJinyu Tang 	 * that there is enough empty regions in @type, and we can insert
60628e1a8f4SJinyu Tang 	 * regions directly.
60728e1a8f4SJinyu Tang 	 */
60828e1a8f4SJinyu Tang 	if (type->cnt * 2 + 1 < type->max)
60928e1a8f4SJinyu Tang 		insert = true;
61028e1a8f4SJinyu Tang 
611784656f9STejun Heo repeat:
612784656f9STejun Heo 	/*
613784656f9STejun Heo 	 * The following is executed twice.  Once with %false @insert and
614784656f9STejun Heo 	 * then with %true.  The first counts the number of regions needed
615412d0008SAlexander Kuleshov 	 * to accommodate the new area.  The second actually inserts them.
616784656f9STejun Heo 	 */
617784656f9STejun Heo 	base = obase;
618784656f9STejun Heo 	nr_new = 0;
619784656f9STejun Heo 
62066e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
621784656f9STejun Heo 		phys_addr_t rbase = rgn->base;
622784656f9STejun Heo 		phys_addr_t rend = rbase + rgn->size;
6238f7a6605SBenjamin Herrenschmidt 
624784656f9STejun Heo 		if (rbase >= end)
6258f7a6605SBenjamin Herrenschmidt 			break;
626784656f9STejun Heo 		if (rend <= base)
627784656f9STejun Heo 			continue;
628784656f9STejun Heo 		/*
629784656f9STejun Heo 		 * @rgn overlaps.  If it separates the lower part of new
630784656f9STejun Heo 		 * area, insert that portion.
6318f7a6605SBenjamin Herrenschmidt 		 */
632784656f9STejun Heo 		if (rbase > base) {
633a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
634c0a29498SWei Yang 			WARN_ON(nid != memblock_get_region_node(rgn));
635c0a29498SWei Yang #endif
6364fcab5f4SWei Yang 			WARN_ON(flags != rgn->flags);
637784656f9STejun Heo 			nr_new++;
638784656f9STejun Heo 			if (insert)
6398c9c1701SAlexander Kuleshov 				memblock_insert_region(type, idx++, base,
64066a20757STang Chen 						       rbase - base, nid,
64166a20757STang Chen 						       flags);
642784656f9STejun Heo 		}
643784656f9STejun Heo 		/* area below @rend is dealt with, forget about it */
644784656f9STejun Heo 		base = min(rend, end);
6458f7a6605SBenjamin Herrenschmidt 	}
6468f7a6605SBenjamin Herrenschmidt 
647784656f9STejun Heo 	/* insert the remaining portion */
648784656f9STejun Heo 	if (base < end) {
649784656f9STejun Heo 		nr_new++;
650784656f9STejun Heo 		if (insert)
6518c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx, base, end - base,
65266a20757STang Chen 					       nid, flags);
6538f7a6605SBenjamin Herrenschmidt 	}
6548f7a6605SBenjamin Herrenschmidt 
655ef3cc4dbSnimisolo 	if (!nr_new)
656ef3cc4dbSnimisolo 		return 0;
657ef3cc4dbSnimisolo 
658784656f9STejun Heo 	/*
659784656f9STejun Heo 	 * If this was the first round, resize array and repeat for actual
660784656f9STejun Heo 	 * insertions; otherwise, merge and return.
6618f7a6605SBenjamin Herrenschmidt 	 */
662784656f9STejun Heo 	if (!insert) {
663784656f9STejun Heo 		while (type->cnt + nr_new > type->max)
66448c3b583SGreg Pearson 			if (memblock_double_array(type, obase, size) < 0)
665784656f9STejun Heo 				return -ENOMEM;
666784656f9STejun Heo 		insert = true;
667784656f9STejun Heo 		goto repeat;
66895f72d1eSYinghai Lu 	} else {
669784656f9STejun Heo 		memblock_merge_regions(type);
67095f72d1eSYinghai Lu 		return 0;
67195f72d1eSYinghai Lu 	}
672784656f9STejun Heo }
67395f72d1eSYinghai Lu 
67448a833ccSMike Rapoport /**
67548a833ccSMike Rapoport  * memblock_add_node - add new memblock region within a NUMA node
67648a833ccSMike Rapoport  * @base: base address of the new region
67748a833ccSMike Rapoport  * @size: size of the new region
67848a833ccSMike Rapoport  * @nid: nid of the new region
679952eea9bSDavid Hildenbrand  * @flags: flags of the new region
68048a833ccSMike Rapoport  *
68148a833ccSMike Rapoport  * Add new memblock region [@base, @base + @size) to the "memory"
68248a833ccSMike Rapoport  * type. See memblock_add_range() description for mode details
68348a833ccSMike Rapoport  *
68448a833ccSMike Rapoport  * Return:
68548a833ccSMike Rapoport  * 0 on success, -errno on failure.
68648a833ccSMike Rapoport  */
6877fb0bc3fSTejun Heo int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
688952eea9bSDavid Hildenbrand 				      int nid, enum memblock_flags flags)
6897fb0bc3fSTejun Heo {
69000974b9aSGeert Uytterhoeven 	phys_addr_t end = base + size - 1;
69100974b9aSGeert Uytterhoeven 
692952eea9bSDavid Hildenbrand 	memblock_dbg("%s: [%pa-%pa] nid=%d flags=%x %pS\n", __func__,
693952eea9bSDavid Hildenbrand 		     &base, &end, nid, flags, (void *)_RET_IP_);
69400974b9aSGeert Uytterhoeven 
695952eea9bSDavid Hildenbrand 	return memblock_add_range(&memblock.memory, base, size, nid, flags);
6967fb0bc3fSTejun Heo }
6977fb0bc3fSTejun Heo 
69848a833ccSMike Rapoport /**
69948a833ccSMike Rapoport  * memblock_add - add new memblock region
70048a833ccSMike Rapoport  * @base: base address of the new region
70148a833ccSMike Rapoport  * @size: size of the new region
70248a833ccSMike Rapoport  *
70348a833ccSMike Rapoport  * Add new memblock region [@base, @base + @size) to the "memory"
70448a833ccSMike Rapoport  * type. See memblock_add_range() description for mode details
70548a833ccSMike Rapoport  *
70648a833ccSMike Rapoport  * Return:
70748a833ccSMike Rapoport  * 0 on success, -errno on failure.
70848a833ccSMike Rapoport  */
709f705ac4bSAlexander Kuleshov int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
7106a4055bcSAlexander Kuleshov {
7115d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
7125d63f81cSMiles Chen 
713a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
7145d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
7156a4055bcSAlexander Kuleshov 
716f705ac4bSAlexander Kuleshov 	return memblock_add_range(&memblock.memory, base, size, MAX_NUMNODES, 0);
71795f72d1eSYinghai Lu }
71895f72d1eSYinghai Lu 
7196a9ceb31STejun Heo /**
7206a9ceb31STejun Heo  * memblock_isolate_range - isolate given range into disjoint memblocks
7216a9ceb31STejun Heo  * @type: memblock type to isolate range for
7226a9ceb31STejun Heo  * @base: base of range to isolate
7236a9ceb31STejun Heo  * @size: size of range to isolate
7246a9ceb31STejun Heo  * @start_rgn: out parameter for the start of isolated region
7256a9ceb31STejun Heo  * @end_rgn: out parameter for the end of isolated region
7266a9ceb31STejun Heo  *
7276a9ceb31STejun Heo  * Walk @type and ensure that regions don't cross the boundaries defined by
7286a9ceb31STejun Heo  * [@base, @base + @size).  Crossing regions are split at the boundaries,
7296a9ceb31STejun Heo  * which may create at most two more regions.  The index of the first
7306a9ceb31STejun Heo  * region inside the range is returned in *@start_rgn and end in *@end_rgn.
7316a9ceb31STejun Heo  *
73247cec443SMike Rapoport  * Return:
7336a9ceb31STejun Heo  * 0 on success, -errno on failure.
7346a9ceb31STejun Heo  */
7356a9ceb31STejun Heo static int __init_memblock memblock_isolate_range(struct memblock_type *type,
7366a9ceb31STejun Heo 					phys_addr_t base, phys_addr_t size,
7376a9ceb31STejun Heo 					int *start_rgn, int *end_rgn)
7386a9ceb31STejun Heo {
739eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
7408c9c1701SAlexander Kuleshov 	int idx;
7418c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
7426a9ceb31STejun Heo 
7436a9ceb31STejun Heo 	*start_rgn = *end_rgn = 0;
7446a9ceb31STejun Heo 
745b3dc627cSTejun Heo 	if (!size)
746b3dc627cSTejun Heo 		return 0;
747b3dc627cSTejun Heo 
7486a9ceb31STejun Heo 	/* we'll create at most two more regions */
7496a9ceb31STejun Heo 	while (type->cnt + 2 > type->max)
75048c3b583SGreg Pearson 		if (memblock_double_array(type, base, size) < 0)
7516a9ceb31STejun Heo 			return -ENOMEM;
7526a9ceb31STejun Heo 
75366e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
7546a9ceb31STejun Heo 		phys_addr_t rbase = rgn->base;
7556a9ceb31STejun Heo 		phys_addr_t rend = rbase + rgn->size;
7566a9ceb31STejun Heo 
7576a9ceb31STejun Heo 		if (rbase >= end)
7586a9ceb31STejun Heo 			break;
7596a9ceb31STejun Heo 		if (rend <= base)
7606a9ceb31STejun Heo 			continue;
7616a9ceb31STejun Heo 
7626a9ceb31STejun Heo 		if (rbase < base) {
7636a9ceb31STejun Heo 			/*
7646a9ceb31STejun Heo 			 * @rgn intersects from below.  Split and continue
7656a9ceb31STejun Heo 			 * to process the next region - the new top half.
7666a9ceb31STejun Heo 			 */
7676a9ceb31STejun Heo 			rgn->base = base;
7681440c4e2STejun Heo 			rgn->size -= base - rbase;
7691440c4e2STejun Heo 			type->total_size -= base - rbase;
7708c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx, rbase, base - rbase,
77166a20757STang Chen 					       memblock_get_region_node(rgn),
77266a20757STang Chen 					       rgn->flags);
7736a9ceb31STejun Heo 		} else if (rend > end) {
7746a9ceb31STejun Heo 			/*
7756a9ceb31STejun Heo 			 * @rgn intersects from above.  Split and redo the
7766a9ceb31STejun Heo 			 * current region - the new bottom half.
7776a9ceb31STejun Heo 			 */
7786a9ceb31STejun Heo 			rgn->base = end;
7791440c4e2STejun Heo 			rgn->size -= end - rbase;
7801440c4e2STejun Heo 			type->total_size -= end - rbase;
7818c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx--, rbase, end - rbase,
78266a20757STang Chen 					       memblock_get_region_node(rgn),
78366a20757STang Chen 					       rgn->flags);
7846a9ceb31STejun Heo 		} else {
7856a9ceb31STejun Heo 			/* @rgn is fully contained, record it */
7866a9ceb31STejun Heo 			if (!*end_rgn)
7878c9c1701SAlexander Kuleshov 				*start_rgn = idx;
7888c9c1701SAlexander Kuleshov 			*end_rgn = idx + 1;
7896a9ceb31STejun Heo 		}
7906a9ceb31STejun Heo 	}
7916a9ceb31STejun Heo 
7926a9ceb31STejun Heo 	return 0;
7936a9ceb31STejun Heo }
7946a9ceb31STejun Heo 
79535bd16a2SAlexander Kuleshov static int __init_memblock memblock_remove_range(struct memblock_type *type,
7968f7a6605SBenjamin Herrenschmidt 					  phys_addr_t base, phys_addr_t size)
79795f72d1eSYinghai Lu {
79871936180STejun Heo 	int start_rgn, end_rgn;
79971936180STejun Heo 	int i, ret;
80095f72d1eSYinghai Lu 
80171936180STejun Heo 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
80271936180STejun Heo 	if (ret)
80371936180STejun Heo 		return ret;
80495f72d1eSYinghai Lu 
80571936180STejun Heo 	for (i = end_rgn - 1; i >= start_rgn; i--)
80671936180STejun Heo 		memblock_remove_region(type, i);
80795f72d1eSYinghai Lu 	return 0;
80895f72d1eSYinghai Lu }
80995f72d1eSYinghai Lu 
810581adcbeSTejun Heo int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
81195f72d1eSYinghai Lu {
81225cf23d7SMinchan Kim 	phys_addr_t end = base + size - 1;
81325cf23d7SMinchan Kim 
814a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
81525cf23d7SMinchan Kim 		     &base, &end, (void *)_RET_IP_);
81625cf23d7SMinchan Kim 
817f1af9d3aSPhilipp Hachtmann 	return memblock_remove_range(&memblock.memory, base, size);
81895f72d1eSYinghai Lu }
81995f72d1eSYinghai Lu 
8204d72868cSMike Rapoport /**
8214421cca0SMike Rapoport  * memblock_free - free boot memory allocation
82277e02cf5SLinus Torvalds  * @ptr: starting address of the  boot memory allocation
82377e02cf5SLinus Torvalds  * @size: size of the boot memory block in bytes
82477e02cf5SLinus Torvalds  *
82577e02cf5SLinus Torvalds  * Free boot memory block previously allocated by memblock_alloc_xx() API.
82677e02cf5SLinus Torvalds  * The freeing memory will not be released to the buddy allocator.
82777e02cf5SLinus Torvalds  */
8284421cca0SMike Rapoport void __init_memblock memblock_free(void *ptr, size_t size)
82977e02cf5SLinus Torvalds {
83077e02cf5SLinus Torvalds 	if (ptr)
8313ecc6834SMike Rapoport 		memblock_phys_free(__pa(ptr), size);
83277e02cf5SLinus Torvalds }
83377e02cf5SLinus Torvalds 
83477e02cf5SLinus Torvalds /**
8353ecc6834SMike Rapoport  * memblock_phys_free - free boot memory block
8364d72868cSMike Rapoport  * @base: phys starting address of the  boot memory block
8374d72868cSMike Rapoport  * @size: size of the boot memory block in bytes
8384d72868cSMike Rapoport  *
839fa81ab49SMiaoqian Lin  * Free boot memory block previously allocated by memblock_phys_alloc_xx() API.
8404d72868cSMike Rapoport  * The freeing memory will not be released to the buddy allocator.
8414d72868cSMike Rapoport  */
8423ecc6834SMike Rapoport int __init_memblock memblock_phys_free(phys_addr_t base, phys_addr_t size)
84395f72d1eSYinghai Lu {
8445d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
8455d63f81cSMiles Chen 
846a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
8475d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
84824aa0788STejun Heo 
8499099daedSCatalin Marinas 	kmemleak_free_part_phys(base, size);
850f1af9d3aSPhilipp Hachtmann 	return memblock_remove_range(&memblock.reserved, base, size);
85195f72d1eSYinghai Lu }
85295f72d1eSYinghai Lu 
853f705ac4bSAlexander Kuleshov int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
85495f72d1eSYinghai Lu {
8555d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
8565d63f81cSMiles Chen 
857a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
8585d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
85995f72d1eSYinghai Lu 
860f705ac4bSAlexander Kuleshov 	return memblock_add_range(&memblock.reserved, base, size, MAX_NUMNODES, 0);
86195f72d1eSYinghai Lu }
86295f72d1eSYinghai Lu 
86302634a44SAnshuman Khandual #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
86402634a44SAnshuman Khandual int __init_memblock memblock_physmem_add(phys_addr_t base, phys_addr_t size)
86502634a44SAnshuman Khandual {
86602634a44SAnshuman Khandual 	phys_addr_t end = base + size - 1;
86702634a44SAnshuman Khandual 
86802634a44SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
86902634a44SAnshuman Khandual 		     &base, &end, (void *)_RET_IP_);
87002634a44SAnshuman Khandual 
87177649905SDavid Hildenbrand 	return memblock_add_range(&physmem, base, size, MAX_NUMNODES, 0);
87202634a44SAnshuman Khandual }
87302634a44SAnshuman Khandual #endif
87402634a44SAnshuman Khandual 
87535fd0808STejun Heo /**
87647cec443SMike Rapoport  * memblock_setclr_flag - set or clear flag for a memory region
87747cec443SMike Rapoport  * @base: base address of the region
87847cec443SMike Rapoport  * @size: size of the region
87947cec443SMike Rapoport  * @set: set or clear the flag
8808958b249SHaitao Shi  * @flag: the flag to update
88166b16edfSTang Chen  *
8824308ce17STony Luck  * This function isolates region [@base, @base + @size), and sets/clears flag
88366b16edfSTang Chen  *
88447cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
88566b16edfSTang Chen  */
8864308ce17STony Luck static int __init_memblock memblock_setclr_flag(phys_addr_t base,
8874308ce17STony Luck 				phys_addr_t size, int set, int flag)
88866b16edfSTang Chen {
88966b16edfSTang Chen 	struct memblock_type *type = &memblock.memory;
89066b16edfSTang Chen 	int i, ret, start_rgn, end_rgn;
89166b16edfSTang Chen 
89266b16edfSTang Chen 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
89366b16edfSTang Chen 	if (ret)
89466b16edfSTang Chen 		return ret;
89566b16edfSTang Chen 
896fe145124SMike Rapoport 	for (i = start_rgn; i < end_rgn; i++) {
897fe145124SMike Rapoport 		struct memblock_region *r = &type->regions[i];
898fe145124SMike Rapoport 
8994308ce17STony Luck 		if (set)
900fe145124SMike Rapoport 			r->flags |= flag;
9014308ce17STony Luck 		else
902fe145124SMike Rapoport 			r->flags &= ~flag;
903fe145124SMike Rapoport 	}
90466b16edfSTang Chen 
90566b16edfSTang Chen 	memblock_merge_regions(type);
90666b16edfSTang Chen 	return 0;
90766b16edfSTang Chen }
90866b16edfSTang Chen 
90966b16edfSTang Chen /**
9104308ce17STony Luck  * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG.
9114308ce17STony Luck  * @base: the base phys addr of the region
9124308ce17STony Luck  * @size: the size of the region
9134308ce17STony Luck  *
91447cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
9154308ce17STony Luck  */
9164308ce17STony Luck int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size)
9174308ce17STony Luck {
9184308ce17STony Luck 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG);
9194308ce17STony Luck }
9204308ce17STony Luck 
9214308ce17STony Luck /**
92266b16edfSTang Chen  * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region.
92366b16edfSTang Chen  * @base: the base phys addr of the region
92466b16edfSTang Chen  * @size: the size of the region
92566b16edfSTang Chen  *
92647cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
92766b16edfSTang Chen  */
92866b16edfSTang Chen int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size)
92966b16edfSTang Chen {
9304308ce17STony Luck 	return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG);
93166b16edfSTang Chen }
93266b16edfSTang Chen 
93366b16edfSTang Chen /**
934a3f5bafcSTony Luck  * memblock_mark_mirror - Mark mirrored memory with flag MEMBLOCK_MIRROR.
935a3f5bafcSTony Luck  * @base: the base phys addr of the region
936a3f5bafcSTony Luck  * @size: the size of the region
937a3f5bafcSTony Luck  *
93847cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
939a3f5bafcSTony Luck  */
940a3f5bafcSTony Luck int __init_memblock memblock_mark_mirror(phys_addr_t base, phys_addr_t size)
941a3f5bafcSTony Luck {
942902c2d91SMa Wupeng 	if (!mirrored_kernelcore)
943902c2d91SMa Wupeng 		return 0;
944902c2d91SMa Wupeng 
945a3f5bafcSTony Luck 	system_has_some_mirror = true;
946a3f5bafcSTony Luck 
947a3f5bafcSTony Luck 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_MIRROR);
948a3f5bafcSTony Luck }
949a3f5bafcSTony Luck 
950bf3d3cc5SArd Biesheuvel /**
951bf3d3cc5SArd Biesheuvel  * memblock_mark_nomap - Mark a memory region with flag MEMBLOCK_NOMAP.
952bf3d3cc5SArd Biesheuvel  * @base: the base phys addr of the region
953bf3d3cc5SArd Biesheuvel  * @size: the size of the region
954bf3d3cc5SArd Biesheuvel  *
9559092d4f7SMike Rapoport  * The memory regions marked with %MEMBLOCK_NOMAP will not be added to the
9569092d4f7SMike Rapoport  * direct mapping of the physical memory. These regions will still be
9579092d4f7SMike Rapoport  * covered by the memory map. The struct page representing NOMAP memory
9589092d4f7SMike Rapoport  * frames in the memory map will be PageReserved()
9599092d4f7SMike Rapoport  *
960658aafc8SMike Rapoport  * Note: if the memory being marked %MEMBLOCK_NOMAP was allocated from
961658aafc8SMike Rapoport  * memblock, the caller must inform kmemleak to ignore that memory
962658aafc8SMike Rapoport  *
96347cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
964bf3d3cc5SArd Biesheuvel  */
965bf3d3cc5SArd Biesheuvel int __init_memblock memblock_mark_nomap(phys_addr_t base, phys_addr_t size)
966bf3d3cc5SArd Biesheuvel {
9676c9a5455SMike Rapoport 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_NOMAP);
968bf3d3cc5SArd Biesheuvel }
969a3f5bafcSTony Luck 
970a3f5bafcSTony Luck /**
9714c546b8aSAKASHI Takahiro  * memblock_clear_nomap - Clear flag MEMBLOCK_NOMAP for a specified region.
9724c546b8aSAKASHI Takahiro  * @base: the base phys addr of the region
9734c546b8aSAKASHI Takahiro  * @size: the size of the region
9744c546b8aSAKASHI Takahiro  *
97547cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
9764c546b8aSAKASHI Takahiro  */
9774c546b8aSAKASHI Takahiro int __init_memblock memblock_clear_nomap(phys_addr_t base, phys_addr_t size)
9784c546b8aSAKASHI Takahiro {
9794c546b8aSAKASHI Takahiro 	return memblock_setclr_flag(base, size, 0, MEMBLOCK_NOMAP);
9804c546b8aSAKASHI Takahiro }
9814c546b8aSAKASHI Takahiro 
9829f3d5eaaSMike Rapoport static bool should_skip_region(struct memblock_type *type,
9839f3d5eaaSMike Rapoport 			       struct memblock_region *m,
9849f3d5eaaSMike Rapoport 			       int nid, int flags)
985c9a688a3SMike Rapoport {
986c9a688a3SMike Rapoport 	int m_nid = memblock_get_region_node(m);
987c9a688a3SMike Rapoport 
9889f3d5eaaSMike Rapoport 	/* we never skip regions when iterating memblock.reserved or physmem */
9899f3d5eaaSMike Rapoport 	if (type != memblock_memory)
9909f3d5eaaSMike Rapoport 		return false;
9919f3d5eaaSMike Rapoport 
992c9a688a3SMike Rapoport 	/* only memory regions are associated with nodes, check it */
993c9a688a3SMike Rapoport 	if (nid != NUMA_NO_NODE && nid != m_nid)
994c9a688a3SMike Rapoport 		return true;
995c9a688a3SMike Rapoport 
996c9a688a3SMike Rapoport 	/* skip hotpluggable memory regions if needed */
99779e482e9SMike Rapoport 	if (movable_node_is_enabled() && memblock_is_hotpluggable(m) &&
99879e482e9SMike Rapoport 	    !(flags & MEMBLOCK_HOTPLUG))
999c9a688a3SMike Rapoport 		return true;
1000c9a688a3SMike Rapoport 
1001c9a688a3SMike Rapoport 	/* if we want mirror memory skip non-mirror memory regions */
1002c9a688a3SMike Rapoport 	if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
1003c9a688a3SMike Rapoport 		return true;
1004c9a688a3SMike Rapoport 
1005c9a688a3SMike Rapoport 	/* skip nomap memory unless we were asked for it explicitly */
1006c9a688a3SMike Rapoport 	if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
1007c9a688a3SMike Rapoport 		return true;
1008c9a688a3SMike Rapoport 
1009f7892d8eSDavid Hildenbrand 	/* skip driver-managed memory unless we were asked for it explicitly */
1010f7892d8eSDavid Hildenbrand 	if (!(flags & MEMBLOCK_DRIVER_MANAGED) && memblock_is_driver_managed(m))
1011f7892d8eSDavid Hildenbrand 		return true;
1012f7892d8eSDavid Hildenbrand 
1013c9a688a3SMike Rapoport 	return false;
1014c9a688a3SMike Rapoport }
1015c9a688a3SMike Rapoport 
10168e7a7f86SRobin Holt /**
1017a2974133SMike Rapoport  * __next_mem_range - next function for for_each_free_mem_range() etc.
101835fd0808STejun Heo  * @idx: pointer to u64 loop variable
1019b1154233SGrygorii Strashko  * @nid: node selector, %NUMA_NO_NODE for all nodes
1020fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
1021f1af9d3aSPhilipp Hachtmann  * @type_a: pointer to memblock_type from where the range is taken
1022f1af9d3aSPhilipp Hachtmann  * @type_b: pointer to memblock_type which excludes memory from being taken
1023dad7557eSWanpeng Li  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
1024dad7557eSWanpeng Li  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
1025dad7557eSWanpeng Li  * @out_nid: ptr to int for nid of the range, can be %NULL
102635fd0808STejun Heo  *
1027f1af9d3aSPhilipp Hachtmann  * Find the first area from *@idx which matches @nid, fill the out
102835fd0808STejun Heo  * parameters, and update *@idx for the next iteration.  The lower 32bit of
1029f1af9d3aSPhilipp Hachtmann  * *@idx contains index into type_a and the upper 32bit indexes the
1030f1af9d3aSPhilipp Hachtmann  * areas before each region in type_b.	For example, if type_b regions
103135fd0808STejun Heo  * look like the following,
103235fd0808STejun Heo  *
103335fd0808STejun Heo  *	0:[0-16), 1:[32-48), 2:[128-130)
103435fd0808STejun Heo  *
103535fd0808STejun Heo  * The upper 32bit indexes the following regions.
103635fd0808STejun Heo  *
103735fd0808STejun Heo  *	0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
103835fd0808STejun Heo  *
103935fd0808STejun Heo  * As both region arrays are sorted, the function advances the two indices
104035fd0808STejun Heo  * in lockstep and returns each intersection.
104135fd0808STejun Heo  */
104277649905SDavid Hildenbrand void __next_mem_range(u64 *idx, int nid, enum memblock_flags flags,
1043f1af9d3aSPhilipp Hachtmann 		      struct memblock_type *type_a,
104477649905SDavid Hildenbrand 		      struct memblock_type *type_b, phys_addr_t *out_start,
104535fd0808STejun Heo 		      phys_addr_t *out_end, int *out_nid)
104635fd0808STejun Heo {
1047f1af9d3aSPhilipp Hachtmann 	int idx_a = *idx & 0xffffffff;
1048f1af9d3aSPhilipp Hachtmann 	int idx_b = *idx >> 32;
1049b1154233SGrygorii Strashko 
1050f1af9d3aSPhilipp Hachtmann 	if (WARN_ONCE(nid == MAX_NUMNODES,
1051f1af9d3aSPhilipp Hachtmann 	"Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1052560dca27SGrygorii Strashko 		nid = NUMA_NO_NODE;
105335fd0808STejun Heo 
1054f1af9d3aSPhilipp Hachtmann 	for (; idx_a < type_a->cnt; idx_a++) {
1055f1af9d3aSPhilipp Hachtmann 		struct memblock_region *m = &type_a->regions[idx_a];
1056f1af9d3aSPhilipp Hachtmann 
105735fd0808STejun Heo 		phys_addr_t m_start = m->base;
105835fd0808STejun Heo 		phys_addr_t m_end = m->base + m->size;
1059f1af9d3aSPhilipp Hachtmann 		int	    m_nid = memblock_get_region_node(m);
106035fd0808STejun Heo 
10619f3d5eaaSMike Rapoport 		if (should_skip_region(type_a, m, nid, flags))
1062bf3d3cc5SArd Biesheuvel 			continue;
1063bf3d3cc5SArd Biesheuvel 
1064f1af9d3aSPhilipp Hachtmann 		if (!type_b) {
1065f1af9d3aSPhilipp Hachtmann 			if (out_start)
1066f1af9d3aSPhilipp Hachtmann 				*out_start = m_start;
1067f1af9d3aSPhilipp Hachtmann 			if (out_end)
1068f1af9d3aSPhilipp Hachtmann 				*out_end = m_end;
1069f1af9d3aSPhilipp Hachtmann 			if (out_nid)
1070f1af9d3aSPhilipp Hachtmann 				*out_nid = m_nid;
1071f1af9d3aSPhilipp Hachtmann 			idx_a++;
1072f1af9d3aSPhilipp Hachtmann 			*idx = (u32)idx_a | (u64)idx_b << 32;
1073f1af9d3aSPhilipp Hachtmann 			return;
1074f1af9d3aSPhilipp Hachtmann 		}
107535fd0808STejun Heo 
1076f1af9d3aSPhilipp Hachtmann 		/* scan areas before each reservation */
1077f1af9d3aSPhilipp Hachtmann 		for (; idx_b < type_b->cnt + 1; idx_b++) {
1078f1af9d3aSPhilipp Hachtmann 			struct memblock_region *r;
1079f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_start;
1080f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_end;
1081f1af9d3aSPhilipp Hachtmann 
1082f1af9d3aSPhilipp Hachtmann 			r = &type_b->regions[idx_b];
1083f1af9d3aSPhilipp Hachtmann 			r_start = idx_b ? r[-1].base + r[-1].size : 0;
1084f1af9d3aSPhilipp Hachtmann 			r_end = idx_b < type_b->cnt ?
10851c4bc43dSStefan Agner 				r->base : PHYS_ADDR_MAX;
1086f1af9d3aSPhilipp Hachtmann 
1087f1af9d3aSPhilipp Hachtmann 			/*
1088f1af9d3aSPhilipp Hachtmann 			 * if idx_b advanced past idx_a,
1089f1af9d3aSPhilipp Hachtmann 			 * break out to advance idx_a
1090f1af9d3aSPhilipp Hachtmann 			 */
109135fd0808STejun Heo 			if (r_start >= m_end)
109235fd0808STejun Heo 				break;
109335fd0808STejun Heo 			/* if the two regions intersect, we're done */
109435fd0808STejun Heo 			if (m_start < r_end) {
109535fd0808STejun Heo 				if (out_start)
1096f1af9d3aSPhilipp Hachtmann 					*out_start =
1097f1af9d3aSPhilipp Hachtmann 						max(m_start, r_start);
109835fd0808STejun Heo 				if (out_end)
109935fd0808STejun Heo 					*out_end = min(m_end, r_end);
110035fd0808STejun Heo 				if (out_nid)
1101f1af9d3aSPhilipp Hachtmann 					*out_nid = m_nid;
110235fd0808STejun Heo 				/*
1103f1af9d3aSPhilipp Hachtmann 				 * The region which ends first is
1104f1af9d3aSPhilipp Hachtmann 				 * advanced for the next iteration.
110535fd0808STejun Heo 				 */
110635fd0808STejun Heo 				if (m_end <= r_end)
1107f1af9d3aSPhilipp Hachtmann 					idx_a++;
110835fd0808STejun Heo 				else
1109f1af9d3aSPhilipp Hachtmann 					idx_b++;
1110f1af9d3aSPhilipp Hachtmann 				*idx = (u32)idx_a | (u64)idx_b << 32;
111135fd0808STejun Heo 				return;
111235fd0808STejun Heo 			}
111335fd0808STejun Heo 		}
111435fd0808STejun Heo 	}
111535fd0808STejun Heo 
111635fd0808STejun Heo 	/* signal end of iteration */
111735fd0808STejun Heo 	*idx = ULLONG_MAX;
111835fd0808STejun Heo }
111935fd0808STejun Heo 
11207bd0b0f0STejun Heo /**
1121f1af9d3aSPhilipp Hachtmann  * __next_mem_range_rev - generic next function for for_each_*_range_rev()
1122f1af9d3aSPhilipp Hachtmann  *
11237bd0b0f0STejun Heo  * @idx: pointer to u64 loop variable
1124ad5ea8cdSAlexander Kuleshov  * @nid: node selector, %NUMA_NO_NODE for all nodes
1125fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
1126f1af9d3aSPhilipp Hachtmann  * @type_a: pointer to memblock_type from where the range is taken
1127f1af9d3aSPhilipp Hachtmann  * @type_b: pointer to memblock_type which excludes memory from being taken
1128dad7557eSWanpeng Li  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
1129dad7557eSWanpeng Li  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
1130dad7557eSWanpeng Li  * @out_nid: ptr to int for nid of the range, can be %NULL
11317bd0b0f0STejun Heo  *
113247cec443SMike Rapoport  * Finds the next range from type_a which is not marked as unsuitable
113347cec443SMike Rapoport  * in type_b.
113447cec443SMike Rapoport  *
1135f1af9d3aSPhilipp Hachtmann  * Reverse of __next_mem_range().
11367bd0b0f0STejun Heo  */
1137e1720feeSMike Rapoport void __init_memblock __next_mem_range_rev(u64 *idx, int nid,
1138e1720feeSMike Rapoport 					  enum memblock_flags flags,
1139f1af9d3aSPhilipp Hachtmann 					  struct memblock_type *type_a,
1140f1af9d3aSPhilipp Hachtmann 					  struct memblock_type *type_b,
11417bd0b0f0STejun Heo 					  phys_addr_t *out_start,
11427bd0b0f0STejun Heo 					  phys_addr_t *out_end, int *out_nid)
11437bd0b0f0STejun Heo {
1144f1af9d3aSPhilipp Hachtmann 	int idx_a = *idx & 0xffffffff;
1145f1af9d3aSPhilipp Hachtmann 	int idx_b = *idx >> 32;
1146b1154233SGrygorii Strashko 
1147560dca27SGrygorii Strashko 	if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1148560dca27SGrygorii Strashko 		nid = NUMA_NO_NODE;
11497bd0b0f0STejun Heo 
11507bd0b0f0STejun Heo 	if (*idx == (u64)ULLONG_MAX) {
1151f1af9d3aSPhilipp Hachtmann 		idx_a = type_a->cnt - 1;
1152e47608abSzijun_hu 		if (type_b != NULL)
1153f1af9d3aSPhilipp Hachtmann 			idx_b = type_b->cnt;
1154e47608abSzijun_hu 		else
1155e47608abSzijun_hu 			idx_b = 0;
11567bd0b0f0STejun Heo 	}
11577bd0b0f0STejun Heo 
1158f1af9d3aSPhilipp Hachtmann 	for (; idx_a >= 0; idx_a--) {
1159f1af9d3aSPhilipp Hachtmann 		struct memblock_region *m = &type_a->regions[idx_a];
1160f1af9d3aSPhilipp Hachtmann 
11617bd0b0f0STejun Heo 		phys_addr_t m_start = m->base;
11627bd0b0f0STejun Heo 		phys_addr_t m_end = m->base + m->size;
1163f1af9d3aSPhilipp Hachtmann 		int m_nid = memblock_get_region_node(m);
11647bd0b0f0STejun Heo 
11659f3d5eaaSMike Rapoport 		if (should_skip_region(type_a, m, nid, flags))
1166bf3d3cc5SArd Biesheuvel 			continue;
1167bf3d3cc5SArd Biesheuvel 
1168f1af9d3aSPhilipp Hachtmann 		if (!type_b) {
1169f1af9d3aSPhilipp Hachtmann 			if (out_start)
1170f1af9d3aSPhilipp Hachtmann 				*out_start = m_start;
1171f1af9d3aSPhilipp Hachtmann 			if (out_end)
1172f1af9d3aSPhilipp Hachtmann 				*out_end = m_end;
1173f1af9d3aSPhilipp Hachtmann 			if (out_nid)
1174f1af9d3aSPhilipp Hachtmann 				*out_nid = m_nid;
1175fb399b48Szijun_hu 			idx_a--;
1176f1af9d3aSPhilipp Hachtmann 			*idx = (u32)idx_a | (u64)idx_b << 32;
1177f1af9d3aSPhilipp Hachtmann 			return;
1178f1af9d3aSPhilipp Hachtmann 		}
11797bd0b0f0STejun Heo 
1180f1af9d3aSPhilipp Hachtmann 		/* scan areas before each reservation */
1181f1af9d3aSPhilipp Hachtmann 		for (; idx_b >= 0; idx_b--) {
1182f1af9d3aSPhilipp Hachtmann 			struct memblock_region *r;
1183f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_start;
1184f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_end;
1185f1af9d3aSPhilipp Hachtmann 
1186f1af9d3aSPhilipp Hachtmann 			r = &type_b->regions[idx_b];
1187f1af9d3aSPhilipp Hachtmann 			r_start = idx_b ? r[-1].base + r[-1].size : 0;
1188f1af9d3aSPhilipp Hachtmann 			r_end = idx_b < type_b->cnt ?
11891c4bc43dSStefan Agner 				r->base : PHYS_ADDR_MAX;
1190f1af9d3aSPhilipp Hachtmann 			/*
1191f1af9d3aSPhilipp Hachtmann 			 * if idx_b advanced past idx_a,
1192f1af9d3aSPhilipp Hachtmann 			 * break out to advance idx_a
1193f1af9d3aSPhilipp Hachtmann 			 */
1194f1af9d3aSPhilipp Hachtmann 
11957bd0b0f0STejun Heo 			if (r_end <= m_start)
11967bd0b0f0STejun Heo 				break;
11977bd0b0f0STejun Heo 			/* if the two regions intersect, we're done */
11987bd0b0f0STejun Heo 			if (m_end > r_start) {
11997bd0b0f0STejun Heo 				if (out_start)
12007bd0b0f0STejun Heo 					*out_start = max(m_start, r_start);
12017bd0b0f0STejun Heo 				if (out_end)
12027bd0b0f0STejun Heo 					*out_end = min(m_end, r_end);
12037bd0b0f0STejun Heo 				if (out_nid)
1204f1af9d3aSPhilipp Hachtmann 					*out_nid = m_nid;
12057bd0b0f0STejun Heo 				if (m_start >= r_start)
1206f1af9d3aSPhilipp Hachtmann 					idx_a--;
12077bd0b0f0STejun Heo 				else
1208f1af9d3aSPhilipp Hachtmann 					idx_b--;
1209f1af9d3aSPhilipp Hachtmann 				*idx = (u32)idx_a | (u64)idx_b << 32;
12107bd0b0f0STejun Heo 				return;
12117bd0b0f0STejun Heo 			}
12127bd0b0f0STejun Heo 		}
12137bd0b0f0STejun Heo 	}
1214f1af9d3aSPhilipp Hachtmann 	/* signal end of iteration */
12157bd0b0f0STejun Heo 	*idx = ULLONG_MAX;
12167bd0b0f0STejun Heo }
12177bd0b0f0STejun Heo 
12187c0caeb8STejun Heo /*
121945e79815SChen Chang  * Common iterator interface used to define for_each_mem_pfn_range().
12207c0caeb8STejun Heo  */
12217c0caeb8STejun Heo void __init_memblock __next_mem_pfn_range(int *idx, int nid,
12227c0caeb8STejun Heo 				unsigned long *out_start_pfn,
12237c0caeb8STejun Heo 				unsigned long *out_end_pfn, int *out_nid)
12247c0caeb8STejun Heo {
12257c0caeb8STejun Heo 	struct memblock_type *type = &memblock.memory;
12267c0caeb8STejun Heo 	struct memblock_region *r;
1227d622abf7SMike Rapoport 	int r_nid;
12287c0caeb8STejun Heo 
12297c0caeb8STejun Heo 	while (++*idx < type->cnt) {
12307c0caeb8STejun Heo 		r = &type->regions[*idx];
1231d622abf7SMike Rapoport 		r_nid = memblock_get_region_node(r);
12327c0caeb8STejun Heo 
12337c0caeb8STejun Heo 		if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
12347c0caeb8STejun Heo 			continue;
1235d622abf7SMike Rapoport 		if (nid == MAX_NUMNODES || nid == r_nid)
12367c0caeb8STejun Heo 			break;
12377c0caeb8STejun Heo 	}
12387c0caeb8STejun Heo 	if (*idx >= type->cnt) {
12397c0caeb8STejun Heo 		*idx = -1;
12407c0caeb8STejun Heo 		return;
12417c0caeb8STejun Heo 	}
12427c0caeb8STejun Heo 
12437c0caeb8STejun Heo 	if (out_start_pfn)
12447c0caeb8STejun Heo 		*out_start_pfn = PFN_UP(r->base);
12457c0caeb8STejun Heo 	if (out_end_pfn)
12467c0caeb8STejun Heo 		*out_end_pfn = PFN_DOWN(r->base + r->size);
12477c0caeb8STejun Heo 	if (out_nid)
1248d622abf7SMike Rapoport 		*out_nid = r_nid;
12497c0caeb8STejun Heo }
12507c0caeb8STejun Heo 
12517c0caeb8STejun Heo /**
12527c0caeb8STejun Heo  * memblock_set_node - set node ID on memblock regions
12537c0caeb8STejun Heo  * @base: base of area to set node ID for
12547c0caeb8STejun Heo  * @size: size of area to set node ID for
1255e7e8de59STang Chen  * @type: memblock type to set node ID for
12567c0caeb8STejun Heo  * @nid: node ID to set
12577c0caeb8STejun Heo  *
1258e7e8de59STang Chen  * Set the nid of memblock @type regions in [@base, @base + @size) to @nid.
12597c0caeb8STejun Heo  * Regions which cross the area boundaries are split as necessary.
12607c0caeb8STejun Heo  *
126147cec443SMike Rapoport  * Return:
12627c0caeb8STejun Heo  * 0 on success, -errno on failure.
12637c0caeb8STejun Heo  */
12647c0caeb8STejun Heo int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
1265e7e8de59STang Chen 				      struct memblock_type *type, int nid)
12667c0caeb8STejun Heo {
1267a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
12686a9ceb31STejun Heo 	int start_rgn, end_rgn;
12696a9ceb31STejun Heo 	int i, ret;
12707c0caeb8STejun Heo 
12716a9ceb31STejun Heo 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
12726a9ceb31STejun Heo 	if (ret)
12736a9ceb31STejun Heo 		return ret;
12747c0caeb8STejun Heo 
12756a9ceb31STejun Heo 	for (i = start_rgn; i < end_rgn; i++)
1276e9d24ad3SWanpeng Li 		memblock_set_region_node(&type->regions[i], nid);
12777c0caeb8STejun Heo 
12787c0caeb8STejun Heo 	memblock_merge_regions(type);
12793f08a302SMike Rapoport #endif
12807c0caeb8STejun Heo 	return 0;
12817c0caeb8STejun Heo }
12823f08a302SMike Rapoport 
1283837566e7SAlexander Duyck #ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
1284837566e7SAlexander Duyck /**
1285837566e7SAlexander Duyck  * __next_mem_pfn_range_in_zone - iterator for for_each_*_range_in_zone()
1286837566e7SAlexander Duyck  *
1287837566e7SAlexander Duyck  * @idx: pointer to u64 loop variable
1288837566e7SAlexander Duyck  * @zone: zone in which all of the memory blocks reside
1289837566e7SAlexander Duyck  * @out_spfn: ptr to ulong for start pfn of the range, can be %NULL
1290837566e7SAlexander Duyck  * @out_epfn: ptr to ulong for end pfn of the range, can be %NULL
1291837566e7SAlexander Duyck  *
1292837566e7SAlexander Duyck  * This function is meant to be a zone/pfn specific wrapper for the
1293837566e7SAlexander Duyck  * for_each_mem_range type iterators. Specifically they are used in the
1294837566e7SAlexander Duyck  * deferred memory init routines and as such we were duplicating much of
1295837566e7SAlexander Duyck  * this logic throughout the code. So instead of having it in multiple
1296837566e7SAlexander Duyck  * locations it seemed like it would make more sense to centralize this to
1297837566e7SAlexander Duyck  * one new iterator that does everything they need.
1298837566e7SAlexander Duyck  */
1299837566e7SAlexander Duyck void __init_memblock
1300837566e7SAlexander Duyck __next_mem_pfn_range_in_zone(u64 *idx, struct zone *zone,
1301837566e7SAlexander Duyck 			     unsigned long *out_spfn, unsigned long *out_epfn)
1302837566e7SAlexander Duyck {
1303837566e7SAlexander Duyck 	int zone_nid = zone_to_nid(zone);
1304837566e7SAlexander Duyck 	phys_addr_t spa, epa;
1305837566e7SAlexander Duyck 
1306837566e7SAlexander Duyck 	__next_mem_range(idx, zone_nid, MEMBLOCK_NONE,
1307837566e7SAlexander Duyck 			 &memblock.memory, &memblock.reserved,
1308f30b002cSMiaohe Lin 			 &spa, &epa, NULL);
1309837566e7SAlexander Duyck 
1310837566e7SAlexander Duyck 	while (*idx != U64_MAX) {
1311837566e7SAlexander Duyck 		unsigned long epfn = PFN_DOWN(epa);
1312837566e7SAlexander Duyck 		unsigned long spfn = PFN_UP(spa);
1313837566e7SAlexander Duyck 
1314837566e7SAlexander Duyck 		/*
1315837566e7SAlexander Duyck 		 * Verify the end is at least past the start of the zone and
1316837566e7SAlexander Duyck 		 * that we have at least one PFN to initialize.
1317837566e7SAlexander Duyck 		 */
1318837566e7SAlexander Duyck 		if (zone->zone_start_pfn < epfn && spfn < epfn) {
1319837566e7SAlexander Duyck 			/* if we went too far just stop searching */
1320837566e7SAlexander Duyck 			if (zone_end_pfn(zone) <= spfn) {
1321837566e7SAlexander Duyck 				*idx = U64_MAX;
1322837566e7SAlexander Duyck 				break;
1323837566e7SAlexander Duyck 			}
1324837566e7SAlexander Duyck 
1325837566e7SAlexander Duyck 			if (out_spfn)
1326837566e7SAlexander Duyck 				*out_spfn = max(zone->zone_start_pfn, spfn);
1327837566e7SAlexander Duyck 			if (out_epfn)
1328837566e7SAlexander Duyck 				*out_epfn = min(zone_end_pfn(zone), epfn);
1329837566e7SAlexander Duyck 
1330837566e7SAlexander Duyck 			return;
1331837566e7SAlexander Duyck 		}
1332837566e7SAlexander Duyck 
1333837566e7SAlexander Duyck 		__next_mem_range(idx, zone_nid, MEMBLOCK_NONE,
1334837566e7SAlexander Duyck 				 &memblock.memory, &memblock.reserved,
1335f30b002cSMiaohe Lin 				 &spa, &epa, NULL);
1336837566e7SAlexander Duyck 	}
1337837566e7SAlexander Duyck 
1338837566e7SAlexander Duyck 	/* signal end of iteration */
1339837566e7SAlexander Duyck 	if (out_spfn)
1340837566e7SAlexander Duyck 		*out_spfn = ULONG_MAX;
1341837566e7SAlexander Duyck 	if (out_epfn)
1342837566e7SAlexander Duyck 		*out_epfn = 0;
1343837566e7SAlexander Duyck }
1344837566e7SAlexander Duyck 
1345837566e7SAlexander Duyck #endif /* CONFIG_DEFERRED_STRUCT_PAGE_INIT */
13467c0caeb8STejun Heo 
134792d12f95SMike Rapoport /**
134892d12f95SMike Rapoport  * memblock_alloc_range_nid - allocate boot memory block
134992d12f95SMike Rapoport  * @size: size of memory block to be allocated in bytes
135092d12f95SMike Rapoport  * @align: alignment of the region and block's size
135192d12f95SMike Rapoport  * @start: the lower bound of the memory region to allocate (phys address)
135292d12f95SMike Rapoport  * @end: the upper bound of the memory region to allocate (phys address)
135392d12f95SMike Rapoport  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
13540ac398b1SYunfeng Ye  * @exact_nid: control the allocation fall back to other nodes
135592d12f95SMike Rapoport  *
135692d12f95SMike Rapoport  * The allocation is performed from memory region limited by
135795830666SCao jin  * memblock.current_limit if @end == %MEMBLOCK_ALLOC_ACCESSIBLE.
135892d12f95SMike Rapoport  *
13590ac398b1SYunfeng Ye  * If the specified node can not hold the requested memory and @exact_nid
13600ac398b1SYunfeng Ye  * is false, the allocation falls back to any node in the system.
136192d12f95SMike Rapoport  *
136292d12f95SMike Rapoport  * For systems with memory mirroring, the allocation is attempted first
136392d12f95SMike Rapoport  * from the regions with mirroring enabled and then retried from any
136492d12f95SMike Rapoport  * memory region.
136592d12f95SMike Rapoport  *
1366c200d900SPatrick Wang  * In addition, function using kmemleak_alloc_phys for allocated boot
1367c200d900SPatrick Wang  * memory block, it is never reported as leaks.
136892d12f95SMike Rapoport  *
136992d12f95SMike Rapoport  * Return:
137092d12f95SMike Rapoport  * Physical address of allocated memory block on success, %0 on failure.
137192d12f95SMike Rapoport  */
13728676af1fSAslan Bakirov phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
13732bfc2862SAkinobu Mita 					phys_addr_t align, phys_addr_t start,
13740ac398b1SYunfeng Ye 					phys_addr_t end, int nid,
13750ac398b1SYunfeng Ye 					bool exact_nid)
137695f72d1eSYinghai Lu {
137792d12f95SMike Rapoport 	enum memblock_flags flags = choose_memblock_flags();
13786ed311b2SBenjamin Herrenschmidt 	phys_addr_t found;
137995f72d1eSYinghai Lu 
138092d12f95SMike Rapoport 	if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
138192d12f95SMike Rapoport 		nid = NUMA_NO_NODE;
138292d12f95SMike Rapoport 
13832f770806SMike Rapoport 	if (!align) {
13842f770806SMike Rapoport 		/* Can't use WARNs this early in boot on powerpc */
13852f770806SMike Rapoport 		dump_stack();
13862f770806SMike Rapoport 		align = SMP_CACHE_BYTES;
13872f770806SMike Rapoport 	}
13882f770806SMike Rapoport 
138992d12f95SMike Rapoport again:
1390fc6daaf9STony Luck 	found = memblock_find_in_range_node(size, align, start, end, nid,
1391fc6daaf9STony Luck 					    flags);
139292d12f95SMike Rapoport 	if (found && !memblock_reserve(found, size))
139392d12f95SMike Rapoport 		goto done;
139492d12f95SMike Rapoport 
13950ac398b1SYunfeng Ye 	if (nid != NUMA_NO_NODE && !exact_nid) {
139692d12f95SMike Rapoport 		found = memblock_find_in_range_node(size, align, start,
139792d12f95SMike Rapoport 						    end, NUMA_NO_NODE,
139892d12f95SMike Rapoport 						    flags);
139992d12f95SMike Rapoport 		if (found && !memblock_reserve(found, size))
140092d12f95SMike Rapoport 			goto done;
140192d12f95SMike Rapoport 	}
140292d12f95SMike Rapoport 
140392d12f95SMike Rapoport 	if (flags & MEMBLOCK_MIRROR) {
140492d12f95SMike Rapoport 		flags &= ~MEMBLOCK_MIRROR;
140514d9a675SMa Wupeng 		pr_warn_ratelimited("Could not allocate %pap bytes of mirrored memory\n",
140692d12f95SMike Rapoport 			&size);
140792d12f95SMike Rapoport 		goto again;
140892d12f95SMike Rapoport 	}
140992d12f95SMike Rapoport 
141092d12f95SMike Rapoport 	return 0;
141192d12f95SMike Rapoport 
141292d12f95SMike Rapoport done:
1413c6975d7cSQian Cai 	/*
1414c6975d7cSQian Cai 	 * Skip kmemleak for those places like kasan_init() and
1415c6975d7cSQian Cai 	 * early_pgtable_alloc() due to high volume.
1416c6975d7cSQian Cai 	 */
1417c6975d7cSQian Cai 	if (end != MEMBLOCK_ALLOC_NOLEAKTRACE)
1418aedf95eaSCatalin Marinas 		/*
1419c200d900SPatrick Wang 		 * Memblock allocated blocks are never reported as
1420c200d900SPatrick Wang 		 * leaks. This is because many of these blocks are
1421c200d900SPatrick Wang 		 * only referred via the physical address which is
1422c200d900SPatrick Wang 		 * not looked up by kmemleak.
1423aedf95eaSCatalin Marinas 		 */
1424c200d900SPatrick Wang 		kmemleak_alloc_phys(found, size, 0);
142592d12f95SMike Rapoport 
14266ed311b2SBenjamin Herrenschmidt 	return found;
1427aedf95eaSCatalin Marinas }
142895f72d1eSYinghai Lu 
1429a2974133SMike Rapoport /**
1430a2974133SMike Rapoport  * memblock_phys_alloc_range - allocate a memory block inside specified range
1431a2974133SMike Rapoport  * @size: size of memory block to be allocated in bytes
1432a2974133SMike Rapoport  * @align: alignment of the region and block's size
1433a2974133SMike Rapoport  * @start: the lower bound of the memory region to allocate (physical address)
1434a2974133SMike Rapoport  * @end: the upper bound of the memory region to allocate (physical address)
1435a2974133SMike Rapoport  *
1436a2974133SMike Rapoport  * Allocate @size bytes in the between @start and @end.
1437a2974133SMike Rapoport  *
1438a2974133SMike Rapoport  * Return: physical address of the allocated memory block on success,
1439a2974133SMike Rapoport  * %0 on failure.
1440a2974133SMike Rapoport  */
14418a770c2aSMike Rapoport phys_addr_t __init memblock_phys_alloc_range(phys_addr_t size,
14428a770c2aSMike Rapoport 					     phys_addr_t align,
14438a770c2aSMike Rapoport 					     phys_addr_t start,
14448a770c2aSMike Rapoport 					     phys_addr_t end)
14452bfc2862SAkinobu Mita {
1446b5cf2d6cSFaiyaz Mohammed 	memblock_dbg("%s: %llu bytes align=0x%llx from=%pa max_addr=%pa %pS\n",
1447b5cf2d6cSFaiyaz Mohammed 		     __func__, (u64)size, (u64)align, &start, &end,
1448b5cf2d6cSFaiyaz Mohammed 		     (void *)_RET_IP_);
14490ac398b1SYunfeng Ye 	return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE,
14500ac398b1SYunfeng Ye 					false);
14517bd0b0f0STejun Heo }
14527bd0b0f0STejun Heo 
1453a2974133SMike Rapoport /**
145417cbe038SLevi Yun  * memblock_phys_alloc_try_nid - allocate a memory block from specified NUMA node
1455a2974133SMike Rapoport  * @size: size of memory block to be allocated in bytes
1456a2974133SMike Rapoport  * @align: alignment of the region and block's size
1457a2974133SMike Rapoport  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1458a2974133SMike Rapoport  *
1459a2974133SMike Rapoport  * Allocates memory block from the specified NUMA node. If the node
1460a2974133SMike Rapoport  * has no available memory, attempts to allocated from any node in the
1461a2974133SMike Rapoport  * system.
1462a2974133SMike Rapoport  *
1463a2974133SMike Rapoport  * Return: physical address of the allocated memory block on success,
1464a2974133SMike Rapoport  * %0 on failure.
1465a2974133SMike Rapoport  */
14669a8dd708SMike Rapoport phys_addr_t __init memblock_phys_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
14679d1e2492SBenjamin Herrenschmidt {
146833755574SMike Rapoport 	return memblock_alloc_range_nid(size, align, 0,
14690ac398b1SYunfeng Ye 					MEMBLOCK_ALLOC_ACCESSIBLE, nid, false);
147095f72d1eSYinghai Lu }
147195f72d1eSYinghai Lu 
147226f09e9bSSantosh Shilimkar /**
1473eb31d559SMike Rapoport  * memblock_alloc_internal - allocate boot memory block
147426f09e9bSSantosh Shilimkar  * @size: size of memory block to be allocated in bytes
147526f09e9bSSantosh Shilimkar  * @align: alignment of the region and block's size
147626f09e9bSSantosh Shilimkar  * @min_addr: the lower bound of the memory region to allocate (phys address)
147726f09e9bSSantosh Shilimkar  * @max_addr: the upper bound of the memory region to allocate (phys address)
147826f09e9bSSantosh Shilimkar  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
14790ac398b1SYunfeng Ye  * @exact_nid: control the allocation fall back to other nodes
148026f09e9bSSantosh Shilimkar  *
148192d12f95SMike Rapoport  * Allocates memory block using memblock_alloc_range_nid() and
148292d12f95SMike Rapoport  * converts the returned physical address to virtual.
148392d12f95SMike Rapoport  *
148426f09e9bSSantosh Shilimkar  * The @min_addr limit is dropped if it can not be satisfied and the allocation
148592d12f95SMike Rapoport  * will fall back to memory below @min_addr. Other constraints, such
148692d12f95SMike Rapoport  * as node and mirrored memory will be handled again in
148792d12f95SMike Rapoport  * memblock_alloc_range_nid().
148826f09e9bSSantosh Shilimkar  *
148947cec443SMike Rapoport  * Return:
149026f09e9bSSantosh Shilimkar  * Virtual address of allocated memory block on success, NULL on failure.
149126f09e9bSSantosh Shilimkar  */
1492eb31d559SMike Rapoport static void * __init memblock_alloc_internal(
149326f09e9bSSantosh Shilimkar 				phys_addr_t size, phys_addr_t align,
149426f09e9bSSantosh Shilimkar 				phys_addr_t min_addr, phys_addr_t max_addr,
14950ac398b1SYunfeng Ye 				int nid, bool exact_nid)
149626f09e9bSSantosh Shilimkar {
149726f09e9bSSantosh Shilimkar 	phys_addr_t alloc;
149826f09e9bSSantosh Shilimkar 
149926f09e9bSSantosh Shilimkar 	/*
150026f09e9bSSantosh Shilimkar 	 * Detect any accidental use of these APIs after slab is ready, as at
150126f09e9bSSantosh Shilimkar 	 * this moment memblock may be deinitialized already and its
1502c6ffc5caSMike Rapoport 	 * internal data may be destroyed (after execution of memblock_free_all)
150326f09e9bSSantosh Shilimkar 	 */
150426f09e9bSSantosh Shilimkar 	if (WARN_ON_ONCE(slab_is_available()))
150526f09e9bSSantosh Shilimkar 		return kzalloc_node(size, GFP_NOWAIT, nid);
150626f09e9bSSantosh Shilimkar 
1507f3057ad7SMike Rapoport 	if (max_addr > memblock.current_limit)
1508f3057ad7SMike Rapoport 		max_addr = memblock.current_limit;
1509f3057ad7SMike Rapoport 
15100ac398b1SYunfeng Ye 	alloc = memblock_alloc_range_nid(size, align, min_addr, max_addr, nid,
15110ac398b1SYunfeng Ye 					exact_nid);
15122f770806SMike Rapoport 
151392d12f95SMike Rapoport 	/* retry allocation without lower limit */
151492d12f95SMike Rapoport 	if (!alloc && min_addr)
15150ac398b1SYunfeng Ye 		alloc = memblock_alloc_range_nid(size, align, 0, max_addr, nid,
15160ac398b1SYunfeng Ye 						exact_nid);
151726f09e9bSSantosh Shilimkar 
151892d12f95SMike Rapoport 	if (!alloc)
1519a3f5bafcSTony Luck 		return NULL;
152026f09e9bSSantosh Shilimkar 
152192d12f95SMike Rapoport 	return phys_to_virt(alloc);
152226f09e9bSSantosh Shilimkar }
152326f09e9bSSantosh Shilimkar 
152426f09e9bSSantosh Shilimkar /**
15250ac398b1SYunfeng Ye  * memblock_alloc_exact_nid_raw - allocate boot memory block on the exact node
15260ac398b1SYunfeng Ye  * without zeroing memory
15270ac398b1SYunfeng Ye  * @size: size of memory block to be allocated in bytes
15280ac398b1SYunfeng Ye  * @align: alignment of the region and block's size
15290ac398b1SYunfeng Ye  * @min_addr: the lower bound of the memory region from where the allocation
15300ac398b1SYunfeng Ye  *	  is preferred (phys address)
15310ac398b1SYunfeng Ye  * @max_addr: the upper bound of the memory region from where the allocation
15320ac398b1SYunfeng Ye  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
15330ac398b1SYunfeng Ye  *	      allocate only from memory limited by memblock.current_limit value
15340ac398b1SYunfeng Ye  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
15350ac398b1SYunfeng Ye  *
15360ac398b1SYunfeng Ye  * Public function, provides additional debug information (including caller
15370ac398b1SYunfeng Ye  * info), if enabled. Does not zero allocated memory.
15380ac398b1SYunfeng Ye  *
15390ac398b1SYunfeng Ye  * Return:
15400ac398b1SYunfeng Ye  * Virtual address of allocated memory block on success, NULL on failure.
15410ac398b1SYunfeng Ye  */
15420ac398b1SYunfeng Ye void * __init memblock_alloc_exact_nid_raw(
15430ac398b1SYunfeng Ye 			phys_addr_t size, phys_addr_t align,
15440ac398b1SYunfeng Ye 			phys_addr_t min_addr, phys_addr_t max_addr,
15450ac398b1SYunfeng Ye 			int nid)
15460ac398b1SYunfeng Ye {
15470ac398b1SYunfeng Ye 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
15480ac398b1SYunfeng Ye 		     __func__, (u64)size, (u64)align, nid, &min_addr,
15490ac398b1SYunfeng Ye 		     &max_addr, (void *)_RET_IP_);
15500ac398b1SYunfeng Ye 
155108678804SMike Rapoport 	return memblock_alloc_internal(size, align, min_addr, max_addr, nid,
155208678804SMike Rapoport 				       true);
15530ac398b1SYunfeng Ye }
15540ac398b1SYunfeng Ye 
15550ac398b1SYunfeng Ye /**
1556eb31d559SMike Rapoport  * memblock_alloc_try_nid_raw - allocate boot memory block without zeroing
1557ea1f5f37SPavel Tatashin  * memory and without panicking
1558ea1f5f37SPavel Tatashin  * @size: size of memory block to be allocated in bytes
1559ea1f5f37SPavel Tatashin  * @align: alignment of the region and block's size
1560ea1f5f37SPavel Tatashin  * @min_addr: the lower bound of the memory region from where the allocation
1561ea1f5f37SPavel Tatashin  *	  is preferred (phys address)
1562ea1f5f37SPavel Tatashin  * @max_addr: the upper bound of the memory region from where the allocation
156397ad1087SMike Rapoport  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
1564ea1f5f37SPavel Tatashin  *	      allocate only from memory limited by memblock.current_limit value
1565ea1f5f37SPavel Tatashin  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1566ea1f5f37SPavel Tatashin  *
1567ea1f5f37SPavel Tatashin  * Public function, provides additional debug information (including caller
1568ea1f5f37SPavel Tatashin  * info), if enabled. Does not zero allocated memory, does not panic if request
1569ea1f5f37SPavel Tatashin  * cannot be satisfied.
1570ea1f5f37SPavel Tatashin  *
157147cec443SMike Rapoport  * Return:
1572ea1f5f37SPavel Tatashin  * Virtual address of allocated memory block on success, NULL on failure.
1573ea1f5f37SPavel Tatashin  */
1574eb31d559SMike Rapoport void * __init memblock_alloc_try_nid_raw(
1575ea1f5f37SPavel Tatashin 			phys_addr_t size, phys_addr_t align,
1576ea1f5f37SPavel Tatashin 			phys_addr_t min_addr, phys_addr_t max_addr,
1577ea1f5f37SPavel Tatashin 			int nid)
1578ea1f5f37SPavel Tatashin {
1579d75f773cSSakari Ailus 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
1580a36aab89SMike Rapoport 		     __func__, (u64)size, (u64)align, nid, &min_addr,
1581a36aab89SMike Rapoport 		     &max_addr, (void *)_RET_IP_);
1582ea1f5f37SPavel Tatashin 
158308678804SMike Rapoport 	return memblock_alloc_internal(size, align, min_addr, max_addr, nid,
158408678804SMike Rapoport 				       false);
1585ea1f5f37SPavel Tatashin }
1586ea1f5f37SPavel Tatashin 
1587ea1f5f37SPavel Tatashin /**
1588c0dbe825SMike Rapoport  * memblock_alloc_try_nid - allocate boot memory block
158926f09e9bSSantosh Shilimkar  * @size: size of memory block to be allocated in bytes
159026f09e9bSSantosh Shilimkar  * @align: alignment of the region and block's size
159126f09e9bSSantosh Shilimkar  * @min_addr: the lower bound of the memory region from where the allocation
159226f09e9bSSantosh Shilimkar  *	  is preferred (phys address)
159326f09e9bSSantosh Shilimkar  * @max_addr: the upper bound of the memory region from where the allocation
159497ad1087SMike Rapoport  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
159526f09e9bSSantosh Shilimkar  *	      allocate only from memory limited by memblock.current_limit value
159626f09e9bSSantosh Shilimkar  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
159726f09e9bSSantosh Shilimkar  *
1598c0dbe825SMike Rapoport  * Public function, provides additional debug information (including caller
1599c0dbe825SMike Rapoport  * info), if enabled. This function zeroes the allocated memory.
160026f09e9bSSantosh Shilimkar  *
160147cec443SMike Rapoport  * Return:
160226f09e9bSSantosh Shilimkar  * Virtual address of allocated memory block on success, NULL on failure.
160326f09e9bSSantosh Shilimkar  */
1604eb31d559SMike Rapoport void * __init memblock_alloc_try_nid(
160526f09e9bSSantosh Shilimkar 			phys_addr_t size, phys_addr_t align,
160626f09e9bSSantosh Shilimkar 			phys_addr_t min_addr, phys_addr_t max_addr,
160726f09e9bSSantosh Shilimkar 			int nid)
160826f09e9bSSantosh Shilimkar {
160926f09e9bSSantosh Shilimkar 	void *ptr;
161026f09e9bSSantosh Shilimkar 
1611d75f773cSSakari Ailus 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
1612a36aab89SMike Rapoport 		     __func__, (u64)size, (u64)align, nid, &min_addr,
1613a36aab89SMike Rapoport 		     &max_addr, (void *)_RET_IP_);
1614eb31d559SMike Rapoport 	ptr = memblock_alloc_internal(size, align,
16150ac398b1SYunfeng Ye 					   min_addr, max_addr, nid, false);
1616c0dbe825SMike Rapoport 	if (ptr)
1617ea1f5f37SPavel Tatashin 		memset(ptr, 0, size);
161826f09e9bSSantosh Shilimkar 
1619c0dbe825SMike Rapoport 	return ptr;
162026f09e9bSSantosh Shilimkar }
162126f09e9bSSantosh Shilimkar 
162226f09e9bSSantosh Shilimkar /**
1623621d9739SMike Rapoport  * memblock_free_late - free pages directly to buddy allocator
162448a833ccSMike Rapoport  * @base: phys starting address of the  boot memory block
162526f09e9bSSantosh Shilimkar  * @size: size of the boot memory block in bytes
162626f09e9bSSantosh Shilimkar  *
1627a2974133SMike Rapoport  * This is only useful when the memblock allocator has already been torn
162826f09e9bSSantosh Shilimkar  * down, but we are still initializing the system.  Pages are released directly
1629a2974133SMike Rapoport  * to the buddy allocator.
163026f09e9bSSantosh Shilimkar  */
1631621d9739SMike Rapoport void __init memblock_free_late(phys_addr_t base, phys_addr_t size)
163226f09e9bSSantosh Shilimkar {
1633a36aab89SMike Rapoport 	phys_addr_t cursor, end;
163426f09e9bSSantosh Shilimkar 
1635a36aab89SMike Rapoport 	end = base + size - 1;
1636d75f773cSSakari Ailus 	memblock_dbg("%s: [%pa-%pa] %pS\n",
1637a36aab89SMike Rapoport 		     __func__, &base, &end, (void *)_RET_IP_);
16389099daedSCatalin Marinas 	kmemleak_free_part_phys(base, size);
163926f09e9bSSantosh Shilimkar 	cursor = PFN_UP(base);
164026f09e9bSSantosh Shilimkar 	end = PFN_DOWN(base + size);
164126f09e9bSSantosh Shilimkar 
164226f09e9bSSantosh Shilimkar 	for (; cursor < end; cursor++) {
1643*647037adSAaron Thompson 		memblock_free_pages(pfn_to_page(cursor), cursor, 0);
1644ca79b0c2SArun KS 		totalram_pages_inc();
164526f09e9bSSantosh Shilimkar 	}
164626f09e9bSSantosh Shilimkar }
16479d1e2492SBenjamin Herrenschmidt 
16489d1e2492SBenjamin Herrenschmidt /*
16499d1e2492SBenjamin Herrenschmidt  * Remaining API functions
16509d1e2492SBenjamin Herrenschmidt  */
16519d1e2492SBenjamin Herrenschmidt 
16521f1ffb8aSDavid Gibson phys_addr_t __init_memblock memblock_phys_mem_size(void)
165395f72d1eSYinghai Lu {
16541440c4e2STejun Heo 	return memblock.memory.total_size;
165595f72d1eSYinghai Lu }
165695f72d1eSYinghai Lu 
16578907de5dSSrikar Dronamraju phys_addr_t __init_memblock memblock_reserved_size(void)
16588907de5dSSrikar Dronamraju {
16598907de5dSSrikar Dronamraju 	return memblock.reserved.total_size;
16608907de5dSSrikar Dronamraju }
16618907de5dSSrikar Dronamraju 
16620a93ebefSSam Ravnborg /* lowest address */
16630a93ebefSSam Ravnborg phys_addr_t __init_memblock memblock_start_of_DRAM(void)
16640a93ebefSSam Ravnborg {
16650a93ebefSSam Ravnborg 	return memblock.memory.regions[0].base;
16660a93ebefSSam Ravnborg }
16670a93ebefSSam Ravnborg 
166810d06439SYinghai Lu phys_addr_t __init_memblock memblock_end_of_DRAM(void)
166995f72d1eSYinghai Lu {
167095f72d1eSYinghai Lu 	int idx = memblock.memory.cnt - 1;
167195f72d1eSYinghai Lu 
1672e3239ff9SBenjamin Herrenschmidt 	return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
167395f72d1eSYinghai Lu }
167495f72d1eSYinghai Lu 
1675a571d4ebSDennis Chen static phys_addr_t __init_memblock __find_max_addr(phys_addr_t limit)
167695f72d1eSYinghai Lu {
16771c4bc43dSStefan Agner 	phys_addr_t max_addr = PHYS_ADDR_MAX;
1678136199f0SEmil Medve 	struct memblock_region *r;
167995f72d1eSYinghai Lu 
1680a571d4ebSDennis Chen 	/*
1681a571d4ebSDennis Chen 	 * translate the memory @limit size into the max address within one of
1682a571d4ebSDennis Chen 	 * the memory memblock regions, if the @limit exceeds the total size
16831c4bc43dSStefan Agner 	 * of those regions, max_addr will keep original value PHYS_ADDR_MAX
1684a571d4ebSDennis Chen 	 */
1685cc6de168SMike Rapoport 	for_each_mem_region(r) {
1686c0ce8fefSTejun Heo 		if (limit <= r->size) {
1687c0ce8fefSTejun Heo 			max_addr = r->base + limit;
168895f72d1eSYinghai Lu 			break;
168995f72d1eSYinghai Lu 		}
1690c0ce8fefSTejun Heo 		limit -= r->size;
169195f72d1eSYinghai Lu 	}
1692c0ce8fefSTejun Heo 
1693a571d4ebSDennis Chen 	return max_addr;
1694a571d4ebSDennis Chen }
1695a571d4ebSDennis Chen 
1696a571d4ebSDennis Chen void __init memblock_enforce_memory_limit(phys_addr_t limit)
1697a571d4ebSDennis Chen {
169849aef717SColin Ian King 	phys_addr_t max_addr;
1699a571d4ebSDennis Chen 
1700a571d4ebSDennis Chen 	if (!limit)
1701a571d4ebSDennis Chen 		return;
1702a571d4ebSDennis Chen 
1703a571d4ebSDennis Chen 	max_addr = __find_max_addr(limit);
1704a571d4ebSDennis Chen 
1705a571d4ebSDennis Chen 	/* @limit exceeds the total size of the memory, do nothing */
17061c4bc43dSStefan Agner 	if (max_addr == PHYS_ADDR_MAX)
1707a571d4ebSDennis Chen 		return;
1708a571d4ebSDennis Chen 
1709c0ce8fefSTejun Heo 	/* truncate both memory and reserved regions */
1710f1af9d3aSPhilipp Hachtmann 	memblock_remove_range(&memblock.memory, max_addr,
17111c4bc43dSStefan Agner 			      PHYS_ADDR_MAX);
1712f1af9d3aSPhilipp Hachtmann 	memblock_remove_range(&memblock.reserved, max_addr,
17131c4bc43dSStefan Agner 			      PHYS_ADDR_MAX);
171495f72d1eSYinghai Lu }
171595f72d1eSYinghai Lu 
1716c9ca9b4eSAKASHI Takahiro void __init memblock_cap_memory_range(phys_addr_t base, phys_addr_t size)
1717c9ca9b4eSAKASHI Takahiro {
1718c9ca9b4eSAKASHI Takahiro 	int start_rgn, end_rgn;
1719c9ca9b4eSAKASHI Takahiro 	int i, ret;
1720c9ca9b4eSAKASHI Takahiro 
1721c9ca9b4eSAKASHI Takahiro 	if (!size)
1722c9ca9b4eSAKASHI Takahiro 		return;
1723c9ca9b4eSAKASHI Takahiro 
17245173ed72SPeng Fan 	if (!memblock_memory->total_size) {
1725e888fa7bSGeert Uytterhoeven 		pr_warn("%s: No memory registered yet\n", __func__);
1726e888fa7bSGeert Uytterhoeven 		return;
1727e888fa7bSGeert Uytterhoeven 	}
1728e888fa7bSGeert Uytterhoeven 
1729c9ca9b4eSAKASHI Takahiro 	ret = memblock_isolate_range(&memblock.memory, base, size,
1730c9ca9b4eSAKASHI Takahiro 						&start_rgn, &end_rgn);
1731c9ca9b4eSAKASHI Takahiro 	if (ret)
1732c9ca9b4eSAKASHI Takahiro 		return;
1733c9ca9b4eSAKASHI Takahiro 
1734c9ca9b4eSAKASHI Takahiro 	/* remove all the MAP regions */
1735c9ca9b4eSAKASHI Takahiro 	for (i = memblock.memory.cnt - 1; i >= end_rgn; i--)
1736c9ca9b4eSAKASHI Takahiro 		if (!memblock_is_nomap(&memblock.memory.regions[i]))
1737c9ca9b4eSAKASHI Takahiro 			memblock_remove_region(&memblock.memory, i);
1738c9ca9b4eSAKASHI Takahiro 
1739c9ca9b4eSAKASHI Takahiro 	for (i = start_rgn - 1; i >= 0; i--)
1740c9ca9b4eSAKASHI Takahiro 		if (!memblock_is_nomap(&memblock.memory.regions[i]))
1741c9ca9b4eSAKASHI Takahiro 			memblock_remove_region(&memblock.memory, i);
1742c9ca9b4eSAKASHI Takahiro 
1743c9ca9b4eSAKASHI Takahiro 	/* truncate the reserved regions */
1744c9ca9b4eSAKASHI Takahiro 	memblock_remove_range(&memblock.reserved, 0, base);
1745c9ca9b4eSAKASHI Takahiro 	memblock_remove_range(&memblock.reserved,
17461c4bc43dSStefan Agner 			base + size, PHYS_ADDR_MAX);
1747c9ca9b4eSAKASHI Takahiro }
1748c9ca9b4eSAKASHI Takahiro 
1749a571d4ebSDennis Chen void __init memblock_mem_limit_remove_map(phys_addr_t limit)
1750a571d4ebSDennis Chen {
1751a571d4ebSDennis Chen 	phys_addr_t max_addr;
1752a571d4ebSDennis Chen 
1753a571d4ebSDennis Chen 	if (!limit)
1754a571d4ebSDennis Chen 		return;
1755a571d4ebSDennis Chen 
1756a571d4ebSDennis Chen 	max_addr = __find_max_addr(limit);
1757a571d4ebSDennis Chen 
1758a571d4ebSDennis Chen 	/* @limit exceeds the total size of the memory, do nothing */
17591c4bc43dSStefan Agner 	if (max_addr == PHYS_ADDR_MAX)
1760a571d4ebSDennis Chen 		return;
1761a571d4ebSDennis Chen 
1762c9ca9b4eSAKASHI Takahiro 	memblock_cap_memory_range(0, max_addr);
1763a571d4ebSDennis Chen }
1764a571d4ebSDennis Chen 
1765cd79481dSYinghai Lu static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
176672d4b0b4SBenjamin Herrenschmidt {
176772d4b0b4SBenjamin Herrenschmidt 	unsigned int left = 0, right = type->cnt;
176872d4b0b4SBenjamin Herrenschmidt 
176972d4b0b4SBenjamin Herrenschmidt 	do {
177072d4b0b4SBenjamin Herrenschmidt 		unsigned int mid = (right + left) / 2;
177172d4b0b4SBenjamin Herrenschmidt 
177272d4b0b4SBenjamin Herrenschmidt 		if (addr < type->regions[mid].base)
177372d4b0b4SBenjamin Herrenschmidt 			right = mid;
177472d4b0b4SBenjamin Herrenschmidt 		else if (addr >= (type->regions[mid].base +
177572d4b0b4SBenjamin Herrenschmidt 				  type->regions[mid].size))
177672d4b0b4SBenjamin Herrenschmidt 			left = mid + 1;
177772d4b0b4SBenjamin Herrenschmidt 		else
177872d4b0b4SBenjamin Herrenschmidt 			return mid;
177972d4b0b4SBenjamin Herrenschmidt 	} while (left < right);
178072d4b0b4SBenjamin Herrenschmidt 	return -1;
178172d4b0b4SBenjamin Herrenschmidt }
178272d4b0b4SBenjamin Herrenschmidt 
1783f5a222dcSYueyi Li bool __init_memblock memblock_is_reserved(phys_addr_t addr)
178495f72d1eSYinghai Lu {
178572d4b0b4SBenjamin Herrenschmidt 	return memblock_search(&memblock.reserved, addr) != -1;
178695f72d1eSYinghai Lu }
178772d4b0b4SBenjamin Herrenschmidt 
1788b4ad0c7eSYaowei Bai bool __init_memblock memblock_is_memory(phys_addr_t addr)
178972d4b0b4SBenjamin Herrenschmidt {
179072d4b0b4SBenjamin Herrenschmidt 	return memblock_search(&memblock.memory, addr) != -1;
179172d4b0b4SBenjamin Herrenschmidt }
179272d4b0b4SBenjamin Herrenschmidt 
1793937f0c26SYaowei Bai bool __init_memblock memblock_is_map_memory(phys_addr_t addr)
1794bf3d3cc5SArd Biesheuvel {
1795bf3d3cc5SArd Biesheuvel 	int i = memblock_search(&memblock.memory, addr);
1796bf3d3cc5SArd Biesheuvel 
1797bf3d3cc5SArd Biesheuvel 	if (i == -1)
1798bf3d3cc5SArd Biesheuvel 		return false;
1799bf3d3cc5SArd Biesheuvel 	return !memblock_is_nomap(&memblock.memory.regions[i]);
1800bf3d3cc5SArd Biesheuvel }
1801bf3d3cc5SArd Biesheuvel 
1802e76b63f8SYinghai Lu int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1803e76b63f8SYinghai Lu 			 unsigned long *start_pfn, unsigned long *end_pfn)
1804e76b63f8SYinghai Lu {
1805e76b63f8SYinghai Lu 	struct memblock_type *type = &memblock.memory;
180616763230SFabian Frederick 	int mid = memblock_search(type, PFN_PHYS(pfn));
1807e76b63f8SYinghai Lu 
1808e76b63f8SYinghai Lu 	if (mid == -1)
1809e76b63f8SYinghai Lu 		return -1;
1810e76b63f8SYinghai Lu 
1811f7e2f7e8SFabian Frederick 	*start_pfn = PFN_DOWN(type->regions[mid].base);
1812f7e2f7e8SFabian Frederick 	*end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size);
1813e76b63f8SYinghai Lu 
1814d622abf7SMike Rapoport 	return memblock_get_region_node(&type->regions[mid]);
1815e76b63f8SYinghai Lu }
1816e76b63f8SYinghai Lu 
1817eab30949SStephen Boyd /**
1818eab30949SStephen Boyd  * memblock_is_region_memory - check if a region is a subset of memory
1819eab30949SStephen Boyd  * @base: base of region to check
1820eab30949SStephen Boyd  * @size: size of region to check
1821eab30949SStephen Boyd  *
1822eab30949SStephen Boyd  * Check if the region [@base, @base + @size) is a subset of a memory block.
1823eab30949SStephen Boyd  *
182447cec443SMike Rapoport  * Return:
1825eab30949SStephen Boyd  * 0 if false, non-zero if true
1826eab30949SStephen Boyd  */
1827937f0c26SYaowei Bai bool __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
182872d4b0b4SBenjamin Herrenschmidt {
1829abb65272STomi Valkeinen 	int idx = memblock_search(&memblock.memory, base);
1830eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
183172d4b0b4SBenjamin Herrenschmidt 
183272d4b0b4SBenjamin Herrenschmidt 	if (idx == -1)
1833937f0c26SYaowei Bai 		return false;
1834ef415ef4SWei Yang 	return (memblock.memory.regions[idx].base +
1835eb18f1b5STejun Heo 		 memblock.memory.regions[idx].size) >= end;
183695f72d1eSYinghai Lu }
183795f72d1eSYinghai Lu 
1838eab30949SStephen Boyd /**
1839eab30949SStephen Boyd  * memblock_is_region_reserved - check if a region intersects reserved memory
1840eab30949SStephen Boyd  * @base: base of region to check
1841eab30949SStephen Boyd  * @size: size of region to check
1842eab30949SStephen Boyd  *
184347cec443SMike Rapoport  * Check if the region [@base, @base + @size) intersects a reserved
184447cec443SMike Rapoport  * memory block.
1845eab30949SStephen Boyd  *
184647cec443SMike Rapoport  * Return:
1847c5c5c9d1STang Chen  * True if they intersect, false if not.
1848eab30949SStephen Boyd  */
1849c5c5c9d1STang Chen bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
185095f72d1eSYinghai Lu {
1851c5c5c9d1STang Chen 	return memblock_overlaps_region(&memblock.reserved, base, size);
185295f72d1eSYinghai Lu }
185395f72d1eSYinghai Lu 
18546ede1fd3SYinghai Lu void __init_memblock memblock_trim_memory(phys_addr_t align)
18556ede1fd3SYinghai Lu {
18566ede1fd3SYinghai Lu 	phys_addr_t start, end, orig_start, orig_end;
1857136199f0SEmil Medve 	struct memblock_region *r;
18586ede1fd3SYinghai Lu 
1859cc6de168SMike Rapoport 	for_each_mem_region(r) {
1860136199f0SEmil Medve 		orig_start = r->base;
1861136199f0SEmil Medve 		orig_end = r->base + r->size;
18626ede1fd3SYinghai Lu 		start = round_up(orig_start, align);
18636ede1fd3SYinghai Lu 		end = round_down(orig_end, align);
18646ede1fd3SYinghai Lu 
18656ede1fd3SYinghai Lu 		if (start == orig_start && end == orig_end)
18666ede1fd3SYinghai Lu 			continue;
18676ede1fd3SYinghai Lu 
18686ede1fd3SYinghai Lu 		if (start < end) {
1869136199f0SEmil Medve 			r->base = start;
1870136199f0SEmil Medve 			r->size = end - start;
18716ede1fd3SYinghai Lu 		} else {
1872136199f0SEmil Medve 			memblock_remove_region(&memblock.memory,
1873136199f0SEmil Medve 					       r - memblock.memory.regions);
1874136199f0SEmil Medve 			r--;
18756ede1fd3SYinghai Lu 		}
18766ede1fd3SYinghai Lu 	}
18776ede1fd3SYinghai Lu }
1878e63075a3SBenjamin Herrenschmidt 
18793661ca66SYinghai Lu void __init_memblock memblock_set_current_limit(phys_addr_t limit)
1880e63075a3SBenjamin Herrenschmidt {
1881e63075a3SBenjamin Herrenschmidt 	memblock.current_limit = limit;
1882e63075a3SBenjamin Herrenschmidt }
1883e63075a3SBenjamin Herrenschmidt 
1884fec51014SLaura Abbott phys_addr_t __init_memblock memblock_get_current_limit(void)
1885fec51014SLaura Abbott {
1886fec51014SLaura Abbott 	return memblock.current_limit;
1887fec51014SLaura Abbott }
1888fec51014SLaura Abbott 
18890262d9c8SHeiko Carstens static void __init_memblock memblock_dump(struct memblock_type *type)
18906ed311b2SBenjamin Herrenschmidt {
18915d63f81cSMiles Chen 	phys_addr_t base, end, size;
1892e1720feeSMike Rapoport 	enum memblock_flags flags;
18938c9c1701SAlexander Kuleshov 	int idx;
18948c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
18956ed311b2SBenjamin Herrenschmidt 
18960262d9c8SHeiko Carstens 	pr_info(" %s.cnt  = 0x%lx\n", type->name, type->cnt);
18976ed311b2SBenjamin Herrenschmidt 
189866e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
18997c0caeb8STejun Heo 		char nid_buf[32] = "";
19006ed311b2SBenjamin Herrenschmidt 
19017c0caeb8STejun Heo 		base = rgn->base;
19027c0caeb8STejun Heo 		size = rgn->size;
19035d63f81cSMiles Chen 		end = base + size - 1;
190466a20757STang Chen 		flags = rgn->flags;
1905a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
19067c0caeb8STejun Heo 		if (memblock_get_region_node(rgn) != MAX_NUMNODES)
19077c0caeb8STejun Heo 			snprintf(nid_buf, sizeof(nid_buf), " on node %d",
19087c0caeb8STejun Heo 				 memblock_get_region_node(rgn));
19097c0caeb8STejun Heo #endif
1910e1720feeSMike Rapoport 		pr_info(" %s[%#x]\t[%pa-%pa], %pa bytes%s flags: %#x\n",
19110262d9c8SHeiko Carstens 			type->name, idx, &base, &end, &size, nid_buf, flags);
19126ed311b2SBenjamin Herrenschmidt 	}
19136ed311b2SBenjamin Herrenschmidt }
19146ed311b2SBenjamin Herrenschmidt 
191587c55870SMike Rapoport static void __init_memblock __memblock_dump_all(void)
19166ed311b2SBenjamin Herrenschmidt {
19176ed311b2SBenjamin Herrenschmidt 	pr_info("MEMBLOCK configuration:\n");
19185d63f81cSMiles Chen 	pr_info(" memory size = %pa reserved size = %pa\n",
19195d63f81cSMiles Chen 		&memblock.memory.total_size,
19205d63f81cSMiles Chen 		&memblock.reserved.total_size);
19216ed311b2SBenjamin Herrenschmidt 
19220262d9c8SHeiko Carstens 	memblock_dump(&memblock.memory);
19230262d9c8SHeiko Carstens 	memblock_dump(&memblock.reserved);
1924409efd4cSHeiko Carstens #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
192577649905SDavid Hildenbrand 	memblock_dump(&physmem);
1926409efd4cSHeiko Carstens #endif
19276ed311b2SBenjamin Herrenschmidt }
19286ed311b2SBenjamin Herrenschmidt 
192987c55870SMike Rapoport void __init_memblock memblock_dump_all(void)
193087c55870SMike Rapoport {
193187c55870SMike Rapoport 	if (memblock_debug)
193287c55870SMike Rapoport 		__memblock_dump_all();
193387c55870SMike Rapoport }
193487c55870SMike Rapoport 
19351aadc056STejun Heo void __init memblock_allow_resize(void)
19366ed311b2SBenjamin Herrenschmidt {
1937142b45a7SBenjamin Herrenschmidt 	memblock_can_resize = 1;
19386ed311b2SBenjamin Herrenschmidt }
19396ed311b2SBenjamin Herrenschmidt 
19406ed311b2SBenjamin Herrenschmidt static int __init early_memblock(char *p)
19416ed311b2SBenjamin Herrenschmidt {
19426ed311b2SBenjamin Herrenschmidt 	if (p && strstr(p, "debug"))
19436ed311b2SBenjamin Herrenschmidt 		memblock_debug = 1;
19446ed311b2SBenjamin Herrenschmidt 	return 0;
19456ed311b2SBenjamin Herrenschmidt }
19466ed311b2SBenjamin Herrenschmidt early_param("memblock", early_memblock);
19476ed311b2SBenjamin Herrenschmidt 
19484f5b0c17SMike Rapoport static void __init free_memmap(unsigned long start_pfn, unsigned long end_pfn)
19494f5b0c17SMike Rapoport {
19504f5b0c17SMike Rapoport 	struct page *start_pg, *end_pg;
19514f5b0c17SMike Rapoport 	phys_addr_t pg, pgend;
19524f5b0c17SMike Rapoport 
19534f5b0c17SMike Rapoport 	/*
19544f5b0c17SMike Rapoport 	 * Convert start_pfn/end_pfn to a struct page pointer.
19554f5b0c17SMike Rapoport 	 */
19564f5b0c17SMike Rapoport 	start_pg = pfn_to_page(start_pfn - 1) + 1;
19574f5b0c17SMike Rapoport 	end_pg = pfn_to_page(end_pfn - 1) + 1;
19584f5b0c17SMike Rapoport 
19594f5b0c17SMike Rapoport 	/*
19604f5b0c17SMike Rapoport 	 * Convert to physical addresses, and round start upwards and end
19614f5b0c17SMike Rapoport 	 * downwards.
19624f5b0c17SMike Rapoport 	 */
19634f5b0c17SMike Rapoport 	pg = PAGE_ALIGN(__pa(start_pg));
19644f5b0c17SMike Rapoport 	pgend = __pa(end_pg) & PAGE_MASK;
19654f5b0c17SMike Rapoport 
19664f5b0c17SMike Rapoport 	/*
19674f5b0c17SMike Rapoport 	 * If there are free pages between these, free the section of the
19684f5b0c17SMike Rapoport 	 * memmap array.
19694f5b0c17SMike Rapoport 	 */
19704f5b0c17SMike Rapoport 	if (pg < pgend)
19713ecc6834SMike Rapoport 		memblock_phys_free(pg, pgend - pg);
19724f5b0c17SMike Rapoport }
19734f5b0c17SMike Rapoport 
19744f5b0c17SMike Rapoport /*
19754f5b0c17SMike Rapoport  * The mem_map array can get very big.  Free the unused area of the memory map.
19764f5b0c17SMike Rapoport  */
19774f5b0c17SMike Rapoport static void __init free_unused_memmap(void)
19784f5b0c17SMike Rapoport {
19794f5b0c17SMike Rapoport 	unsigned long start, end, prev_end = 0;
19804f5b0c17SMike Rapoport 	int i;
19814f5b0c17SMike Rapoport 
19824f5b0c17SMike Rapoport 	if (!IS_ENABLED(CONFIG_HAVE_ARCH_PFN_VALID) ||
19834f5b0c17SMike Rapoport 	    IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP))
19844f5b0c17SMike Rapoport 		return;
19854f5b0c17SMike Rapoport 
19864f5b0c17SMike Rapoport 	/*
19874f5b0c17SMike Rapoport 	 * This relies on each bank being in address order.
19884f5b0c17SMike Rapoport 	 * The banks are sorted previously in bootmem_init().
19894f5b0c17SMike Rapoport 	 */
19904f5b0c17SMike Rapoport 	for_each_mem_pfn_range(i, MAX_NUMNODES, &start, &end, NULL) {
19914f5b0c17SMike Rapoport #ifdef CONFIG_SPARSEMEM
19924f5b0c17SMike Rapoport 		/*
19934f5b0c17SMike Rapoport 		 * Take care not to free memmap entries that don't exist
19944f5b0c17SMike Rapoport 		 * due to SPARSEMEM sections which aren't present.
19954f5b0c17SMike Rapoport 		 */
19964f5b0c17SMike Rapoport 		start = min(start, ALIGN(prev_end, PAGES_PER_SECTION));
19974f5b0c17SMike Rapoport #endif
19984f5b0c17SMike Rapoport 		/*
1999e2a86800SMike Rapoport 		 * Align down here since many operations in VM subsystem
2000e2a86800SMike Rapoport 		 * presume that there are no holes in the memory map inside
2001e2a86800SMike Rapoport 		 * a pageblock
20024f5b0c17SMike Rapoport 		 */
20034f9bc69aSKefeng Wang 		start = pageblock_start_pfn(start);
20044f5b0c17SMike Rapoport 
20054f5b0c17SMike Rapoport 		/*
20064f5b0c17SMike Rapoport 		 * If we had a previous bank, and there is a space
20074f5b0c17SMike Rapoport 		 * between the current bank and the previous, free it.
20084f5b0c17SMike Rapoport 		 */
20094f5b0c17SMike Rapoport 		if (prev_end && prev_end < start)
20104f5b0c17SMike Rapoport 			free_memmap(prev_end, start);
20114f5b0c17SMike Rapoport 
20124f5b0c17SMike Rapoport 		/*
2013e2a86800SMike Rapoport 		 * Align up here since many operations in VM subsystem
2014e2a86800SMike Rapoport 		 * presume that there are no holes in the memory map inside
2015e2a86800SMike Rapoport 		 * a pageblock
20164f5b0c17SMike Rapoport 		 */
20175f7fa13fSKefeng Wang 		prev_end = pageblock_align(end);
20184f5b0c17SMike Rapoport 	}
20194f5b0c17SMike Rapoport 
20204f5b0c17SMike Rapoport #ifdef CONFIG_SPARSEMEM
2021f921f53eSMike Rapoport 	if (!IS_ALIGNED(prev_end, PAGES_PER_SECTION)) {
20225f7fa13fSKefeng Wang 		prev_end = pageblock_align(end);
20234f5b0c17SMike Rapoport 		free_memmap(prev_end, ALIGN(prev_end, PAGES_PER_SECTION));
2024f921f53eSMike Rapoport 	}
20254f5b0c17SMike Rapoport #endif
20264f5b0c17SMike Rapoport }
20274f5b0c17SMike Rapoport 
2028bda49a81SMike Rapoport static void __init __free_pages_memory(unsigned long start, unsigned long end)
2029bda49a81SMike Rapoport {
2030bda49a81SMike Rapoport 	int order;
2031bda49a81SMike Rapoport 
2032bda49a81SMike Rapoport 	while (start < end) {
2033bda49a81SMike Rapoport 		order = min(MAX_ORDER - 1UL, __ffs(start));
2034bda49a81SMike Rapoport 
2035bda49a81SMike Rapoport 		while (start + (1UL << order) > end)
2036bda49a81SMike Rapoport 			order--;
2037bda49a81SMike Rapoport 
2038bda49a81SMike Rapoport 		memblock_free_pages(pfn_to_page(start), start, order);
2039bda49a81SMike Rapoport 
2040bda49a81SMike Rapoport 		start += (1UL << order);
2041bda49a81SMike Rapoport 	}
2042bda49a81SMike Rapoport }
2043bda49a81SMike Rapoport 
2044bda49a81SMike Rapoport static unsigned long __init __free_memory_core(phys_addr_t start,
2045bda49a81SMike Rapoport 				 phys_addr_t end)
2046bda49a81SMike Rapoport {
2047bda49a81SMike Rapoport 	unsigned long start_pfn = PFN_UP(start);
2048bda49a81SMike Rapoport 	unsigned long end_pfn = min_t(unsigned long,
2049bda49a81SMike Rapoport 				      PFN_DOWN(end), max_low_pfn);
2050bda49a81SMike Rapoport 
2051bda49a81SMike Rapoport 	if (start_pfn >= end_pfn)
2052bda49a81SMike Rapoport 		return 0;
2053bda49a81SMike Rapoport 
2054bda49a81SMike Rapoport 	__free_pages_memory(start_pfn, end_pfn);
2055bda49a81SMike Rapoport 
2056bda49a81SMike Rapoport 	return end_pfn - start_pfn;
2057bda49a81SMike Rapoport }
2058bda49a81SMike Rapoport 
20599092d4f7SMike Rapoport static void __init memmap_init_reserved_pages(void)
20609092d4f7SMike Rapoport {
20619092d4f7SMike Rapoport 	struct memblock_region *region;
20629092d4f7SMike Rapoport 	phys_addr_t start, end;
20639092d4f7SMike Rapoport 	u64 i;
20649092d4f7SMike Rapoport 
20659092d4f7SMike Rapoport 	/* initialize struct pages for the reserved regions */
20669092d4f7SMike Rapoport 	for_each_reserved_mem_range(i, &start, &end)
20679092d4f7SMike Rapoport 		reserve_bootmem_region(start, end);
20689092d4f7SMike Rapoport 
20699092d4f7SMike Rapoport 	/* and also treat struct pages for the NOMAP regions as PageReserved */
20709092d4f7SMike Rapoport 	for_each_mem_region(region) {
20719092d4f7SMike Rapoport 		if (memblock_is_nomap(region)) {
20729092d4f7SMike Rapoport 			start = region->base;
20739092d4f7SMike Rapoport 			end = start + region->size;
20749092d4f7SMike Rapoport 			reserve_bootmem_region(start, end);
20759092d4f7SMike Rapoport 		}
20769092d4f7SMike Rapoport 	}
20779092d4f7SMike Rapoport }
20789092d4f7SMike Rapoport 
2079bda49a81SMike Rapoport static unsigned long __init free_low_memory_core_early(void)
2080bda49a81SMike Rapoport {
2081bda49a81SMike Rapoport 	unsigned long count = 0;
2082bda49a81SMike Rapoport 	phys_addr_t start, end;
2083bda49a81SMike Rapoport 	u64 i;
2084bda49a81SMike Rapoport 
2085bda49a81SMike Rapoport 	memblock_clear_hotplug(0, -1);
2086bda49a81SMike Rapoport 
20879092d4f7SMike Rapoport 	memmap_init_reserved_pages();
2088bda49a81SMike Rapoport 
2089bda49a81SMike Rapoport 	/*
2090bda49a81SMike Rapoport 	 * We need to use NUMA_NO_NODE instead of NODE_DATA(0)->node_id
2091bda49a81SMike Rapoport 	 *  because in some case like Node0 doesn't have RAM installed
2092bda49a81SMike Rapoport 	 *  low ram will be on Node1
2093bda49a81SMike Rapoport 	 */
2094bda49a81SMike Rapoport 	for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &start, &end,
2095bda49a81SMike Rapoport 				NULL)
2096bda49a81SMike Rapoport 		count += __free_memory_core(start, end);
2097bda49a81SMike Rapoport 
2098bda49a81SMike Rapoport 	return count;
2099bda49a81SMike Rapoport }
2100bda49a81SMike Rapoport 
2101bda49a81SMike Rapoport static int reset_managed_pages_done __initdata;
2102bda49a81SMike Rapoport 
2103bda49a81SMike Rapoport void reset_node_managed_pages(pg_data_t *pgdat)
2104bda49a81SMike Rapoport {
2105bda49a81SMike Rapoport 	struct zone *z;
2106bda49a81SMike Rapoport 
2107bda49a81SMike Rapoport 	for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
21089705bea5SArun KS 		atomic_long_set(&z->managed_pages, 0);
2109bda49a81SMike Rapoport }
2110bda49a81SMike Rapoport 
2111bda49a81SMike Rapoport void __init reset_all_zones_managed_pages(void)
2112bda49a81SMike Rapoport {
2113bda49a81SMike Rapoport 	struct pglist_data *pgdat;
2114bda49a81SMike Rapoport 
2115bda49a81SMike Rapoport 	if (reset_managed_pages_done)
2116bda49a81SMike Rapoport 		return;
2117bda49a81SMike Rapoport 
2118bda49a81SMike Rapoport 	for_each_online_pgdat(pgdat)
2119bda49a81SMike Rapoport 		reset_node_managed_pages(pgdat);
2120bda49a81SMike Rapoport 
2121bda49a81SMike Rapoport 	reset_managed_pages_done = 1;
2122bda49a81SMike Rapoport }
2123bda49a81SMike Rapoport 
2124bda49a81SMike Rapoport /**
2125bda49a81SMike Rapoport  * memblock_free_all - release free pages to the buddy allocator
2126bda49a81SMike Rapoport  */
2127097d43d8SDaeseok Youn void __init memblock_free_all(void)
2128bda49a81SMike Rapoport {
2129bda49a81SMike Rapoport 	unsigned long pages;
2130bda49a81SMike Rapoport 
21314f5b0c17SMike Rapoport 	free_unused_memmap();
2132bda49a81SMike Rapoport 	reset_all_zones_managed_pages();
2133bda49a81SMike Rapoport 
2134bda49a81SMike Rapoport 	pages = free_low_memory_core_early();
2135ca79b0c2SArun KS 	totalram_pages_add(pages);
2136bda49a81SMike Rapoport }
2137bda49a81SMike Rapoport 
2138350e88baSMike Rapoport #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_ARCH_KEEP_MEMBLOCK)
21396d03b885SBenjamin Herrenschmidt 
21406d03b885SBenjamin Herrenschmidt static int memblock_debug_show(struct seq_file *m, void *private)
21416d03b885SBenjamin Herrenschmidt {
21426d03b885SBenjamin Herrenschmidt 	struct memblock_type *type = m->private;
21436d03b885SBenjamin Herrenschmidt 	struct memblock_region *reg;
21446d03b885SBenjamin Herrenschmidt 	int i;
21455d63f81cSMiles Chen 	phys_addr_t end;
21466d03b885SBenjamin Herrenschmidt 
21476d03b885SBenjamin Herrenschmidt 	for (i = 0; i < type->cnt; i++) {
21486d03b885SBenjamin Herrenschmidt 		reg = &type->regions[i];
21495d63f81cSMiles Chen 		end = reg->base + reg->size - 1;
21506d03b885SBenjamin Herrenschmidt 
21515d63f81cSMiles Chen 		seq_printf(m, "%4d: ", i);
21525d63f81cSMiles Chen 		seq_printf(m, "%pa..%pa\n", &reg->base, &end);
21536d03b885SBenjamin Herrenschmidt 	}
21546d03b885SBenjamin Herrenschmidt 	return 0;
21556d03b885SBenjamin Herrenschmidt }
21565ad35093SAndy Shevchenko DEFINE_SHOW_ATTRIBUTE(memblock_debug);
21576d03b885SBenjamin Herrenschmidt 
21586d03b885SBenjamin Herrenschmidt static int __init memblock_init_debugfs(void)
21596d03b885SBenjamin Herrenschmidt {
21606d03b885SBenjamin Herrenschmidt 	struct dentry *root = debugfs_create_dir("memblock", NULL);
2161d9f7979cSGreg Kroah-Hartman 
21620825a6f9SJoe Perches 	debugfs_create_file("memory", 0444, root,
21630825a6f9SJoe Perches 			    &memblock.memory, &memblock_debug_fops);
21640825a6f9SJoe Perches 	debugfs_create_file("reserved", 0444, root,
21650825a6f9SJoe Perches 			    &memblock.reserved, &memblock_debug_fops);
216670210ed9SPhilipp Hachtmann #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
216777649905SDavid Hildenbrand 	debugfs_create_file("physmem", 0444, root, &physmem,
216877649905SDavid Hildenbrand 			    &memblock_debug_fops);
216970210ed9SPhilipp Hachtmann #endif
21706d03b885SBenjamin Herrenschmidt 
21716d03b885SBenjamin Herrenschmidt 	return 0;
21726d03b885SBenjamin Herrenschmidt }
21736d03b885SBenjamin Herrenschmidt __initcall(memblock_init_debugfs);
21746d03b885SBenjamin Herrenschmidt 
21756d03b885SBenjamin Herrenschmidt #endif /* CONFIG_DEBUG_FS */
2176