blob: 11c31590cc4995345a3072ffad493434be3d8775 [file] [log] [blame]
Yinghai Lu95f72d12010-07-12 14:36:09 +10001#ifndef _LINUX_MEMBLOCK_H
2#define _LINUX_MEMBLOCK_H
3#ifdef __KERNEL__
4
Yinghai Luf0b37fa2010-07-28 15:28:21 +10005#ifdef CONFIG_HAVE_MEMBLOCK
Yinghai Lu95f72d12010-07-12 14:36:09 +10006/*
7 * Logical memory blocks.
8 *
9 * Copyright (C) 2001 Peter Bergner, IBM Corp.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
17#include <linux/init.h>
18#include <linux/mm.h>
19
Yinghai Lu37d8d4b2010-07-28 15:20:58 +100020#define INIT_MEMBLOCK_REGIONS 128
Yinghai Lu95f72d12010-07-12 14:36:09 +100021
Tang Chen66b16ed2014-01-21 15:49:23 -080022/* Definition of memblock flags. */
23#define MEMBLOCK_HOTPLUG 0x1 /* hotpluggable region */
24
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +100025struct memblock_region {
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100026 phys_addr_t base;
27 phys_addr_t size;
Tang Chen66a20752014-01-21 15:49:20 -080028 unsigned long flags;
Tejun Heo7c0caeb2011-07-14 11:43:42 +020029#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
30 int nid;
31#endif
Yinghai Lu95f72d12010-07-12 14:36:09 +100032};
33
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +100034struct memblock_type {
Benjamin Herrenschmidtbf23c512010-07-06 15:39:06 -070035 unsigned long cnt; /* number of regions */
36 unsigned long max; /* size of the allocated array */
Tejun Heo1440c4e2011-12-08 10:22:08 -080037 phys_addr_t total_size; /* size of all regions */
Benjamin Herrenschmidtbf23c512010-07-06 15:39:06 -070038 struct memblock_region *regions;
Yinghai Lu95f72d12010-07-12 14:36:09 +100039};
40
41struct memblock {
Tang Chen79442ed2013-11-12 15:07:59 -080042 bool bottom_up; /* is bottom up direction? */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +100043 phys_addr_t current_limit;
Benjamin Herrenschmidte3239ff2010-08-04 14:06:41 +100044 struct memblock_type memory;
45 struct memblock_type reserved;
Yinghai Lu95f72d12010-07-12 14:36:09 +100046};
47
48extern struct memblock memblock;
Yinghai Lu5e63cf42010-07-28 15:07:21 +100049extern int memblock_debug;
Tang Chen55ac5902014-01-21 15:49:35 -080050#ifdef CONFIG_MOVABLE_NODE
51/* If movable_node boot option specified */
52extern bool movable_node_enabled;
53#endif /* CONFIG_MOVABLE_NODE */
Yinghai Lu5e63cf42010-07-28 15:07:21 +100054
55#define memblock_dbg(fmt, ...) \
56 if (memblock_debug) printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Yinghai Lu95f72d12010-07-12 14:36:09 +100057
Grygorii Strashko87029ee2014-01-21 15:50:14 -080058phys_addr_t memblock_find_in_range_node(phys_addr_t size, phys_addr_t align,
59 phys_addr_t start, phys_addr_t end,
60 int nid);
Tejun Heofc769a82011-07-12 09:58:10 +020061phys_addr_t memblock_find_in_range(phys_addr_t start, phys_addr_t end,
62 phys_addr_t size, phys_addr_t align);
Yinghai Lu29f67382012-07-11 14:02:56 -070063phys_addr_t get_allocated_memblock_reserved_regions_info(phys_addr_t *addr);
Tejun Heo1aadc052011-12-08 10:22:08 -080064void memblock_allow_resize(void);
Tejun Heo7fb0bc32011-12-08 10:22:08 -080065int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid);
Tejun Heo581adcb2011-12-08 10:22:06 -080066int memblock_add(phys_addr_t base, phys_addr_t size);
67int memblock_remove(phys_addr_t base, phys_addr_t size);
68int memblock_free(phys_addr_t base, phys_addr_t size);
69int memblock_reserve(phys_addr_t base, phys_addr_t size);
Yinghai Lu6ede1fd2012-10-22 16:35:18 -070070void memblock_trim_memory(phys_addr_t align);
Tang Chen66b16ed2014-01-21 15:49:23 -080071int memblock_mark_hotplug(phys_addr_t base, phys_addr_t size);
72int memblock_clear_hotplug(phys_addr_t base, phys_addr_t size);
Tang Chen55ac5902014-01-21 15:49:35 -080073#ifdef CONFIG_MOVABLE_NODE
74static inline bool memblock_is_hotpluggable(struct memblock_region *m)
75{
76 return m->flags & MEMBLOCK_HOTPLUG;
77}
78
79static inline bool movable_node_is_enabled(void)
80{
81 return movable_node_enabled;
82}
83#else
84static inline bool memblock_is_hotpluggable(struct memblock_region *m)
85{
86 return false;
87}
88static inline bool movable_node_is_enabled(void)
89{
90 return false;
91}
92#endif
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -070093
Tejun Heo0ee332c2011-12-08 10:22:09 -080094#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
Yinghai Lue76b63f2013-09-11 14:22:17 -070095int memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn,
96 unsigned long *end_pfn);
Tejun Heo0ee332c2011-12-08 10:22:09 -080097void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn,
98 unsigned long *out_end_pfn, int *out_nid);
99
100/**
101 * for_each_mem_pfn_range - early memory pfn range iterator
102 * @i: an integer used as loop variable
103 * @nid: node selector, %MAX_NUMNODES for all nodes
104 * @p_start: ptr to ulong for start pfn of the range, can be %NULL
105 * @p_end: ptr to ulong for end pfn of the range, can be %NULL
106 * @p_nid: ptr to int for nid of the range, can be %NULL
107 *
Wanpeng Lif2d52fe2012-10-08 16:32:24 -0700108 * Walks over configured memory ranges.
Tejun Heo0ee332c2011-12-08 10:22:09 -0800109 */
110#define for_each_mem_pfn_range(i, nid, p_start, p_end, p_nid) \
111 for (i = -1, __next_mem_pfn_range(&i, nid, p_start, p_end, p_nid); \
112 i >= 0; __next_mem_pfn_range(&i, nid, p_start, p_end, p_nid))
113#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
114
Tejun Heo581adcb2011-12-08 10:22:06 -0800115void __next_free_mem_range(u64 *idx, int nid, phys_addr_t *out_start,
116 phys_addr_t *out_end, int *out_nid);
Tejun Heo35fd0802011-07-12 11:15:59 +0200117
118/**
119 * for_each_free_mem_range - iterate through free memblock areas
120 * @i: u64 used as loop variable
121 * @nid: node selector, %MAX_NUMNODES for all nodes
122 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
123 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
124 * @p_nid: ptr to int for nid of the range, can be %NULL
125 *
126 * Walks over free (memory && !reserved) areas of memblock. Available as
127 * soon as memblock is initialized.
128 */
129#define for_each_free_mem_range(i, nid, p_start, p_end, p_nid) \
130 for (i = 0, \
131 __next_free_mem_range(&i, nid, p_start, p_end, p_nid); \
132 i != (u64)ULLONG_MAX; \
133 __next_free_mem_range(&i, nid, p_start, p_end, p_nid))
134
Tejun Heo7bd0b0f2011-12-08 10:22:09 -0800135void __next_free_mem_range_rev(u64 *idx, int nid, phys_addr_t *out_start,
136 phys_addr_t *out_end, int *out_nid);
137
138/**
139 * for_each_free_mem_range_reverse - rev-iterate through free memblock areas
140 * @i: u64 used as loop variable
141 * @nid: node selector, %MAX_NUMNODES for all nodes
142 * @p_start: ptr to phys_addr_t for start address of the range, can be %NULL
143 * @p_end: ptr to phys_addr_t for end address of the range, can be %NULL
144 * @p_nid: ptr to int for nid of the range, can be %NULL
145 *
146 * Walks over free (memory && !reserved) areas of memblock in reverse
147 * order. Available as soon as memblock is initialized.
148 */
149#define for_each_free_mem_range_reverse(i, nid, p_start, p_end, p_nid) \
150 for (i = (u64)ULLONG_MAX, \
151 __next_free_mem_range_rev(&i, nid, p_start, p_end, p_nid); \
152 i != (u64)ULLONG_MAX; \
153 __next_free_mem_range_rev(&i, nid, p_start, p_end, p_nid))
154
Tang Chen66b16ed2014-01-21 15:49:23 -0800155static inline void memblock_set_region_flags(struct memblock_region *r,
156 unsigned long flags)
157{
158 r->flags |= flags;
159}
160
161static inline void memblock_clear_region_flags(struct memblock_region *r,
162 unsigned long flags)
163{
164 r->flags &= ~flags;
165}
166
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200167#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
Tang Chene7e8de52014-01-21 15:49:26 -0800168int memblock_set_node(phys_addr_t base, phys_addr_t size,
169 struct memblock_type *type, int nid);
Tejun Heo7c0caeb2011-07-14 11:43:42 +0200170
171static inline void memblock_set_region_node(struct memblock_region *r, int nid)
172{
173 r->nid = nid;
174}
175
176static inline int memblock_get_region_node(const struct memblock_region *r)
177{
178 return r->nid;
179}
180#else
181static inline void memblock_set_region_node(struct memblock_region *r, int nid)
182{
183}
184
185static inline int memblock_get_region_node(const struct memblock_region *r)
186{
187 return 0;
188}
189#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
190
Tejun Heo581adcb2011-12-08 10:22:06 -0800191phys_addr_t memblock_alloc_nid(phys_addr_t size, phys_addr_t align, int nid);
192phys_addr_t memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align, int nid);
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700193
Tejun Heo581adcb2011-12-08 10:22:06 -0800194phys_addr_t memblock_alloc(phys_addr_t size, phys_addr_t align);
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700195
Tang Chen79442ed2013-11-12 15:07:59 -0800196#ifdef CONFIG_MOVABLE_NODE
197/*
198 * Set the allocation direction to bottom-up or top-down.
199 */
200static inline void memblock_set_bottom_up(bool enable)
201{
202 memblock.bottom_up = enable;
203}
204
205/*
206 * Check if the allocation direction is bottom-up or not.
207 * if this is true, that said, memblock will allocate memory
208 * in bottom-up direction.
209 */
210static inline bool memblock_bottom_up(void)
211{
212 return memblock.bottom_up;
213}
214#else
215static inline void memblock_set_bottom_up(bool enable) {}
216static inline bool memblock_bottom_up(void) { return false; }
217#endif
218
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700219/* Flags for memblock_alloc_base() amd __memblock_alloc_base() */
Benjamin Herrenschmidt2898cc42010-08-04 13:34:42 +1000220#define MEMBLOCK_ALLOC_ANYWHERE (~(phys_addr_t)0)
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700221#define MEMBLOCK_ALLOC_ACCESSIBLE 0
222
Tejun Heo581adcb2011-12-08 10:22:06 -0800223phys_addr_t memblock_alloc_base(phys_addr_t size, phys_addr_t align,
224 phys_addr_t max_addr);
225phys_addr_t __memblock_alloc_base(phys_addr_t size, phys_addr_t align,
226 phys_addr_t max_addr);
227phys_addr_t memblock_phys_mem_size(void);
Yinghai Lu595ad9a2013-01-24 12:20:09 -0800228phys_addr_t memblock_mem_size(unsigned long limit_pfn);
Tejun Heo581adcb2011-12-08 10:22:06 -0800229phys_addr_t memblock_start_of_DRAM(void);
230phys_addr_t memblock_end_of_DRAM(void);
231void memblock_enforce_memory_limit(phys_addr_t memory_limit);
232int memblock_is_memory(phys_addr_t addr);
233int memblock_is_region_memory(phys_addr_t base, phys_addr_t size);
234int memblock_is_reserved(phys_addr_t addr);
235int memblock_is_region_reserved(phys_addr_t base, phys_addr_t size);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000236
Tejun Heo4ff7b822011-12-08 10:22:06 -0800237extern void __memblock_dump_all(void);
238
239static inline void memblock_dump_all(void)
240{
241 if (memblock_debug)
242 __memblock_dump_all();
243}
Yinghai Lu95f72d12010-07-12 14:36:09 +1000244
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700245/**
246 * memblock_set_current_limit - Set the current allocation limit to allow
247 * limiting allocations to what is currently
248 * accessible during boot
249 * @limit: New limit value (physical address)
250 */
Tejun Heo581adcb2011-12-08 10:22:06 -0800251void memblock_set_current_limit(phys_addr_t limit);
Benjamin Herrenschmidte63075a2010-07-06 15:39:01 -0700252
Benjamin Herrenschmidt35a1f0b2010-07-06 15:38:58 -0700253
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000254/*
255 * pfn conversion functions
256 *
257 * While the memory MEMBLOCKs should always be page aligned, the reserved
258 * MEMBLOCKs may not be. This accessor attempt to provide a very clear
259 * idea of what they return for such non aligned MEMBLOCKs.
260 */
261
262/**
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700263 * memblock_region_memory_base_pfn - Return the lowest pfn intersecting with the memory region
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000264 * @reg: memblock_region structure
265 */
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700266static inline unsigned long memblock_region_memory_base_pfn(const struct memblock_region *reg)
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000267{
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700268 return PFN_UP(reg->base);
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000269}
270
271/**
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700272 * memblock_region_memory_end_pfn - Return the end_pfn this region
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000273 * @reg: memblock_region structure
274 */
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700275static inline unsigned long memblock_region_memory_end_pfn(const struct memblock_region *reg)
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000276{
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700277 return PFN_DOWN(reg->base + reg->size);
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000278}
279
280/**
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700281 * memblock_region_reserved_base_pfn - Return the lowest pfn intersecting with the reserved region
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000282 * @reg: memblock_region structure
283 */
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700284static inline unsigned long memblock_region_reserved_base_pfn(const struct memblock_region *reg)
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000285{
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700286 return PFN_DOWN(reg->base);
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000287}
288
289/**
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700290 * memblock_region_reserved_end_pfn - Return the end_pfn this region
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000291 * @reg: memblock_region structure
292 */
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700293static inline unsigned long memblock_region_reserved_end_pfn(const struct memblock_region *reg)
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000294{
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700295 return PFN_UP(reg->base + reg->size);
Benjamin Herrenschmidt5b385f22010-08-04 13:40:38 +1000296}
297
298#define for_each_memblock(memblock_type, region) \
299 for (region = memblock.memblock_type.regions; \
300 region < (memblock.memblock_type.regions + memblock.memblock_type.cnt); \
301 region++)
302
303
Tejun Heoc378ddd2011-07-14 11:46:03 +0200304#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK
Tejun Heo67e24bc2011-07-14 11:42:03 +0200305#define __init_memblock __meminit
306#define __initdata_memblock __meminitdata
Yinghai Lu10d06432010-07-28 15:43:02 +1000307#else
308#define __init_memblock
309#define __initdata_memblock
310#endif
311
Yinghai Lu95dde502011-05-24 17:13:19 -0700312#else
313static inline phys_addr_t memblock_alloc(phys_addr_t size, phys_addr_t align)
314{
Tejun Heo1f5026a2011-07-12 09:58:09 +0200315 return 0;
Yinghai Lu95dde502011-05-24 17:13:19 -0700316}
317
Yinghai Luf0b37fa2010-07-28 15:28:21 +1000318#endif /* CONFIG_HAVE_MEMBLOCK */
319
Yinghai Lu95f72d12010-07-12 14:36:09 +1000320#endif /* __KERNEL__ */
321
322#endif /* _LINUX_MEMBLOCK_H */