blob: fa2086774105500f5ac2d7a5f8e1a6bbef219d38 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * structures and definitions for the int 15, ax=e820 memory map
3 * scheme.
4 *
5 * In a nutshell, setup.S populates a scratch table in the
6 * empty_zero_block that contains a list of usable address/size
7 * duples. setup.c, this information is transferred into the e820map,
8 * and in init.c/numa.c, that new information is used to mark pages
9 * reserved or not.
10 */
11#ifndef __E820_HEADER
12#define __E820_HEADER
13
14#include <linux/mmzone.h>
15
16#define E820MAP 0x2d0 /* our map */
Venkatesh Pallipadif9ba7052005-05-01 08:58:51 -070017#define E820MAX 128 /* number of entries in E820MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define E820NR 0x1e8 /* # entries in E820MAP */
19
20#define E820_RAM 1
21#define E820_RESERVED 2
Andi Kleen80d26792006-09-26 10:52:38 +020022#define E820_ACPI 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define E820_NVS 4
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#ifndef __ASSEMBLY__
26struct e820entry {
27 u64 addr; /* start of memory segment */
28 u64 size; /* size of memory segment */
29 u32 type; /* type of memory segment */
30} __attribute__((packed));
31
32struct e820map {
33 int nr_map;
34 struct e820entry map[E820MAX];
35};
36
37extern unsigned long find_e820_area(unsigned long start, unsigned long end,
38 unsigned size);
39extern void add_memory_region(unsigned long start, unsigned long size,
40 int type);
41extern void setup_memory_region(void);
42extern void contig_e820_setup(void);
43extern unsigned long e820_end_of_ram(void);
44extern void e820_reserve_resources(void);
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -070045extern void e820_mark_nosave_regions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern void e820_print_map(char *who);
Arjan van de Veneee5a9f2006-04-07 19:49:24 +020047extern int e820_any_mapped(unsigned long start, unsigned long end, unsigned type);
Arjan van de Ven95222362006-04-07 19:49:27 +020048extern int e820_all_mapped(unsigned long start, unsigned long end, unsigned type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Andi Kleena1e97782005-04-16 15:25:12 -070050extern void e820_setup_gap(void);
Mel Gorman5cb248a2006-09-27 01:49:52 -070051extern void e820_register_active_regions(int nid,
52 unsigned long start_pfn, unsigned long end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Andi Kleen2c8c0e62006-09-26 10:52:32 +020054extern void finish_e820_parsing(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56extern struct e820map e820;
Andi Kleenac71d122006-05-08 15:17:28 +020057
58extern unsigned ebda_addr, ebda_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif/*!__ASSEMBLY__*/
60
61#endif/*__E820_HEADER*/