Blame view

include/linux/bootmem.h 10.9 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
  /*
   * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
   */
  #ifndef _LINUX_BOOTMEM_H
  #define _LINUX_BOOTMEM_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
  #include <linux/mmzone.h>
26f09e9b3   Santosh Shilimkar   mm/memblock: add ...
8
  #include <linux/mm_types.h>
e786e86a5   Franck Bui-Huu   [PATCH] bootmem: ...
9
  #include <asm/dma.h>
2382705f2   zijun_hu   mm/nobootmem.c: r...
10
  #include <asm/processor.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
14
15
16
17
18
19
20
21
22
  
  /*
   *  simple boot-time physical memory area allocator.
   */
  
  extern unsigned long max_low_pfn;
  extern unsigned long min_low_pfn;
  
  /*
   * highest page
   */
  extern unsigned long max_pfn;
8dd330300   Igor Mammedov   x86/mm: Introduce...
23
24
25
26
  /*
   * highest possible page
   */
  extern unsigned long long max_possible_pfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27

08677214e   Yinghai Lu   x86: Make 64 bit ...
28
  #ifndef CONFIG_NO_BOOTMEM
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
32
33
  /*
   * node_bootmem_map is a map pointer - the bits represent all physical 
   * memory pages (including holes) on the node.
   */
  typedef struct bootmem_data {
3560e249a   Johannes Weiner   bootmem: replace ...
34
  	unsigned long node_min_pfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
  	unsigned long node_low_pfn;
  	void *node_bootmem_map;
5f2809e69   Johannes Weiner   bootmem: clean up...
37
38
  	unsigned long last_end_off;
  	unsigned long hint_idx;
679bc9fbb   KAMEZAWA Hiroyuki   [PATCH] for_each_...
39
  	struct list_head list;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
  } bootmem_data_t;
b61bfa3c4   Johannes Weiner   mm: move bootmem ...
41
  extern bootmem_data_t bootmem_node_data[];
08677214e   Yinghai Lu   x86: Make 64 bit ...
42
  #endif
b61bfa3c4   Johannes Weiner   mm: move bootmem ...
43

f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
44
  extern unsigned long bootmem_bootmap_pages(unsigned long);
223e8dc92   Johannes Weiner   bootmem: reorder ...
45
46
47
48
49
  
  extern unsigned long init_bootmem_node(pg_data_t *pgdat,
  				       unsigned long freepfn,
  				       unsigned long startpfn,
  				       unsigned long endpfn);
f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
50
  extern unsigned long init_bootmem(unsigned long addr, unsigned long memend);
223e8dc92   Johannes Weiner   bootmem: reorder ...
51

223e8dc92   Johannes Weiner   bootmem: reorder ...
52
  extern unsigned long free_all_bootmem(void);
f784a3f19   Tang Chen   mem-hotplug: rese...
53
  extern void reset_node_managed_pages(pg_data_t *pgdat);
7b4b2a0d6   Jiang Liu   mm: accurately ca...
54
  extern void reset_all_zones_managed_pages(void);
223e8dc92   Johannes Weiner   bootmem: reorder ...
55
56
57
58
  
  extern void free_bootmem_node(pg_data_t *pgdat,
  			      unsigned long addr,
  			      unsigned long size);
81df9bff2   Joonsoo Kim   bootmem: fix wron...
59
60
  extern void free_bootmem(unsigned long physaddr, unsigned long size);
  extern void free_bootmem_late(unsigned long physaddr, unsigned long size);
223e8dc92   Johannes Weiner   bootmem: reorder ...
61
62
63
64
65
  
  /*
   * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE,
   * the architecture-specific code should honor this).
   *
1754e44e8   Wang Sheng-Hui   include/linux/boo...
66
67
68
   * If flags is BOOTMEM_DEFAULT, then the return value is always 0 (success).
   * If flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the memory
   * already was reserved.
223e8dc92   Johannes Weiner   bootmem: reorder ...
69
70
71
   */
  #define BOOTMEM_DEFAULT		0
  #define BOOTMEM_EXCLUSIVE	(1<<0)
c13293755   Tejun Heo   bootmem: clean up...
72
73
74
  extern int reserve_bootmem(unsigned long addr,
  			   unsigned long size,
  			   int flags);
2d0aae416   Tejun Heo   bootmem: reorder ...
75
76
77
78
79
80
  extern int reserve_bootmem_node(pg_data_t *pgdat,
  				unsigned long physaddr,
  				unsigned long size,
  				int flags);
  
  extern void *__alloc_bootmem(unsigned long size,
f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
81
82
  			     unsigned long align,
  			     unsigned long goal);
2d0aae416   Tejun Heo   bootmem: reorder ...
83
  extern void *__alloc_bootmem_nopanic(unsigned long size,
f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
84
  				     unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
85
  				     unsigned long goal) __malloc;
223e8dc92   Johannes Weiner   bootmem: reorder ...
86
87
88
  extern void *__alloc_bootmem_node(pg_data_t *pgdat,
  				  unsigned long size,
  				  unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
89
  				  unsigned long goal) __malloc;
08677214e   Yinghai Lu   x86: Make 64 bit ...
90
91
92
  void *__alloc_bootmem_node_high(pg_data_t *pgdat,
  				  unsigned long size,
  				  unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
93
  				  unsigned long goal) __malloc;
223e8dc92   Johannes Weiner   bootmem: reorder ...
94
95
96
  extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
  				  unsigned long size,
  				  unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
97
  				  unsigned long goal) __malloc;
99ab7b194   Yinghai Lu   mm: sparse: fix u...
98
99
100
101
  void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
  				  unsigned long size,
  				  unsigned long align,
  				  unsigned long goal,
48a270554   Rasmus Villemoes   include/linux: ap...
102
  				  unsigned long limit) __malloc;
2d0aae416   Tejun Heo   bootmem: reorder ...
103
104
  extern void *__alloc_bootmem_low(unsigned long size,
  				 unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
105
  				 unsigned long goal) __malloc;
38fa4175e   Yinghai Lu   mm: Add alloc_boo...
106
107
  void *__alloc_bootmem_low_nopanic(unsigned long size,
  				 unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
108
  				 unsigned long goal) __malloc;
f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
109
110
111
  extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
  				      unsigned long size,
  				      unsigned long align,
48a270554   Rasmus Villemoes   include/linux: ap...
112
  				      unsigned long goal) __malloc;
c13293755   Tejun Heo   bootmem: clean up...
113

8bba154ef   Yinghai Lu   memblock/nobootme...
114
115
116
117
118
119
  #ifdef CONFIG_NO_BOOTMEM
  /* We are using top down, so it is safe to use 0 here */
  #define BOOTMEM_LOW_LIMIT 0
  #else
  #define BOOTMEM_LOW_LIMIT __pa(MAX_DMA_ADDRESS)
  #endif
2382705f2   zijun_hu   mm/nobootmem.c: r...
120
121
122
  #ifndef ARCH_LOW_ADDRESS_LIMIT
  #define ARCH_LOW_ADDRESS_LIMIT  0xffffffffUL
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
  #define alloc_bootmem(x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
124
  	__alloc_bootmem(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
53dde5f38   Suresh Siddha   bootmem: Add allo...
125
  #define alloc_bootmem_align(x, align) \
8bba154ef   Yinghai Lu   memblock/nobootme...
126
  	__alloc_bootmem(x, align, BOOTMEM_LOW_LIMIT)
74768ed83   Jan Beulich   page allocator: u...
127
  #define alloc_bootmem_nopanic(x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
128
  	__alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
  #define alloc_bootmem_pages(x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
130
  	__alloc_bootmem(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
74768ed83   Jan Beulich   page allocator: u...
131
  #define alloc_bootmem_pages_nopanic(x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
132
  	__alloc_bootmem_nopanic(x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
  #define alloc_bootmem_node(pgdat, x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
134
  	__alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
8f389a99b   Yinghai Lu   mm: use alloc_boo...
135
  #define alloc_bootmem_node_nopanic(pgdat, x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
136
  	__alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
137
  #define alloc_bootmem_pages_node(pgdat, x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
138
  	__alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
2d0aae416   Tejun Heo   bootmem: reorder ...
139
  #define alloc_bootmem_pages_node_nopanic(pgdat, x) \
8bba154ef   Yinghai Lu   memblock/nobootme...
140
  	__alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
2d0aae416   Tejun Heo   bootmem: reorder ...
141
142
143
  
  #define alloc_bootmem_low(x) \
  	__alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
38fa4175e   Yinghai Lu   mm: Add alloc_boo...
144
145
  #define alloc_bootmem_low_pages_nopanic(x) \
  	__alloc_bootmem_low_nopanic(x, PAGE_SIZE, 0)
2d0aae416   Tejun Heo   bootmem: reorder ...
146
147
  #define alloc_bootmem_low_pages(x) \
  	__alloc_bootmem_low(x, PAGE_SIZE, 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
  #define alloc_bootmem_low_pages_node(pgdat, x) \
71fb2e8f8   Franck Bui-Huu   [PATCH] bootmem: ...
149
  	__alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
c6af5e9f8   Johannes Weiner   bootmem: Move nod...
150

26f09e9b3   Santosh Shilimkar   mm/memblock: add ...
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
  
  #if defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM)
  
  /* FIXME: use MEMBLOCK_ALLOC_* variants here */
  #define BOOTMEM_ALLOC_ACCESSIBLE	0
  #define BOOTMEM_ALLOC_ANYWHERE		(~(phys_addr_t)0)
  
  /* FIXME: Move to memblock.h at a point where we remove nobootmem.c */
  void *memblock_virt_alloc_try_nid_nopanic(phys_addr_t size,
  		phys_addr_t align, phys_addr_t min_addr,
  		phys_addr_t max_addr, int nid);
  void *memblock_virt_alloc_try_nid(phys_addr_t size, phys_addr_t align,
  		phys_addr_t min_addr, phys_addr_t max_addr, int nid);
  void __memblock_free_early(phys_addr_t base, phys_addr_t size);
  void __memblock_free_late(phys_addr_t base, phys_addr_t size);
  
  static inline void * __init memblock_virt_alloc(
  					phys_addr_t size,  phys_addr_t align)
  {
  	return memblock_virt_alloc_try_nid(size, align, BOOTMEM_LOW_LIMIT,
  					    BOOTMEM_ALLOC_ACCESSIBLE,
  					    NUMA_NO_NODE);
  }
  
  static inline void * __init memblock_virt_alloc_nopanic(
  					phys_addr_t size, phys_addr_t align)
  {
  	return memblock_virt_alloc_try_nid_nopanic(size, align,
  						    BOOTMEM_LOW_LIMIT,
  						    BOOTMEM_ALLOC_ACCESSIBLE,
  						    NUMA_NO_NODE);
  }
ad6492b80   Yinghai Lu   memblock, nobootm...
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  static inline void * __init memblock_virt_alloc_low(
  					phys_addr_t size, phys_addr_t align)
  {
  	return memblock_virt_alloc_try_nid(size, align,
  						   BOOTMEM_LOW_LIMIT,
  						   ARCH_LOW_ADDRESS_LIMIT,
  						   NUMA_NO_NODE);
  }
  static inline void * __init memblock_virt_alloc_low_nopanic(
  					phys_addr_t size, phys_addr_t align)
  {
  	return memblock_virt_alloc_try_nid_nopanic(size, align,
  						   BOOTMEM_LOW_LIMIT,
  						   ARCH_LOW_ADDRESS_LIMIT,
  						   NUMA_NO_NODE);
  }
26f09e9b3   Santosh Shilimkar   mm/memblock: add ...
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
  static inline void * __init memblock_virt_alloc_from_nopanic(
  		phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
  {
  	return memblock_virt_alloc_try_nid_nopanic(size, align, min_addr,
  						    BOOTMEM_ALLOC_ACCESSIBLE,
  						    NUMA_NO_NODE);
  }
  
  static inline void * __init memblock_virt_alloc_node(
  						phys_addr_t size, int nid)
  {
  	return memblock_virt_alloc_try_nid(size, 0, BOOTMEM_LOW_LIMIT,
  					    BOOTMEM_ALLOC_ACCESSIBLE, nid);
  }
  
  static inline void * __init memblock_virt_alloc_node_nopanic(
  						phys_addr_t size, int nid)
  {
  	return memblock_virt_alloc_try_nid_nopanic(size, 0, BOOTMEM_LOW_LIMIT,
  						    BOOTMEM_ALLOC_ACCESSIBLE,
  						    nid);
  }
  
  static inline void __init memblock_free_early(
  					phys_addr_t base, phys_addr_t size)
  {
  	__memblock_free_early(base, size);
  }
  
  static inline void __init memblock_free_early_nid(
  				phys_addr_t base, phys_addr_t size, int nid)
  {
  	__memblock_free_early(base, size);
  }
  
  static inline void __init memblock_free_late(
  					phys_addr_t base, phys_addr_t size)
  {
  	__memblock_free_late(base, size);
  }
  
  #else
  
  #define BOOTMEM_ALLOC_ACCESSIBLE	0
  
  
  /* Fall back to all the existing bootmem APIs */
  static inline void * __init memblock_virt_alloc(
  					phys_addr_t size,  phys_addr_t align)
  {
  	if (!align)
  		align = SMP_CACHE_BYTES;
  	return __alloc_bootmem(size, align, BOOTMEM_LOW_LIMIT);
  }
  
  static inline void * __init memblock_virt_alloc_nopanic(
  					phys_addr_t size, phys_addr_t align)
  {
  	if (!align)
  		align = SMP_CACHE_BYTES;
  	return __alloc_bootmem_nopanic(size, align, BOOTMEM_LOW_LIMIT);
  }
ad6492b80   Yinghai Lu   memblock, nobootm...
261
262
263
264
265
  static inline void * __init memblock_virt_alloc_low(
  					phys_addr_t size, phys_addr_t align)
  {
  	if (!align)
  		align = SMP_CACHE_BYTES;
07bacb382   Yinghai Lu   memblock, bootmem...
266
  	return __alloc_bootmem_low(size, align, 0);
ad6492b80   Yinghai Lu   memblock, nobootm...
267
268
269
270
271
272
273
  }
  
  static inline void * __init memblock_virt_alloc_low_nopanic(
  					phys_addr_t size, phys_addr_t align)
  {
  	if (!align)
  		align = SMP_CACHE_BYTES;
07bacb382   Yinghai Lu   memblock, bootmem...
274
  	return __alloc_bootmem_low_nopanic(size, align, 0);
ad6492b80   Yinghai Lu   memblock, nobootm...
275
  }
26f09e9b3   Santosh Shilimkar   mm/memblock: add ...
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
  static inline void * __init memblock_virt_alloc_from_nopanic(
  		phys_addr_t size, phys_addr_t align, phys_addr_t min_addr)
  {
  	return __alloc_bootmem_nopanic(size, align, min_addr);
  }
  
  static inline void * __init memblock_virt_alloc_node(
  						phys_addr_t size, int nid)
  {
  	return __alloc_bootmem_node(NODE_DATA(nid), size, SMP_CACHE_BYTES,
  				     BOOTMEM_LOW_LIMIT);
  }
  
  static inline void * __init memblock_virt_alloc_node_nopanic(
  						phys_addr_t size, int nid)
  {
  	return __alloc_bootmem_node_nopanic(NODE_DATA(nid), size,
  					     SMP_CACHE_BYTES,
  					     BOOTMEM_LOW_LIMIT);
  }
  
  static inline void * __init memblock_virt_alloc_try_nid(phys_addr_t size,
  	phys_addr_t align, phys_addr_t min_addr, phys_addr_t max_addr, int nid)
  {
  	return __alloc_bootmem_node_high(NODE_DATA(nid), size, align,
  					  min_addr);
  }
  
  static inline void * __init memblock_virt_alloc_try_nid_nopanic(
  			phys_addr_t size, phys_addr_t align,
  			phys_addr_t min_addr, phys_addr_t max_addr, int nid)
  {
  	return ___alloc_bootmem_node_nopanic(NODE_DATA(nid), size, align,
  				min_addr, max_addr);
  }
  
  static inline void __init memblock_free_early(
  					phys_addr_t base, phys_addr_t size)
  {
  	free_bootmem(base, size);
  }
  
  static inline void __init memblock_free_early_nid(
  				phys_addr_t base, phys_addr_t size, int nid)
  {
  	free_bootmem_node(NODE_DATA(nid), base, size);
  }
  
  static inline void __init memblock_free_late(
  					phys_addr_t base, phys_addr_t size)
  {
  	free_bootmem_late(base, size);
  }
  #endif /* defined(CONFIG_HAVE_MEMBLOCK) && defined(CONFIG_NO_BOOTMEM) */
6f167ec72   Dave Hansen   [PATCH] sparsemem...
330
331
332
333
334
335
336
  #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
  extern void *alloc_remap(int nid, unsigned long size);
  #else
  static inline void *alloc_remap(int nid, unsigned long size)
  {
  	return NULL;
  }
f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
337
  #endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */
6f167ec72   Dave Hansen   [PATCH] sparsemem...
338

f71bf0cac   Franck Bui-Huu   [PATCH] bootmem: ...
339
340
341
342
343
344
345
  extern void *alloc_large_system_hash(const char *tablename,
  				     unsigned long bucketsize,
  				     unsigned long numentries,
  				     int scale,
  				     int flags,
  				     unsigned int *_hash_shift,
  				     unsigned int *_hash_mask,
31fe62b95   Tim Bird   mm: add a low lim...
346
347
  				     unsigned long low_limit,
  				     unsigned long high_limit);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
348

049036643   Andrew Morton   [PATCH] remove HA...
349
  #define HASH_EARLY	0x00000001	/* Allocating during early boot? */
2c85f51d2   Jan Beulich   mm: also use allo...
350
351
  #define HASH_SMALL	0x00000002	/* sub-page allocation allowed, min
  					 * shift passed via *_hash_shift */
3749a8f00   Pavel Tatashin   mm: zero hash tab...
352
  #define HASH_ZERO	0x00000004	/* Zero allocated hash table */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353

c2fdf3a9b   Anton Blanchard   mm: enable hashdi...
354
355
  /* Only NUMA needs hash distribution. 64bit NUMA architectures have
   * sufficient vmalloc space.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
356
   */
a9919c793   Rasmus Villemoes   mm: only define h...
357
358
359
  #ifdef CONFIG_NUMA
  #define HASHDIST_DEFAULT IS_ENABLED(CONFIG_64BIT)
  extern int hashdist;		/* Distribute hashes across NUMA nodes? */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
360
  #else
a9919c793   Rasmus Villemoes   mm: only define h...
361
  #define hashdist (0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
362
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
363
364
365
  
  
  #endif /* _LINUX_BOOTMEM_H */