xref: /linux/mm/memblock.c (revision 4421cca0a3e4833b3bf0f20de98eb580ab8c7290)
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 
323e039c5cSMike Rapoport /**
333e039c5cSMike Rapoport  * DOC: memblock overview
343e039c5cSMike Rapoport  *
353e039c5cSMike Rapoport  * Memblock is a method of managing memory regions during the early
363e039c5cSMike Rapoport  * boot period when the usual kernel memory allocators are not up and
373e039c5cSMike Rapoport  * running.
383e039c5cSMike Rapoport  *
393e039c5cSMike Rapoport  * Memblock views the system memory as collections of contiguous
403e039c5cSMike Rapoport  * regions. There are several types of these collections:
413e039c5cSMike Rapoport  *
423e039c5cSMike Rapoport  * * ``memory`` - describes the physical memory available to the
433e039c5cSMike Rapoport  *   kernel; this may differ from the actual physical memory installed
443e039c5cSMike Rapoport  *   in the system, for instance when the memory is restricted with
453e039c5cSMike Rapoport  *   ``mem=`` command line parameter
463e039c5cSMike Rapoport  * * ``reserved`` - describes the regions that were allocated
4777649905SDavid Hildenbrand  * * ``physmem`` - describes the actual physical memory available during
4877649905SDavid Hildenbrand  *   boot regardless of the possible restrictions and memory hot(un)plug;
4977649905SDavid Hildenbrand  *   the ``physmem`` type is only available on some architectures.
503e039c5cSMike Rapoport  *
519303c9d5SMauro Carvalho Chehab  * Each region is represented by struct memblock_region that
523e039c5cSMike Rapoport  * defines the region extents, its attributes and NUMA node id on NUMA
531bf162e4SMauro Carvalho Chehab  * systems. Every memory type is described by the struct memblock_type
541bf162e4SMauro Carvalho Chehab  * which contains an array of memory regions along with
5577649905SDavid Hildenbrand  * the allocator metadata. The "memory" and "reserved" types are nicely
569303c9d5SMauro Carvalho Chehab  * wrapped with struct memblock. This structure is statically
5777649905SDavid Hildenbrand  * initialized at build time. The region arrays are initially sized to
5877649905SDavid Hildenbrand  * %INIT_MEMBLOCK_REGIONS for "memory" and %INIT_MEMBLOCK_RESERVED_REGIONS
5977649905SDavid Hildenbrand  * for "reserved". The region array for "physmem" is initially sized to
6077649905SDavid Hildenbrand  * %INIT_PHYSMEM_REGIONS.
616e5af9a8SCao jin  * The memblock_allow_resize() enables automatic resizing of the region
626e5af9a8SCao jin  * arrays during addition of new regions. This feature should be used
636e5af9a8SCao jin  * with care so that memory allocated for the region array will not
646e5af9a8SCao jin  * overlap with areas that should be reserved, for example initrd.
653e039c5cSMike Rapoport  *
663e039c5cSMike Rapoport  * The early architecture setup should tell memblock what the physical
676e5af9a8SCao jin  * memory layout is by using memblock_add() or memblock_add_node()
686e5af9a8SCao jin  * functions. The first function does not assign the region to a NUMA
696e5af9a8SCao jin  * node and it is appropriate for UMA systems. Yet, it is possible to
706e5af9a8SCao jin  * use it on NUMA systems as well and assign the region to a NUMA node
716e5af9a8SCao jin  * later in the setup process using memblock_set_node(). The
726e5af9a8SCao jin  * memblock_add_node() performs such an assignment directly.
733e039c5cSMike Rapoport  *
74a2974133SMike Rapoport  * Once memblock is setup the memory can be allocated using one of the
75a2974133SMike Rapoport  * API variants:
76a2974133SMike Rapoport  *
776e5af9a8SCao jin  * * memblock_phys_alloc*() - these functions return the **physical**
786e5af9a8SCao jin  *   address of the allocated memory
796e5af9a8SCao jin  * * memblock_alloc*() - these functions return the **virtual** address
806e5af9a8SCao jin  *   of the allocated memory.
81a2974133SMike Rapoport  *
82df1758d9SEthon Paul  * Note, that both API variants use implicit assumptions about allowed
83a2974133SMike Rapoport  * memory ranges and the fallback methods. Consult the documentation
846e5af9a8SCao jin  * of memblock_alloc_internal() and memblock_alloc_range_nid()
856e5af9a8SCao jin  * functions for more elaborate description.
863e039c5cSMike Rapoport  *
876e5af9a8SCao jin  * As the system boot progresses, the architecture specific mem_init()
886e5af9a8SCao jin  * function frees all the memory to the buddy page allocator.
893e039c5cSMike Rapoport  *
906e5af9a8SCao jin  * Unless an architecture enables %CONFIG_ARCH_KEEP_MEMBLOCK, the
9177649905SDavid Hildenbrand  * memblock data structures (except "physmem") will be discarded after the
9277649905SDavid Hildenbrand  * system initialization completes.
933e039c5cSMike Rapoport  */
943e039c5cSMike Rapoport 
95a9ee6cf5SMike Rapoport #ifndef CONFIG_NUMA
96bda49a81SMike Rapoport struct pglist_data __refdata contig_page_data;
97bda49a81SMike Rapoport EXPORT_SYMBOL(contig_page_data);
98bda49a81SMike Rapoport #endif
99bda49a81SMike Rapoport 
100bda49a81SMike Rapoport unsigned long max_low_pfn;
101bda49a81SMike Rapoport unsigned long min_low_pfn;
102bda49a81SMike Rapoport unsigned long max_pfn;
103bda49a81SMike Rapoport unsigned long long max_possible_pfn;
104bda49a81SMike Rapoport 
105fe091c20STejun Heo static struct memblock_region memblock_memory_init_regions[INIT_MEMBLOCK_REGIONS] __initdata_memblock;
1068a5b403dSArd Biesheuvel static struct memblock_region memblock_reserved_init_regions[INIT_MEMBLOCK_RESERVED_REGIONS] __initdata_memblock;
10770210ed9SPhilipp Hachtmann #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
10877649905SDavid Hildenbrand static struct memblock_region memblock_physmem_init_regions[INIT_PHYSMEM_REGIONS];
10970210ed9SPhilipp Hachtmann #endif
110fe091c20STejun Heo 
111fe091c20STejun Heo struct memblock memblock __initdata_memblock = {
112fe091c20STejun Heo 	.memory.regions		= memblock_memory_init_regions,
113fe091c20STejun Heo 	.memory.cnt		= 1,	/* empty dummy entry */
114fe091c20STejun Heo 	.memory.max		= INIT_MEMBLOCK_REGIONS,
1150262d9c8SHeiko Carstens 	.memory.name		= "memory",
116fe091c20STejun Heo 
117fe091c20STejun Heo 	.reserved.regions	= memblock_reserved_init_regions,
118fe091c20STejun Heo 	.reserved.cnt		= 1,	/* empty dummy entry */
1198a5b403dSArd Biesheuvel 	.reserved.max		= INIT_MEMBLOCK_RESERVED_REGIONS,
1200262d9c8SHeiko Carstens 	.reserved.name		= "reserved",
121fe091c20STejun Heo 
12279442ed1STang Chen 	.bottom_up		= false,
123fe091c20STejun Heo 	.current_limit		= MEMBLOCK_ALLOC_ANYWHERE,
124fe091c20STejun Heo };
12595f72d1eSYinghai Lu 
12677649905SDavid Hildenbrand #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
12777649905SDavid Hildenbrand struct memblock_type physmem = {
12877649905SDavid Hildenbrand 	.regions		= memblock_physmem_init_regions,
12977649905SDavid Hildenbrand 	.cnt			= 1,	/* empty dummy entry */
13077649905SDavid Hildenbrand 	.max			= INIT_PHYSMEM_REGIONS,
13177649905SDavid Hildenbrand 	.name			= "physmem",
13277649905SDavid Hildenbrand };
13377649905SDavid Hildenbrand #endif
13477649905SDavid Hildenbrand 
1359f3d5eaaSMike Rapoport /*
1369f3d5eaaSMike Rapoport  * keep a pointer to &memblock.memory in the text section to use it in
1379f3d5eaaSMike Rapoport  * __next_mem_range() and its helpers.
1389f3d5eaaSMike Rapoport  *  For architectures that do not keep memblock data after init, this
1399f3d5eaaSMike Rapoport  * pointer will be reset to NULL at memblock_discard()
1409f3d5eaaSMike Rapoport  */
1419f3d5eaaSMike Rapoport static __refdata struct memblock_type *memblock_memory = &memblock.memory;
1429f3d5eaaSMike Rapoport 
143cd991db8SMike Rapoport #define for_each_memblock_type(i, memblock_type, rgn)			\
144cd991db8SMike Rapoport 	for (i = 0, rgn = &memblock_type->regions[0];			\
145cd991db8SMike Rapoport 	     i < memblock_type->cnt;					\
146cd991db8SMike Rapoport 	     i++, rgn = &memblock_type->regions[i])
147cd991db8SMike Rapoport 
14887c55870SMike Rapoport #define memblock_dbg(fmt, ...)						\
14987c55870SMike Rapoport 	do {								\
15087c55870SMike Rapoport 		if (memblock_debug)					\
15187c55870SMike Rapoport 			pr_info(fmt, ##__VA_ARGS__);			\
15287c55870SMike Rapoport 	} while (0)
15387c55870SMike Rapoport 
15487c55870SMike Rapoport static int memblock_debug __initdata_memblock;
155a3f5bafcSTony Luck static bool system_has_some_mirror __initdata_memblock = false;
1561aadc056STejun Heo static int memblock_can_resize __initdata_memblock;
157181eb394SGavin Shan static int memblock_memory_in_slab __initdata_memblock = 0;
158181eb394SGavin Shan static int memblock_reserved_in_slab __initdata_memblock = 0;
15995f72d1eSYinghai Lu 
160c366ea89SMike Rapoport static enum memblock_flags __init_memblock choose_memblock_flags(void)
161a3f5bafcSTony Luck {
162a3f5bafcSTony Luck 	return system_has_some_mirror ? MEMBLOCK_MIRROR : MEMBLOCK_NONE;
163a3f5bafcSTony Luck }
164a3f5bafcSTony Luck 
165eb18f1b5STejun Heo /* adjust *@size so that (@base + *@size) doesn't overflow, return new size */
166eb18f1b5STejun Heo static inline phys_addr_t memblock_cap_size(phys_addr_t base, phys_addr_t *size)
167eb18f1b5STejun Heo {
1681c4bc43dSStefan Agner 	return *size = min(*size, PHYS_ADDR_MAX - base);
169eb18f1b5STejun Heo }
170eb18f1b5STejun Heo 
1716ed311b2SBenjamin Herrenschmidt /*
1726ed311b2SBenjamin Herrenschmidt  * Address comparison utilities
1736ed311b2SBenjamin Herrenschmidt  */
17410d06439SYinghai Lu static unsigned long __init_memblock memblock_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
1752898cc4cSBenjamin Herrenschmidt 				       phys_addr_t base2, phys_addr_t size2)
17695f72d1eSYinghai Lu {
17795f72d1eSYinghai Lu 	return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
17895f72d1eSYinghai Lu }
17995f72d1eSYinghai Lu 
18095cf82ecSTang Chen bool __init_memblock memblock_overlaps_region(struct memblock_type *type,
1812d7d3eb2SH Hartley Sweeten 					phys_addr_t base, phys_addr_t size)
1826ed311b2SBenjamin Herrenschmidt {
1836ed311b2SBenjamin Herrenschmidt 	unsigned long i;
1846ed311b2SBenjamin Herrenschmidt 
185023accf5SMike Rapoport 	memblock_cap_size(base, &size);
186023accf5SMike Rapoport 
187f14516fbSAlexander Kuleshov 	for (i = 0; i < type->cnt; i++)
188f14516fbSAlexander Kuleshov 		if (memblock_addrs_overlap(base, size, type->regions[i].base,
189f14516fbSAlexander Kuleshov 					   type->regions[i].size))
1906ed311b2SBenjamin Herrenschmidt 			break;
191c5c5c9d1STang Chen 	return i < type->cnt;
1926ed311b2SBenjamin Herrenschmidt }
1936ed311b2SBenjamin Herrenschmidt 
19447cec443SMike Rapoport /**
19579442ed1STang Chen  * __memblock_find_range_bottom_up - find free area utility in bottom-up
19679442ed1STang Chen  * @start: start of candidate range
19747cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
19847cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
19979442ed1STang Chen  * @size: size of free area to find
20079442ed1STang Chen  * @align: alignment of free area to find
201b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
202fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
20379442ed1STang Chen  *
20479442ed1STang Chen  * Utility called from memblock_find_in_range_node(), find free area bottom-up.
20579442ed1STang Chen  *
20647cec443SMike Rapoport  * Return:
20779442ed1STang Chen  * Found address on success, 0 on failure.
20879442ed1STang Chen  */
20979442ed1STang Chen static phys_addr_t __init_memblock
21079442ed1STang Chen __memblock_find_range_bottom_up(phys_addr_t start, phys_addr_t end,
211fc6daaf9STony Luck 				phys_addr_t size, phys_addr_t align, int nid,
212e1720feeSMike Rapoport 				enum memblock_flags flags)
21379442ed1STang Chen {
21479442ed1STang Chen 	phys_addr_t this_start, this_end, cand;
21579442ed1STang Chen 	u64 i;
21679442ed1STang Chen 
217fc6daaf9STony Luck 	for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) {
21879442ed1STang Chen 		this_start = clamp(this_start, start, end);
21979442ed1STang Chen 		this_end = clamp(this_end, start, end);
22079442ed1STang Chen 
22179442ed1STang Chen 		cand = round_up(this_start, align);
22279442ed1STang Chen 		if (cand < this_end && this_end - cand >= size)
22379442ed1STang Chen 			return cand;
22479442ed1STang Chen 	}
22579442ed1STang Chen 
22679442ed1STang Chen 	return 0;
22779442ed1STang Chen }
22879442ed1STang Chen 
2297bd0b0f0STejun Heo /**
2301402899eSTang Chen  * __memblock_find_range_top_down - find free area utility, in top-down
2311402899eSTang Chen  * @start: start of candidate range
23247cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
23347cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
2341402899eSTang Chen  * @size: size of free area to find
2351402899eSTang Chen  * @align: alignment of free area to find
236b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
237fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
2381402899eSTang Chen  *
2391402899eSTang Chen  * Utility called from memblock_find_in_range_node(), find free area top-down.
2401402899eSTang Chen  *
24147cec443SMike Rapoport  * Return:
24279442ed1STang Chen  * Found address on success, 0 on failure.
2431402899eSTang Chen  */
2441402899eSTang Chen static phys_addr_t __init_memblock
2451402899eSTang Chen __memblock_find_range_top_down(phys_addr_t start, phys_addr_t end,
246fc6daaf9STony Luck 			       phys_addr_t size, phys_addr_t align, int nid,
247e1720feeSMike Rapoport 			       enum memblock_flags flags)
2481402899eSTang Chen {
2491402899eSTang Chen 	phys_addr_t this_start, this_end, cand;
2501402899eSTang Chen 	u64 i;
2511402899eSTang Chen 
252fc6daaf9STony Luck 	for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end,
253fc6daaf9STony Luck 					NULL) {
2541402899eSTang Chen 		this_start = clamp(this_start, start, end);
2551402899eSTang Chen 		this_end = clamp(this_end, start, end);
2561402899eSTang Chen 
2571402899eSTang Chen 		if (this_end < size)
2581402899eSTang Chen 			continue;
2591402899eSTang Chen 
2601402899eSTang Chen 		cand = round_down(this_end - size, align);
2611402899eSTang Chen 		if (cand >= this_start)
2621402899eSTang Chen 			return cand;
2631402899eSTang Chen 	}
2641402899eSTang Chen 
2651402899eSTang Chen 	return 0;
2661402899eSTang Chen }
2671402899eSTang Chen 
2681402899eSTang Chen /**
2697bd0b0f0STejun Heo  * memblock_find_in_range_node - find free area in given range and node
2707bd0b0f0STejun Heo  * @size: size of free area to find
2717bd0b0f0STejun Heo  * @align: alignment of free area to find
27287029ee9SGrygorii Strashko  * @start: start of candidate range
27347cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
27447cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
275b1154233SGrygorii Strashko  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
276fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
2777bd0b0f0STejun Heo  *
2787bd0b0f0STejun Heo  * Find @size free area aligned to @align in the specified range and node.
2797bd0b0f0STejun Heo  *
28047cec443SMike Rapoport  * Return:
28179442ed1STang Chen  * Found address on success, 0 on failure.
2826ed311b2SBenjamin Herrenschmidt  */
283c366ea89SMike Rapoport static phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size,
28487029ee9SGrygorii Strashko 					phys_addr_t align, phys_addr_t start,
285e1720feeSMike Rapoport 					phys_addr_t end, int nid,
286e1720feeSMike Rapoport 					enum memblock_flags flags)
287f7210e6cSTang Chen {
288f7210e6cSTang Chen 	/* pump up @end */
289fed84c78SQian Cai 	if (end == MEMBLOCK_ALLOC_ACCESSIBLE ||
290fed84c78SQian Cai 	    end == MEMBLOCK_ALLOC_KASAN)
291f7210e6cSTang Chen 		end = memblock.current_limit;
292f7210e6cSTang Chen 
293f7210e6cSTang Chen 	/* avoid allocating the first page */
294f7210e6cSTang Chen 	start = max_t(phys_addr_t, start, PAGE_SIZE);
295f7210e6cSTang Chen 	end = max(start, end);
29679442ed1STang Chen 
2972dcb3964SRoman Gushchin 	if (memblock_bottom_up())
2982dcb3964SRoman Gushchin 		return __memblock_find_range_bottom_up(start, end, size, align,
2992dcb3964SRoman Gushchin 						       nid, flags);
3002dcb3964SRoman Gushchin 	else
3012dcb3964SRoman Gushchin 		return __memblock_find_range_top_down(start, end, size, align,
3022dcb3964SRoman Gushchin 						      nid, flags);
303f7210e6cSTang Chen }
3046ed311b2SBenjamin Herrenschmidt 
3057bd0b0f0STejun Heo /**
3067bd0b0f0STejun Heo  * memblock_find_in_range - find free area in given range
3077bd0b0f0STejun Heo  * @start: start of candidate range
30847cec443SMike Rapoport  * @end: end of candidate range, can be %MEMBLOCK_ALLOC_ANYWHERE or
30947cec443SMike Rapoport  *       %MEMBLOCK_ALLOC_ACCESSIBLE
3107bd0b0f0STejun Heo  * @size: size of free area to find
3117bd0b0f0STejun Heo  * @align: alignment of free area to find
3127bd0b0f0STejun Heo  *
3137bd0b0f0STejun Heo  * Find @size free area aligned to @align in the specified range.
3147bd0b0f0STejun Heo  *
31547cec443SMike Rapoport  * Return:
31679442ed1STang Chen  * Found address on success, 0 on failure.
3177bd0b0f0STejun Heo  */
318a7259df7SMike Rapoport static phys_addr_t __init_memblock memblock_find_in_range(phys_addr_t start,
3197bd0b0f0STejun Heo 					phys_addr_t end, phys_addr_t size,
3207bd0b0f0STejun Heo 					phys_addr_t align)
3217bd0b0f0STejun Heo {
322a3f5bafcSTony Luck 	phys_addr_t ret;
323e1720feeSMike Rapoport 	enum memblock_flags flags = choose_memblock_flags();
324a3f5bafcSTony Luck 
325a3f5bafcSTony Luck again:
326a3f5bafcSTony Luck 	ret = memblock_find_in_range_node(size, align, start, end,
327a3f5bafcSTony Luck 					    NUMA_NO_NODE, flags);
328a3f5bafcSTony Luck 
329a3f5bafcSTony Luck 	if (!ret && (flags & MEMBLOCK_MIRROR)) {
330a3f5bafcSTony Luck 		pr_warn("Could not allocate %pap bytes of mirrored memory\n",
331a3f5bafcSTony Luck 			&size);
332a3f5bafcSTony Luck 		flags &= ~MEMBLOCK_MIRROR;
333a3f5bafcSTony Luck 		goto again;
334a3f5bafcSTony Luck 	}
335a3f5bafcSTony Luck 
336a3f5bafcSTony Luck 	return ret;
3377bd0b0f0STejun Heo }
3387bd0b0f0STejun Heo 
33910d06439SYinghai Lu static void __init_memblock memblock_remove_region(struct memblock_type *type, unsigned long r)
34095f72d1eSYinghai Lu {
3411440c4e2STejun Heo 	type->total_size -= type->regions[r].size;
3427c0caeb8STejun Heo 	memmove(&type->regions[r], &type->regions[r + 1],
3437c0caeb8STejun Heo 		(type->cnt - (r + 1)) * sizeof(type->regions[r]));
344e3239ff9SBenjamin Herrenschmidt 	type->cnt--;
34595f72d1eSYinghai Lu 
3468f7a6605SBenjamin Herrenschmidt 	/* Special case for empty arrays */
3478f7a6605SBenjamin Herrenschmidt 	if (type->cnt == 0) {
3481440c4e2STejun Heo 		WARN_ON(type->total_size != 0);
3498f7a6605SBenjamin Herrenschmidt 		type->cnt = 1;
3508f7a6605SBenjamin Herrenschmidt 		type->regions[0].base = 0;
3518f7a6605SBenjamin Herrenschmidt 		type->regions[0].size = 0;
35266a20757STang Chen 		type->regions[0].flags = 0;
3537c0caeb8STejun Heo 		memblock_set_region_node(&type->regions[0], MAX_NUMNODES);
3548f7a6605SBenjamin Herrenschmidt 	}
35595f72d1eSYinghai Lu }
35695f72d1eSYinghai Lu 
357350e88baSMike Rapoport #ifndef CONFIG_ARCH_KEEP_MEMBLOCK
3583010f876SPavel Tatashin /**
35947cec443SMike Rapoport  * memblock_discard - discard memory and reserved arrays if they were allocated
3603010f876SPavel Tatashin  */
3613010f876SPavel Tatashin void __init memblock_discard(void)
36229f67386SYinghai Lu {
3633010f876SPavel Tatashin 	phys_addr_t addr, size;
36429f67386SYinghai Lu 
3653010f876SPavel Tatashin 	if (memblock.reserved.regions != memblock_reserved_init_regions) {
3663010f876SPavel Tatashin 		addr = __pa(memblock.reserved.regions);
3673010f876SPavel Tatashin 		size = PAGE_ALIGN(sizeof(struct memblock_region) *
36829f67386SYinghai Lu 				  memblock.reserved.max);
369621d9739SMike Rapoport 		memblock_free_late(addr, size);
37029f67386SYinghai Lu 	}
37129f67386SYinghai Lu 
37291b540f9SPavel Tatashin 	if (memblock.memory.regions != memblock_memory_init_regions) {
3733010f876SPavel Tatashin 		addr = __pa(memblock.memory.regions);
3743010f876SPavel Tatashin 		size = PAGE_ALIGN(sizeof(struct memblock_region) *
3755e270e25SPhilipp Hachtmann 				  memblock.memory.max);
376621d9739SMike Rapoport 		memblock_free_late(addr, size);
3775e270e25SPhilipp Hachtmann 	}
3789f3d5eaaSMike Rapoport 
3799f3d5eaaSMike Rapoport 	memblock_memory = NULL;
3803010f876SPavel Tatashin }
3815e270e25SPhilipp Hachtmann #endif
3825e270e25SPhilipp Hachtmann 
38348c3b583SGreg Pearson /**
38448c3b583SGreg Pearson  * memblock_double_array - double the size of the memblock regions array
38548c3b583SGreg Pearson  * @type: memblock type of the regions array being doubled
38648c3b583SGreg Pearson  * @new_area_start: starting address of memory range to avoid overlap with
38748c3b583SGreg Pearson  * @new_area_size: size of memory range to avoid overlap with
38848c3b583SGreg Pearson  *
38948c3b583SGreg Pearson  * Double the size of the @type regions array. If memblock is being used to
39048c3b583SGreg Pearson  * allocate memory for a new reserved regions array and there is a previously
39148c3b583SGreg Pearson  * allocated memory range [@new_area_start, @new_area_start + @new_area_size]
39248c3b583SGreg Pearson  * waiting to be reserved, ensure the memory used by the new array does
39348c3b583SGreg Pearson  * not overlap.
39448c3b583SGreg Pearson  *
39547cec443SMike Rapoport  * Return:
39648c3b583SGreg Pearson  * 0 on success, -1 on failure.
39748c3b583SGreg Pearson  */
39848c3b583SGreg Pearson static int __init_memblock memblock_double_array(struct memblock_type *type,
39948c3b583SGreg Pearson 						phys_addr_t new_area_start,
40048c3b583SGreg Pearson 						phys_addr_t new_area_size)
401142b45a7SBenjamin Herrenschmidt {
402142b45a7SBenjamin Herrenschmidt 	struct memblock_region *new_array, *old_array;
40329f67386SYinghai Lu 	phys_addr_t old_alloc_size, new_alloc_size;
404a36aab89SMike Rapoport 	phys_addr_t old_size, new_size, addr, new_end;
405142b45a7SBenjamin Herrenschmidt 	int use_slab = slab_is_available();
406181eb394SGavin Shan 	int *in_slab;
407142b45a7SBenjamin Herrenschmidt 
408142b45a7SBenjamin Herrenschmidt 	/* We don't allow resizing until we know about the reserved regions
409142b45a7SBenjamin Herrenschmidt 	 * of memory that aren't suitable for allocation
410142b45a7SBenjamin Herrenschmidt 	 */
411142b45a7SBenjamin Herrenschmidt 	if (!memblock_can_resize)
412142b45a7SBenjamin Herrenschmidt 		return -1;
413142b45a7SBenjamin Herrenschmidt 
414142b45a7SBenjamin Herrenschmidt 	/* Calculate new doubled size */
415142b45a7SBenjamin Herrenschmidt 	old_size = type->max * sizeof(struct memblock_region);
416142b45a7SBenjamin Herrenschmidt 	new_size = old_size << 1;
41729f67386SYinghai Lu 	/*
41829f67386SYinghai Lu 	 * We need to allocated new one align to PAGE_SIZE,
41929f67386SYinghai Lu 	 *   so we can free them completely later.
42029f67386SYinghai Lu 	 */
42129f67386SYinghai Lu 	old_alloc_size = PAGE_ALIGN(old_size);
42229f67386SYinghai Lu 	new_alloc_size = PAGE_ALIGN(new_size);
423142b45a7SBenjamin Herrenschmidt 
424181eb394SGavin Shan 	/* Retrieve the slab flag */
425181eb394SGavin Shan 	if (type == &memblock.memory)
426181eb394SGavin Shan 		in_slab = &memblock_memory_in_slab;
427181eb394SGavin Shan 	else
428181eb394SGavin Shan 		in_slab = &memblock_reserved_in_slab;
429181eb394SGavin Shan 
430a2974133SMike Rapoport 	/* Try to find some space for it */
431142b45a7SBenjamin Herrenschmidt 	if (use_slab) {
432142b45a7SBenjamin Herrenschmidt 		new_array = kmalloc(new_size, GFP_KERNEL);
4331f5026a7STejun Heo 		addr = new_array ? __pa(new_array) : 0;
4344e2f0775SGavin Shan 	} else {
43548c3b583SGreg Pearson 		/* only exclude range when trying to double reserved.regions */
43648c3b583SGreg Pearson 		if (type != &memblock.reserved)
43748c3b583SGreg Pearson 			new_area_start = new_area_size = 0;
43848c3b583SGreg Pearson 
43948c3b583SGreg Pearson 		addr = memblock_find_in_range(new_area_start + new_area_size,
44048c3b583SGreg Pearson 						memblock.current_limit,
44129f67386SYinghai Lu 						new_alloc_size, PAGE_SIZE);
44248c3b583SGreg Pearson 		if (!addr && new_area_size)
44348c3b583SGreg Pearson 			addr = memblock_find_in_range(0,
44448c3b583SGreg Pearson 				min(new_area_start, memblock.current_limit),
44529f67386SYinghai Lu 				new_alloc_size, PAGE_SIZE);
44648c3b583SGreg Pearson 
44715674868SSachin Kamat 		new_array = addr ? __va(addr) : NULL;
4484e2f0775SGavin Shan 	}
4491f5026a7STejun Heo 	if (!addr) {
450142b45a7SBenjamin Herrenschmidt 		pr_err("memblock: Failed to double %s array from %ld to %ld entries !\n",
4510262d9c8SHeiko Carstens 		       type->name, type->max, type->max * 2);
452142b45a7SBenjamin Herrenschmidt 		return -1;
453142b45a7SBenjamin Herrenschmidt 	}
454142b45a7SBenjamin Herrenschmidt 
455a36aab89SMike Rapoport 	new_end = addr + new_size - 1;
456a36aab89SMike Rapoport 	memblock_dbg("memblock: %s is doubled to %ld at [%pa-%pa]",
457a36aab89SMike Rapoport 			type->name, type->max * 2, &addr, &new_end);
458ea9e4376SYinghai Lu 
459fd07383bSAndrew Morton 	/*
460fd07383bSAndrew Morton 	 * Found space, we now need to move the array over before we add the
461fd07383bSAndrew Morton 	 * reserved region since it may be our reserved array itself that is
462fd07383bSAndrew Morton 	 * full.
463142b45a7SBenjamin Herrenschmidt 	 */
464142b45a7SBenjamin Herrenschmidt 	memcpy(new_array, type->regions, old_size);
465142b45a7SBenjamin Herrenschmidt 	memset(new_array + type->max, 0, old_size);
466142b45a7SBenjamin Herrenschmidt 	old_array = type->regions;
467142b45a7SBenjamin Herrenschmidt 	type->regions = new_array;
468142b45a7SBenjamin Herrenschmidt 	type->max <<= 1;
469142b45a7SBenjamin Herrenschmidt 
470fd07383bSAndrew Morton 	/* Free old array. We needn't free it if the array is the static one */
471181eb394SGavin Shan 	if (*in_slab)
472181eb394SGavin Shan 		kfree(old_array);
473181eb394SGavin Shan 	else if (old_array != memblock_memory_init_regions &&
474142b45a7SBenjamin Herrenschmidt 		 old_array != memblock_reserved_init_regions)
475*4421cca0SMike Rapoport 		memblock_free(old_array, old_alloc_size);
476142b45a7SBenjamin Herrenschmidt 
477fd07383bSAndrew Morton 	/*
478fd07383bSAndrew Morton 	 * Reserve the new array if that comes from the memblock.  Otherwise, we
479fd07383bSAndrew Morton 	 * needn't do it
480181eb394SGavin Shan 	 */
481181eb394SGavin Shan 	if (!use_slab)
48229f67386SYinghai Lu 		BUG_ON(memblock_reserve(addr, new_alloc_size));
483181eb394SGavin Shan 
484181eb394SGavin Shan 	/* Update slab flag */
485181eb394SGavin Shan 	*in_slab = use_slab;
486181eb394SGavin Shan 
487142b45a7SBenjamin Herrenschmidt 	return 0;
488142b45a7SBenjamin Herrenschmidt }
489142b45a7SBenjamin Herrenschmidt 
490784656f9STejun Heo /**
491784656f9STejun Heo  * memblock_merge_regions - merge neighboring compatible regions
492784656f9STejun Heo  * @type: memblock type to scan
493784656f9STejun Heo  *
494784656f9STejun Heo  * Scan @type and merge neighboring compatible regions.
495784656f9STejun Heo  */
496784656f9STejun Heo static void __init_memblock memblock_merge_regions(struct memblock_type *type)
497784656f9STejun Heo {
498784656f9STejun Heo 	int i = 0;
499784656f9STejun Heo 
500784656f9STejun Heo 	/* cnt never goes below 1 */
501784656f9STejun Heo 	while (i < type->cnt - 1) {
502784656f9STejun Heo 		struct memblock_region *this = &type->regions[i];
503784656f9STejun Heo 		struct memblock_region *next = &type->regions[i + 1];
504784656f9STejun Heo 
5057c0caeb8STejun Heo 		if (this->base + this->size != next->base ||
5067c0caeb8STejun Heo 		    memblock_get_region_node(this) !=
50766a20757STang Chen 		    memblock_get_region_node(next) ||
50866a20757STang Chen 		    this->flags != next->flags) {
509784656f9STejun Heo 			BUG_ON(this->base + this->size > next->base);
510784656f9STejun Heo 			i++;
511784656f9STejun Heo 			continue;
512784656f9STejun Heo 		}
513784656f9STejun Heo 
514784656f9STejun Heo 		this->size += next->size;
515c0232ae8SLin Feng 		/* move forward from next + 1, index of which is i + 2 */
516c0232ae8SLin Feng 		memmove(next, next + 1, (type->cnt - (i + 2)) * sizeof(*next));
517784656f9STejun Heo 		type->cnt--;
518784656f9STejun Heo 	}
519784656f9STejun Heo }
520784656f9STejun Heo 
521784656f9STejun Heo /**
522784656f9STejun Heo  * memblock_insert_region - insert new memblock region
523784656f9STejun Heo  * @type:	memblock type to insert into
524784656f9STejun Heo  * @idx:	index for the insertion point
525784656f9STejun Heo  * @base:	base address of the new region
526784656f9STejun Heo  * @size:	size of the new region
527209ff86dSTang Chen  * @nid:	node id of the new region
52866a20757STang Chen  * @flags:	flags of the new region
529784656f9STejun Heo  *
530784656f9STejun Heo  * Insert new memblock region [@base, @base + @size) into @type at @idx.
531412d0008SAlexander Kuleshov  * @type must already have extra room to accommodate the new region.
532784656f9STejun Heo  */
533784656f9STejun Heo static void __init_memblock memblock_insert_region(struct memblock_type *type,
534784656f9STejun Heo 						   int idx, phys_addr_t base,
53566a20757STang Chen 						   phys_addr_t size,
536e1720feeSMike Rapoport 						   int nid,
537e1720feeSMike Rapoport 						   enum memblock_flags flags)
538784656f9STejun Heo {
539784656f9STejun Heo 	struct memblock_region *rgn = &type->regions[idx];
540784656f9STejun Heo 
541784656f9STejun Heo 	BUG_ON(type->cnt >= type->max);
542784656f9STejun Heo 	memmove(rgn + 1, rgn, (type->cnt - idx) * sizeof(*rgn));
543784656f9STejun Heo 	rgn->base = base;
544784656f9STejun Heo 	rgn->size = size;
54566a20757STang Chen 	rgn->flags = flags;
5467c0caeb8STejun Heo 	memblock_set_region_node(rgn, nid);
547784656f9STejun Heo 	type->cnt++;
5481440c4e2STejun Heo 	type->total_size += size;
549784656f9STejun Heo }
550784656f9STejun Heo 
551784656f9STejun Heo /**
552f1af9d3aSPhilipp Hachtmann  * memblock_add_range - add new memblock region
553784656f9STejun Heo  * @type: memblock type to add new region into
554784656f9STejun Heo  * @base: base address of the new region
555784656f9STejun Heo  * @size: size of the new region
5567fb0bc3fSTejun Heo  * @nid: nid of the new region
55766a20757STang Chen  * @flags: flags of the new region
558784656f9STejun Heo  *
559784656f9STejun Heo  * Add new memblock region [@base, @base + @size) into @type.  The new region
560784656f9STejun Heo  * is allowed to overlap with existing ones - overlaps don't affect already
561784656f9STejun Heo  * existing regions.  @type is guaranteed to be minimal (all neighbouring
562784656f9STejun Heo  * compatible regions are merged) after the addition.
563784656f9STejun Heo  *
56447cec443SMike Rapoport  * Return:
565784656f9STejun Heo  * 0 on success, -errno on failure.
566784656f9STejun Heo  */
56702634a44SAnshuman Khandual static int __init_memblock memblock_add_range(struct memblock_type *type,
56866a20757STang Chen 				phys_addr_t base, phys_addr_t size,
569e1720feeSMike Rapoport 				int nid, enum memblock_flags flags)
57095f72d1eSYinghai Lu {
571784656f9STejun Heo 	bool insert = false;
572eb18f1b5STejun Heo 	phys_addr_t obase = base;
573eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
5748c9c1701SAlexander Kuleshov 	int idx, nr_new;
5758c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
57695f72d1eSYinghai Lu 
577b3dc627cSTejun Heo 	if (!size)
578b3dc627cSTejun Heo 		return 0;
579b3dc627cSTejun Heo 
580784656f9STejun Heo 	/* special case for empty array */
581784656f9STejun Heo 	if (type->regions[0].size == 0) {
5821440c4e2STejun Heo 		WARN_ON(type->cnt != 1 || type->total_size);
583784656f9STejun Heo 		type->regions[0].base = base;
584784656f9STejun Heo 		type->regions[0].size = size;
58566a20757STang Chen 		type->regions[0].flags = flags;
5867fb0bc3fSTejun Heo 		memblock_set_region_node(&type->regions[0], nid);
5871440c4e2STejun Heo 		type->total_size = size;
588784656f9STejun Heo 		return 0;
589784656f9STejun Heo 	}
590784656f9STejun Heo repeat:
591784656f9STejun Heo 	/*
592784656f9STejun Heo 	 * The following is executed twice.  Once with %false @insert and
593784656f9STejun Heo 	 * then with %true.  The first counts the number of regions needed
594412d0008SAlexander Kuleshov 	 * to accommodate the new area.  The second actually inserts them.
595784656f9STejun Heo 	 */
596784656f9STejun Heo 	base = obase;
597784656f9STejun Heo 	nr_new = 0;
598784656f9STejun Heo 
59966e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
600784656f9STejun Heo 		phys_addr_t rbase = rgn->base;
601784656f9STejun Heo 		phys_addr_t rend = rbase + rgn->size;
6028f7a6605SBenjamin Herrenschmidt 
603784656f9STejun Heo 		if (rbase >= end)
6048f7a6605SBenjamin Herrenschmidt 			break;
605784656f9STejun Heo 		if (rend <= base)
606784656f9STejun Heo 			continue;
607784656f9STejun Heo 		/*
608784656f9STejun Heo 		 * @rgn overlaps.  If it separates the lower part of new
609784656f9STejun Heo 		 * area, insert that portion.
6108f7a6605SBenjamin Herrenschmidt 		 */
611784656f9STejun Heo 		if (rbase > base) {
612a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
613c0a29498SWei Yang 			WARN_ON(nid != memblock_get_region_node(rgn));
614c0a29498SWei Yang #endif
6154fcab5f4SWei Yang 			WARN_ON(flags != rgn->flags);
616784656f9STejun Heo 			nr_new++;
617784656f9STejun Heo 			if (insert)
6188c9c1701SAlexander Kuleshov 				memblock_insert_region(type, idx++, base,
61966a20757STang Chen 						       rbase - base, nid,
62066a20757STang Chen 						       flags);
621784656f9STejun Heo 		}
622784656f9STejun Heo 		/* area below @rend is dealt with, forget about it */
623784656f9STejun Heo 		base = min(rend, end);
6248f7a6605SBenjamin Herrenschmidt 	}
6258f7a6605SBenjamin Herrenschmidt 
626784656f9STejun Heo 	/* insert the remaining portion */
627784656f9STejun Heo 	if (base < end) {
628784656f9STejun Heo 		nr_new++;
629784656f9STejun Heo 		if (insert)
6308c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx, base, end - base,
63166a20757STang Chen 					       nid, flags);
6328f7a6605SBenjamin Herrenschmidt 	}
6338f7a6605SBenjamin Herrenschmidt 
634ef3cc4dbSnimisolo 	if (!nr_new)
635ef3cc4dbSnimisolo 		return 0;
636ef3cc4dbSnimisolo 
637784656f9STejun Heo 	/*
638784656f9STejun Heo 	 * If this was the first round, resize array and repeat for actual
639784656f9STejun Heo 	 * insertions; otherwise, merge and return.
6408f7a6605SBenjamin Herrenschmidt 	 */
641784656f9STejun Heo 	if (!insert) {
642784656f9STejun Heo 		while (type->cnt + nr_new > type->max)
64348c3b583SGreg Pearson 			if (memblock_double_array(type, obase, size) < 0)
644784656f9STejun Heo 				return -ENOMEM;
645784656f9STejun Heo 		insert = true;
646784656f9STejun Heo 		goto repeat;
64795f72d1eSYinghai Lu 	} else {
648784656f9STejun Heo 		memblock_merge_regions(type);
64995f72d1eSYinghai Lu 		return 0;
65095f72d1eSYinghai Lu 	}
651784656f9STejun Heo }
65295f72d1eSYinghai Lu 
65348a833ccSMike Rapoport /**
65448a833ccSMike Rapoport  * memblock_add_node - add new memblock region within a NUMA node
65548a833ccSMike Rapoport  * @base: base address of the new region
65648a833ccSMike Rapoport  * @size: size of the new region
65748a833ccSMike Rapoport  * @nid: nid of the new region
65848a833ccSMike Rapoport  *
65948a833ccSMike Rapoport  * Add new memblock region [@base, @base + @size) to the "memory"
66048a833ccSMike Rapoport  * type. See memblock_add_range() description for mode details
66148a833ccSMike Rapoport  *
66248a833ccSMike Rapoport  * Return:
66348a833ccSMike Rapoport  * 0 on success, -errno on failure.
66448a833ccSMike Rapoport  */
6657fb0bc3fSTejun Heo int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size,
6667fb0bc3fSTejun Heo 				       int nid)
6677fb0bc3fSTejun Heo {
66800974b9aSGeert Uytterhoeven 	phys_addr_t end = base + size - 1;
66900974b9aSGeert Uytterhoeven 
67000974b9aSGeert Uytterhoeven 	memblock_dbg("%s: [%pa-%pa] nid=%d %pS\n", __func__,
67100974b9aSGeert Uytterhoeven 		     &base, &end, nid, (void *)_RET_IP_);
67200974b9aSGeert Uytterhoeven 
673f1af9d3aSPhilipp Hachtmann 	return memblock_add_range(&memblock.memory, base, size, nid, 0);
6747fb0bc3fSTejun Heo }
6757fb0bc3fSTejun Heo 
67648a833ccSMike Rapoport /**
67748a833ccSMike Rapoport  * memblock_add - add new memblock region
67848a833ccSMike Rapoport  * @base: base address of the new region
67948a833ccSMike Rapoport  * @size: size 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  */
687f705ac4bSAlexander Kuleshov int __init_memblock memblock_add(phys_addr_t base, phys_addr_t size)
6886a4055bcSAlexander Kuleshov {
6895d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
6905d63f81cSMiles Chen 
691a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
6925d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
6936a4055bcSAlexander Kuleshov 
694f705ac4bSAlexander Kuleshov 	return memblock_add_range(&memblock.memory, base, size, MAX_NUMNODES, 0);
69595f72d1eSYinghai Lu }
69695f72d1eSYinghai Lu 
6976a9ceb31STejun Heo /**
6986a9ceb31STejun Heo  * memblock_isolate_range - isolate given range into disjoint memblocks
6996a9ceb31STejun Heo  * @type: memblock type to isolate range for
7006a9ceb31STejun Heo  * @base: base of range to isolate
7016a9ceb31STejun Heo  * @size: size of range to isolate
7026a9ceb31STejun Heo  * @start_rgn: out parameter for the start of isolated region
7036a9ceb31STejun Heo  * @end_rgn: out parameter for the end of isolated region
7046a9ceb31STejun Heo  *
7056a9ceb31STejun Heo  * Walk @type and ensure that regions don't cross the boundaries defined by
7066a9ceb31STejun Heo  * [@base, @base + @size).  Crossing regions are split at the boundaries,
7076a9ceb31STejun Heo  * which may create at most two more regions.  The index of the first
7086a9ceb31STejun Heo  * region inside the range is returned in *@start_rgn and end in *@end_rgn.
7096a9ceb31STejun Heo  *
71047cec443SMike Rapoport  * Return:
7116a9ceb31STejun Heo  * 0 on success, -errno on failure.
7126a9ceb31STejun Heo  */
7136a9ceb31STejun Heo static int __init_memblock memblock_isolate_range(struct memblock_type *type,
7146a9ceb31STejun Heo 					phys_addr_t base, phys_addr_t size,
7156a9ceb31STejun Heo 					int *start_rgn, int *end_rgn)
7166a9ceb31STejun Heo {
717eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
7188c9c1701SAlexander Kuleshov 	int idx;
7198c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
7206a9ceb31STejun Heo 
7216a9ceb31STejun Heo 	*start_rgn = *end_rgn = 0;
7226a9ceb31STejun Heo 
723b3dc627cSTejun Heo 	if (!size)
724b3dc627cSTejun Heo 		return 0;
725b3dc627cSTejun Heo 
7266a9ceb31STejun Heo 	/* we'll create at most two more regions */
7276a9ceb31STejun Heo 	while (type->cnt + 2 > type->max)
72848c3b583SGreg Pearson 		if (memblock_double_array(type, base, size) < 0)
7296a9ceb31STejun Heo 			return -ENOMEM;
7306a9ceb31STejun Heo 
73166e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
7326a9ceb31STejun Heo 		phys_addr_t rbase = rgn->base;
7336a9ceb31STejun Heo 		phys_addr_t rend = rbase + rgn->size;
7346a9ceb31STejun Heo 
7356a9ceb31STejun Heo 		if (rbase >= end)
7366a9ceb31STejun Heo 			break;
7376a9ceb31STejun Heo 		if (rend <= base)
7386a9ceb31STejun Heo 			continue;
7396a9ceb31STejun Heo 
7406a9ceb31STejun Heo 		if (rbase < base) {
7416a9ceb31STejun Heo 			/*
7426a9ceb31STejun Heo 			 * @rgn intersects from below.  Split and continue
7436a9ceb31STejun Heo 			 * to process the next region - the new top half.
7446a9ceb31STejun Heo 			 */
7456a9ceb31STejun Heo 			rgn->base = base;
7461440c4e2STejun Heo 			rgn->size -= base - rbase;
7471440c4e2STejun Heo 			type->total_size -= base - rbase;
7488c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx, rbase, base - rbase,
74966a20757STang Chen 					       memblock_get_region_node(rgn),
75066a20757STang Chen 					       rgn->flags);
7516a9ceb31STejun Heo 		} else if (rend > end) {
7526a9ceb31STejun Heo 			/*
7536a9ceb31STejun Heo 			 * @rgn intersects from above.  Split and redo the
7546a9ceb31STejun Heo 			 * current region - the new bottom half.
7556a9ceb31STejun Heo 			 */
7566a9ceb31STejun Heo 			rgn->base = end;
7571440c4e2STejun Heo 			rgn->size -= end - rbase;
7581440c4e2STejun Heo 			type->total_size -= end - rbase;
7598c9c1701SAlexander Kuleshov 			memblock_insert_region(type, idx--, rbase, end - rbase,
76066a20757STang Chen 					       memblock_get_region_node(rgn),
76166a20757STang Chen 					       rgn->flags);
7626a9ceb31STejun Heo 		} else {
7636a9ceb31STejun Heo 			/* @rgn is fully contained, record it */
7646a9ceb31STejun Heo 			if (!*end_rgn)
7658c9c1701SAlexander Kuleshov 				*start_rgn = idx;
7668c9c1701SAlexander Kuleshov 			*end_rgn = idx + 1;
7676a9ceb31STejun Heo 		}
7686a9ceb31STejun Heo 	}
7696a9ceb31STejun Heo 
7706a9ceb31STejun Heo 	return 0;
7716a9ceb31STejun Heo }
7726a9ceb31STejun Heo 
77335bd16a2SAlexander Kuleshov static int __init_memblock memblock_remove_range(struct memblock_type *type,
7748f7a6605SBenjamin Herrenschmidt 					  phys_addr_t base, phys_addr_t size)
77595f72d1eSYinghai Lu {
77671936180STejun Heo 	int start_rgn, end_rgn;
77771936180STejun Heo 	int i, ret;
77895f72d1eSYinghai Lu 
77971936180STejun Heo 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
78071936180STejun Heo 	if (ret)
78171936180STejun Heo 		return ret;
78295f72d1eSYinghai Lu 
78371936180STejun Heo 	for (i = end_rgn - 1; i >= start_rgn; i--)
78471936180STejun Heo 		memblock_remove_region(type, i);
78595f72d1eSYinghai Lu 	return 0;
78695f72d1eSYinghai Lu }
78795f72d1eSYinghai Lu 
788581adcbeSTejun Heo int __init_memblock memblock_remove(phys_addr_t base, phys_addr_t size)
78995f72d1eSYinghai Lu {
79025cf23d7SMinchan Kim 	phys_addr_t end = base + size - 1;
79125cf23d7SMinchan Kim 
792a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
79325cf23d7SMinchan Kim 		     &base, &end, (void *)_RET_IP_);
79425cf23d7SMinchan Kim 
795f1af9d3aSPhilipp Hachtmann 	return memblock_remove_range(&memblock.memory, base, size);
79695f72d1eSYinghai Lu }
79795f72d1eSYinghai Lu 
7984d72868cSMike Rapoport /**
799*4421cca0SMike Rapoport  * memblock_free - free boot memory allocation
80077e02cf5SLinus Torvalds  * @ptr: starting address of the  boot memory allocation
80177e02cf5SLinus Torvalds  * @size: size of the boot memory block in bytes
80277e02cf5SLinus Torvalds  *
80377e02cf5SLinus Torvalds  * Free boot memory block previously allocated by memblock_alloc_xx() API.
80477e02cf5SLinus Torvalds  * The freeing memory will not be released to the buddy allocator.
80577e02cf5SLinus Torvalds  */
806*4421cca0SMike Rapoport void __init_memblock memblock_free(void *ptr, size_t size)
80777e02cf5SLinus Torvalds {
80877e02cf5SLinus Torvalds 	if (ptr)
8093ecc6834SMike Rapoport 		memblock_phys_free(__pa(ptr), size);
81077e02cf5SLinus Torvalds }
81177e02cf5SLinus Torvalds 
81277e02cf5SLinus Torvalds /**
8133ecc6834SMike Rapoport  * memblock_phys_free - free boot memory block
8144d72868cSMike Rapoport  * @base: phys starting address of the  boot memory block
8154d72868cSMike Rapoport  * @size: size of the boot memory block in bytes
8164d72868cSMike Rapoport  *
8174d72868cSMike Rapoport  * Free boot memory block previously allocated by memblock_alloc_xx() API.
8184d72868cSMike Rapoport  * The freeing memory will not be released to the buddy allocator.
8194d72868cSMike Rapoport  */
8203ecc6834SMike Rapoport int __init_memblock memblock_phys_free(phys_addr_t base, phys_addr_t size)
82195f72d1eSYinghai Lu {
8225d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
8235d63f81cSMiles Chen 
824a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
8255d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
82624aa0788STejun Heo 
8279099daedSCatalin Marinas 	kmemleak_free_part_phys(base, size);
828f1af9d3aSPhilipp Hachtmann 	return memblock_remove_range(&memblock.reserved, base, size);
82995f72d1eSYinghai Lu }
83095f72d1eSYinghai Lu 
831f705ac4bSAlexander Kuleshov int __init_memblock memblock_reserve(phys_addr_t base, phys_addr_t size)
83295f72d1eSYinghai Lu {
8335d63f81cSMiles Chen 	phys_addr_t end = base + size - 1;
8345d63f81cSMiles Chen 
835a090d711SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
8365d63f81cSMiles Chen 		     &base, &end, (void *)_RET_IP_);
83795f72d1eSYinghai Lu 
838f705ac4bSAlexander Kuleshov 	return memblock_add_range(&memblock.reserved, base, size, MAX_NUMNODES, 0);
83995f72d1eSYinghai Lu }
84095f72d1eSYinghai Lu 
84102634a44SAnshuman Khandual #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
84202634a44SAnshuman Khandual int __init_memblock memblock_physmem_add(phys_addr_t base, phys_addr_t size)
84302634a44SAnshuman Khandual {
84402634a44SAnshuman Khandual 	phys_addr_t end = base + size - 1;
84502634a44SAnshuman Khandual 
84602634a44SAnshuman Khandual 	memblock_dbg("%s: [%pa-%pa] %pS\n", __func__,
84702634a44SAnshuman Khandual 		     &base, &end, (void *)_RET_IP_);
84802634a44SAnshuman Khandual 
84977649905SDavid Hildenbrand 	return memblock_add_range(&physmem, base, size, MAX_NUMNODES, 0);
85002634a44SAnshuman Khandual }
85102634a44SAnshuman Khandual #endif
85202634a44SAnshuman Khandual 
85335fd0808STejun Heo /**
85447cec443SMike Rapoport  * memblock_setclr_flag - set or clear flag for a memory region
85547cec443SMike Rapoport  * @base: base address of the region
85647cec443SMike Rapoport  * @size: size of the region
85747cec443SMike Rapoport  * @set: set or clear the flag
8588958b249SHaitao Shi  * @flag: the flag to update
85966b16edfSTang Chen  *
8604308ce17STony Luck  * This function isolates region [@base, @base + @size), and sets/clears flag
86166b16edfSTang Chen  *
86247cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
86366b16edfSTang Chen  */
8644308ce17STony Luck static int __init_memblock memblock_setclr_flag(phys_addr_t base,
8654308ce17STony Luck 				phys_addr_t size, int set, int flag)
86666b16edfSTang Chen {
86766b16edfSTang Chen 	struct memblock_type *type = &memblock.memory;
86866b16edfSTang Chen 	int i, ret, start_rgn, end_rgn;
86966b16edfSTang Chen 
87066b16edfSTang Chen 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
87166b16edfSTang Chen 	if (ret)
87266b16edfSTang Chen 		return ret;
87366b16edfSTang Chen 
874fe145124SMike Rapoport 	for (i = start_rgn; i < end_rgn; i++) {
875fe145124SMike Rapoport 		struct memblock_region *r = &type->regions[i];
876fe145124SMike Rapoport 
8774308ce17STony Luck 		if (set)
878fe145124SMike Rapoport 			r->flags |= flag;
8794308ce17STony Luck 		else
880fe145124SMike Rapoport 			r->flags &= ~flag;
881fe145124SMike Rapoport 	}
88266b16edfSTang Chen 
88366b16edfSTang Chen 	memblock_merge_regions(type);
88466b16edfSTang Chen 	return 0;
88566b16edfSTang Chen }
88666b16edfSTang Chen 
88766b16edfSTang Chen /**
8884308ce17STony Luck  * memblock_mark_hotplug - Mark hotpluggable memory with flag MEMBLOCK_HOTPLUG.
8894308ce17STony Luck  * @base: the base phys addr of the region
8904308ce17STony Luck  * @size: the size of the region
8914308ce17STony Luck  *
89247cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
8934308ce17STony Luck  */
8944308ce17STony Luck int __init_memblock memblock_mark_hotplug(phys_addr_t base, phys_addr_t size)
8954308ce17STony Luck {
8964308ce17STony Luck 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_HOTPLUG);
8974308ce17STony Luck }
8984308ce17STony Luck 
8994308ce17STony Luck /**
90066b16edfSTang Chen  * memblock_clear_hotplug - Clear flag MEMBLOCK_HOTPLUG for a specified region.
90166b16edfSTang Chen  * @base: the base phys addr of the region
90266b16edfSTang Chen  * @size: the size of the region
90366b16edfSTang Chen  *
90447cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
90566b16edfSTang Chen  */
90666b16edfSTang Chen int __init_memblock memblock_clear_hotplug(phys_addr_t base, phys_addr_t size)
90766b16edfSTang Chen {
9084308ce17STony Luck 	return memblock_setclr_flag(base, size, 0, MEMBLOCK_HOTPLUG);
90966b16edfSTang Chen }
91066b16edfSTang Chen 
91166b16edfSTang Chen /**
912a3f5bafcSTony Luck  * memblock_mark_mirror - Mark mirrored memory with flag MEMBLOCK_MIRROR.
913a3f5bafcSTony Luck  * @base: the base phys addr of the region
914a3f5bafcSTony Luck  * @size: the size of the region
915a3f5bafcSTony Luck  *
91647cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
917a3f5bafcSTony Luck  */
918a3f5bafcSTony Luck int __init_memblock memblock_mark_mirror(phys_addr_t base, phys_addr_t size)
919a3f5bafcSTony Luck {
920a3f5bafcSTony Luck 	system_has_some_mirror = true;
921a3f5bafcSTony Luck 
922a3f5bafcSTony Luck 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_MIRROR);
923a3f5bafcSTony Luck }
924a3f5bafcSTony Luck 
925bf3d3cc5SArd Biesheuvel /**
926bf3d3cc5SArd Biesheuvel  * memblock_mark_nomap - Mark a memory region with flag MEMBLOCK_NOMAP.
927bf3d3cc5SArd Biesheuvel  * @base: the base phys addr of the region
928bf3d3cc5SArd Biesheuvel  * @size: the size of the region
929bf3d3cc5SArd Biesheuvel  *
9309092d4f7SMike Rapoport  * The memory regions marked with %MEMBLOCK_NOMAP will not be added to the
9319092d4f7SMike Rapoport  * direct mapping of the physical memory. These regions will still be
9329092d4f7SMike Rapoport  * covered by the memory map. The struct page representing NOMAP memory
9339092d4f7SMike Rapoport  * frames in the memory map will be PageReserved()
9349092d4f7SMike Rapoport  *
935658aafc8SMike Rapoport  * Note: if the memory being marked %MEMBLOCK_NOMAP was allocated from
936658aafc8SMike Rapoport  * memblock, the caller must inform kmemleak to ignore that memory
937658aafc8SMike Rapoport  *
93847cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
939bf3d3cc5SArd Biesheuvel  */
940bf3d3cc5SArd Biesheuvel int __init_memblock memblock_mark_nomap(phys_addr_t base, phys_addr_t size)
941bf3d3cc5SArd Biesheuvel {
9426c9a5455SMike Rapoport 	return memblock_setclr_flag(base, size, 1, MEMBLOCK_NOMAP);
943bf3d3cc5SArd Biesheuvel }
944a3f5bafcSTony Luck 
945a3f5bafcSTony Luck /**
9464c546b8aSAKASHI Takahiro  * memblock_clear_nomap - Clear flag MEMBLOCK_NOMAP for a specified region.
9474c546b8aSAKASHI Takahiro  * @base: the base phys addr of the region
9484c546b8aSAKASHI Takahiro  * @size: the size of the region
9494c546b8aSAKASHI Takahiro  *
95047cec443SMike Rapoport  * Return: 0 on success, -errno on failure.
9514c546b8aSAKASHI Takahiro  */
9524c546b8aSAKASHI Takahiro int __init_memblock memblock_clear_nomap(phys_addr_t base, phys_addr_t size)
9534c546b8aSAKASHI Takahiro {
9544c546b8aSAKASHI Takahiro 	return memblock_setclr_flag(base, size, 0, MEMBLOCK_NOMAP);
9554c546b8aSAKASHI Takahiro }
9564c546b8aSAKASHI Takahiro 
9579f3d5eaaSMike Rapoport static bool should_skip_region(struct memblock_type *type,
9589f3d5eaaSMike Rapoport 			       struct memblock_region *m,
9599f3d5eaaSMike Rapoport 			       int nid, int flags)
960c9a688a3SMike Rapoport {
961c9a688a3SMike Rapoport 	int m_nid = memblock_get_region_node(m);
962c9a688a3SMike Rapoport 
9639f3d5eaaSMike Rapoport 	/* we never skip regions when iterating memblock.reserved or physmem */
9649f3d5eaaSMike Rapoport 	if (type != memblock_memory)
9659f3d5eaaSMike Rapoport 		return false;
9669f3d5eaaSMike Rapoport 
967c9a688a3SMike Rapoport 	/* only memory regions are associated with nodes, check it */
968c9a688a3SMike Rapoport 	if (nid != NUMA_NO_NODE && nid != m_nid)
969c9a688a3SMike Rapoport 		return true;
970c9a688a3SMike Rapoport 
971c9a688a3SMike Rapoport 	/* skip hotpluggable memory regions if needed */
97279e482e9SMike Rapoport 	if (movable_node_is_enabled() && memblock_is_hotpluggable(m) &&
97379e482e9SMike Rapoport 	    !(flags & MEMBLOCK_HOTPLUG))
974c9a688a3SMike Rapoport 		return true;
975c9a688a3SMike Rapoport 
976c9a688a3SMike Rapoport 	/* if we want mirror memory skip non-mirror memory regions */
977c9a688a3SMike Rapoport 	if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m))
978c9a688a3SMike Rapoport 		return true;
979c9a688a3SMike Rapoport 
980c9a688a3SMike Rapoport 	/* skip nomap memory unless we were asked for it explicitly */
981c9a688a3SMike Rapoport 	if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m))
982c9a688a3SMike Rapoport 		return true;
983c9a688a3SMike Rapoport 
984c9a688a3SMike Rapoport 	return false;
985c9a688a3SMike Rapoport }
986c9a688a3SMike Rapoport 
9878e7a7f86SRobin Holt /**
988a2974133SMike Rapoport  * __next_mem_range - next function for for_each_free_mem_range() etc.
98935fd0808STejun Heo  * @idx: pointer to u64 loop variable
990b1154233SGrygorii Strashko  * @nid: node selector, %NUMA_NO_NODE for all nodes
991fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
992f1af9d3aSPhilipp Hachtmann  * @type_a: pointer to memblock_type from where the range is taken
993f1af9d3aSPhilipp Hachtmann  * @type_b: pointer to memblock_type which excludes memory from being taken
994dad7557eSWanpeng Li  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
995dad7557eSWanpeng Li  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
996dad7557eSWanpeng Li  * @out_nid: ptr to int for nid of the range, can be %NULL
99735fd0808STejun Heo  *
998f1af9d3aSPhilipp Hachtmann  * Find the first area from *@idx which matches @nid, fill the out
99935fd0808STejun Heo  * parameters, and update *@idx for the next iteration.  The lower 32bit of
1000f1af9d3aSPhilipp Hachtmann  * *@idx contains index into type_a and the upper 32bit indexes the
1001f1af9d3aSPhilipp Hachtmann  * areas before each region in type_b.	For example, if type_b regions
100235fd0808STejun Heo  * look like the following,
100335fd0808STejun Heo  *
100435fd0808STejun Heo  *	0:[0-16), 1:[32-48), 2:[128-130)
100535fd0808STejun Heo  *
100635fd0808STejun Heo  * The upper 32bit indexes the following regions.
100735fd0808STejun Heo  *
100835fd0808STejun Heo  *	0:[0-0), 1:[16-32), 2:[48-128), 3:[130-MAX)
100935fd0808STejun Heo  *
101035fd0808STejun Heo  * As both region arrays are sorted, the function advances the two indices
101135fd0808STejun Heo  * in lockstep and returns each intersection.
101235fd0808STejun Heo  */
101377649905SDavid Hildenbrand void __next_mem_range(u64 *idx, int nid, enum memblock_flags flags,
1014f1af9d3aSPhilipp Hachtmann 		      struct memblock_type *type_a,
101577649905SDavid Hildenbrand 		      struct memblock_type *type_b, phys_addr_t *out_start,
101635fd0808STejun Heo 		      phys_addr_t *out_end, int *out_nid)
101735fd0808STejun Heo {
1018f1af9d3aSPhilipp Hachtmann 	int idx_a = *idx & 0xffffffff;
1019f1af9d3aSPhilipp Hachtmann 	int idx_b = *idx >> 32;
1020b1154233SGrygorii Strashko 
1021f1af9d3aSPhilipp Hachtmann 	if (WARN_ONCE(nid == MAX_NUMNODES,
1022f1af9d3aSPhilipp Hachtmann 	"Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1023560dca27SGrygorii Strashko 		nid = NUMA_NO_NODE;
102435fd0808STejun Heo 
1025f1af9d3aSPhilipp Hachtmann 	for (; idx_a < type_a->cnt; idx_a++) {
1026f1af9d3aSPhilipp Hachtmann 		struct memblock_region *m = &type_a->regions[idx_a];
1027f1af9d3aSPhilipp Hachtmann 
102835fd0808STejun Heo 		phys_addr_t m_start = m->base;
102935fd0808STejun Heo 		phys_addr_t m_end = m->base + m->size;
1030f1af9d3aSPhilipp Hachtmann 		int	    m_nid = memblock_get_region_node(m);
103135fd0808STejun Heo 
10329f3d5eaaSMike Rapoport 		if (should_skip_region(type_a, m, nid, flags))
1033bf3d3cc5SArd Biesheuvel 			continue;
1034bf3d3cc5SArd Biesheuvel 
1035f1af9d3aSPhilipp Hachtmann 		if (!type_b) {
1036f1af9d3aSPhilipp Hachtmann 			if (out_start)
1037f1af9d3aSPhilipp Hachtmann 				*out_start = m_start;
1038f1af9d3aSPhilipp Hachtmann 			if (out_end)
1039f1af9d3aSPhilipp Hachtmann 				*out_end = m_end;
1040f1af9d3aSPhilipp Hachtmann 			if (out_nid)
1041f1af9d3aSPhilipp Hachtmann 				*out_nid = m_nid;
1042f1af9d3aSPhilipp Hachtmann 			idx_a++;
1043f1af9d3aSPhilipp Hachtmann 			*idx = (u32)idx_a | (u64)idx_b << 32;
1044f1af9d3aSPhilipp Hachtmann 			return;
1045f1af9d3aSPhilipp Hachtmann 		}
104635fd0808STejun Heo 
1047f1af9d3aSPhilipp Hachtmann 		/* scan areas before each reservation */
1048f1af9d3aSPhilipp Hachtmann 		for (; idx_b < type_b->cnt + 1; idx_b++) {
1049f1af9d3aSPhilipp Hachtmann 			struct memblock_region *r;
1050f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_start;
1051f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_end;
1052f1af9d3aSPhilipp Hachtmann 
1053f1af9d3aSPhilipp Hachtmann 			r = &type_b->regions[idx_b];
1054f1af9d3aSPhilipp Hachtmann 			r_start = idx_b ? r[-1].base + r[-1].size : 0;
1055f1af9d3aSPhilipp Hachtmann 			r_end = idx_b < type_b->cnt ?
10561c4bc43dSStefan Agner 				r->base : PHYS_ADDR_MAX;
1057f1af9d3aSPhilipp Hachtmann 
1058f1af9d3aSPhilipp Hachtmann 			/*
1059f1af9d3aSPhilipp Hachtmann 			 * if idx_b advanced past idx_a,
1060f1af9d3aSPhilipp Hachtmann 			 * break out to advance idx_a
1061f1af9d3aSPhilipp Hachtmann 			 */
106235fd0808STejun Heo 			if (r_start >= m_end)
106335fd0808STejun Heo 				break;
106435fd0808STejun Heo 			/* if the two regions intersect, we're done */
106535fd0808STejun Heo 			if (m_start < r_end) {
106635fd0808STejun Heo 				if (out_start)
1067f1af9d3aSPhilipp Hachtmann 					*out_start =
1068f1af9d3aSPhilipp Hachtmann 						max(m_start, r_start);
106935fd0808STejun Heo 				if (out_end)
107035fd0808STejun Heo 					*out_end = min(m_end, r_end);
107135fd0808STejun Heo 				if (out_nid)
1072f1af9d3aSPhilipp Hachtmann 					*out_nid = m_nid;
107335fd0808STejun Heo 				/*
1074f1af9d3aSPhilipp Hachtmann 				 * The region which ends first is
1075f1af9d3aSPhilipp Hachtmann 				 * advanced for the next iteration.
107635fd0808STejun Heo 				 */
107735fd0808STejun Heo 				if (m_end <= r_end)
1078f1af9d3aSPhilipp Hachtmann 					idx_a++;
107935fd0808STejun Heo 				else
1080f1af9d3aSPhilipp Hachtmann 					idx_b++;
1081f1af9d3aSPhilipp Hachtmann 				*idx = (u32)idx_a | (u64)idx_b << 32;
108235fd0808STejun Heo 				return;
108335fd0808STejun Heo 			}
108435fd0808STejun Heo 		}
108535fd0808STejun Heo 	}
108635fd0808STejun Heo 
108735fd0808STejun Heo 	/* signal end of iteration */
108835fd0808STejun Heo 	*idx = ULLONG_MAX;
108935fd0808STejun Heo }
109035fd0808STejun Heo 
10917bd0b0f0STejun Heo /**
1092f1af9d3aSPhilipp Hachtmann  * __next_mem_range_rev - generic next function for for_each_*_range_rev()
1093f1af9d3aSPhilipp Hachtmann  *
10947bd0b0f0STejun Heo  * @idx: pointer to u64 loop variable
1095ad5ea8cdSAlexander Kuleshov  * @nid: node selector, %NUMA_NO_NODE for all nodes
1096fc6daaf9STony Luck  * @flags: pick from blocks based on memory attributes
1097f1af9d3aSPhilipp Hachtmann  * @type_a: pointer to memblock_type from where the range is taken
1098f1af9d3aSPhilipp Hachtmann  * @type_b: pointer to memblock_type which excludes memory from being taken
1099dad7557eSWanpeng Li  * @out_start: ptr to phys_addr_t for start address of the range, can be %NULL
1100dad7557eSWanpeng Li  * @out_end: ptr to phys_addr_t for end address of the range, can be %NULL
1101dad7557eSWanpeng Li  * @out_nid: ptr to int for nid of the range, can be %NULL
11027bd0b0f0STejun Heo  *
110347cec443SMike Rapoport  * Finds the next range from type_a which is not marked as unsuitable
110447cec443SMike Rapoport  * in type_b.
110547cec443SMike Rapoport  *
1106f1af9d3aSPhilipp Hachtmann  * Reverse of __next_mem_range().
11077bd0b0f0STejun Heo  */
1108e1720feeSMike Rapoport void __init_memblock __next_mem_range_rev(u64 *idx, int nid,
1109e1720feeSMike Rapoport 					  enum memblock_flags flags,
1110f1af9d3aSPhilipp Hachtmann 					  struct memblock_type *type_a,
1111f1af9d3aSPhilipp Hachtmann 					  struct memblock_type *type_b,
11127bd0b0f0STejun Heo 					  phys_addr_t *out_start,
11137bd0b0f0STejun Heo 					  phys_addr_t *out_end, int *out_nid)
11147bd0b0f0STejun Heo {
1115f1af9d3aSPhilipp Hachtmann 	int idx_a = *idx & 0xffffffff;
1116f1af9d3aSPhilipp Hachtmann 	int idx_b = *idx >> 32;
1117b1154233SGrygorii Strashko 
1118560dca27SGrygorii Strashko 	if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
1119560dca27SGrygorii Strashko 		nid = NUMA_NO_NODE;
11207bd0b0f0STejun Heo 
11217bd0b0f0STejun Heo 	if (*idx == (u64)ULLONG_MAX) {
1122f1af9d3aSPhilipp Hachtmann 		idx_a = type_a->cnt - 1;
1123e47608abSzijun_hu 		if (type_b != NULL)
1124f1af9d3aSPhilipp Hachtmann 			idx_b = type_b->cnt;
1125e47608abSzijun_hu 		else
1126e47608abSzijun_hu 			idx_b = 0;
11277bd0b0f0STejun Heo 	}
11287bd0b0f0STejun Heo 
1129f1af9d3aSPhilipp Hachtmann 	for (; idx_a >= 0; idx_a--) {
1130f1af9d3aSPhilipp Hachtmann 		struct memblock_region *m = &type_a->regions[idx_a];
1131f1af9d3aSPhilipp Hachtmann 
11327bd0b0f0STejun Heo 		phys_addr_t m_start = m->base;
11337bd0b0f0STejun Heo 		phys_addr_t m_end = m->base + m->size;
1134f1af9d3aSPhilipp Hachtmann 		int m_nid = memblock_get_region_node(m);
11357bd0b0f0STejun Heo 
11369f3d5eaaSMike Rapoport 		if (should_skip_region(type_a, m, nid, flags))
1137bf3d3cc5SArd Biesheuvel 			continue;
1138bf3d3cc5SArd Biesheuvel 
1139f1af9d3aSPhilipp Hachtmann 		if (!type_b) {
1140f1af9d3aSPhilipp Hachtmann 			if (out_start)
1141f1af9d3aSPhilipp Hachtmann 				*out_start = m_start;
1142f1af9d3aSPhilipp Hachtmann 			if (out_end)
1143f1af9d3aSPhilipp Hachtmann 				*out_end = m_end;
1144f1af9d3aSPhilipp Hachtmann 			if (out_nid)
1145f1af9d3aSPhilipp Hachtmann 				*out_nid = m_nid;
1146fb399b48Szijun_hu 			idx_a--;
1147f1af9d3aSPhilipp Hachtmann 			*idx = (u32)idx_a | (u64)idx_b << 32;
1148f1af9d3aSPhilipp Hachtmann 			return;
1149f1af9d3aSPhilipp Hachtmann 		}
11507bd0b0f0STejun Heo 
1151f1af9d3aSPhilipp Hachtmann 		/* scan areas before each reservation */
1152f1af9d3aSPhilipp Hachtmann 		for (; idx_b >= 0; idx_b--) {
1153f1af9d3aSPhilipp Hachtmann 			struct memblock_region *r;
1154f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_start;
1155f1af9d3aSPhilipp Hachtmann 			phys_addr_t r_end;
1156f1af9d3aSPhilipp Hachtmann 
1157f1af9d3aSPhilipp Hachtmann 			r = &type_b->regions[idx_b];
1158f1af9d3aSPhilipp Hachtmann 			r_start = idx_b ? r[-1].base + r[-1].size : 0;
1159f1af9d3aSPhilipp Hachtmann 			r_end = idx_b < type_b->cnt ?
11601c4bc43dSStefan Agner 				r->base : PHYS_ADDR_MAX;
1161f1af9d3aSPhilipp Hachtmann 			/*
1162f1af9d3aSPhilipp Hachtmann 			 * if idx_b advanced past idx_a,
1163f1af9d3aSPhilipp Hachtmann 			 * break out to advance idx_a
1164f1af9d3aSPhilipp Hachtmann 			 */
1165f1af9d3aSPhilipp Hachtmann 
11667bd0b0f0STejun Heo 			if (r_end <= m_start)
11677bd0b0f0STejun Heo 				break;
11687bd0b0f0STejun Heo 			/* if the two regions intersect, we're done */
11697bd0b0f0STejun Heo 			if (m_end > r_start) {
11707bd0b0f0STejun Heo 				if (out_start)
11717bd0b0f0STejun Heo 					*out_start = max(m_start, r_start);
11727bd0b0f0STejun Heo 				if (out_end)
11737bd0b0f0STejun Heo 					*out_end = min(m_end, r_end);
11747bd0b0f0STejun Heo 				if (out_nid)
1175f1af9d3aSPhilipp Hachtmann 					*out_nid = m_nid;
11767bd0b0f0STejun Heo 				if (m_start >= r_start)
1177f1af9d3aSPhilipp Hachtmann 					idx_a--;
11787bd0b0f0STejun Heo 				else
1179f1af9d3aSPhilipp Hachtmann 					idx_b--;
1180f1af9d3aSPhilipp Hachtmann 				*idx = (u32)idx_a | (u64)idx_b << 32;
11817bd0b0f0STejun Heo 				return;
11827bd0b0f0STejun Heo 			}
11837bd0b0f0STejun Heo 		}
11847bd0b0f0STejun Heo 	}
1185f1af9d3aSPhilipp Hachtmann 	/* signal end of iteration */
11867bd0b0f0STejun Heo 	*idx = ULLONG_MAX;
11877bd0b0f0STejun Heo }
11887bd0b0f0STejun Heo 
11897c0caeb8STejun Heo /*
119045e79815SChen Chang  * Common iterator interface used to define for_each_mem_pfn_range().
11917c0caeb8STejun Heo  */
11927c0caeb8STejun Heo void __init_memblock __next_mem_pfn_range(int *idx, int nid,
11937c0caeb8STejun Heo 				unsigned long *out_start_pfn,
11947c0caeb8STejun Heo 				unsigned long *out_end_pfn, int *out_nid)
11957c0caeb8STejun Heo {
11967c0caeb8STejun Heo 	struct memblock_type *type = &memblock.memory;
11977c0caeb8STejun Heo 	struct memblock_region *r;
1198d622abf7SMike Rapoport 	int r_nid;
11997c0caeb8STejun Heo 
12007c0caeb8STejun Heo 	while (++*idx < type->cnt) {
12017c0caeb8STejun Heo 		r = &type->regions[*idx];
1202d622abf7SMike Rapoport 		r_nid = memblock_get_region_node(r);
12037c0caeb8STejun Heo 
12047c0caeb8STejun Heo 		if (PFN_UP(r->base) >= PFN_DOWN(r->base + r->size))
12057c0caeb8STejun Heo 			continue;
1206d622abf7SMike Rapoport 		if (nid == MAX_NUMNODES || nid == r_nid)
12077c0caeb8STejun Heo 			break;
12087c0caeb8STejun Heo 	}
12097c0caeb8STejun Heo 	if (*idx >= type->cnt) {
12107c0caeb8STejun Heo 		*idx = -1;
12117c0caeb8STejun Heo 		return;
12127c0caeb8STejun Heo 	}
12137c0caeb8STejun Heo 
12147c0caeb8STejun Heo 	if (out_start_pfn)
12157c0caeb8STejun Heo 		*out_start_pfn = PFN_UP(r->base);
12167c0caeb8STejun Heo 	if (out_end_pfn)
12177c0caeb8STejun Heo 		*out_end_pfn = PFN_DOWN(r->base + r->size);
12187c0caeb8STejun Heo 	if (out_nid)
1219d622abf7SMike Rapoport 		*out_nid = r_nid;
12207c0caeb8STejun Heo }
12217c0caeb8STejun Heo 
12227c0caeb8STejun Heo /**
12237c0caeb8STejun Heo  * memblock_set_node - set node ID on memblock regions
12247c0caeb8STejun Heo  * @base: base of area to set node ID for
12257c0caeb8STejun Heo  * @size: size of area to set node ID for
1226e7e8de59STang Chen  * @type: memblock type to set node ID for
12277c0caeb8STejun Heo  * @nid: node ID to set
12287c0caeb8STejun Heo  *
1229e7e8de59STang Chen  * Set the nid of memblock @type regions in [@base, @base + @size) to @nid.
12307c0caeb8STejun Heo  * Regions which cross the area boundaries are split as necessary.
12317c0caeb8STejun Heo  *
123247cec443SMike Rapoport  * Return:
12337c0caeb8STejun Heo  * 0 on success, -errno on failure.
12347c0caeb8STejun Heo  */
12357c0caeb8STejun Heo int __init_memblock memblock_set_node(phys_addr_t base, phys_addr_t size,
1236e7e8de59STang Chen 				      struct memblock_type *type, int nid)
12377c0caeb8STejun Heo {
1238a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
12396a9ceb31STejun Heo 	int start_rgn, end_rgn;
12406a9ceb31STejun Heo 	int i, ret;
12417c0caeb8STejun Heo 
12426a9ceb31STejun Heo 	ret = memblock_isolate_range(type, base, size, &start_rgn, &end_rgn);
12436a9ceb31STejun Heo 	if (ret)
12446a9ceb31STejun Heo 		return ret;
12457c0caeb8STejun Heo 
12466a9ceb31STejun Heo 	for (i = start_rgn; i < end_rgn; i++)
1247e9d24ad3SWanpeng Li 		memblock_set_region_node(&type->regions[i], nid);
12487c0caeb8STejun Heo 
12497c0caeb8STejun Heo 	memblock_merge_regions(type);
12503f08a302SMike Rapoport #endif
12517c0caeb8STejun Heo 	return 0;
12527c0caeb8STejun Heo }
12533f08a302SMike Rapoport 
1254837566e7SAlexander Duyck #ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
1255837566e7SAlexander Duyck /**
1256837566e7SAlexander Duyck  * __next_mem_pfn_range_in_zone - iterator for for_each_*_range_in_zone()
1257837566e7SAlexander Duyck  *
1258837566e7SAlexander Duyck  * @idx: pointer to u64 loop variable
1259837566e7SAlexander Duyck  * @zone: zone in which all of the memory blocks reside
1260837566e7SAlexander Duyck  * @out_spfn: ptr to ulong for start pfn of the range, can be %NULL
1261837566e7SAlexander Duyck  * @out_epfn: ptr to ulong for end pfn of the range, can be %NULL
1262837566e7SAlexander Duyck  *
1263837566e7SAlexander Duyck  * This function is meant to be a zone/pfn specific wrapper for the
1264837566e7SAlexander Duyck  * for_each_mem_range type iterators. Specifically they are used in the
1265837566e7SAlexander Duyck  * deferred memory init routines and as such we were duplicating much of
1266837566e7SAlexander Duyck  * this logic throughout the code. So instead of having it in multiple
1267837566e7SAlexander Duyck  * locations it seemed like it would make more sense to centralize this to
1268837566e7SAlexander Duyck  * one new iterator that does everything they need.
1269837566e7SAlexander Duyck  */
1270837566e7SAlexander Duyck void __init_memblock
1271837566e7SAlexander Duyck __next_mem_pfn_range_in_zone(u64 *idx, struct zone *zone,
1272837566e7SAlexander Duyck 			     unsigned long *out_spfn, unsigned long *out_epfn)
1273837566e7SAlexander Duyck {
1274837566e7SAlexander Duyck 	int zone_nid = zone_to_nid(zone);
1275837566e7SAlexander Duyck 	phys_addr_t spa, epa;
1276837566e7SAlexander Duyck 	int nid;
1277837566e7SAlexander Duyck 
1278837566e7SAlexander Duyck 	__next_mem_range(idx, zone_nid, MEMBLOCK_NONE,
1279837566e7SAlexander Duyck 			 &memblock.memory, &memblock.reserved,
1280837566e7SAlexander Duyck 			 &spa, &epa, &nid);
1281837566e7SAlexander Duyck 
1282837566e7SAlexander Duyck 	while (*idx != U64_MAX) {
1283837566e7SAlexander Duyck 		unsigned long epfn = PFN_DOWN(epa);
1284837566e7SAlexander Duyck 		unsigned long spfn = PFN_UP(spa);
1285837566e7SAlexander Duyck 
1286837566e7SAlexander Duyck 		/*
1287837566e7SAlexander Duyck 		 * Verify the end is at least past the start of the zone and
1288837566e7SAlexander Duyck 		 * that we have at least one PFN to initialize.
1289837566e7SAlexander Duyck 		 */
1290837566e7SAlexander Duyck 		if (zone->zone_start_pfn < epfn && spfn < epfn) {
1291837566e7SAlexander Duyck 			/* if we went too far just stop searching */
1292837566e7SAlexander Duyck 			if (zone_end_pfn(zone) <= spfn) {
1293837566e7SAlexander Duyck 				*idx = U64_MAX;
1294837566e7SAlexander Duyck 				break;
1295837566e7SAlexander Duyck 			}
1296837566e7SAlexander Duyck 
1297837566e7SAlexander Duyck 			if (out_spfn)
1298837566e7SAlexander Duyck 				*out_spfn = max(zone->zone_start_pfn, spfn);
1299837566e7SAlexander Duyck 			if (out_epfn)
1300837566e7SAlexander Duyck 				*out_epfn = min(zone_end_pfn(zone), epfn);
1301837566e7SAlexander Duyck 
1302837566e7SAlexander Duyck 			return;
1303837566e7SAlexander Duyck 		}
1304837566e7SAlexander Duyck 
1305837566e7SAlexander Duyck 		__next_mem_range(idx, zone_nid, MEMBLOCK_NONE,
1306837566e7SAlexander Duyck 				 &memblock.memory, &memblock.reserved,
1307837566e7SAlexander Duyck 				 &spa, &epa, &nid);
1308837566e7SAlexander Duyck 	}
1309837566e7SAlexander Duyck 
1310837566e7SAlexander Duyck 	/* signal end of iteration */
1311837566e7SAlexander Duyck 	if (out_spfn)
1312837566e7SAlexander Duyck 		*out_spfn = ULONG_MAX;
1313837566e7SAlexander Duyck 	if (out_epfn)
1314837566e7SAlexander Duyck 		*out_epfn = 0;
1315837566e7SAlexander Duyck }
1316837566e7SAlexander Duyck 
1317837566e7SAlexander Duyck #endif /* CONFIG_DEFERRED_STRUCT_PAGE_INIT */
13187c0caeb8STejun Heo 
131992d12f95SMike Rapoport /**
132092d12f95SMike Rapoport  * memblock_alloc_range_nid - allocate boot memory block
132192d12f95SMike Rapoport  * @size: size of memory block to be allocated in bytes
132292d12f95SMike Rapoport  * @align: alignment of the region and block's size
132392d12f95SMike Rapoport  * @start: the lower bound of the memory region to allocate (phys address)
132492d12f95SMike Rapoport  * @end: the upper bound of the memory region to allocate (phys address)
132592d12f95SMike Rapoport  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
13260ac398b1SYunfeng Ye  * @exact_nid: control the allocation fall back to other nodes
132792d12f95SMike Rapoport  *
132892d12f95SMike Rapoport  * The allocation is performed from memory region limited by
132995830666SCao jin  * memblock.current_limit if @end == %MEMBLOCK_ALLOC_ACCESSIBLE.
133092d12f95SMike Rapoport  *
13310ac398b1SYunfeng Ye  * If the specified node can not hold the requested memory and @exact_nid
13320ac398b1SYunfeng Ye  * is false, the allocation falls back to any node in the system.
133392d12f95SMike Rapoport  *
133492d12f95SMike Rapoport  * For systems with memory mirroring, the allocation is attempted first
133592d12f95SMike Rapoport  * from the regions with mirroring enabled and then retried from any
133692d12f95SMike Rapoport  * memory region.
133792d12f95SMike Rapoport  *
133892d12f95SMike Rapoport  * In addition, function sets the min_count to 0 using kmemleak_alloc_phys for
133992d12f95SMike Rapoport  * allocated boot memory block, so that it is never reported as leaks.
134092d12f95SMike Rapoport  *
134192d12f95SMike Rapoport  * Return:
134292d12f95SMike Rapoport  * Physical address of allocated memory block on success, %0 on failure.
134392d12f95SMike Rapoport  */
13448676af1fSAslan Bakirov phys_addr_t __init memblock_alloc_range_nid(phys_addr_t size,
13452bfc2862SAkinobu Mita 					phys_addr_t align, phys_addr_t start,
13460ac398b1SYunfeng Ye 					phys_addr_t end, int nid,
13470ac398b1SYunfeng Ye 					bool exact_nid)
134895f72d1eSYinghai Lu {
134992d12f95SMike Rapoport 	enum memblock_flags flags = choose_memblock_flags();
13506ed311b2SBenjamin Herrenschmidt 	phys_addr_t found;
135195f72d1eSYinghai Lu 
135292d12f95SMike Rapoport 	if (WARN_ONCE(nid == MAX_NUMNODES, "Usage of MAX_NUMNODES is deprecated. Use NUMA_NO_NODE instead\n"))
135392d12f95SMike Rapoport 		nid = NUMA_NO_NODE;
135492d12f95SMike Rapoport 
13552f770806SMike Rapoport 	if (!align) {
13562f770806SMike Rapoport 		/* Can't use WARNs this early in boot on powerpc */
13572f770806SMike Rapoport 		dump_stack();
13582f770806SMike Rapoport 		align = SMP_CACHE_BYTES;
13592f770806SMike Rapoport 	}
13602f770806SMike Rapoport 
136192d12f95SMike Rapoport again:
1362fc6daaf9STony Luck 	found = memblock_find_in_range_node(size, align, start, end, nid,
1363fc6daaf9STony Luck 					    flags);
136492d12f95SMike Rapoport 	if (found && !memblock_reserve(found, size))
136592d12f95SMike Rapoport 		goto done;
136692d12f95SMike Rapoport 
13670ac398b1SYunfeng Ye 	if (nid != NUMA_NO_NODE && !exact_nid) {
136892d12f95SMike Rapoport 		found = memblock_find_in_range_node(size, align, start,
136992d12f95SMike Rapoport 						    end, NUMA_NO_NODE,
137092d12f95SMike Rapoport 						    flags);
137192d12f95SMike Rapoport 		if (found && !memblock_reserve(found, size))
137292d12f95SMike Rapoport 			goto done;
137392d12f95SMike Rapoport 	}
137492d12f95SMike Rapoport 
137592d12f95SMike Rapoport 	if (flags & MEMBLOCK_MIRROR) {
137692d12f95SMike Rapoport 		flags &= ~MEMBLOCK_MIRROR;
137792d12f95SMike Rapoport 		pr_warn("Could not allocate %pap bytes of mirrored memory\n",
137892d12f95SMike Rapoport 			&size);
137992d12f95SMike Rapoport 		goto again;
138092d12f95SMike Rapoport 	}
138192d12f95SMike Rapoport 
138292d12f95SMike Rapoport 	return 0;
138392d12f95SMike Rapoport 
138492d12f95SMike Rapoport done:
138592d12f95SMike Rapoport 	/* Skip kmemleak for kasan_init() due to high volume. */
138692d12f95SMike Rapoport 	if (end != MEMBLOCK_ALLOC_KASAN)
1387aedf95eaSCatalin Marinas 		/*
138892d12f95SMike Rapoport 		 * The min_count is set to 0 so that memblock allocated
138992d12f95SMike Rapoport 		 * blocks are never reported as leaks. This is because many
139092d12f95SMike Rapoport 		 * of these blocks are only referred via the physical
139192d12f95SMike Rapoport 		 * address which is not looked up by kmemleak.
1392aedf95eaSCatalin Marinas 		 */
13939099daedSCatalin Marinas 		kmemleak_alloc_phys(found, size, 0, 0);
139492d12f95SMike Rapoport 
13956ed311b2SBenjamin Herrenschmidt 	return found;
1396aedf95eaSCatalin Marinas }
139795f72d1eSYinghai Lu 
1398a2974133SMike Rapoport /**
1399a2974133SMike Rapoport  * memblock_phys_alloc_range - allocate a memory block inside specified range
1400a2974133SMike Rapoport  * @size: size of memory block to be allocated in bytes
1401a2974133SMike Rapoport  * @align: alignment of the region and block's size
1402a2974133SMike Rapoport  * @start: the lower bound of the memory region to allocate (physical address)
1403a2974133SMike Rapoport  * @end: the upper bound of the memory region to allocate (physical address)
1404a2974133SMike Rapoport  *
1405a2974133SMike Rapoport  * Allocate @size bytes in the between @start and @end.
1406a2974133SMike Rapoport  *
1407a2974133SMike Rapoport  * Return: physical address of the allocated memory block on success,
1408a2974133SMike Rapoport  * %0 on failure.
1409a2974133SMike Rapoport  */
14108a770c2aSMike Rapoport phys_addr_t __init memblock_phys_alloc_range(phys_addr_t size,
14118a770c2aSMike Rapoport 					     phys_addr_t align,
14128a770c2aSMike Rapoport 					     phys_addr_t start,
14138a770c2aSMike Rapoport 					     phys_addr_t end)
14142bfc2862SAkinobu Mita {
1415b5cf2d6cSFaiyaz Mohammed 	memblock_dbg("%s: %llu bytes align=0x%llx from=%pa max_addr=%pa %pS\n",
1416b5cf2d6cSFaiyaz Mohammed 		     __func__, (u64)size, (u64)align, &start, &end,
1417b5cf2d6cSFaiyaz Mohammed 		     (void *)_RET_IP_);
14180ac398b1SYunfeng Ye 	return memblock_alloc_range_nid(size, align, start, end, NUMA_NO_NODE,
14190ac398b1SYunfeng Ye 					false);
14207bd0b0f0STejun Heo }
14217bd0b0f0STejun Heo 
1422a2974133SMike Rapoport /**
142317cbe038SLevi Yun  * memblock_phys_alloc_try_nid - allocate a memory block from specified NUMA node
1424a2974133SMike Rapoport  * @size: size of memory block to be allocated in bytes
1425a2974133SMike Rapoport  * @align: alignment of the region and block's size
1426a2974133SMike Rapoport  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1427a2974133SMike Rapoport  *
1428a2974133SMike Rapoport  * Allocates memory block from the specified NUMA node. If the node
1429a2974133SMike Rapoport  * has no available memory, attempts to allocated from any node in the
1430a2974133SMike Rapoport  * system.
1431a2974133SMike Rapoport  *
1432a2974133SMike Rapoport  * Return: physical address of the allocated memory block on success,
1433a2974133SMike Rapoport  * %0 on failure.
1434a2974133SMike Rapoport  */
14359a8dd708SMike Rapoport phys_addr_t __init memblock_phys_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid)
14369d1e2492SBenjamin Herrenschmidt {
143733755574SMike Rapoport 	return memblock_alloc_range_nid(size, align, 0,
14380ac398b1SYunfeng Ye 					MEMBLOCK_ALLOC_ACCESSIBLE, nid, false);
143995f72d1eSYinghai Lu }
144095f72d1eSYinghai Lu 
144126f09e9bSSantosh Shilimkar /**
1442eb31d559SMike Rapoport  * memblock_alloc_internal - allocate boot memory block
144326f09e9bSSantosh Shilimkar  * @size: size of memory block to be allocated in bytes
144426f09e9bSSantosh Shilimkar  * @align: alignment of the region and block's size
144526f09e9bSSantosh Shilimkar  * @min_addr: the lower bound of the memory region to allocate (phys address)
144626f09e9bSSantosh Shilimkar  * @max_addr: the upper bound of the memory region to allocate (phys address)
144726f09e9bSSantosh Shilimkar  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
14480ac398b1SYunfeng Ye  * @exact_nid: control the allocation fall back to other nodes
144926f09e9bSSantosh Shilimkar  *
145092d12f95SMike Rapoport  * Allocates memory block using memblock_alloc_range_nid() and
145192d12f95SMike Rapoport  * converts the returned physical address to virtual.
145292d12f95SMike Rapoport  *
145326f09e9bSSantosh Shilimkar  * The @min_addr limit is dropped if it can not be satisfied and the allocation
145492d12f95SMike Rapoport  * will fall back to memory below @min_addr. Other constraints, such
145592d12f95SMike Rapoport  * as node and mirrored memory will be handled again in
145692d12f95SMike Rapoport  * memblock_alloc_range_nid().
145726f09e9bSSantosh Shilimkar  *
145847cec443SMike Rapoport  * Return:
145926f09e9bSSantosh Shilimkar  * Virtual address of allocated memory block on success, NULL on failure.
146026f09e9bSSantosh Shilimkar  */
1461eb31d559SMike Rapoport static void * __init memblock_alloc_internal(
146226f09e9bSSantosh Shilimkar 				phys_addr_t size, phys_addr_t align,
146326f09e9bSSantosh Shilimkar 				phys_addr_t min_addr, phys_addr_t max_addr,
14640ac398b1SYunfeng Ye 				int nid, bool exact_nid)
146526f09e9bSSantosh Shilimkar {
146626f09e9bSSantosh Shilimkar 	phys_addr_t alloc;
146726f09e9bSSantosh Shilimkar 
146826f09e9bSSantosh Shilimkar 	/*
146926f09e9bSSantosh Shilimkar 	 * Detect any accidental use of these APIs after slab is ready, as at
147026f09e9bSSantosh Shilimkar 	 * this moment memblock may be deinitialized already and its
1471c6ffc5caSMike Rapoport 	 * internal data may be destroyed (after execution of memblock_free_all)
147226f09e9bSSantosh Shilimkar 	 */
147326f09e9bSSantosh Shilimkar 	if (WARN_ON_ONCE(slab_is_available()))
147426f09e9bSSantosh Shilimkar 		return kzalloc_node(size, GFP_NOWAIT, nid);
147526f09e9bSSantosh Shilimkar 
1476f3057ad7SMike Rapoport 	if (max_addr > memblock.current_limit)
1477f3057ad7SMike Rapoport 		max_addr = memblock.current_limit;
1478f3057ad7SMike Rapoport 
14790ac398b1SYunfeng Ye 	alloc = memblock_alloc_range_nid(size, align, min_addr, max_addr, nid,
14800ac398b1SYunfeng Ye 					exact_nid);
14812f770806SMike Rapoport 
148292d12f95SMike Rapoport 	/* retry allocation without lower limit */
148392d12f95SMike Rapoport 	if (!alloc && min_addr)
14840ac398b1SYunfeng Ye 		alloc = memblock_alloc_range_nid(size, align, 0, max_addr, nid,
14850ac398b1SYunfeng Ye 						exact_nid);
148626f09e9bSSantosh Shilimkar 
148792d12f95SMike Rapoport 	if (!alloc)
1488a3f5bafcSTony Luck 		return NULL;
148926f09e9bSSantosh Shilimkar 
149092d12f95SMike Rapoport 	return phys_to_virt(alloc);
149126f09e9bSSantosh Shilimkar }
149226f09e9bSSantosh Shilimkar 
149326f09e9bSSantosh Shilimkar /**
14940ac398b1SYunfeng Ye  * memblock_alloc_exact_nid_raw - allocate boot memory block on the exact node
14950ac398b1SYunfeng Ye  * without zeroing memory
14960ac398b1SYunfeng Ye  * @size: size of memory block to be allocated in bytes
14970ac398b1SYunfeng Ye  * @align: alignment of the region and block's size
14980ac398b1SYunfeng Ye  * @min_addr: the lower bound of the memory region from where the allocation
14990ac398b1SYunfeng Ye  *	  is preferred (phys address)
15000ac398b1SYunfeng Ye  * @max_addr: the upper bound of the memory region from where the allocation
15010ac398b1SYunfeng Ye  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
15020ac398b1SYunfeng Ye  *	      allocate only from memory limited by memblock.current_limit value
15030ac398b1SYunfeng Ye  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
15040ac398b1SYunfeng Ye  *
15050ac398b1SYunfeng Ye  * Public function, provides additional debug information (including caller
15060ac398b1SYunfeng Ye  * info), if enabled. Does not zero allocated memory.
15070ac398b1SYunfeng Ye  *
15080ac398b1SYunfeng Ye  * Return:
15090ac398b1SYunfeng Ye  * Virtual address of allocated memory block on success, NULL on failure.
15100ac398b1SYunfeng Ye  */
15110ac398b1SYunfeng Ye void * __init memblock_alloc_exact_nid_raw(
15120ac398b1SYunfeng Ye 			phys_addr_t size, phys_addr_t align,
15130ac398b1SYunfeng Ye 			phys_addr_t min_addr, phys_addr_t max_addr,
15140ac398b1SYunfeng Ye 			int nid)
15150ac398b1SYunfeng Ye {
15160ac398b1SYunfeng Ye 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
15170ac398b1SYunfeng Ye 		     __func__, (u64)size, (u64)align, nid, &min_addr,
15180ac398b1SYunfeng Ye 		     &max_addr, (void *)_RET_IP_);
15190ac398b1SYunfeng Ye 
152008678804SMike Rapoport 	return memblock_alloc_internal(size, align, min_addr, max_addr, nid,
152108678804SMike Rapoport 				       true);
15220ac398b1SYunfeng Ye }
15230ac398b1SYunfeng Ye 
15240ac398b1SYunfeng Ye /**
1525eb31d559SMike Rapoport  * memblock_alloc_try_nid_raw - allocate boot memory block without zeroing
1526ea1f5f37SPavel Tatashin  * memory and without panicking
1527ea1f5f37SPavel Tatashin  * @size: size of memory block to be allocated in bytes
1528ea1f5f37SPavel Tatashin  * @align: alignment of the region and block's size
1529ea1f5f37SPavel Tatashin  * @min_addr: the lower bound of the memory region from where the allocation
1530ea1f5f37SPavel Tatashin  *	  is preferred (phys address)
1531ea1f5f37SPavel Tatashin  * @max_addr: the upper bound of the memory region from where the allocation
153297ad1087SMike Rapoport  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
1533ea1f5f37SPavel Tatashin  *	      allocate only from memory limited by memblock.current_limit value
1534ea1f5f37SPavel Tatashin  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
1535ea1f5f37SPavel Tatashin  *
1536ea1f5f37SPavel Tatashin  * Public function, provides additional debug information (including caller
1537ea1f5f37SPavel Tatashin  * info), if enabled. Does not zero allocated memory, does not panic if request
1538ea1f5f37SPavel Tatashin  * cannot be satisfied.
1539ea1f5f37SPavel Tatashin  *
154047cec443SMike Rapoport  * Return:
1541ea1f5f37SPavel Tatashin  * Virtual address of allocated memory block on success, NULL on failure.
1542ea1f5f37SPavel Tatashin  */
1543eb31d559SMike Rapoport void * __init memblock_alloc_try_nid_raw(
1544ea1f5f37SPavel Tatashin 			phys_addr_t size, phys_addr_t align,
1545ea1f5f37SPavel Tatashin 			phys_addr_t min_addr, phys_addr_t max_addr,
1546ea1f5f37SPavel Tatashin 			int nid)
1547ea1f5f37SPavel Tatashin {
1548d75f773cSSakari Ailus 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
1549a36aab89SMike Rapoport 		     __func__, (u64)size, (u64)align, nid, &min_addr,
1550a36aab89SMike Rapoport 		     &max_addr, (void *)_RET_IP_);
1551ea1f5f37SPavel Tatashin 
155208678804SMike Rapoport 	return memblock_alloc_internal(size, align, min_addr, max_addr, nid,
155308678804SMike Rapoport 				       false);
1554ea1f5f37SPavel Tatashin }
1555ea1f5f37SPavel Tatashin 
1556ea1f5f37SPavel Tatashin /**
1557c0dbe825SMike Rapoport  * memblock_alloc_try_nid - allocate boot memory block
155826f09e9bSSantosh Shilimkar  * @size: size of memory block to be allocated in bytes
155926f09e9bSSantosh Shilimkar  * @align: alignment of the region and block's size
156026f09e9bSSantosh Shilimkar  * @min_addr: the lower bound of the memory region from where the allocation
156126f09e9bSSantosh Shilimkar  *	  is preferred (phys address)
156226f09e9bSSantosh Shilimkar  * @max_addr: the upper bound of the memory region from where the allocation
156397ad1087SMike Rapoport  *	      is preferred (phys address), or %MEMBLOCK_ALLOC_ACCESSIBLE to
156426f09e9bSSantosh Shilimkar  *	      allocate only from memory limited by memblock.current_limit value
156526f09e9bSSantosh Shilimkar  * @nid: nid of the free area to find, %NUMA_NO_NODE for any node
156626f09e9bSSantosh Shilimkar  *
1567c0dbe825SMike Rapoport  * Public function, provides additional debug information (including caller
1568c0dbe825SMike Rapoport  * info), if enabled. This function zeroes the allocated memory.
156926f09e9bSSantosh Shilimkar  *
157047cec443SMike Rapoport  * Return:
157126f09e9bSSantosh Shilimkar  * Virtual address of allocated memory block on success, NULL on failure.
157226f09e9bSSantosh Shilimkar  */
1573eb31d559SMike Rapoport void * __init memblock_alloc_try_nid(
157426f09e9bSSantosh Shilimkar 			phys_addr_t size, phys_addr_t align,
157526f09e9bSSantosh Shilimkar 			phys_addr_t min_addr, phys_addr_t max_addr,
157626f09e9bSSantosh Shilimkar 			int nid)
157726f09e9bSSantosh Shilimkar {
157826f09e9bSSantosh Shilimkar 	void *ptr;
157926f09e9bSSantosh Shilimkar 
1580d75f773cSSakari Ailus 	memblock_dbg("%s: %llu bytes align=0x%llx nid=%d from=%pa max_addr=%pa %pS\n",
1581a36aab89SMike Rapoport 		     __func__, (u64)size, (u64)align, nid, &min_addr,
1582a36aab89SMike Rapoport 		     &max_addr, (void *)_RET_IP_);
1583eb31d559SMike Rapoport 	ptr = memblock_alloc_internal(size, align,
15840ac398b1SYunfeng Ye 					   min_addr, max_addr, nid, false);
1585c0dbe825SMike Rapoport 	if (ptr)
1586ea1f5f37SPavel Tatashin 		memset(ptr, 0, size);
158726f09e9bSSantosh Shilimkar 
1588c0dbe825SMike Rapoport 	return ptr;
158926f09e9bSSantosh Shilimkar }
159026f09e9bSSantosh Shilimkar 
159126f09e9bSSantosh Shilimkar /**
1592621d9739SMike Rapoport  * memblock_free_late - free pages directly to buddy allocator
159348a833ccSMike Rapoport  * @base: phys starting address of the  boot memory block
159426f09e9bSSantosh Shilimkar  * @size: size of the boot memory block in bytes
159526f09e9bSSantosh Shilimkar  *
1596a2974133SMike Rapoport  * This is only useful when the memblock allocator has already been torn
159726f09e9bSSantosh Shilimkar  * down, but we are still initializing the system.  Pages are released directly
1598a2974133SMike Rapoport  * to the buddy allocator.
159926f09e9bSSantosh Shilimkar  */
1600621d9739SMike Rapoport void __init memblock_free_late(phys_addr_t base, phys_addr_t size)
160126f09e9bSSantosh Shilimkar {
1602a36aab89SMike Rapoport 	phys_addr_t cursor, end;
160326f09e9bSSantosh Shilimkar 
1604a36aab89SMike Rapoport 	end = base + size - 1;
1605d75f773cSSakari Ailus 	memblock_dbg("%s: [%pa-%pa] %pS\n",
1606a36aab89SMike Rapoport 		     __func__, &base, &end, (void *)_RET_IP_);
16079099daedSCatalin Marinas 	kmemleak_free_part_phys(base, size);
160826f09e9bSSantosh Shilimkar 	cursor = PFN_UP(base);
160926f09e9bSSantosh Shilimkar 	end = PFN_DOWN(base + size);
161026f09e9bSSantosh Shilimkar 
161126f09e9bSSantosh Shilimkar 	for (; cursor < end; cursor++) {
16127c2ee349SMike Rapoport 		memblock_free_pages(pfn_to_page(cursor), cursor, 0);
1613ca79b0c2SArun KS 		totalram_pages_inc();
161426f09e9bSSantosh Shilimkar 	}
161526f09e9bSSantosh Shilimkar }
16169d1e2492SBenjamin Herrenschmidt 
16179d1e2492SBenjamin Herrenschmidt /*
16189d1e2492SBenjamin Herrenschmidt  * Remaining API functions
16199d1e2492SBenjamin Herrenschmidt  */
16209d1e2492SBenjamin Herrenschmidt 
16211f1ffb8aSDavid Gibson phys_addr_t __init_memblock memblock_phys_mem_size(void)
162295f72d1eSYinghai Lu {
16231440c4e2STejun Heo 	return memblock.memory.total_size;
162495f72d1eSYinghai Lu }
162595f72d1eSYinghai Lu 
16268907de5dSSrikar Dronamraju phys_addr_t __init_memblock memblock_reserved_size(void)
16278907de5dSSrikar Dronamraju {
16288907de5dSSrikar Dronamraju 	return memblock.reserved.total_size;
16298907de5dSSrikar Dronamraju }
16308907de5dSSrikar Dronamraju 
16310a93ebefSSam Ravnborg /* lowest address */
16320a93ebefSSam Ravnborg phys_addr_t __init_memblock memblock_start_of_DRAM(void)
16330a93ebefSSam Ravnborg {
16340a93ebefSSam Ravnborg 	return memblock.memory.regions[0].base;
16350a93ebefSSam Ravnborg }
16360a93ebefSSam Ravnborg 
163710d06439SYinghai Lu phys_addr_t __init_memblock memblock_end_of_DRAM(void)
163895f72d1eSYinghai Lu {
163995f72d1eSYinghai Lu 	int idx = memblock.memory.cnt - 1;
164095f72d1eSYinghai Lu 
1641e3239ff9SBenjamin Herrenschmidt 	return (memblock.memory.regions[idx].base + memblock.memory.regions[idx].size);
164295f72d1eSYinghai Lu }
164395f72d1eSYinghai Lu 
1644a571d4ebSDennis Chen static phys_addr_t __init_memblock __find_max_addr(phys_addr_t limit)
164595f72d1eSYinghai Lu {
16461c4bc43dSStefan Agner 	phys_addr_t max_addr = PHYS_ADDR_MAX;
1647136199f0SEmil Medve 	struct memblock_region *r;
164895f72d1eSYinghai Lu 
1649a571d4ebSDennis Chen 	/*
1650a571d4ebSDennis Chen 	 * translate the memory @limit size into the max address within one of
1651a571d4ebSDennis Chen 	 * the memory memblock regions, if the @limit exceeds the total size
16521c4bc43dSStefan Agner 	 * of those regions, max_addr will keep original value PHYS_ADDR_MAX
1653a571d4ebSDennis Chen 	 */
1654cc6de168SMike Rapoport 	for_each_mem_region(r) {
1655c0ce8fefSTejun Heo 		if (limit <= r->size) {
1656c0ce8fefSTejun Heo 			max_addr = r->base + limit;
165795f72d1eSYinghai Lu 			break;
165895f72d1eSYinghai Lu 		}
1659c0ce8fefSTejun Heo 		limit -= r->size;
166095f72d1eSYinghai Lu 	}
1661c0ce8fefSTejun Heo 
1662a571d4ebSDennis Chen 	return max_addr;
1663a571d4ebSDennis Chen }
1664a571d4ebSDennis Chen 
1665a571d4ebSDennis Chen void __init memblock_enforce_memory_limit(phys_addr_t limit)
1666a571d4ebSDennis Chen {
166749aef717SColin Ian King 	phys_addr_t max_addr;
1668a571d4ebSDennis Chen 
1669a571d4ebSDennis Chen 	if (!limit)
1670a571d4ebSDennis Chen 		return;
1671a571d4ebSDennis Chen 
1672a571d4ebSDennis Chen 	max_addr = __find_max_addr(limit);
1673a571d4ebSDennis Chen 
1674a571d4ebSDennis Chen 	/* @limit exceeds the total size of the memory, do nothing */
16751c4bc43dSStefan Agner 	if (max_addr == PHYS_ADDR_MAX)
1676a571d4ebSDennis Chen 		return;
1677a571d4ebSDennis Chen 
1678c0ce8fefSTejun Heo 	/* truncate both memory and reserved regions */
1679f1af9d3aSPhilipp Hachtmann 	memblock_remove_range(&memblock.memory, max_addr,
16801c4bc43dSStefan Agner 			      PHYS_ADDR_MAX);
1681f1af9d3aSPhilipp Hachtmann 	memblock_remove_range(&memblock.reserved, max_addr,
16821c4bc43dSStefan Agner 			      PHYS_ADDR_MAX);
168395f72d1eSYinghai Lu }
168495f72d1eSYinghai Lu 
1685c9ca9b4eSAKASHI Takahiro void __init memblock_cap_memory_range(phys_addr_t base, phys_addr_t size)
1686c9ca9b4eSAKASHI Takahiro {
1687c9ca9b4eSAKASHI Takahiro 	int start_rgn, end_rgn;
1688c9ca9b4eSAKASHI Takahiro 	int i, ret;
1689c9ca9b4eSAKASHI Takahiro 
1690c9ca9b4eSAKASHI Takahiro 	if (!size)
1691c9ca9b4eSAKASHI Takahiro 		return;
1692c9ca9b4eSAKASHI Takahiro 
16935173ed72SPeng Fan 	if (!memblock_memory->total_size) {
1694e888fa7bSGeert Uytterhoeven 		pr_warn("%s: No memory registered yet\n", __func__);
1695e888fa7bSGeert Uytterhoeven 		return;
1696e888fa7bSGeert Uytterhoeven 	}
1697e888fa7bSGeert Uytterhoeven 
1698c9ca9b4eSAKASHI Takahiro 	ret = memblock_isolate_range(&memblock.memory, base, size,
1699c9ca9b4eSAKASHI Takahiro 						&start_rgn, &end_rgn);
1700c9ca9b4eSAKASHI Takahiro 	if (ret)
1701c9ca9b4eSAKASHI Takahiro 		return;
1702c9ca9b4eSAKASHI Takahiro 
1703c9ca9b4eSAKASHI Takahiro 	/* remove all the MAP regions */
1704c9ca9b4eSAKASHI Takahiro 	for (i = memblock.memory.cnt - 1; i >= end_rgn; i--)
1705c9ca9b4eSAKASHI Takahiro 		if (!memblock_is_nomap(&memblock.memory.regions[i]))
1706c9ca9b4eSAKASHI Takahiro 			memblock_remove_region(&memblock.memory, i);
1707c9ca9b4eSAKASHI Takahiro 
1708c9ca9b4eSAKASHI Takahiro 	for (i = start_rgn - 1; i >= 0; i--)
1709c9ca9b4eSAKASHI Takahiro 		if (!memblock_is_nomap(&memblock.memory.regions[i]))
1710c9ca9b4eSAKASHI Takahiro 			memblock_remove_region(&memblock.memory, i);
1711c9ca9b4eSAKASHI Takahiro 
1712c9ca9b4eSAKASHI Takahiro 	/* truncate the reserved regions */
1713c9ca9b4eSAKASHI Takahiro 	memblock_remove_range(&memblock.reserved, 0, base);
1714c9ca9b4eSAKASHI Takahiro 	memblock_remove_range(&memblock.reserved,
17151c4bc43dSStefan Agner 			base + size, PHYS_ADDR_MAX);
1716c9ca9b4eSAKASHI Takahiro }
1717c9ca9b4eSAKASHI Takahiro 
1718a571d4ebSDennis Chen void __init memblock_mem_limit_remove_map(phys_addr_t limit)
1719a571d4ebSDennis Chen {
1720a571d4ebSDennis Chen 	phys_addr_t max_addr;
1721a571d4ebSDennis Chen 
1722a571d4ebSDennis Chen 	if (!limit)
1723a571d4ebSDennis Chen 		return;
1724a571d4ebSDennis Chen 
1725a571d4ebSDennis Chen 	max_addr = __find_max_addr(limit);
1726a571d4ebSDennis Chen 
1727a571d4ebSDennis Chen 	/* @limit exceeds the total size of the memory, do nothing */
17281c4bc43dSStefan Agner 	if (max_addr == PHYS_ADDR_MAX)
1729a571d4ebSDennis Chen 		return;
1730a571d4ebSDennis Chen 
1731c9ca9b4eSAKASHI Takahiro 	memblock_cap_memory_range(0, max_addr);
1732a571d4ebSDennis Chen }
1733a571d4ebSDennis Chen 
1734cd79481dSYinghai Lu static int __init_memblock memblock_search(struct memblock_type *type, phys_addr_t addr)
173572d4b0b4SBenjamin Herrenschmidt {
173672d4b0b4SBenjamin Herrenschmidt 	unsigned int left = 0, right = type->cnt;
173772d4b0b4SBenjamin Herrenschmidt 
173872d4b0b4SBenjamin Herrenschmidt 	do {
173972d4b0b4SBenjamin Herrenschmidt 		unsigned int mid = (right + left) / 2;
174072d4b0b4SBenjamin Herrenschmidt 
174172d4b0b4SBenjamin Herrenschmidt 		if (addr < type->regions[mid].base)
174272d4b0b4SBenjamin Herrenschmidt 			right = mid;
174372d4b0b4SBenjamin Herrenschmidt 		else if (addr >= (type->regions[mid].base +
174472d4b0b4SBenjamin Herrenschmidt 				  type->regions[mid].size))
174572d4b0b4SBenjamin Herrenschmidt 			left = mid + 1;
174672d4b0b4SBenjamin Herrenschmidt 		else
174772d4b0b4SBenjamin Herrenschmidt 			return mid;
174872d4b0b4SBenjamin Herrenschmidt 	} while (left < right);
174972d4b0b4SBenjamin Herrenschmidt 	return -1;
175072d4b0b4SBenjamin Herrenschmidt }
175172d4b0b4SBenjamin Herrenschmidt 
1752f5a222dcSYueyi Li bool __init_memblock memblock_is_reserved(phys_addr_t addr)
175395f72d1eSYinghai Lu {
175472d4b0b4SBenjamin Herrenschmidt 	return memblock_search(&memblock.reserved, addr) != -1;
175595f72d1eSYinghai Lu }
175672d4b0b4SBenjamin Herrenschmidt 
1757b4ad0c7eSYaowei Bai bool __init_memblock memblock_is_memory(phys_addr_t addr)
175872d4b0b4SBenjamin Herrenschmidt {
175972d4b0b4SBenjamin Herrenschmidt 	return memblock_search(&memblock.memory, addr) != -1;
176072d4b0b4SBenjamin Herrenschmidt }
176172d4b0b4SBenjamin Herrenschmidt 
1762937f0c26SYaowei Bai bool __init_memblock memblock_is_map_memory(phys_addr_t addr)
1763bf3d3cc5SArd Biesheuvel {
1764bf3d3cc5SArd Biesheuvel 	int i = memblock_search(&memblock.memory, addr);
1765bf3d3cc5SArd Biesheuvel 
1766bf3d3cc5SArd Biesheuvel 	if (i == -1)
1767bf3d3cc5SArd Biesheuvel 		return false;
1768bf3d3cc5SArd Biesheuvel 	return !memblock_is_nomap(&memblock.memory.regions[i]);
1769bf3d3cc5SArd Biesheuvel }
1770bf3d3cc5SArd Biesheuvel 
1771e76b63f8SYinghai Lu int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
1772e76b63f8SYinghai Lu 			 unsigned long *start_pfn, unsigned long *end_pfn)
1773e76b63f8SYinghai Lu {
1774e76b63f8SYinghai Lu 	struct memblock_type *type = &memblock.memory;
177516763230SFabian Frederick 	int mid = memblock_search(type, PFN_PHYS(pfn));
1776e76b63f8SYinghai Lu 
1777e76b63f8SYinghai Lu 	if (mid == -1)
1778e76b63f8SYinghai Lu 		return -1;
1779e76b63f8SYinghai Lu 
1780f7e2f7e8SFabian Frederick 	*start_pfn = PFN_DOWN(type->regions[mid].base);
1781f7e2f7e8SFabian Frederick 	*end_pfn = PFN_DOWN(type->regions[mid].base + type->regions[mid].size);
1782e76b63f8SYinghai Lu 
1783d622abf7SMike Rapoport 	return memblock_get_region_node(&type->regions[mid]);
1784e76b63f8SYinghai Lu }
1785e76b63f8SYinghai Lu 
1786eab30949SStephen Boyd /**
1787eab30949SStephen Boyd  * memblock_is_region_memory - check if a region is a subset of memory
1788eab30949SStephen Boyd  * @base: base of region to check
1789eab30949SStephen Boyd  * @size: size of region to check
1790eab30949SStephen Boyd  *
1791eab30949SStephen Boyd  * Check if the region [@base, @base + @size) is a subset of a memory block.
1792eab30949SStephen Boyd  *
179347cec443SMike Rapoport  * Return:
1794eab30949SStephen Boyd  * 0 if false, non-zero if true
1795eab30949SStephen Boyd  */
1796937f0c26SYaowei Bai bool __init_memblock memblock_is_region_memory(phys_addr_t base, phys_addr_t size)
179772d4b0b4SBenjamin Herrenschmidt {
1798abb65272STomi Valkeinen 	int idx = memblock_search(&memblock.memory, base);
1799eb18f1b5STejun Heo 	phys_addr_t end = base + memblock_cap_size(base, &size);
180072d4b0b4SBenjamin Herrenschmidt 
180172d4b0b4SBenjamin Herrenschmidt 	if (idx == -1)
1802937f0c26SYaowei Bai 		return false;
1803ef415ef4SWei Yang 	return (memblock.memory.regions[idx].base +
1804eb18f1b5STejun Heo 		 memblock.memory.regions[idx].size) >= end;
180595f72d1eSYinghai Lu }
180695f72d1eSYinghai Lu 
1807eab30949SStephen Boyd /**
1808eab30949SStephen Boyd  * memblock_is_region_reserved - check if a region intersects reserved memory
1809eab30949SStephen Boyd  * @base: base of region to check
1810eab30949SStephen Boyd  * @size: size of region to check
1811eab30949SStephen Boyd  *
181247cec443SMike Rapoport  * Check if the region [@base, @base + @size) intersects a reserved
181347cec443SMike Rapoport  * memory block.
1814eab30949SStephen Boyd  *
181547cec443SMike Rapoport  * Return:
1816c5c5c9d1STang Chen  * True if they intersect, false if not.
1817eab30949SStephen Boyd  */
1818c5c5c9d1STang Chen bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size)
181995f72d1eSYinghai Lu {
1820c5c5c9d1STang Chen 	return memblock_overlaps_region(&memblock.reserved, base, size);
182195f72d1eSYinghai Lu }
182295f72d1eSYinghai Lu 
18236ede1fd3SYinghai Lu void __init_memblock memblock_trim_memory(phys_addr_t align)
18246ede1fd3SYinghai Lu {
18256ede1fd3SYinghai Lu 	phys_addr_t start, end, orig_start, orig_end;
1826136199f0SEmil Medve 	struct memblock_region *r;
18276ede1fd3SYinghai Lu 
1828cc6de168SMike Rapoport 	for_each_mem_region(r) {
1829136199f0SEmil Medve 		orig_start = r->base;
1830136199f0SEmil Medve 		orig_end = r->base + r->size;
18316ede1fd3SYinghai Lu 		start = round_up(orig_start, align);
18326ede1fd3SYinghai Lu 		end = round_down(orig_end, align);
18336ede1fd3SYinghai Lu 
18346ede1fd3SYinghai Lu 		if (start == orig_start && end == orig_end)
18356ede1fd3SYinghai Lu 			continue;
18366ede1fd3SYinghai Lu 
18376ede1fd3SYinghai Lu 		if (start < end) {
1838136199f0SEmil Medve 			r->base = start;
1839136199f0SEmil Medve 			r->size = end - start;
18406ede1fd3SYinghai Lu 		} else {
1841136199f0SEmil Medve 			memblock_remove_region(&memblock.memory,
1842136199f0SEmil Medve 					       r - memblock.memory.regions);
1843136199f0SEmil Medve 			r--;
18446ede1fd3SYinghai Lu 		}
18456ede1fd3SYinghai Lu 	}
18466ede1fd3SYinghai Lu }
1847e63075a3SBenjamin Herrenschmidt 
18483661ca66SYinghai Lu void __init_memblock memblock_set_current_limit(phys_addr_t limit)
1849e63075a3SBenjamin Herrenschmidt {
1850e63075a3SBenjamin Herrenschmidt 	memblock.current_limit = limit;
1851e63075a3SBenjamin Herrenschmidt }
1852e63075a3SBenjamin Herrenschmidt 
1853fec51014SLaura Abbott phys_addr_t __init_memblock memblock_get_current_limit(void)
1854fec51014SLaura Abbott {
1855fec51014SLaura Abbott 	return memblock.current_limit;
1856fec51014SLaura Abbott }
1857fec51014SLaura Abbott 
18580262d9c8SHeiko Carstens static void __init_memblock memblock_dump(struct memblock_type *type)
18596ed311b2SBenjamin Herrenschmidt {
18605d63f81cSMiles Chen 	phys_addr_t base, end, size;
1861e1720feeSMike Rapoport 	enum memblock_flags flags;
18628c9c1701SAlexander Kuleshov 	int idx;
18638c9c1701SAlexander Kuleshov 	struct memblock_region *rgn;
18646ed311b2SBenjamin Herrenschmidt 
18650262d9c8SHeiko Carstens 	pr_info(" %s.cnt  = 0x%lx\n", type->name, type->cnt);
18666ed311b2SBenjamin Herrenschmidt 
186766e8b438SGioh Kim 	for_each_memblock_type(idx, type, rgn) {
18687c0caeb8STejun Heo 		char nid_buf[32] = "";
18696ed311b2SBenjamin Herrenschmidt 
18707c0caeb8STejun Heo 		base = rgn->base;
18717c0caeb8STejun Heo 		size = rgn->size;
18725d63f81cSMiles Chen 		end = base + size - 1;
187366a20757STang Chen 		flags = rgn->flags;
1874a9ee6cf5SMike Rapoport #ifdef CONFIG_NUMA
18757c0caeb8STejun Heo 		if (memblock_get_region_node(rgn) != MAX_NUMNODES)
18767c0caeb8STejun Heo 			snprintf(nid_buf, sizeof(nid_buf), " on node %d",
18777c0caeb8STejun Heo 				 memblock_get_region_node(rgn));
18787c0caeb8STejun Heo #endif
1879e1720feeSMike Rapoport 		pr_info(" %s[%#x]\t[%pa-%pa], %pa bytes%s flags: %#x\n",
18800262d9c8SHeiko Carstens 			type->name, idx, &base, &end, &size, nid_buf, flags);
18816ed311b2SBenjamin Herrenschmidt 	}
18826ed311b2SBenjamin Herrenschmidt }
18836ed311b2SBenjamin Herrenschmidt 
188487c55870SMike Rapoport static void __init_memblock __memblock_dump_all(void)
18856ed311b2SBenjamin Herrenschmidt {
18866ed311b2SBenjamin Herrenschmidt 	pr_info("MEMBLOCK configuration:\n");
18875d63f81cSMiles Chen 	pr_info(" memory size = %pa reserved size = %pa\n",
18885d63f81cSMiles Chen 		&memblock.memory.total_size,
18895d63f81cSMiles Chen 		&memblock.reserved.total_size);
18906ed311b2SBenjamin Herrenschmidt 
18910262d9c8SHeiko Carstens 	memblock_dump(&memblock.memory);
18920262d9c8SHeiko Carstens 	memblock_dump(&memblock.reserved);
1893409efd4cSHeiko Carstens #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
189477649905SDavid Hildenbrand 	memblock_dump(&physmem);
1895409efd4cSHeiko Carstens #endif
18966ed311b2SBenjamin Herrenschmidt }
18976ed311b2SBenjamin Herrenschmidt 
189887c55870SMike Rapoport void __init_memblock memblock_dump_all(void)
189987c55870SMike Rapoport {
190087c55870SMike Rapoport 	if (memblock_debug)
190187c55870SMike Rapoport 		__memblock_dump_all();
190287c55870SMike Rapoport }
190387c55870SMike Rapoport 
19041aadc056STejun Heo void __init memblock_allow_resize(void)
19056ed311b2SBenjamin Herrenschmidt {
1906142b45a7SBenjamin Herrenschmidt 	memblock_can_resize = 1;
19076ed311b2SBenjamin Herrenschmidt }
19086ed311b2SBenjamin Herrenschmidt 
19096ed311b2SBenjamin Herrenschmidt static int __init early_memblock(char *p)
19106ed311b2SBenjamin Herrenschmidt {
19116ed311b2SBenjamin Herrenschmidt 	if (p && strstr(p, "debug"))
19126ed311b2SBenjamin Herrenschmidt 		memblock_debug = 1;
19136ed311b2SBenjamin Herrenschmidt 	return 0;
19146ed311b2SBenjamin Herrenschmidt }
19156ed311b2SBenjamin Herrenschmidt early_param("memblock", early_memblock);
19166ed311b2SBenjamin Herrenschmidt 
19174f5b0c17SMike Rapoport static void __init free_memmap(unsigned long start_pfn, unsigned long end_pfn)
19184f5b0c17SMike Rapoport {
19194f5b0c17SMike Rapoport 	struct page *start_pg, *end_pg;
19204f5b0c17SMike Rapoport 	phys_addr_t pg, pgend;
19214f5b0c17SMike Rapoport 
19224f5b0c17SMike Rapoport 	/*
19234f5b0c17SMike Rapoport 	 * Convert start_pfn/end_pfn to a struct page pointer.
19244f5b0c17SMike Rapoport 	 */
19254f5b0c17SMike Rapoport 	start_pg = pfn_to_page(start_pfn - 1) + 1;
19264f5b0c17SMike Rapoport 	end_pg = pfn_to_page(end_pfn - 1) + 1;
19274f5b0c17SMike Rapoport 
19284f5b0c17SMike Rapoport 	/*
19294f5b0c17SMike Rapoport 	 * Convert to physical addresses, and round start upwards and end
19304f5b0c17SMike Rapoport 	 * downwards.
19314f5b0c17SMike Rapoport 	 */
19324f5b0c17SMike Rapoport 	pg = PAGE_ALIGN(__pa(start_pg));
19334f5b0c17SMike Rapoport 	pgend = __pa(end_pg) & PAGE_MASK;
19344f5b0c17SMike Rapoport 
19354f5b0c17SMike Rapoport 	/*
19364f5b0c17SMike Rapoport 	 * If there are free pages between these, free the section of the
19374f5b0c17SMike Rapoport 	 * memmap array.
19384f5b0c17SMike Rapoport 	 */
19394f5b0c17SMike Rapoport 	if (pg < pgend)
19403ecc6834SMike Rapoport 		memblock_phys_free(pg, pgend - pg);
19414f5b0c17SMike Rapoport }
19424f5b0c17SMike Rapoport 
19434f5b0c17SMike Rapoport /*
19444f5b0c17SMike Rapoport  * The mem_map array can get very big.  Free the unused area of the memory map.
19454f5b0c17SMike Rapoport  */
19464f5b0c17SMike Rapoport static void __init free_unused_memmap(void)
19474f5b0c17SMike Rapoport {
19484f5b0c17SMike Rapoport 	unsigned long start, end, prev_end = 0;
19494f5b0c17SMike Rapoport 	int i;
19504f5b0c17SMike Rapoport 
19514f5b0c17SMike Rapoport 	if (!IS_ENABLED(CONFIG_HAVE_ARCH_PFN_VALID) ||
19524f5b0c17SMike Rapoport 	    IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP))
19534f5b0c17SMike Rapoport 		return;
19544f5b0c17SMike Rapoport 
19554f5b0c17SMike Rapoport 	/*
19564f5b0c17SMike Rapoport 	 * This relies on each bank being in address order.
19574f5b0c17SMike Rapoport 	 * The banks are sorted previously in bootmem_init().
19584f5b0c17SMike Rapoport 	 */
19594f5b0c17SMike Rapoport 	for_each_mem_pfn_range(i, MAX_NUMNODES, &start, &end, NULL) {
19604f5b0c17SMike Rapoport #ifdef CONFIG_SPARSEMEM
19614f5b0c17SMike Rapoport 		/*
19624f5b0c17SMike Rapoport 		 * Take care not to free memmap entries that don't exist
19634f5b0c17SMike Rapoport 		 * due to SPARSEMEM sections which aren't present.
19644f5b0c17SMike Rapoport 		 */
19654f5b0c17SMike Rapoport 		start = min(start, ALIGN(prev_end, PAGES_PER_SECTION));
19664f5b0c17SMike Rapoport #endif
19674f5b0c17SMike Rapoport 		/*
1968e2a86800SMike Rapoport 		 * Align down here since many operations in VM subsystem
1969e2a86800SMike Rapoport 		 * presume that there are no holes in the memory map inside
1970e2a86800SMike Rapoport 		 * a pageblock
19714f5b0c17SMike Rapoport 		 */
1972e2a86800SMike Rapoport 		start = round_down(start, pageblock_nr_pages);
19734f5b0c17SMike Rapoport 
19744f5b0c17SMike Rapoport 		/*
19754f5b0c17SMike Rapoport 		 * If we had a previous bank, and there is a space
19764f5b0c17SMike Rapoport 		 * between the current bank and the previous, free it.
19774f5b0c17SMike Rapoport 		 */
19784f5b0c17SMike Rapoport 		if (prev_end && prev_end < start)
19794f5b0c17SMike Rapoport 			free_memmap(prev_end, start);
19804f5b0c17SMike Rapoport 
19814f5b0c17SMike Rapoport 		/*
1982e2a86800SMike Rapoport 		 * Align up here since many operations in VM subsystem
1983e2a86800SMike Rapoport 		 * presume that there are no holes in the memory map inside
1984e2a86800SMike Rapoport 		 * a pageblock
19854f5b0c17SMike Rapoport 		 */
1986e2a86800SMike Rapoport 		prev_end = ALIGN(end, pageblock_nr_pages);
19874f5b0c17SMike Rapoport 	}
19884f5b0c17SMike Rapoport 
19894f5b0c17SMike Rapoport #ifdef CONFIG_SPARSEMEM
1990f921f53eSMike Rapoport 	if (!IS_ALIGNED(prev_end, PAGES_PER_SECTION)) {
1991f921f53eSMike Rapoport 		prev_end = ALIGN(end, pageblock_nr_pages);
19924f5b0c17SMike Rapoport 		free_memmap(prev_end, ALIGN(prev_end, PAGES_PER_SECTION));
1993f921f53eSMike Rapoport 	}
19944f5b0c17SMike Rapoport #endif
19954f5b0c17SMike Rapoport }
19964f5b0c17SMike Rapoport 
1997bda49a81SMike Rapoport static void __init __free_pages_memory(unsigned long start, unsigned long end)
1998bda49a81SMike Rapoport {
1999bda49a81SMike Rapoport 	int order;
2000bda49a81SMike Rapoport 
2001bda49a81SMike Rapoport 	while (start < end) {
2002bda49a81SMike Rapoport 		order = min(MAX_ORDER - 1UL, __ffs(start));
2003bda49a81SMike Rapoport 
2004bda49a81SMike Rapoport 		while (start + (1UL << order) > end)
2005bda49a81SMike Rapoport 			order--;
2006bda49a81SMike Rapoport 
2007bda49a81SMike Rapoport 		memblock_free_pages(pfn_to_page(start), start, order);
2008bda49a81SMike Rapoport 
2009bda49a81SMike Rapoport 		start += (1UL << order);
2010bda49a81SMike Rapoport 	}
2011bda49a81SMike Rapoport }
2012bda49a81SMike Rapoport 
2013bda49a81SMike Rapoport static unsigned long __init __free_memory_core(phys_addr_t start,
2014bda49a81SMike Rapoport 				 phys_addr_t end)
2015bda49a81SMike Rapoport {
2016bda49a81SMike Rapoport 	unsigned long start_pfn = PFN_UP(start);
2017bda49a81SMike Rapoport 	unsigned long end_pfn = min_t(unsigned long,
2018bda49a81SMike Rapoport 				      PFN_DOWN(end), max_low_pfn);
2019bda49a81SMike Rapoport 
2020bda49a81SMike Rapoport 	if (start_pfn >= end_pfn)
2021bda49a81SMike Rapoport 		return 0;
2022bda49a81SMike Rapoport 
2023bda49a81SMike Rapoport 	__free_pages_memory(start_pfn, end_pfn);
2024bda49a81SMike Rapoport 
2025bda49a81SMike Rapoport 	return end_pfn - start_pfn;
2026bda49a81SMike Rapoport }
2027bda49a81SMike Rapoport 
20289092d4f7SMike Rapoport static void __init memmap_init_reserved_pages(void)
20299092d4f7SMike Rapoport {
20309092d4f7SMike Rapoport 	struct memblock_region *region;
20319092d4f7SMike Rapoport 	phys_addr_t start, end;
20329092d4f7SMike Rapoport 	u64 i;
20339092d4f7SMike Rapoport 
20349092d4f7SMike Rapoport 	/* initialize struct pages for the reserved regions */
20359092d4f7SMike Rapoport 	for_each_reserved_mem_range(i, &start, &end)
20369092d4f7SMike Rapoport 		reserve_bootmem_region(start, end);
20379092d4f7SMike Rapoport 
20389092d4f7SMike Rapoport 	/* and also treat struct pages for the NOMAP regions as PageReserved */
20399092d4f7SMike Rapoport 	for_each_mem_region(region) {
20409092d4f7SMike Rapoport 		if (memblock_is_nomap(region)) {
20419092d4f7SMike Rapoport 			start = region->base;
20429092d4f7SMike Rapoport 			end = start + region->size;
20439092d4f7SMike Rapoport 			reserve_bootmem_region(start, end);
20449092d4f7SMike Rapoport 		}
20459092d4f7SMike Rapoport 	}
20469092d4f7SMike Rapoport }
20479092d4f7SMike Rapoport 
2048bda49a81SMike Rapoport static unsigned long __init free_low_memory_core_early(void)
2049bda49a81SMike Rapoport {
2050bda49a81SMike Rapoport 	unsigned long count = 0;
2051bda49a81SMike Rapoport 	phys_addr_t start, end;
2052bda49a81SMike Rapoport 	u64 i;
2053bda49a81SMike Rapoport 
2054bda49a81SMike Rapoport 	memblock_clear_hotplug(0, -1);
2055bda49a81SMike Rapoport 
20569092d4f7SMike Rapoport 	memmap_init_reserved_pages();
2057bda49a81SMike Rapoport 
2058bda49a81SMike Rapoport 	/*
2059bda49a81SMike Rapoport 	 * We need to use NUMA_NO_NODE instead of NODE_DATA(0)->node_id
2060bda49a81SMike Rapoport 	 *  because in some case like Node0 doesn't have RAM installed
2061bda49a81SMike Rapoport 	 *  low ram will be on Node1
2062bda49a81SMike Rapoport 	 */
2063bda49a81SMike Rapoport 	for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &start, &end,
2064bda49a81SMike Rapoport 				NULL)
2065bda49a81SMike Rapoport 		count += __free_memory_core(start, end);
2066bda49a81SMike Rapoport 
2067bda49a81SMike Rapoport 	return count;
2068bda49a81SMike Rapoport }
2069bda49a81SMike Rapoport 
2070bda49a81SMike Rapoport static int reset_managed_pages_done __initdata;
2071bda49a81SMike Rapoport 
2072bda49a81SMike Rapoport void reset_node_managed_pages(pg_data_t *pgdat)
2073bda49a81SMike Rapoport {
2074bda49a81SMike Rapoport 	struct zone *z;
2075bda49a81SMike Rapoport 
2076bda49a81SMike Rapoport 	for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
20779705bea5SArun KS 		atomic_long_set(&z->managed_pages, 0);
2078bda49a81SMike Rapoport }
2079bda49a81SMike Rapoport 
2080bda49a81SMike Rapoport void __init reset_all_zones_managed_pages(void)
2081bda49a81SMike Rapoport {
2082bda49a81SMike Rapoport 	struct pglist_data *pgdat;
2083bda49a81SMike Rapoport 
2084bda49a81SMike Rapoport 	if (reset_managed_pages_done)
2085bda49a81SMike Rapoport 		return;
2086bda49a81SMike Rapoport 
2087bda49a81SMike Rapoport 	for_each_online_pgdat(pgdat)
2088bda49a81SMike Rapoport 		reset_node_managed_pages(pgdat);
2089bda49a81SMike Rapoport 
2090bda49a81SMike Rapoport 	reset_managed_pages_done = 1;
2091bda49a81SMike Rapoport }
2092bda49a81SMike Rapoport 
2093bda49a81SMike Rapoport /**
2094bda49a81SMike Rapoport  * memblock_free_all - release free pages to the buddy allocator
2095bda49a81SMike Rapoport  */
2096097d43d8SDaeseok Youn void __init memblock_free_all(void)
2097bda49a81SMike Rapoport {
2098bda49a81SMike Rapoport 	unsigned long pages;
2099bda49a81SMike Rapoport 
21004f5b0c17SMike Rapoport 	free_unused_memmap();
2101bda49a81SMike Rapoport 	reset_all_zones_managed_pages();
2102bda49a81SMike Rapoport 
2103bda49a81SMike Rapoport 	pages = free_low_memory_core_early();
2104ca79b0c2SArun KS 	totalram_pages_add(pages);
2105bda49a81SMike Rapoport }
2106bda49a81SMike Rapoport 
2107350e88baSMike Rapoport #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_ARCH_KEEP_MEMBLOCK)
21086d03b885SBenjamin Herrenschmidt 
21096d03b885SBenjamin Herrenschmidt static int memblock_debug_show(struct seq_file *m, void *private)
21106d03b885SBenjamin Herrenschmidt {
21116d03b885SBenjamin Herrenschmidt 	struct memblock_type *type = m->private;
21126d03b885SBenjamin Herrenschmidt 	struct memblock_region *reg;
21136d03b885SBenjamin Herrenschmidt 	int i;
21145d63f81cSMiles Chen 	phys_addr_t end;
21156d03b885SBenjamin Herrenschmidt 
21166d03b885SBenjamin Herrenschmidt 	for (i = 0; i < type->cnt; i++) {
21176d03b885SBenjamin Herrenschmidt 		reg = &type->regions[i];
21185d63f81cSMiles Chen 		end = reg->base + reg->size - 1;
21196d03b885SBenjamin Herrenschmidt 
21205d63f81cSMiles Chen 		seq_printf(m, "%4d: ", i);
21215d63f81cSMiles Chen 		seq_printf(m, "%pa..%pa\n", &reg->base, &end);
21226d03b885SBenjamin Herrenschmidt 	}
21236d03b885SBenjamin Herrenschmidt 	return 0;
21246d03b885SBenjamin Herrenschmidt }
21255ad35093SAndy Shevchenko DEFINE_SHOW_ATTRIBUTE(memblock_debug);
21266d03b885SBenjamin Herrenschmidt 
21276d03b885SBenjamin Herrenschmidt static int __init memblock_init_debugfs(void)
21286d03b885SBenjamin Herrenschmidt {
21296d03b885SBenjamin Herrenschmidt 	struct dentry *root = debugfs_create_dir("memblock", NULL);
2130d9f7979cSGreg Kroah-Hartman 
21310825a6f9SJoe Perches 	debugfs_create_file("memory", 0444, root,
21320825a6f9SJoe Perches 			    &memblock.memory, &memblock_debug_fops);
21330825a6f9SJoe Perches 	debugfs_create_file("reserved", 0444, root,
21340825a6f9SJoe Perches 			    &memblock.reserved, &memblock_debug_fops);
213570210ed9SPhilipp Hachtmann #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
213677649905SDavid Hildenbrand 	debugfs_create_file("physmem", 0444, root, &physmem,
213777649905SDavid Hildenbrand 			    &memblock_debug_fops);
213870210ed9SPhilipp Hachtmann #endif
21396d03b885SBenjamin Herrenschmidt 
21406d03b885SBenjamin Herrenschmidt 	return 0;
21416d03b885SBenjamin Herrenschmidt }
21426d03b885SBenjamin Herrenschmidt __initcall(memblock_init_debugfs);
21436d03b885SBenjamin Herrenschmidt 
21446d03b885SBenjamin Herrenschmidt #endif /* CONFIG_DEBUG_FS */
2145