Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999 |
| 3 | */ |
| 4 | #ifndef _LINUX_BOOTMEM_H |
| 5 | #define _LINUX_BOOTMEM_H |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/mmzone.h> |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 8 | #include <linux/mm_types.h> |
Franck Bui-Huu | e786e86 | 2006-09-25 23:31:06 -0700 | [diff] [blame] | 9 | #include <asm/dma.h> |
zijun_hu | 2382705 | 2016-10-07 16:59:24 -0700 | [diff] [blame] | 10 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | /* |
| 13 | * simple boot-time physical memory area allocator. |
| 14 | */ |
| 15 | |
| 16 | extern unsigned long max_low_pfn; |
| 17 | extern unsigned long min_low_pfn; |
| 18 | |
| 19 | /* |
| 20 | * highest page |
| 21 | */ |
| 22 | extern unsigned long max_pfn; |
Igor Mammedov | 8dd3303 | 2015-12-04 14:07:05 +0100 | [diff] [blame] | 23 | /* |
| 24 | * highest possible page |
| 25 | */ |
| 26 | extern unsigned long long max_possible_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Yinghai Lu | 0867721 | 2010-02-10 01:20:20 -0800 | [diff] [blame] | 28 | #ifndef CONFIG_NO_BOOTMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* |
| 30 | * node_bootmem_map is a map pointer - the bits represent all physical |
| 31 | * memory pages (including holes) on the node. |
| 32 | */ |
| 33 | typedef struct bootmem_data { |
Johannes Weiner | 3560e24 | 2008-07-23 21:28:09 -0700 | [diff] [blame] | 34 | unsigned long node_min_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | unsigned long node_low_pfn; |
| 36 | void *node_bootmem_map; |
Johannes Weiner | 5f2809e | 2008-07-23 21:28:05 -0700 | [diff] [blame] | 37 | unsigned long last_end_off; |
| 38 | unsigned long hint_idx; |
KAMEZAWA Hiroyuki | 679bc9f | 2006-03-27 01:15:58 -0800 | [diff] [blame] | 39 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } bootmem_data_t; |
| 41 | |
Johannes Weiner | b61bfa3 | 2008-07-23 21:26:55 -0700 | [diff] [blame] | 42 | extern bootmem_data_t bootmem_node_data[]; |
Yinghai Lu | 0867721 | 2010-02-10 01:20:20 -0800 | [diff] [blame] | 43 | #endif |
Johannes Weiner | b61bfa3 | 2008-07-23 21:26:55 -0700 | [diff] [blame] | 44 | |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 45 | extern unsigned long bootmem_bootmap_pages(unsigned long); |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 46 | |
| 47 | extern unsigned long init_bootmem_node(pg_data_t *pgdat, |
| 48 | unsigned long freepfn, |
| 49 | unsigned long startpfn, |
| 50 | unsigned long endpfn); |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 51 | extern unsigned long init_bootmem(unsigned long addr, unsigned long memend); |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 52 | |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 53 | extern unsigned long free_all_bootmem(void); |
Tang Chen | f784a3f | 2014-11-13 15:19:39 -0800 | [diff] [blame] | 54 | extern void reset_node_managed_pages(pg_data_t *pgdat); |
Jiang Liu | 7b4b2a0 | 2013-07-03 15:03:11 -0700 | [diff] [blame] | 55 | extern void reset_all_zones_managed_pages(void); |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 56 | |
| 57 | extern void free_bootmem_node(pg_data_t *pgdat, |
| 58 | unsigned long addr, |
| 59 | unsigned long size); |
Joonsoo Kim | 81df9bf | 2012-12-11 16:03:10 -0800 | [diff] [blame] | 60 | extern void free_bootmem(unsigned long physaddr, unsigned long size); |
| 61 | extern void free_bootmem_late(unsigned long physaddr, unsigned long size); |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 62 | |
| 63 | /* |
| 64 | * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE, |
| 65 | * the architecture-specific code should honor this). |
| 66 | * |
Wang Sheng-Hui | 1754e44 | 2014-06-04 16:08:04 -0700 | [diff] [blame] | 67 | * If flags is BOOTMEM_DEFAULT, then the return value is always 0 (success). |
| 68 | * If flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the memory |
| 69 | * already was reserved. |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 70 | */ |
| 71 | #define BOOTMEM_DEFAULT 0 |
| 72 | #define BOOTMEM_EXCLUSIVE (1<<0) |
| 73 | |
Tejun Heo | c132937 | 2009-02-24 11:57:20 +0900 | [diff] [blame] | 74 | extern int reserve_bootmem(unsigned long addr, |
| 75 | unsigned long size, |
| 76 | int flags); |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 77 | extern int reserve_bootmem_node(pg_data_t *pgdat, |
| 78 | unsigned long physaddr, |
| 79 | unsigned long size, |
| 80 | int flags); |
| 81 | |
| 82 | extern void *__alloc_bootmem(unsigned long size, |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 83 | unsigned long align, |
| 84 | unsigned long goal); |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 85 | extern void *__alloc_bootmem_nopanic(unsigned long size, |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 86 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 87 | unsigned long goal) __malloc; |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 88 | extern void *__alloc_bootmem_node(pg_data_t *pgdat, |
| 89 | unsigned long size, |
| 90 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 91 | unsigned long goal) __malloc; |
Yinghai Lu | 0867721 | 2010-02-10 01:20:20 -0800 | [diff] [blame] | 92 | void *__alloc_bootmem_node_high(pg_data_t *pgdat, |
| 93 | unsigned long size, |
| 94 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 95 | unsigned long goal) __malloc; |
Johannes Weiner | 223e8dc | 2008-07-23 21:28:00 -0700 | [diff] [blame] | 96 | extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat, |
| 97 | unsigned long size, |
| 98 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 99 | unsigned long goal) __malloc; |
Yinghai Lu | 99ab7b1 | 2012-07-11 14:02:53 -0700 | [diff] [blame] | 100 | void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat, |
| 101 | unsigned long size, |
| 102 | unsigned long align, |
| 103 | unsigned long goal, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 104 | unsigned long limit) __malloc; |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 105 | extern void *__alloc_bootmem_low(unsigned long size, |
| 106 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 107 | unsigned long goal) __malloc; |
Yinghai Lu | 38fa417 | 2013-01-24 12:20:15 -0800 | [diff] [blame] | 108 | void *__alloc_bootmem_low_nopanic(unsigned long size, |
| 109 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 110 | unsigned long goal) __malloc; |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 111 | extern void *__alloc_bootmem_low_node(pg_data_t *pgdat, |
| 112 | unsigned long size, |
| 113 | unsigned long align, |
Rasmus Villemoes | 48a2705 | 2016-05-19 17:10:55 -0700 | [diff] [blame] | 114 | unsigned long goal) __malloc; |
Tejun Heo | c132937 | 2009-02-24 11:57:20 +0900 | [diff] [blame] | 115 | |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 116 | #ifdef CONFIG_NO_BOOTMEM |
| 117 | /* We are using top down, so it is safe to use 0 here */ |
| 118 | #define BOOTMEM_LOW_LIMIT 0 |
| 119 | #else |
| 120 | #define BOOTMEM_LOW_LIMIT __pa(MAX_DMA_ADDRESS) |
| 121 | #endif |
| 122 | |
zijun_hu | 2382705 | 2016-10-07 16:59:24 -0700 | [diff] [blame] | 123 | #ifndef ARCH_LOW_ADDRESS_LIMIT |
| 124 | #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL |
| 125 | #endif |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #define alloc_bootmem(x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 128 | __alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT) |
Suresh Siddha | 53dde5f | 2010-11-16 13:23:50 -0800 | [diff] [blame] | 129 | #define alloc_bootmem_align(x, align) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 130 | __alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT) |
Jan Beulich | 74768ed | 2008-08-12 15:08:39 -0700 | [diff] [blame] | 131 | #define alloc_bootmem_nopanic(x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 132 | __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #define alloc_bootmem_pages(x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 134 | __alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT) |
Jan Beulich | 74768ed | 2008-08-12 15:08:39 -0700 | [diff] [blame] | 135 | #define alloc_bootmem_pages_nopanic(x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 136 | __alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | #define alloc_bootmem_node(pgdat, x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 138 | __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT) |
Yinghai Lu | 8f389a99 | 2011-05-11 15:13:32 -0700 | [diff] [blame] | 139 | #define alloc_bootmem_node_nopanic(pgdat, x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 140 | __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | #define alloc_bootmem_pages_node(pgdat, x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 142 | __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT) |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 143 | #define alloc_bootmem_pages_node_nopanic(pgdat, x) \ |
Yinghai Lu | 8bba154 | 2011-05-24 17:12:37 -0700 | [diff] [blame] | 144 | __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT) |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 145 | |
| 146 | #define alloc_bootmem_low(x) \ |
| 147 | __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0) |
Yinghai Lu | 38fa417 | 2013-01-24 12:20:15 -0800 | [diff] [blame] | 148 | #define alloc_bootmem_low_pages_nopanic(x) \ |
| 149 | __alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0) |
Tejun Heo | 2d0aae4 | 2009-02-24 11:57:21 +0900 | [diff] [blame] | 150 | #define alloc_bootmem_low_pages(x) \ |
| 151 | __alloc_bootmem_low(x, PAGE_SIZE, 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | #define alloc_bootmem_low_pages_node(pgdat, x) \ |
Franck Bui-Huu | 71fb2e8 | 2006-09-25 23:31:05 -0700 | [diff] [blame] | 153 | __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0) |
Johannes Weiner | c6af5e9 | 2008-07-25 15:48:04 +0200 | [diff] [blame] | 154 | |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 155 | |
| 156 | #if defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) |
| 157 | |
| 158 | /* FIXME: use MEMBLOCK_ALLOC_* variants here */ |
| 159 | #define BOOTMEM_ALLOC_ACCESSIBLE 0 |
| 160 | #define BOOTMEM_ALLOC_ANYWHERE (~(phys_addr_t)0) |
| 161 | |
| 162 | /* FIXME: Move to memblock.h at a point where we remove nobootmem.c */ |
| 163 | void *memblock_virt_alloc_try_nid_nopanic(phys_addr_t size, |
| 164 | phys_addr_t align, phys_addr_t min_addr, |
| 165 | phys_addr_t max_addr, int nid); |
| 166 | void *memblock_virt_alloc_try_nid(phys_addr_t size, phys_addr_t align, |
| 167 | phys_addr_t min_addr, phys_addr_t max_addr, int nid); |
| 168 | void __memblock_free_early(phys_addr_t base, phys_addr_t size); |
| 169 | void __memblock_free_late(phys_addr_t base, phys_addr_t size); |
| 170 | |
| 171 | static inline void * __init memblock_virt_alloc( |
| 172 | phys_addr_t size, phys_addr_t align) |
| 173 | { |
| 174 | return memblock_virt_alloc_try_nid(size, align, BOOTMEM_LOW_LIMIT, |
| 175 | BOOTMEM_ALLOC_ACCESSIBLE, |
| 176 | NUMA_NO_NODE); |
| 177 | } |
| 178 | |
| 179 | static inline void * __init memblock_virt_alloc_nopanic( |
| 180 | phys_addr_t size, phys_addr_t align) |
| 181 | { |
| 182 | return memblock_virt_alloc_try_nid_nopanic(size, align, |
| 183 | BOOTMEM_LOW_LIMIT, |
| 184 | BOOTMEM_ALLOC_ACCESSIBLE, |
| 185 | NUMA_NO_NODE); |
| 186 | } |
| 187 | |
Yinghai Lu | ad6492b | 2014-01-27 17:06:49 -0800 | [diff] [blame] | 188 | static inline void * __init memblock_virt_alloc_low( |
| 189 | phys_addr_t size, phys_addr_t align) |
| 190 | { |
| 191 | return memblock_virt_alloc_try_nid(size, align, |
| 192 | BOOTMEM_LOW_LIMIT, |
| 193 | ARCH_LOW_ADDRESS_LIMIT, |
| 194 | NUMA_NO_NODE); |
| 195 | } |
| 196 | static inline void * __init memblock_virt_alloc_low_nopanic( |
| 197 | phys_addr_t size, phys_addr_t align) |
| 198 | { |
| 199 | return memblock_virt_alloc_try_nid_nopanic(size, align, |
| 200 | BOOTMEM_LOW_LIMIT, |
| 201 | ARCH_LOW_ADDRESS_LIMIT, |
| 202 | NUMA_NO_NODE); |
| 203 | } |
| 204 | |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 205 | static inline void * __init memblock_virt_alloc_from_nopanic( |
| 206 | phys_addr_t size, phys_addr_t align, phys_addr_t min_addr) |
| 207 | { |
| 208 | return memblock_virt_alloc_try_nid_nopanic(size, align, min_addr, |
| 209 | BOOTMEM_ALLOC_ACCESSIBLE, |
| 210 | NUMA_NO_NODE); |
| 211 | } |
| 212 | |
| 213 | static inline void * __init memblock_virt_alloc_node( |
| 214 | phys_addr_t size, int nid) |
| 215 | { |
| 216 | return memblock_virt_alloc_try_nid(size, 0, BOOTMEM_LOW_LIMIT, |
| 217 | BOOTMEM_ALLOC_ACCESSIBLE, nid); |
| 218 | } |
| 219 | |
| 220 | static inline void * __init memblock_virt_alloc_node_nopanic( |
| 221 | phys_addr_t size, int nid) |
| 222 | { |
| 223 | return memblock_virt_alloc_try_nid_nopanic(size, 0, BOOTMEM_LOW_LIMIT, |
| 224 | BOOTMEM_ALLOC_ACCESSIBLE, |
| 225 | nid); |
| 226 | } |
| 227 | |
| 228 | static inline void __init memblock_free_early( |
| 229 | phys_addr_t base, phys_addr_t size) |
| 230 | { |
| 231 | __memblock_free_early(base, size); |
| 232 | } |
| 233 | |
| 234 | static inline void __init memblock_free_early_nid( |
| 235 | phys_addr_t base, phys_addr_t size, int nid) |
| 236 | { |
| 237 | __memblock_free_early(base, size); |
| 238 | } |
| 239 | |
| 240 | static inline void __init memblock_free_late( |
| 241 | phys_addr_t base, phys_addr_t size) |
| 242 | { |
| 243 | __memblock_free_late(base, size); |
| 244 | } |
| 245 | |
| 246 | #else |
| 247 | |
| 248 | #define BOOTMEM_ALLOC_ACCESSIBLE 0 |
| 249 | |
| 250 | |
| 251 | /* Fall back to all the existing bootmem APIs */ |
| 252 | static inline void * __init memblock_virt_alloc( |
| 253 | phys_addr_t size, phys_addr_t align) |
| 254 | { |
| 255 | if (!align) |
| 256 | align = SMP_CACHE_BYTES; |
| 257 | return __alloc_bootmem(size, align, BOOTMEM_LOW_LIMIT); |
| 258 | } |
| 259 | |
| 260 | static inline void * __init memblock_virt_alloc_nopanic( |
| 261 | phys_addr_t size, phys_addr_t align) |
| 262 | { |
| 263 | if (!align) |
| 264 | align = SMP_CACHE_BYTES; |
| 265 | return __alloc_bootmem_nopanic(size, align, BOOTMEM_LOW_LIMIT); |
| 266 | } |
| 267 | |
Yinghai Lu | ad6492b | 2014-01-27 17:06:49 -0800 | [diff] [blame] | 268 | static inline void * __init memblock_virt_alloc_low( |
| 269 | phys_addr_t size, phys_addr_t align) |
| 270 | { |
| 271 | if (!align) |
| 272 | align = SMP_CACHE_BYTES; |
Yinghai Lu | 07bacb3 | 2014-01-30 15:45:44 -0800 | [diff] [blame] | 273 | return __alloc_bootmem_low(size, align, 0); |
Yinghai Lu | ad6492b | 2014-01-27 17:06:49 -0800 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static inline void * __init memblock_virt_alloc_low_nopanic( |
| 277 | phys_addr_t size, phys_addr_t align) |
| 278 | { |
| 279 | if (!align) |
| 280 | align = SMP_CACHE_BYTES; |
Yinghai Lu | 07bacb3 | 2014-01-30 15:45:44 -0800 | [diff] [blame] | 281 | return __alloc_bootmem_low_nopanic(size, align, 0); |
Yinghai Lu | ad6492b | 2014-01-27 17:06:49 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Santosh Shilimkar | 26f09e9 | 2014-01-21 15:50:19 -0800 | [diff] [blame] | 284 | static inline void * __init memblock_virt_alloc_from_nopanic( |
| 285 | phys_addr_t size, phys_addr_t align, phys_addr_t min_addr) |
| 286 | { |
| 287 | return __alloc_bootmem_nopanic(size, align, min_addr); |
| 288 | } |
| 289 | |
| 290 | static inline void * __init memblock_virt_alloc_node( |
| 291 | phys_addr_t size, int nid) |
| 292 | { |
| 293 | return __alloc_bootmem_node(NODE_DATA(nid), size, SMP_CACHE_BYTES, |
| 294 | BOOTMEM_LOW_LIMIT); |
| 295 | } |
| 296 | |
| 297 | static inline void * __init memblock_virt_alloc_node_nopanic( |
| 298 | phys_addr_t size, int nid) |
| 299 | { |
| 300 | return __alloc_bootmem_node_nopanic(NODE_DATA(nid), size, |
| 301 | SMP_CACHE_BYTES, |
| 302 | BOOTMEM_LOW_LIMIT); |
| 303 | } |
| 304 | |
| 305 | static inline void * __init memblock_virt_alloc_try_nid(phys_addr_t size, |
| 306 | phys_addr_t align, phys_addr_t min_addr, phys_addr_t max_addr, int nid) |
| 307 | { |
| 308 | return __alloc_bootmem_node_high(NODE_DATA(nid), size, align, |
| 309 | min_addr); |
| 310 | } |
| 311 | |
| 312 | static inline void * __init memblock_virt_alloc_try_nid_nopanic( |
| 313 | phys_addr_t size, phys_addr_t align, |
| 314 | phys_addr_t min_addr, phys_addr_t max_addr, int nid) |
| 315 | { |
| 316 | return ___alloc_bootmem_node_nopanic(NODE_DATA(nid), size, align, |
| 317 | min_addr, max_addr); |
| 318 | } |
| 319 | |
| 320 | static inline void __init memblock_free_early( |
| 321 | phys_addr_t base, phys_addr_t size) |
| 322 | { |
| 323 | free_bootmem(base, size); |
| 324 | } |
| 325 | |
| 326 | static inline void __init memblock_free_early_nid( |
| 327 | phys_addr_t base, phys_addr_t size, int nid) |
| 328 | { |
| 329 | free_bootmem_node(NODE_DATA(nid), base, size); |
| 330 | } |
| 331 | |
| 332 | static inline void __init memblock_free_late( |
| 333 | phys_addr_t base, phys_addr_t size) |
| 334 | { |
| 335 | free_bootmem_late(base, size); |
| 336 | } |
| 337 | #endif /* defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) */ |
| 338 | |
Dave Hansen | 6f167ec | 2005-06-23 00:07:39 -0700 | [diff] [blame] | 339 | #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP |
| 340 | extern void *alloc_remap(int nid, unsigned long size); |
| 341 | #else |
| 342 | static inline void *alloc_remap(int nid, unsigned long size) |
| 343 | { |
| 344 | return NULL; |
| 345 | } |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 346 | #endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */ |
Dave Hansen | 6f167ec | 2005-06-23 00:07:39 -0700 | [diff] [blame] | 347 | |
Franck Bui-Huu | f71bf0c | 2006-09-25 23:31:08 -0700 | [diff] [blame] | 348 | extern void *alloc_large_system_hash(const char *tablename, |
| 349 | unsigned long bucketsize, |
| 350 | unsigned long numentries, |
| 351 | int scale, |
| 352 | int flags, |
| 353 | unsigned int *_hash_shift, |
| 354 | unsigned int *_hash_mask, |
Tim Bird | 31fe62b | 2012-05-23 13:33:35 +0000 | [diff] [blame] | 355 | unsigned long low_limit, |
| 356 | unsigned long high_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Andrew Morton | 0490366 | 2006-12-06 20:37:33 -0800 | [diff] [blame] | 358 | #define HASH_EARLY 0x00000001 /* Allocating during early boot? */ |
Jan Beulich | 2c85f51 | 2009-09-21 17:03:07 -0700 | [diff] [blame] | 359 | #define HASH_SMALL 0x00000002 /* sub-page allocation allowed, min |
| 360 | * shift passed via *_hash_shift */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Anton Blanchard | c2fdf3a | 2009-03-31 15:23:19 -0700 | [diff] [blame] | 362 | /* Only NUMA needs hash distribution. 64bit NUMA architectures have |
| 363 | * sufficient vmalloc space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | */ |
Rasmus Villemoes | a9919c7 | 2015-06-24 16:56:28 -0700 | [diff] [blame] | 365 | #ifdef CONFIG_NUMA |
| 366 | #define HASHDIST_DEFAULT IS_ENABLED(CONFIG_64BIT) |
David S. Miller | f034b5d | 2006-08-24 03:08:07 -0700 | [diff] [blame] | 367 | extern int hashdist; /* Distribute hashes across NUMA nodes? */ |
Rasmus Villemoes | a9919c7 | 2015-06-24 16:56:28 -0700 | [diff] [blame] | 368 | #else |
| 369 | #define hashdist (0) |
| 370 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
| 373 | #endif /* _LINUX_BOOTMEM_H */ |