memblock.h 317 B

12345678910111213141516
  1. #ifndef _ASM_ARM_MEMBLOCK_H
  2. #define _ASM_ARM_MEMBLOCK_H
  3. #ifdef CONFIG_MMU
  4. extern phys_addr_t lowmem_end_addr;
  5. #define MEMBLOCK_REAL_LIMIT lowmem_end_addr
  6. #else
  7. #define MEMBLOCK_REAL_LIMIT 0
  8. #endif
  9. struct meminfo;
  10. struct machine_desc;
  11. extern void arm_memblock_init(struct meminfo *, struct machine_desc *);
  12. #endif