blob: 61c7b1750b169f33ccb544b5cb83c83e1dd432ee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef meminit_h
2#define meminit_h
3
4/*
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
12 * Entries defined so far:
13 * - boot param structure itself
14 * - memory map
15 * - initrd (optional)
16 * - command line string
17 * - kernel code & data
Zou Nan haia79561132006-12-07 09:51:35 -080018 * - crash dumping code reserved region
Tony Luckd8c97d52005-09-08 12:39:59 -070019 * - Kernel memory map built from EFI memory map
Magnus Dammcee87af2007-03-06 02:34:26 -080020 * - ELF core header
Isaku Yamahata627308c2008-10-17 11:17:47 +090021 * - xen start info if CONFIG_XEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
23 * More could be added if necessary
24 */
Isaku Yamahata627308c2008-10-17 11:17:47 +090025#define IA64_MAX_RSVD_REGIONS 9
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27struct rsvd_region {
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070028 u64 start; /* virtual address of beginning of element */
29 u64 end; /* virtual address of end of element + 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32extern struct rsvd_region rsvd_region[IA64_MAX_RSVD_REGIONS + 1];
33extern int num_rsvd_regions;
34
35extern void find_memory (void);
36extern void reserve_memory (void);
37extern void find_initrd (void);
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070038extern int filter_rsvd_memory (u64 start, u64 end, void *arg);
39extern int filter_memory (u64 start, u64 end, void *arg);
40extern unsigned long efi_memmap_init(u64 *s, u64 *e);
41extern int find_max_min_low_pfn (u64, u64, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Magnus Dammcee87af2007-03-06 02:34:26 -080043extern unsigned long vmcore_find_descriptor_size(unsigned long address);
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070044extern int reserve_elfcorehdr(u64 *start, u64 *end);
Magnus Dammcee87af2007-03-06 02:34:26 -080045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
47 * For rounding an address to the next IA64_GRANULE_SIZE or order
48 */
49#define GRANULEROUNDDOWN(n) ((n) & ~(IA64_GRANULE_SIZE-1))
50#define GRANULEROUNDUP(n) (((n)+IA64_GRANULE_SIZE-1) & ~(IA64_GRANULE_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bob Picco1be7d992005-10-04 15:13:50 -040052#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 extern void call_pernode_memory (unsigned long start, unsigned long len, void *func);
54#else
55# define call_pernode_memory(start, len, func) (*func)(start, len, 0)
56#endif
57
58#define IGNORE_PFN0 1 /* XXX fix me: ignore pfn 0 until TLB miss handler is updated... */
59
Zoltan Menyhart98075d22008-04-11 15:21:35 -070060extern int register_active_ranges(u64 start, u64 len, int nid);
Bob Picco139b8302007-01-30 02:11:09 -080061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#ifdef CONFIG_VIRTUAL_MEM_MAP
63# define LARGE_GAP 0x40000000 /* Use virtual mem map if hole is > than this */
Tejun Heo126b3fc2009-10-02 13:28:55 +090064 extern unsigned long VMALLOC_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 extern struct page *vmem_map;
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070066 extern int find_largest_hole(u64 start, u64 end, void *arg);
67 extern int create_mem_map_page_table(u64 start, u64 end, void *arg);
Bob Piccoe44e41d2006-06-28 12:55:43 -040068 extern int vmemmap_find_next_valid_pfn(int, int);
69#else
70static inline int vmemmap_find_next_valid_pfn(int node, int i)
71{
72 return i + 1;
73}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif /* meminit_h */