blob: 8355c342b6a27d44341677ad3aff8014372aeb96 [file] [log] [blame]
Graeme Russ95ffaba2010-04-24 00:05:49 +10001#ifndef _ASM_X86_E820_H
2#define _ASM_X86_E820_H
Graeme Russ95ffaba2010-04-24 00:05:49 +10003
Bin Meng24ff8e72015-04-21 12:21:35 +08004#define E820MAX 128 /* number of entries in E820MAP */
Graeme Russ95ffaba2010-04-24 00:05:49 +10005
6#define E820_RAM 1
7#define E820_RESERVED 2
8#define E820_ACPI 3
9#define E820_NVS 4
10#define E820_UNUSABLE 5
11
Graeme Russ95ffaba2010-04-24 00:05:49 +100012#ifndef __ASSEMBLY__
13#include <linux/types.h>
Bin Meng24ff8e72015-04-21 12:21:35 +080014
Graeme Russ95ffaba2010-04-24 00:05:49 +100015struct e820entry {
16 __u64 addr; /* start of memory segment */
17 __u64 size; /* size of memory segment */
18 __u32 type; /* type of memory segment */
19} __attribute__((packed));
20
Graeme Russ95ffaba2010-04-24 00:05:49 +100021#define ISA_START_ADDRESS 0xa0000
22#define ISA_END_ADDRESS 0x100000
23
Graeme Russ95ffaba2010-04-24 00:05:49 +100024#endif /* __ASSEMBLY__ */
25
Bin Meng59ec7192015-10-07 20:19:10 -070026/* Implementation defined function to install an e820 map */
Bin Meng87af71c2018-04-11 22:02:10 -070027unsigned int install_e820_map(unsigned int max_entries,
28 struct e820entry *);
Bin Meng59ec7192015-10-07 20:19:10 -070029
Graeme Russ95ffaba2010-04-24 00:05:49 +100030#endif /* _ASM_X86_E820_H */