e820.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * structures and definitions for the int 15, ax=e820 memory map
  3. * scheme.
  4. *
  5. * In a nutshell, arch/i386/boot/setup.S populates a scratch table
  6. * in the empty_zero_block that contains a list of usable address/size
  7. * duples. In arch/i386/kernel/setup.c, this information is
  8. * transferred into the e820map, and in arch/i386/mm/init.c, that
  9. * new information is used to mark pages reserved or not.
  10. *
  11. */
  12. #ifndef __E820_HEADER
  13. #define __E820_HEADER
  14. #define E820MAP 0x2d0 /* our map */
  15. #define E820MAX 128 /* number of entries in E820MAP */
  16. #define E820NR 0x1e8 /* # entries in E820MAP */
  17. #define E820_RAM 1
  18. #define E820_RESERVED 2
  19. #define E820_ACPI 3
  20. #define E820_NVS 4
  21. #define HIGH_MEMORY (1024*1024)
  22. #ifndef __ASSEMBLY__
  23. struct e820entry {
  24. u64 addr; /* start of memory segment */
  25. u64 size; /* size of memory segment */
  26. u32 type; /* type of memory segment */
  27. } __attribute__((packed));
  28. struct e820map {
  29. u32 nr_map;
  30. struct e820entry map[E820MAX];
  31. };
  32. extern struct e820map e820;
  33. extern int e820_all_mapped(unsigned long start, unsigned long end,
  34. unsigned type);
  35. extern int e820_any_mapped(u64 start, u64 end, unsigned type);
  36. extern void find_max_pfn(void);
  37. extern void register_bootmem_low_pages(unsigned long max_low_pfn);
  38. extern void e820_register_memory(void);
  39. extern void limit_regions(unsigned long long size);
  40. extern void print_memory_map(char *who);
  41. #endif/*!__ASSEMBLY__*/
  42. #endif/*__E820_HEADER*/