thermal: armada: fix formula documentation comment
[linux-2.6-block.git] / include / linux / bootmem.h
CommitLineData
1da177e4
LT
1/*
2 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
3 */
4#ifndef _LINUX_BOOTMEM_H
5#define _LINUX_BOOTMEM_H
6
1da177e4 7#include <linux/mmzone.h>
26f09e9b 8#include <linux/mm_types.h>
e786e86a 9#include <asm/dma.h>
2382705f 10#include <asm/processor.h>
1da177e4
LT
11
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;
8dd33030
IM
23/*
24 * highest possible page
25 */
26extern unsigned long long max_possible_pfn;
1da177e4 27
08677214 28#ifndef CONFIG_NO_BOOTMEM
1da177e4
LT
29/*
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 {
3560e249 34 unsigned long node_min_pfn;
1da177e4
LT
35 unsigned long node_low_pfn;
36 void *node_bootmem_map;
5f2809e6
JW
37 unsigned long last_end_off;
38 unsigned long hint_idx;
679bc9fb 39 struct list_head list;
1da177e4
LT
40} bootmem_data_t;
41
b61bfa3c 42extern bootmem_data_t bootmem_node_data[];
08677214 43#endif
b61bfa3c 44
f71bf0ca 45extern unsigned long bootmem_bootmap_pages(unsigned long);
223e8dc9
JW
46
47extern unsigned long init_bootmem_node(pg_data_t *pgdat,
48 unsigned long freepfn,
49 unsigned long startpfn,
50 unsigned long endpfn);
f71bf0ca 51extern unsigned long init_bootmem(unsigned long addr, unsigned long memend);
223e8dc9 52
223e8dc9 53extern unsigned long free_all_bootmem(void);
f784a3f1 54extern void reset_node_managed_pages(pg_data_t *pgdat);
7b4b2a0d 55extern void reset_all_zones_managed_pages(void);
223e8dc9
JW
56
57extern void free_bootmem_node(pg_data_t *pgdat,
58 unsigned long addr,
59 unsigned long size);
81df9bff
JK
60extern void free_bootmem(unsigned long physaddr, unsigned long size);
61extern void free_bootmem_late(unsigned long physaddr, unsigned long size);
223e8dc9
JW
62
63/*
64 * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE,
65 * the architecture-specific code should honor this).
66 *
1754e44e
WSH
67 * 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.
223e8dc9
JW
70 */
71#define BOOTMEM_DEFAULT 0
72#define BOOTMEM_EXCLUSIVE (1<<0)
73
c1329375
TH
74extern int reserve_bootmem(unsigned long addr,
75 unsigned long size,
76 int flags);
2d0aae41
TH
77extern 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,
f71bf0ca
FBH
83 unsigned long align,
84 unsigned long goal);
2d0aae41 85extern void *__alloc_bootmem_nopanic(unsigned long size,
f71bf0ca 86 unsigned long align,
48a27055 87 unsigned long goal) __malloc;
223e8dc9
JW
88extern void *__alloc_bootmem_node(pg_data_t *pgdat,
89 unsigned long size,
90 unsigned long align,
48a27055 91 unsigned long goal) __malloc;
08677214
YL
92void *__alloc_bootmem_node_high(pg_data_t *pgdat,
93 unsigned long size,
94 unsigned long align,
48a27055 95 unsigned long goal) __malloc;
223e8dc9
JW
96extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
97 unsigned long size,
98 unsigned long align,
48a27055 99 unsigned long goal) __malloc;
99ab7b19
YL
100void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
101 unsigned long size,
102 unsigned long align,
103 unsigned long goal,
48a27055 104 unsigned long limit) __malloc;
2d0aae41
TH
105extern void *__alloc_bootmem_low(unsigned long size,
106 unsigned long align,
48a27055 107 unsigned long goal) __malloc;
38fa4175
YL
108void *__alloc_bootmem_low_nopanic(unsigned long size,
109 unsigned long align,
48a27055 110 unsigned long goal) __malloc;
f71bf0ca
FBH
111extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
112 unsigned long size,
113 unsigned long align,
48a27055 114 unsigned long goal) __malloc;
c1329375 115
8bba154e
YL
116#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
2382705f 123#ifndef ARCH_LOW_ADDRESS_LIMIT
124#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
125#endif
126
1da177e4 127#define alloc_bootmem(x) \
8bba154e 128 __alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
53dde5f3 129#define alloc_bootmem_align(x, align) \
8bba154e 130 __alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT)
74768ed8 131#define alloc_bootmem_nopanic(x) \
8bba154e 132 __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
1da177e4 133#define alloc_bootmem_pages(x) \
8bba154e 134 __alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
74768ed8 135#define alloc_bootmem_pages_nopanic(x) \
8bba154e 136 __alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
1da177e4 137#define alloc_bootmem_node(pgdat, x) \
8bba154e 138 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
8f389a99 139#define alloc_bootmem_node_nopanic(pgdat, x) \
8bba154e 140 __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
1da177e4 141#define alloc_bootmem_pages_node(pgdat, x) \
8bba154e 142 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
2d0aae41 143#define alloc_bootmem_pages_node_nopanic(pgdat, x) \
8bba154e 144 __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
2d0aae41
TH
145
146#define alloc_bootmem_low(x) \
147 __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
38fa4175
YL
148#define alloc_bootmem_low_pages_nopanic(x) \
149 __alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0)
2d0aae41
TH
150#define alloc_bootmem_low_pages(x) \
151 __alloc_bootmem_low(x, PAGE_SIZE, 0)
1da177e4 152#define alloc_bootmem_low_pages_node(pgdat, x) \
71fb2e8f 153 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
c6af5e9f 154
26f09e9b
SS
155
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
ad6492b8
YL
188static 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
26f09e9b
SS
205static 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
ad6492b8
YL
268static 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;
07bacb38 273 return __alloc_bootmem_low(size, align, 0);
ad6492b8
YL
274}
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;
07bacb38 281 return __alloc_bootmem_low_nopanic(size, align, 0);
ad6492b8
YL
282}
283
26f09e9b
SS
284static 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
6f167ec7
DH
339#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}
f71bf0ca 346#endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */
6f167ec7 347
f71bf0ca
FBH
348extern 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,
31fe62b9
TB
355 unsigned long low_limit,
356 unsigned long high_limit);
1da177e4 357
04903664 358#define HASH_EARLY 0x00000001 /* Allocating during early boot? */
2c85f51d
JB
359#define HASH_SMALL 0x00000002 /* sub-page allocation allowed, min
360 * shift passed via *_hash_shift */
3749a8f0 361#define HASH_ZERO 0x00000004 /* Zero allocated hash table */
1da177e4 362
c2fdf3a9
AB
363/* Only NUMA needs hash distribution. 64bit NUMA architectures have
364 * sufficient vmalloc space.
1da177e4 365 */
a9919c79
RV
366#ifdef CONFIG_NUMA
367#define HASHDIST_DEFAULT IS_ENABLED(CONFIG_64BIT)
368extern int hashdist; /* Distribute hashes across NUMA nodes? */
1da177e4 369#else
a9919c79 370#define hashdist (0)
1da177e4 371#endif
1da177e4
LT
372
373
374#endif /* _LINUX_BOOTMEM_H */