blob: 2fae55def608b0cc82fba2ac07f2f3c14941d9f6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
12 * simple boot-time physical memory area allocator.
13 */
14
15extern unsigned long max_low_pfn;
16extern unsigned long min_low_pfn;
17
18/*
19 * highest page
20 */
21extern unsigned long max_pfn;
22
Yinghai Lu08677212010-02-10 01:20:20 -080023#ifndef CONFIG_NO_BOOTMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * node_bootmem_map is a map pointer - the bits represent all physical
26 * memory pages (including holes) on the node.
27 */
28typedef struct bootmem_data {
Johannes Weiner3560e242008-07-23 21:28:09 -070029 unsigned long node_min_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 unsigned long node_low_pfn;
31 void *node_bootmem_map;
Johannes Weiner5f2809e2008-07-23 21:28:05 -070032 unsigned long last_end_off;
33 unsigned long hint_idx;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080034 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035} bootmem_data_t;
36
Johannes Weinerb61bfa32008-07-23 21:26:55 -070037extern bootmem_data_t bootmem_node_data[];
Yinghai Lu08677212010-02-10 01:20:20 -080038#endif
Johannes Weinerb61bfa32008-07-23 21:26:55 -070039
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070040extern unsigned long bootmem_bootmap_pages(unsigned long);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070041
42extern unsigned long init_bootmem_node(pg_data_t *pgdat,
43 unsigned long freepfn,
44 unsigned long startpfn,
45 unsigned long endpfn);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070046extern unsigned long init_bootmem(unsigned long addr, unsigned long memend);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070047
Johannes Weiner223e8dc2008-07-23 21:28:00 -070048extern unsigned long free_all_bootmem(void);
Jiang Liu7b4b2a02013-07-03 15:03:11 -070049extern void reset_all_zones_managed_pages(void);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070050
51extern void free_bootmem_node(pg_data_t *pgdat,
52 unsigned long addr,
53 unsigned long size);
Joonsoo Kim81df9bf2012-12-11 16:03:10 -080054extern void free_bootmem(unsigned long physaddr, unsigned long size);
55extern void free_bootmem_late(unsigned long physaddr, unsigned long size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070056
57/*
58 * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE,
59 * the architecture-specific code should honor this).
60 *
61 * If flags is 0, then the return value is always 0 (success). If
62 * flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the
63 * memory already was reserved.
64 */
65#define BOOTMEM_DEFAULT 0
66#define BOOTMEM_EXCLUSIVE (1<<0)
67
Tejun Heoc1329372009-02-24 11:57:20 +090068extern int reserve_bootmem(unsigned long addr,
69 unsigned long size,
70 int flags);
Tejun Heo2d0aae42009-02-24 11:57:21 +090071extern int reserve_bootmem_node(pg_data_t *pgdat,
72 unsigned long physaddr,
73 unsigned long size,
74 int flags);
75
76extern void *__alloc_bootmem(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070077 unsigned long align,
78 unsigned long goal);
Tejun Heo2d0aae42009-02-24 11:57:21 +090079extern void *__alloc_bootmem_nopanic(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070080 unsigned long align,
81 unsigned long goal);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070082extern void *__alloc_bootmem_node(pg_data_t *pgdat,
83 unsigned long size,
84 unsigned long align,
85 unsigned long goal);
Yinghai Lu08677212010-02-10 01:20:20 -080086void *__alloc_bootmem_node_high(pg_data_t *pgdat,
87 unsigned long size,
88 unsigned long align,
89 unsigned long goal);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070090extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
91 unsigned long size,
92 unsigned long align,
93 unsigned long goal);
Yinghai Lu99ab7b12012-07-11 14:02:53 -070094void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
95 unsigned long size,
96 unsigned long align,
97 unsigned long goal,
98 unsigned long limit);
Tejun Heo2d0aae42009-02-24 11:57:21 +090099extern void *__alloc_bootmem_low(unsigned long size,
100 unsigned long align,
101 unsigned long goal);
Yinghai Lu38fa4172013-01-24 12:20:15 -0800102void *__alloc_bootmem_low_nopanic(unsigned long size,
103 unsigned long align,
104 unsigned long goal);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700105extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
106 unsigned long size,
107 unsigned long align,
108 unsigned long goal);
Tejun Heoc1329372009-02-24 11:57:20 +0900109
Yinghai Lu8bba1542011-05-24 17:12:37 -0700110#ifdef CONFIG_NO_BOOTMEM
111/* We are using top down, so it is safe to use 0 here */
112#define BOOTMEM_LOW_LIMIT 0
113#else
114#define BOOTMEM_LOW_LIMIT __pa(MAX_DMA_ADDRESS)
115#endif
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define alloc_bootmem(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700118 __alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Suresh Siddha53dde5f2010-11-16 13:23:50 -0800119#define alloc_bootmem_align(x, align) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700120 __alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700121#define alloc_bootmem_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700122 __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define alloc_bootmem_pages(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700124 __alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700125#define alloc_bootmem_pages_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700126 __alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define alloc_bootmem_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700128 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Yinghai Lu8f389a992011-05-11 15:13:32 -0700129#define alloc_bootmem_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700130 __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define alloc_bootmem_pages_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700132 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900133#define alloc_bootmem_pages_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700134 __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900135
136#define alloc_bootmem_low(x) \
137 __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
Yinghai Lu38fa4172013-01-24 12:20:15 -0800138#define alloc_bootmem_low_pages_nopanic(x) \
139 __alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900140#define alloc_bootmem_low_pages(x) \
141 __alloc_bootmem_low(x, PAGE_SIZE, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define alloc_bootmem_low_pages_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -0700143 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
Johannes Weinerc6af5e92008-07-25 15:48:04 +0200144
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800145
146#if defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM)
147
148/* FIXME: use MEMBLOCK_ALLOC_* variants here */
149#define BOOTMEM_ALLOC_ACCESSIBLE 0
150#define BOOTMEM_ALLOC_ANYWHERE (~(phys_addr_t)0)
151
152/* FIXME: Move to memblock.h at a point where we remove nobootmem.c */
153void *memblock_virt_alloc_try_nid_nopanic(phys_addr_t size,
154 phys_addr_t align, phys_addr_t min_addr,
155 phys_addr_t max_addr, int nid);
156void *memblock_virt_alloc_try_nid(phys_addr_t size, phys_addr_t align,
157 phys_addr_t min_addr, phys_addr_t max_addr, int nid);
158void __memblock_free_early(phys_addr_t base, phys_addr_t size);
159void __memblock_free_late(phys_addr_t base, phys_addr_t size);
160
161static inline void * __init memblock_virt_alloc(
162 phys_addr_t size, phys_addr_t align)
163{
164 return memblock_virt_alloc_try_nid(size, align, BOOTMEM_LOW_LIMIT,
165 BOOTMEM_ALLOC_ACCESSIBLE,
166 NUMA_NO_NODE);
167}
168
169static inline void * __init memblock_virt_alloc_nopanic(
170 phys_addr_t size, phys_addr_t align)
171{
172 return memblock_virt_alloc_try_nid_nopanic(size, align,
173 BOOTMEM_LOW_LIMIT,
174 BOOTMEM_ALLOC_ACCESSIBLE,
175 NUMA_NO_NODE);
176}
177
178static inline void * __init memblock_virt_alloc_from_nopanic(
179 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
180{
181 return memblock_virt_alloc_try_nid_nopanic(size, align, min_addr,
182 BOOTMEM_ALLOC_ACCESSIBLE,
183 NUMA_NO_NODE);
184}
185
186static inline void * __init memblock_virt_alloc_node(
187 phys_addr_t size, int nid)
188{
189 return memblock_virt_alloc_try_nid(size, 0, BOOTMEM_LOW_LIMIT,
190 BOOTMEM_ALLOC_ACCESSIBLE, nid);
191}
192
193static inline void * __init memblock_virt_alloc_node_nopanic(
194 phys_addr_t size, int nid)
195{
196 return memblock_virt_alloc_try_nid_nopanic(size, 0, BOOTMEM_LOW_LIMIT,
197 BOOTMEM_ALLOC_ACCESSIBLE,
198 nid);
199}
200
201static inline void __init memblock_free_early(
202 phys_addr_t base, phys_addr_t size)
203{
204 __memblock_free_early(base, size);
205}
206
207static inline void __init memblock_free_early_nid(
208 phys_addr_t base, phys_addr_t size, int nid)
209{
210 __memblock_free_early(base, size);
211}
212
213static inline void __init memblock_free_late(
214 phys_addr_t base, phys_addr_t size)
215{
216 __memblock_free_late(base, size);
217}
218
219#else
220
221#define BOOTMEM_ALLOC_ACCESSIBLE 0
222
223
224/* Fall back to all the existing bootmem APIs */
225static inline void * __init memblock_virt_alloc(
226 phys_addr_t size, phys_addr_t align)
227{
228 if (!align)
229 align = SMP_CACHE_BYTES;
230 return __alloc_bootmem(size, align, BOOTMEM_LOW_LIMIT);
231}
232
233static inline void * __init memblock_virt_alloc_nopanic(
234 phys_addr_t size, phys_addr_t align)
235{
236 if (!align)
237 align = SMP_CACHE_BYTES;
238 return __alloc_bootmem_nopanic(size, align, BOOTMEM_LOW_LIMIT);
239}
240
241static inline void * __init memblock_virt_alloc_from_nopanic(
242 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
243{
244 return __alloc_bootmem_nopanic(size, align, min_addr);
245}
246
247static inline void * __init memblock_virt_alloc_node(
248 phys_addr_t size, int nid)
249{
250 return __alloc_bootmem_node(NODE_DATA(nid), size, SMP_CACHE_BYTES,
251 BOOTMEM_LOW_LIMIT);
252}
253
254static inline void * __init memblock_virt_alloc_node_nopanic(
255 phys_addr_t size, int nid)
256{
257 return __alloc_bootmem_node_nopanic(NODE_DATA(nid), size,
258 SMP_CACHE_BYTES,
259 BOOTMEM_LOW_LIMIT);
260}
261
262static inline void * __init memblock_virt_alloc_try_nid(phys_addr_t size,
263 phys_addr_t align, phys_addr_t min_addr, phys_addr_t max_addr, int nid)
264{
265 return __alloc_bootmem_node_high(NODE_DATA(nid), size, align,
266 min_addr);
267}
268
269static inline void * __init memblock_virt_alloc_try_nid_nopanic(
270 phys_addr_t size, phys_addr_t align,
271 phys_addr_t min_addr, phys_addr_t max_addr, int nid)
272{
273 return ___alloc_bootmem_node_nopanic(NODE_DATA(nid), size, align,
274 min_addr, max_addr);
275}
276
277static inline void __init memblock_free_early(
278 phys_addr_t base, phys_addr_t size)
279{
280 free_bootmem(base, size);
281}
282
283static inline void __init memblock_free_early_nid(
284 phys_addr_t base, phys_addr_t size, int nid)
285{
286 free_bootmem_node(NODE_DATA(nid), base, size);
287}
288
289static inline void __init memblock_free_late(
290 phys_addr_t base, phys_addr_t size)
291{
292 free_bootmem_late(base, size);
293}
294#endif /* defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) */
295
Dave Hansen6f167ec2005-06-23 00:07:39 -0700296#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
297extern void *alloc_remap(int nid, unsigned long size);
298#else
299static inline void *alloc_remap(int nid, unsigned long size)
300{
301 return NULL;
302}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700303#endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */
Dave Hansen6f167ec2005-06-23 00:07:39 -0700304
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700305extern void *alloc_large_system_hash(const char *tablename,
306 unsigned long bucketsize,
307 unsigned long numentries,
308 int scale,
309 int flags,
310 unsigned int *_hash_shift,
311 unsigned int *_hash_mask,
Tim Bird31fe62b2012-05-23 13:33:35 +0000312 unsigned long low_limit,
313 unsigned long high_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Andrew Morton04903662006-12-06 20:37:33 -0800315#define HASH_EARLY 0x00000001 /* Allocating during early boot? */
Jan Beulich2c85f512009-09-21 17:03:07 -0700316#define HASH_SMALL 0x00000002 /* sub-page allocation allowed, min
317 * shift passed via *_hash_shift */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Anton Blanchardc2fdf3a2009-03-31 15:23:19 -0700319/* Only NUMA needs hash distribution. 64bit NUMA architectures have
320 * sufficient vmalloc space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
Anton Blanchardc2fdf3a2009-03-31 15:23:19 -0700322#if defined(CONFIG_NUMA) && defined(CONFIG_64BIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#define HASHDIST_DEFAULT 1
324#else
325#define HASHDIST_DEFAULT 0
326#endif
David S. Millerf034b5d2006-08-24 03:08:07 -0700327extern int hashdist; /* Distribute hashes across NUMA nodes? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330#endif /* _LINUX_BOOTMEM_H */