memblock.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. #ifndef _LINUX_MEMBLOCK_H
  2. #define _LINUX_MEMBLOCK_H
  3. #ifdef __KERNEL__
  4. /*
  5. * Logical memory blocks.
  6. *
  7. * Copyright (C) 2001 Peter Bergner, IBM Corp.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. #include <linux/init.h>
  15. #include <linux/mm.h>
  16. #include <asm/memblock.h>
  17. #define INIT_MEMBLOCK_REGIONS 128
  18. struct memblock_region {
  19. phys_addr_t base;
  20. phys_addr_t size;
  21. };
  22. struct memblock_type {
  23. unsigned long cnt; /* number of regions */
  24. unsigned long max; /* size of the allocated array */
  25. struct memblock_region *regions;
  26. };
  27. struct memblock {
  28. phys_addr_t current_limit;
  29. phys_addr_t memory_size; /* Updated by memblock_analyze() */
  30. struct memblock_type memory;
  31. struct memblock_type reserved;
  32. };
  33. extern struct memblock memblock;
  34. extern void __init memblock_init(void);
  35. extern void __init memblock_analyze(void);
  36. extern long memblock_add(phys_addr_t base, phys_addr_t size);
  37. extern long memblock_remove(phys_addr_t base, phys_addr_t size);
  38. extern long __init memblock_free(phys_addr_t base, phys_addr_t size);
  39. extern long __init memblock_reserve(phys_addr_t base, phys_addr_t size);
  40. /* The numa aware allocator is only available if
  41. * CONFIG_ARCH_POPULATES_NODE_MAP is set
  42. */
  43. extern phys_addr_t __init memblock_alloc_nid(phys_addr_t size, phys_addr_t align,
  44. int nid);
  45. extern phys_addr_t __init memblock_alloc_try_nid(phys_addr_t size, phys_addr_t align,
  46. int nid);
  47. extern phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align);
  48. /* Flags for memblock_alloc_base() amd __memblock_alloc_base() */
  49. #define MEMBLOCK_ALLOC_ANYWHERE (~(phys_addr_t)0)
  50. #define MEMBLOCK_ALLOC_ACCESSIBLE 0
  51. extern phys_addr_t __init memblock_alloc_base(phys_addr_t size,
  52. phys_addr_t align,
  53. phys_addr_t max_addr);
  54. extern phys_addr_t __init __memblock_alloc_base(phys_addr_t size,
  55. phys_addr_t align,
  56. phys_addr_t max_addr);
  57. extern phys_addr_t __init memblock_phys_mem_size(void);
  58. extern phys_addr_t memblock_end_of_DRAM(void);
  59. extern void __init memblock_enforce_memory_limit(phys_addr_t memory_limit);
  60. extern int memblock_is_memory(phys_addr_t addr);
  61. extern int memblock_is_region_memory(phys_addr_t base, phys_addr_t size);
  62. extern int __init memblock_is_reserved(phys_addr_t addr);
  63. extern int memblock_is_region_reserved(phys_addr_t base, phys_addr_t size);
  64. extern void memblock_dump_all(void);
  65. /* Provided by the architecture */
  66. extern phys_addr_t memblock_nid_range(phys_addr_t start, phys_addr_t end, int *nid);
  67. extern int memblock_memory_can_coalesce(phys_addr_t addr1, phys_addr_t size1,
  68. phys_addr_t addr2, phys_addr_t size2);
  69. /**
  70. * memblock_set_current_limit - Set the current allocation limit to allow
  71. * limiting allocations to what is currently
  72. * accessible during boot
  73. * @limit: New limit value (physical address)
  74. */
  75. extern void memblock_set_current_limit(phys_addr_t limit);
  76. /*
  77. * pfn conversion functions
  78. *
  79. * While the memory MEMBLOCKs should always be page aligned, the reserved
  80. * MEMBLOCKs may not be. This accessor attempt to provide a very clear
  81. * idea of what they return for such non aligned MEMBLOCKs.
  82. */
  83. /**
  84. * memblock_region_base_pfn - Return the lowest pfn intersecting with the region
  85. * @reg: memblock_region structure
  86. */
  87. static inline unsigned long memblock_region_base_pfn(const struct memblock_region *reg)
  88. {
  89. return reg->base >> PAGE_SHIFT;
  90. }
  91. /**
  92. * memblock_region_last_pfn - Return the highest pfn intersecting with the region
  93. * @reg: memblock_region structure
  94. */
  95. static inline unsigned long memblock_region_last_pfn(const struct memblock_region *reg)
  96. {
  97. return (reg->base + reg->size - 1) >> PAGE_SHIFT;
  98. }
  99. /**
  100. * memblock_region_end_pfn - Return the pfn of the first page following the region
  101. * but not intersecting it
  102. * @reg: memblock_region structure
  103. */
  104. static inline unsigned long memblock_region_end_pfn(const struct memblock_region *reg)
  105. {
  106. return memblock_region_last_pfn(reg) + 1;
  107. }
  108. /**
  109. * memblock_region_pages - Return the number of pages covering a region
  110. * @reg: memblock_region structure
  111. */
  112. static inline unsigned long memblock_region_pages(const struct memblock_region *reg)
  113. {
  114. return memblock_region_end_pfn(reg) - memblock_region_end_pfn(reg);
  115. }
  116. #define for_each_memblock(memblock_type, region) \
  117. for (region = memblock.memblock_type.regions; \
  118. region < (memblock.memblock_type.regions + memblock.memblock_type.cnt); \
  119. region++)
  120. #endif /* __KERNEL__ */
  121. #endif /* _LINUX_MEMBLOCK_H */