blob: fdf40ca04b3ca03b1ad8d6c75a947a126a09269c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
4 */
5#ifndef _LINUX_BOOTMEM_H
6#define _LINUX_BOOTMEM_H
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mmzone.h>
Santosh Shilimkar26f09e92014-01-21 15:50:19 -08009#include <linux/mm_types.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070010#include <asm/dma.h>
zijun_hu23827052016-10-07 16:59:24 -070011#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13/*
14 * simple boot-time physical memory area allocator.
15 */
16
17extern unsigned long max_low_pfn;
18extern unsigned long min_low_pfn;
19
20/*
21 * highest page
22 */
23extern unsigned long max_pfn;
Igor Mammedov8dd33032015-12-04 14:07:05 +010024/*
25 * highest possible page
26 */
27extern unsigned long long max_possible_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Yinghai Lu08677212010-02-10 01:20:20 -080029#ifndef CONFIG_NO_BOOTMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * node_bootmem_map is a map pointer - the bits represent all physical
32 * memory pages (including holes) on the node.
33 */
34typedef struct bootmem_data {
Johannes Weiner3560e242008-07-23 21:28:09 -070035 unsigned long node_min_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned long node_low_pfn;
37 void *node_bootmem_map;
Johannes Weiner5f2809e2008-07-23 21:28:05 -070038 unsigned long last_end_off;
39 unsigned long hint_idx;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080040 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041} bootmem_data_t;
42
Johannes Weinerb61bfa32008-07-23 21:26:55 -070043extern bootmem_data_t bootmem_node_data[];
Yinghai Lu08677212010-02-10 01:20:20 -080044#endif
Johannes Weinerb61bfa32008-07-23 21:26:55 -070045
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070046extern unsigned long bootmem_bootmap_pages(unsigned long);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070047
48extern unsigned long init_bootmem_node(pg_data_t *pgdat,
49 unsigned long freepfn,
50 unsigned long startpfn,
51 unsigned long endpfn);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070052extern unsigned long init_bootmem(unsigned long addr, unsigned long memend);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070053
Johannes Weiner223e8dc2008-07-23 21:28:00 -070054extern unsigned long free_all_bootmem(void);
Tang Chenf784a3f2014-11-13 15:19:39 -080055extern void reset_node_managed_pages(pg_data_t *pgdat);
Jiang Liu7b4b2a02013-07-03 15:03:11 -070056extern void reset_all_zones_managed_pages(void);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070057
58extern void free_bootmem_node(pg_data_t *pgdat,
59 unsigned long addr,
60 unsigned long size);
Joonsoo Kim81df9bf2012-12-11 16:03:10 -080061extern void free_bootmem(unsigned long physaddr, unsigned long size);
62extern void free_bootmem_late(unsigned long physaddr, unsigned long size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070063
64/*
65 * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE,
66 * the architecture-specific code should honor this).
67 *
Wang Sheng-Hui1754e442014-06-04 16:08:04 -070068 * If flags is BOOTMEM_DEFAULT, then the return value is always 0 (success).
69 * If flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the memory
70 * already was reserved.
Johannes Weiner223e8dc2008-07-23 21:28:00 -070071 */
72#define BOOTMEM_DEFAULT 0
73#define BOOTMEM_EXCLUSIVE (1<<0)
74
Tejun Heoc1329372009-02-24 11:57:20 +090075extern int reserve_bootmem(unsigned long addr,
76 unsigned long size,
77 int flags);
Tejun Heo2d0aae42009-02-24 11:57:21 +090078extern int reserve_bootmem_node(pg_data_t *pgdat,
79 unsigned long physaddr,
80 unsigned long size,
81 int flags);
82
83extern void *__alloc_bootmem(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070084 unsigned long align,
85 unsigned long goal);
Tejun Heo2d0aae42009-02-24 11:57:21 +090086extern void *__alloc_bootmem_nopanic(unsigned long size,
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070087 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070088 unsigned long goal) __malloc;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070089extern void *__alloc_bootmem_node(pg_data_t *pgdat,
90 unsigned long size,
91 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070092 unsigned long goal) __malloc;
Yinghai Lu08677212010-02-10 01:20:20 -080093void *__alloc_bootmem_node_high(pg_data_t *pgdat,
94 unsigned long size,
95 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -070096 unsigned long goal) __malloc;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070097extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
98 unsigned long size,
99 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700100 unsigned long goal) __malloc;
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700101void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
102 unsigned long size,
103 unsigned long align,
104 unsigned long goal,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700105 unsigned long limit) __malloc;
Tejun Heo2d0aae42009-02-24 11:57:21 +0900106extern void *__alloc_bootmem_low(unsigned long size,
107 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700108 unsigned long goal) __malloc;
Yinghai Lu38fa4172013-01-24 12:20:15 -0800109void *__alloc_bootmem_low_nopanic(unsigned long size,
110 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700111 unsigned long goal) __malloc;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700112extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
113 unsigned long size,
114 unsigned long align,
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700115 unsigned long goal) __malloc;
Tejun Heoc1329372009-02-24 11:57:20 +0900116
Yinghai Lu8bba1542011-05-24 17:12:37 -0700117#ifdef CONFIG_NO_BOOTMEM
118/* We are using top down, so it is safe to use 0 here */
119#define BOOTMEM_LOW_LIMIT 0
120#else
121#define BOOTMEM_LOW_LIMIT __pa(MAX_DMA_ADDRESS)
122#endif
123
zijun_hu23827052016-10-07 16:59:24 -0700124#ifndef ARCH_LOW_ADDRESS_LIMIT
125#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
126#endif
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define alloc_bootmem(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700129 __alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Suresh Siddha53dde5f2010-11-16 13:23:50 -0800130#define alloc_bootmem_align(x, align) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700131 __alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700132#define alloc_bootmem_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700133 __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define alloc_bootmem_pages(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700135 __alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Jan Beulich74768ed2008-08-12 15:08:39 -0700136#define alloc_bootmem_pages_nopanic(x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700137 __alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define alloc_bootmem_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700139 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Yinghai Lu8f389a992011-05-11 15:13:32 -0700140#define alloc_bootmem_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700141 __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define alloc_bootmem_pages_node(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700143 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900144#define alloc_bootmem_pages_node_nopanic(pgdat, x) \
Yinghai Lu8bba1542011-05-24 17:12:37 -0700145 __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900146
147#define alloc_bootmem_low(x) \
148 __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
Yinghai Lu38fa4172013-01-24 12:20:15 -0800149#define alloc_bootmem_low_pages_nopanic(x) \
150 __alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0)
Tejun Heo2d0aae42009-02-24 11:57:21 +0900151#define alloc_bootmem_low_pages(x) \
152 __alloc_bootmem_low(x, PAGE_SIZE, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define alloc_bootmem_low_pages_node(pgdat, x) \
Franck Bui-Huu71fb2e82006-09-25 23:31:05 -0700154 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
Johannes Weinerc6af5e92008-07-25 15:48:04 +0200155
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800156
157#if defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM)
158
159/* FIXME: use MEMBLOCK_ALLOC_* variants here */
160#define BOOTMEM_ALLOC_ACCESSIBLE 0
161#define BOOTMEM_ALLOC_ANYWHERE (~(phys_addr_t)0)
162
163/* FIXME: Move to memblock.h at a point where we remove nobootmem.c */
164void *memblock_virt_alloc_try_nid_nopanic(phys_addr_t size,
165 phys_addr_t align, phys_addr_t min_addr,
166 phys_addr_t max_addr, int nid);
167void *memblock_virt_alloc_try_nid(phys_addr_t size, phys_addr_t align,
168 phys_addr_t min_addr, phys_addr_t max_addr, int nid);
169void __memblock_free_early(phys_addr_t base, phys_addr_t size);
170void __memblock_free_late(phys_addr_t base, phys_addr_t size);
171
172static inline void * __init memblock_virt_alloc(
173 phys_addr_t size, phys_addr_t align)
174{
175 return memblock_virt_alloc_try_nid(size, align, BOOTMEM_LOW_LIMIT,
176 BOOTMEM_ALLOC_ACCESSIBLE,
177 NUMA_NO_NODE);
178}
179
180static inline void * __init memblock_virt_alloc_nopanic(
181 phys_addr_t size, phys_addr_t align)
182{
183 return memblock_virt_alloc_try_nid_nopanic(size, align,
184 BOOTMEM_LOW_LIMIT,
185 BOOTMEM_ALLOC_ACCESSIBLE,
186 NUMA_NO_NODE);
187}
188
Yinghai Luad6492b2014-01-27 17:06:49 -0800189static inline void * __init memblock_virt_alloc_low(
190 phys_addr_t size, phys_addr_t align)
191{
192 return memblock_virt_alloc_try_nid(size, align,
193 BOOTMEM_LOW_LIMIT,
194 ARCH_LOW_ADDRESS_LIMIT,
195 NUMA_NO_NODE);
196}
197static inline void * __init memblock_virt_alloc_low_nopanic(
198 phys_addr_t size, phys_addr_t align)
199{
200 return memblock_virt_alloc_try_nid_nopanic(size, align,
201 BOOTMEM_LOW_LIMIT,
202 ARCH_LOW_ADDRESS_LIMIT,
203 NUMA_NO_NODE);
204}
205
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800206static inline void * __init memblock_virt_alloc_from_nopanic(
207 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
208{
209 return memblock_virt_alloc_try_nid_nopanic(size, align, min_addr,
210 BOOTMEM_ALLOC_ACCESSIBLE,
211 NUMA_NO_NODE);
212}
213
214static inline void * __init memblock_virt_alloc_node(
215 phys_addr_t size, int nid)
216{
217 return memblock_virt_alloc_try_nid(size, 0, BOOTMEM_LOW_LIMIT,
218 BOOTMEM_ALLOC_ACCESSIBLE, nid);
219}
220
221static inline void * __init memblock_virt_alloc_node_nopanic(
222 phys_addr_t size, int nid)
223{
224 return memblock_virt_alloc_try_nid_nopanic(size, 0, BOOTMEM_LOW_LIMIT,
225 BOOTMEM_ALLOC_ACCESSIBLE,
226 nid);
227}
228
229static inline void __init memblock_free_early(
230 phys_addr_t base, phys_addr_t size)
231{
232 __memblock_free_early(base, size);
233}
234
235static inline void __init memblock_free_early_nid(
236 phys_addr_t base, phys_addr_t size, int nid)
237{
238 __memblock_free_early(base, size);
239}
240
241static inline void __init memblock_free_late(
242 phys_addr_t base, phys_addr_t size)
243{
244 __memblock_free_late(base, size);
245}
246
247#else
248
249#define BOOTMEM_ALLOC_ACCESSIBLE 0
250
251
252/* Fall back to all the existing bootmem APIs */
253static inline void * __init memblock_virt_alloc(
254 phys_addr_t size, phys_addr_t align)
255{
256 if (!align)
257 align = SMP_CACHE_BYTES;
258 return __alloc_bootmem(size, align, BOOTMEM_LOW_LIMIT);
259}
260
261static inline void * __init memblock_virt_alloc_nopanic(
262 phys_addr_t size, phys_addr_t align)
263{
264 if (!align)
265 align = SMP_CACHE_BYTES;
266 return __alloc_bootmem_nopanic(size, align, BOOTMEM_LOW_LIMIT);
267}
268
Yinghai Luad6492b2014-01-27 17:06:49 -0800269static inline void * __init memblock_virt_alloc_low(
270 phys_addr_t size, phys_addr_t align)
271{
272 if (!align)
273 align = SMP_CACHE_BYTES;
Yinghai Lu07bacb32014-01-30 15:45:44 -0800274 return __alloc_bootmem_low(size, align, 0);
Yinghai Luad6492b2014-01-27 17:06:49 -0800275}
276
277static inline void * __init memblock_virt_alloc_low_nopanic(
278 phys_addr_t size, phys_addr_t align)
279{
280 if (!align)
281 align = SMP_CACHE_BYTES;
Yinghai Lu07bacb32014-01-30 15:45:44 -0800282 return __alloc_bootmem_low_nopanic(size, align, 0);
Yinghai Luad6492b2014-01-27 17:06:49 -0800283}
284
Santosh Shilimkar26f09e92014-01-21 15:50:19 -0800285static inline void * __init memblock_virt_alloc_from_nopanic(
286 phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
287{
288 return __alloc_bootmem_nopanic(size, align, min_addr);
289}
290
291static inline void * __init memblock_virt_alloc_node(
292 phys_addr_t size, int nid)
293{
294 return __alloc_bootmem_node(NODE_DATA(nid), size, SMP_CACHE_BYTES,
295 BOOTMEM_LOW_LIMIT);
296}
297
298static inline void * __init memblock_virt_alloc_node_nopanic(
299 phys_addr_t size, int nid)
300{
301 return __alloc_bootmem_node_nopanic(NODE_DATA(nid), size,
302 SMP_CACHE_BYTES,
303 BOOTMEM_LOW_LIMIT);
304}
305
306static inline void * __init memblock_virt_alloc_try_nid(phys_addr_t size,
307 phys_addr_t align, phys_addr_t min_addr, phys_addr_t max_addr, int nid)
308{
309 return __alloc_bootmem_node_high(NODE_DATA(nid), size, align,
310 min_addr);
311}
312
313static inline void * __init memblock_virt_alloc_try_nid_nopanic(
314 phys_addr_t size, phys_addr_t align,
315 phys_addr_t min_addr, phys_addr_t max_addr, int nid)
316{
317 return ___alloc_bootmem_node_nopanic(NODE_DATA(nid), size, align,
318 min_addr, max_addr);
319}
320
321static inline void __init memblock_free_early(
322 phys_addr_t base, phys_addr_t size)
323{
324 free_bootmem(base, size);
325}
326
327static inline void __init memblock_free_early_nid(
328 phys_addr_t base, phys_addr_t size, int nid)
329{
330 free_bootmem_node(NODE_DATA(nid), base, size);
331}
332
333static inline void __init memblock_free_late(
334 phys_addr_t base, phys_addr_t size)
335{
336 free_bootmem_late(base, size);
337}
338#endif /* defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) */
339
Dave Hansen6f167ec2005-06-23 00:07:39 -0700340#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
341extern void *alloc_remap(int nid, unsigned long size);
342#else
343static inline void *alloc_remap(int nid, unsigned long size)
344{
345 return NULL;
346}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700347#endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */
Dave Hansen6f167ec2005-06-23 00:07:39 -0700348
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700349extern void *alloc_large_system_hash(const char *tablename,
350 unsigned long bucketsize,
351 unsigned long numentries,
352 int scale,
353 int flags,
354 unsigned int *_hash_shift,
355 unsigned int *_hash_mask,
Tim Bird31fe62b2012-05-23 13:33:35 +0000356 unsigned long low_limit,
357 unsigned long high_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Andrew Morton04903662006-12-06 20:37:33 -0800359#define HASH_EARLY 0x00000001 /* Allocating during early boot? */
Jan Beulich2c85f512009-09-21 17:03:07 -0700360#define HASH_SMALL 0x00000002 /* sub-page allocation allowed, min
361 * shift passed via *_hash_shift */
Pavel Tatashin3749a8f2017-07-06 15:39:08 -0700362#define HASH_ZERO 0x00000004 /* Zero allocated hash table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Anton Blanchardc2fdf3a2009-03-31 15:23:19 -0700364/* Only NUMA needs hash distribution. 64bit NUMA architectures have
365 * sufficient vmalloc space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Rasmus Villemoesa9919c72015-06-24 16:56:28 -0700367#ifdef CONFIG_NUMA
368#define HASHDIST_DEFAULT IS_ENABLED(CONFIG_64BIT)
David S. Millerf034b5d2006-08-24 03:08:07 -0700369extern int hashdist; /* Distribute hashes across NUMA nodes? */
Rasmus Villemoesa9919c72015-06-24 16:56:28 -0700370#else
371#define hashdist (0)
372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375#endif /* _LINUX_BOOTMEM_H */