blob: 962164d3650675923e7099da44ba6dc91332c689 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
3 */
4#ifndef _LINUX_BOOTMEM_H
5#define _LINUX_BOOTMEM_H
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/mmzone.h>
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08008#include <linux/mm_types.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -07009#include <asm/dma.h>
zijun_hu23827052016-10-07 16:59:24 -070010#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/*
13 * simple boot-time physical memory area allocator.
14 */
15
16extern unsigned long max_low_pfn;
17extern unsigned long min_low_pfn;
18
19/*
20 * highest page
21 */
22extern unsigned long max_pfn;
Igor Mammedov8dd33032015-12-04 14:07:05 +010023/*
24 * highest possible page
25 */
26extern unsigned long long max_possible_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Yinghai Lu08677212010-02-10 01:20:20 -080028#ifndef CONFIG_NO_BOOTMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * node_bootmem_map is a map pointer - the bits represent all physical
31 * memory pages (including holes) on the node.
32 */
33typedef struct bootmem_data {
Johannes Weiner3560e242008-07-23 21:28:09 -070034 unsigned long node_min_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned long node_low_pfn;
36 void *node_bootmem_map;
Johannes Weiner5f2809e2008-07-23 21:28:05 -070037 unsigned long last_end_off;
38 unsigned long hint_idx;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080039 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040} bootmem_data_t;
41
Johannes Weinerb61bfa32008-07-23 21:26:55 -070042extern bootmem_data_t bootmem_node_data[];
Yinghai Lu08677212010-02-10 01:20:20 -080043#endif
Johannes Weinerb61bfa32008-07-23 21:26:55 -070044
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070045extern unsigned long bootmem_bootmap_pages(unsigned long);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070046
47extern unsigned long init_bootmem_node(pg_data_t *pgdat,
48 unsigned long freepfn,
49 unsigned long startpfn,
50 unsigned long endpfn);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070051extern unsigned long init_bootmem(unsigned long addr, unsigned long memend);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070052
Johannes Weiner223e8dc2008-07-23 21:28:00 -070053extern unsigned long free_all_bootmem(void);
Tang Chenf784a3f2014-11-13 15:19:39 -080054extern void reset_node_managed_pages(pg_data_t *pgdat);
Jiang Liu7b4b2a02013-07-03 15:03:11 -070055extern void reset_all_zones_managed_pages(void);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070056
57extern void free_bootmem_node(pg_data_t *pgdat,
58 unsigned long addr,
59 unsigned long size);
Joonsoo Kim81df9bf2012-12-11 16:03:10 -080060extern void free_bootmem(unsigned long physaddr, unsigned long size);
61extern void free_bootmem_late(unsigned long physaddr, unsigned long size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070062
63/*
64 * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE,
65 * the architecture-specific code should honor this).
66 *
Wang Sheng-Hui1754e442014-06-04 16:08:04 -070067 * If flags is BOOTMEM_DEFAULT, then the return value is always 0 (success).
68 * If flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the memory
69 * already was reserved.
Johannes Weiner223e8dc2008-07-23 21:28:00 -070070 */
71#define BOOTMEM_DEFAULT 0
72#define BOOTMEM_EXCLUSIVE (1<<0)
73
Tejun Heoc1329372009-02-24 11:57:20 +090074extern int reserve_bootmem(unsigned long addr,
75 unsigned long size,
76 int flags);
Tejun Heo2d0aae42009-02-24 11:57:21 +090077extern int reserve_bootmem_node(pg_data_t *pgdat,
78 unsigned long physaddr,
79 unsigned long size,
80 int flags);
81
82extern void *__alloc_bootmem(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070083 unsigned long align,
84 unsigned long goal);
Tejun Heo2d0aae42009-02-24 11:57:21 +090085extern void *__alloc_bootmem_nopanic(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070086 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070087 unsigned long goal) __malloc;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070088extern void *__alloc_bootmem_node(pg_data_t *pgdat,
89 unsigned long size,
90 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070091 unsigned long goal) __malloc;
Yinghai Lu08677212010-02-10 01:20:20 -080092void *__alloc_bootmem_node_high(pg_data_t *pgdat,
93 unsigned long size,
94 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070095 unsigned long goal) __malloc;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070096extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
97 unsigned long size,
98 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070099 unsigned long goal) __malloc;
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700100void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
101 unsigned long size,
102 unsigned long align,
103 unsigned long goal,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700104 unsigned long limit) __malloc;
Tejun Heo2d0aae42009-02-24 11:57:21 +0900105extern void *__alloc_bootmem_low(unsigned long size,
106 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700107 unsigned long goal) __malloc;
Yinghai Lu38fa4172013-01-24 12:20:15 -0800108void *__alloc_bootmem_low_nopanic(unsigned long size,
109 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700110 unsigned long goal) __malloc;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700111extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
112 unsigned long size,
113 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700114 unsigned long goal) __malloc;
Tejun Heoc1329372009-02-24 11:57:20 +0900115
Yinghai Lu8bba1542011-05-24 17:12:37 -0700116#ifdef CONFIG_NO_BOOTMEM
117/* We are using top down, so it is safe to use 0 here */
118#define BOOTMEM_LOW_LIMIT 0
119#else
120#define BOOTMEM_LOW_LIMIT __pa(MAX_DMA_ADDRESS)
121#endif
122
zijun_hu23827052016-10-07 16:59:24 -0700123#ifndef ARCH_LOW_ADDRESS_LIMIT
124#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
125#endif
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define alloc_bootmem(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700128 __alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Suresh Siddha53dde5f2010-11-16 13:23:50 -0800129#define alloc_bootmem_align(x, align) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700130 __alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700131#define alloc_bootmem_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700132 __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define alloc_bootmem_pages(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700134 __alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700135#define alloc_bootmem_pages_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700136 __alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define alloc_bootmem_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700138 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Yinghai Lu8f389a992011-05-11 15:13:32 -0700139#define alloc_bootmem_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700140 __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define alloc_bootmem_pages_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700142 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900143#define alloc_bootmem_pages_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700144 __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900145
146#define alloc_bootmem_low(x) \
147 __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
Yinghai Lu38fa4172013-01-24 12:20:15 -0800148#define alloc_bootmem_low_pages_nopanic(x) \
149 __alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900150#define alloc_bootmem_low_pages(x) \
151 __alloc_bootmem_low(x, PAGE_SIZE, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define alloc_bootmem_low_pages_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -0700153 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
Johannes Weinerc6af5e92008-07-25 15:48:04 +0200154
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800155
156#if defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM)
157
158/* FIXME: use MEMBLOCK_ALLOC_* variants here */
159#define BOOTMEM_ALLOC_ACCESSIBLE 0
160#define BOOTMEM_ALLOC_ANYWHERE (~(phys_addr_t)0)
161
162/* FIXME: Move to memblock.h at a point where we remove nobootmem.c */
163void *memblock_virt_alloc_try_nid_nopanic(phys_addr_t size,
164 phys_addr_t align, phys_addr_t min_addr,
165 phys_addr_t max_addr, int nid);
166void *memblock_virt_alloc_try_nid(phys_addr_t size, phys_addr_t align,
167 phys_addr_t min_addr, phys_addr_t max_addr, int nid);
168void __memblock_free_early(phys_addr_t base, phys_addr_t size);
169void __memblock_free_late(phys_addr_t base, phys_addr_t size);
170
171static inline void * __init memblock_virt_alloc(
172 phys_addr_t size, phys_addr_t align)
173{
174 return memblock_virt_alloc_try_nid(size, align, BOOTMEM_LOW_LIMIT,
175 BOOTMEM_ALLOC_ACCESSIBLE,
176 NUMA_NO_NODE);
177}
178
179static inline void * __init memblock_virt_alloc_nopanic(
180 phys_addr_t size, phys_addr_t align)
181{
182 return memblock_virt_alloc_try_nid_nopanic(size, align,
183 BOOTMEM_LOW_LIMIT,
184 BOOTMEM_ALLOC_ACCESSIBLE,
185 NUMA_NO_NODE);
186}
187
Yinghai Luad6492b2014-01-27 17:06:49 -0800188static inline void * __init memblock_virt_alloc_low(
189 phys_addr_t size, phys_addr_t align)
190{
191 return memblock_virt_alloc_try_nid(size, align,
192 BOOTMEM_LOW_LIMIT,
193 ARCH_LOW_ADDRESS_LIMIT,
194 NUMA_NO_NODE);
195}
196static inline void * __init memblock_virt_alloc_low_nopanic(
197 phys_addr_t size, phys_addr_t align)
198{
199 return memblock_virt_alloc_try_nid_nopanic(size, align,
200 BOOTMEM_LOW_LIMIT,
201 ARCH_LOW_ADDRESS_LIMIT,
202 NUMA_NO_NODE);
203}
204
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800205static inline void * __init memblock_virt_alloc_from_nopanic(
206 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
207{
208 return memblock_virt_alloc_try_nid_nopanic(size, align, min_addr,
209 BOOTMEM_ALLOC_ACCESSIBLE,
210 NUMA_NO_NODE);
211}
212
213static inline void * __init memblock_virt_alloc_node(
214 phys_addr_t size, int nid)
215{
216 return memblock_virt_alloc_try_nid(size, 0, BOOTMEM_LOW_LIMIT,
217 BOOTMEM_ALLOC_ACCESSIBLE, nid);
218}
219
220static inline void * __init memblock_virt_alloc_node_nopanic(
221 phys_addr_t size, int nid)
222{
223 return memblock_virt_alloc_try_nid_nopanic(size, 0, BOOTMEM_LOW_LIMIT,
224 BOOTMEM_ALLOC_ACCESSIBLE,
225 nid);
226}
227
228static inline void __init memblock_free_early(
229 phys_addr_t base, phys_addr_t size)
230{
231 __memblock_free_early(base, size);
232}
233
234static inline void __init memblock_free_early_nid(
235 phys_addr_t base, phys_addr_t size, int nid)
236{
237 __memblock_free_early(base, size);
238}
239
240static inline void __init memblock_free_late(
241 phys_addr_t base, phys_addr_t size)
242{
243 __memblock_free_late(base, size);
244}
245
246#else
247
248#define BOOTMEM_ALLOC_ACCESSIBLE 0
249
250
251/* Fall back to all the existing bootmem APIs */
252static inline void * __init memblock_virt_alloc(
253 phys_addr_t size, phys_addr_t align)
254{
255 if (!align)
256 align = SMP_CACHE_BYTES;
257 return __alloc_bootmem(size, align, BOOTMEM_LOW_LIMIT);
258}
259
260static inline void * __init memblock_virt_alloc_nopanic(
261 phys_addr_t size, phys_addr_t align)
262{
263 if (!align)
264 align = SMP_CACHE_BYTES;
265 return __alloc_bootmem_nopanic(size, align, BOOTMEM_LOW_LIMIT);
266}
267
Yinghai Luad6492b2014-01-27 17:06:49 -0800268static inline void * __init memblock_virt_alloc_low(
269 phys_addr_t size, phys_addr_t align)
270{
271 if (!align)
272 align = SMP_CACHE_BYTES;
Yinghai Lu07bacb32014-01-30 15:45:44 -0800273 return __alloc_bootmem_low(size, align, 0);
Yinghai Luad6492b2014-01-27 17:06:49 -0800274}
275
276static inline void * __init memblock_virt_alloc_low_nopanic(
277 phys_addr_t size, phys_addr_t align)
278{
279 if (!align)
280 align = SMP_CACHE_BYTES;
Yinghai Lu07bacb32014-01-30 15:45:44 -0800281 return __alloc_bootmem_low_nopanic(size, align, 0);
Yinghai Luad6492b2014-01-27 17:06:49 -0800282}
283
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800284static inline void * __init memblock_virt_alloc_from_nopanic(
285 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
286{
287 return __alloc_bootmem_nopanic(size, align, min_addr);
288}
289
290static inline void * __init memblock_virt_alloc_node(
291 phys_addr_t size, int nid)
292{
293 return __alloc_bootmem_node(NODE_DATA(nid), size, SMP_CACHE_BYTES,
294 BOOTMEM_LOW_LIMIT);
295}
296
297static inline void * __init memblock_virt_alloc_node_nopanic(
298 phys_addr_t size, int nid)
299{
300 return __alloc_bootmem_node_nopanic(NODE_DATA(nid), size,
301 SMP_CACHE_BYTES,
302 BOOTMEM_LOW_LIMIT);
303}
304
305static inline void * __init memblock_virt_alloc_try_nid(phys_addr_t size,
306 phys_addr_t align, phys_addr_t min_addr, phys_addr_t max_addr, int nid)
307{
308 return __alloc_bootmem_node_high(NODE_DATA(nid), size, align,
309 min_addr);
310}
311
312static inline void * __init memblock_virt_alloc_try_nid_nopanic(
313 phys_addr_t size, phys_addr_t align,
314 phys_addr_t min_addr, phys_addr_t max_addr, int nid)
315{
316 return ___alloc_bootmem_node_nopanic(NODE_DATA(nid), size, align,
317 min_addr, max_addr);
318}
319
320static inline void __init memblock_free_early(
321 phys_addr_t base, phys_addr_t size)
322{
323 free_bootmem(base, size);
324}
325
326static inline void __init memblock_free_early_nid(
327 phys_addr_t base, phys_addr_t size, int nid)
328{
329 free_bootmem_node(NODE_DATA(nid), base, size);
330}
331
332static inline void __init memblock_free_late(
333 phys_addr_t base, phys_addr_t size)
334{
335 free_bootmem_late(base, size);
336}
337#endif /* defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) */
338
Dave Hansen6f167ec2005-06-23 00:07:39 -0700339#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
340extern void *alloc_remap(int nid, unsigned long size);
341#else
342static inline void *alloc_remap(int nid, unsigned long size)
343{
344 return NULL;
345}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700346#endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */
Dave Hansen6f167ec2005-06-23 00:07:39 -0700347
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700348extern void *alloc_large_system_hash(const char *tablename,
349 unsigned long bucketsize,
350 unsigned long numentries,
351 int scale,
352 int flags,
353 unsigned int *_hash_shift,
354 unsigned int *_hash_mask,
Tim Bird31fe62b2012-05-23 13:33:35 +0000355 unsigned long low_limit,
356 unsigned long high_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Andrew Morton04903662006-12-06 20:37:33 -0800358#define HASH_EARLY 0x00000001 /* Allocating during early boot? */
Jan Beulich2c85f512009-09-21 17:03:07 -0700359#define HASH_SMALL 0x00000002 /* sub-page allocation allowed, min
360 * shift passed via *_hash_shift */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Anton Blanchardc2fdf3a2009-03-31 15:23:19 -0700362/* Only NUMA needs hash distribution. 64bit NUMA architectures have
363 * sufficient vmalloc space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Rasmus Villemoesa9919c72015-06-24 16:56:28 -0700365#ifdef CONFIG_NUMA
366#define HASHDIST_DEFAULT IS_ENABLED(CONFIG_64BIT)
David S. Millerf034b5d2006-08-24 03:08:07 -0700367extern int hashdist; /* Distribute hashes across NUMA nodes? */
Rasmus Villemoesa9919c72015-06-24 16:56:28 -0700368#else
369#define hashdist (0)
370#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373#endif /* _LINUX_BOOTMEM_H */