blob: fa2523f476287d765739bffc2ed5fc6af81872a4 [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
7#include <asm/pgtable.h>
8#include <asm/dma.h>
9#include <linux/cache.h>
10#include <linux/init.h>
11#include <linux/mmzone.h>
12
13/*
14 * simple boot-time physical memory area allocator.
15 */
16
17extern unsigned long max_low_pfn;
18extern unsigned long min_low_pfn;
19
20/*
21 * highest page
22 */
23extern unsigned long max_pfn;
24
Vivek Goyal92aa63a2005-06-25 14:58:18 -070025#ifdef CONFIG_CRASH_DUMP
26extern unsigned long saved_max_pfn;
27#endif
28
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 {
34 unsigned long node_boot_start;
35 unsigned long node_low_pfn;
36 void *node_bootmem_map;
37 unsigned long last_offset;
38 unsigned long last_pos;
39 unsigned long last_success; /* Previous allocation point. To speed
40 * up searching */
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080041 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042} bootmem_data_t;
43
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070044extern unsigned long bootmem_bootmap_pages (unsigned long);
45extern unsigned long init_bootmem (unsigned long addr, unsigned long memend);
46extern void free_bootmem (unsigned long addr, unsigned long size);
47extern void * __alloc_bootmem (unsigned long size, unsigned long align, unsigned long goal);
48extern void * __alloc_bootmem_nopanic (unsigned long size, unsigned long align, unsigned long goal);
49extern void * __alloc_bootmem_low(unsigned long size,
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -080050 unsigned long align,
51 unsigned long goal);
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070052extern void * __alloc_bootmem_low_node(pg_data_t *pgdat,
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -080053 unsigned long size,
54 unsigned long align,
55 unsigned long goal);
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070056extern void * __alloc_bootmem_core(struct bootmem_data *bdata,
Andi Kleen267b4802006-03-25 16:31:10 +010057 unsigned long size, unsigned long align, unsigned long goal,
58 unsigned long limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070060extern void reserve_bootmem (unsigned long addr, unsigned long size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define alloc_bootmem(x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070062 __alloc_bootmem(x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define alloc_bootmem_low(x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070064 __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define alloc_bootmem_pages(x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070066 __alloc_bootmem(x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define alloc_bootmem_low_pages(x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070068 __alloc_bootmem_low(x, PAGE_SIZE, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070070extern unsigned long free_all_bootmem (void);
71extern void * __alloc_bootmem_node (pg_data_t *pgdat, unsigned long size, unsigned long align, unsigned long goal);
72extern unsigned long init_bootmem_node (pg_data_t *pgdat, unsigned long freepfn, unsigned long startpfn, unsigned long endpfn);
73extern void reserve_bootmem_node (pg_data_t *pgdat, unsigned long physaddr, unsigned long size);
74extern void free_bootmem_node (pg_data_t *pgdat, unsigned long addr, unsigned long size);
75extern unsigned long free_all_bootmem_node (pg_data_t *pgdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
77#define alloc_bootmem_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070078 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define alloc_bootmem_pages_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070080 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define alloc_bootmem_low_pages_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -070082 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
84
Dave Hansen6f167ec2005-06-23 00:07:39 -070085#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
86extern void *alloc_remap(int nid, unsigned long size);
87#else
88static inline void *alloc_remap(int nid, unsigned long size)
89{
90 return NULL;
91}
92#endif
93
David Howells9dec17e2006-07-10 04:44:51 -070094extern unsigned long __meminitdata nr_kernel_pages;
Yasunori Goto86356ab2006-06-23 02:03:09 -070095extern unsigned long nr_all_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Franck Bui-Huu2d1a07d2006-09-25 23:31:03 -070097extern void * alloc_large_system_hash(const char *tablename,
98 unsigned long bucketsize,
99 unsigned long numentries,
100 int scale,
101 int flags,
102 unsigned int *_hash_shift,
103 unsigned int *_hash_mask,
104 unsigned long limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106#define HASH_HIGHMEM 0x00000001 /* Consider highmem? */
107#define HASH_EARLY 0x00000002 /* Allocating during early boot? */
108
109/* Only NUMA needs hash distribution.
110 * IA64 is known to have sufficient vmalloc space.
111 */
112#if defined(CONFIG_NUMA) && defined(CONFIG_IA64)
113#define HASHDIST_DEFAULT 1
114#else
115#define HASHDIST_DEFAULT 0
116#endif
David S. Millerf034b5d2006-08-24 03:08:07 -0700117extern int hashdist; /* Distribute hashes across NUMA nodes? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#endif /* _LINUX_BOOTMEM_H */