4 * Copyright (C) 1999 Ingo Molnar
5 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
7 * simple boot-time physical memory area allocator and
8 * free memory collector. It's used to deal with reserved
9 * system memory and memory holes as well.
11 #include <linux/init.h>
12 #include <linux/pfn.h>
13 #include <linux/bootmem.h>
14 #include <linux/module.h>
18 #include <asm/processor.h>
23 * Access to this subsystem has to be serialized externally. (this is
24 * true for the boot process anyway)
26 unsigned long max_low_pfn
;
27 unsigned long min_low_pfn
;
28 unsigned long max_pfn
;
30 EXPORT_UNUSED_SYMBOL(max_pfn
); /* June 2006 */
32 static LIST_HEAD(bdata_list
);
33 #ifdef CONFIG_CRASH_DUMP
35 * If we have booted due to a crash, max_pfn will be a very low value. We need
36 * to know the amount of memory that the previous kernel used.
38 unsigned long saved_max_pfn
;
41 /* return the number of _pages_ that will be allocated for the boot bitmap */
42 unsigned long __init
bootmem_bootmap_pages(unsigned long pages
)
44 unsigned long mapsize
;
46 mapsize
= (pages
+7)/8;
47 mapsize
= (mapsize
+ ~PAGE_MASK
) & PAGE_MASK
;
48 mapsize
>>= PAGE_SHIFT
;
56 static void __init
link_bootmem(bootmem_data_t
*bdata
)
60 if (list_empty(&bdata_list
)) {
61 list_add(&bdata
->list
, &bdata_list
);
65 list_for_each_entry(ent
, &bdata_list
, list
) {
66 if (bdata
->node_boot_start
< ent
->node_boot_start
) {
67 list_add_tail(&bdata
->list
, &ent
->list
);
71 list_add_tail(&bdata
->list
, &bdata_list
);
75 * Given an initialised bdata, it returns the size of the boot bitmap
77 static unsigned long __init
get_mapsize(bootmem_data_t
*bdata
)
79 unsigned long mapsize
;
80 unsigned long start
= PFN_DOWN(bdata
->node_boot_start
);
81 unsigned long end
= bdata
->node_low_pfn
;
83 mapsize
= ((end
- start
) + 7) / 8;
84 return ALIGN(mapsize
, sizeof(long));
88 * Called once to set up the allocator itself.
90 static unsigned long __init
init_bootmem_core(pg_data_t
*pgdat
,
91 unsigned long mapstart
, unsigned long start
, unsigned long end
)
93 bootmem_data_t
*bdata
= pgdat
->bdata
;
94 unsigned long mapsize
;
96 bdata
->node_bootmem_map
= phys_to_virt(PFN_PHYS(mapstart
));
97 bdata
->node_boot_start
= PFN_PHYS(start
);
98 bdata
->node_low_pfn
= end
;
102 * Initially all pages are reserved - setup_arch() has to
103 * register free RAM areas explicitly.
105 mapsize
= get_mapsize(bdata
);
106 memset(bdata
->node_bootmem_map
, 0xff, mapsize
);
112 * Marks a particular physical memory range as unallocatable. Usable RAM
113 * might be used for boot-time allocations - or it might get added
114 * to the free page pool later on.
116 static void __init
reserve_bootmem_core(bootmem_data_t
*bdata
, unsigned long addr
,
119 unsigned long sidx
, eidx
;
123 * round up, partially reserved pages are considered
127 BUG_ON(PFN_DOWN(addr
) >= bdata
->node_low_pfn
);
128 BUG_ON(PFN_UP(addr
+ size
) > bdata
->node_low_pfn
);
130 sidx
= PFN_DOWN(addr
- bdata
->node_boot_start
);
131 eidx
= PFN_UP(addr
+ size
- bdata
->node_boot_start
);
133 for (i
= sidx
; i
< eidx
; i
++)
134 if (test_and_set_bit(i
, bdata
->node_bootmem_map
)) {
135 #ifdef CONFIG_DEBUG_BOOTMEM
136 printk("hm, page %08lx reserved twice.\n", i
*PAGE_SIZE
);
141 static void __init
free_bootmem_core(bootmem_data_t
*bdata
, unsigned long addr
,
144 unsigned long sidx
, eidx
;
148 * round down end of usable mem, partially free pages are
149 * considered reserved.
152 BUG_ON(PFN_DOWN(addr
+ size
) > bdata
->node_low_pfn
);
154 if (addr
< bdata
->last_success
)
155 bdata
->last_success
= addr
;
158 * Round up the beginning of the address.
160 sidx
= PFN_UP(addr
) - PFN_DOWN(bdata
->node_boot_start
);
161 eidx
= PFN_DOWN(addr
+ size
- bdata
->node_boot_start
);
163 for (i
= sidx
; i
< eidx
; i
++) {
164 if (unlikely(!test_and_clear_bit(i
, bdata
->node_bootmem_map
)))
170 * We 'merge' subsequent allocations to save space. We might 'lose'
171 * some fraction of a page if allocations cannot be satisfied due to
172 * size constraints on boxes where there is physical RAM space
173 * fragmentation - in these cases (mostly large memory boxes) this
176 * On low memory boxes we get it right in 100% of the cases.
178 * alignment has to be a power of 2 value.
180 * NOTE: This function is _not_ reentrant.
183 __alloc_bootmem_core(struct bootmem_data
*bdata
, unsigned long size
,
184 unsigned long align
, unsigned long goal
, unsigned long limit
)
186 unsigned long offset
, remaining_size
, areasize
, preferred
;
187 unsigned long i
, start
= 0, incr
, eidx
, end_pfn
;
191 printk("__alloc_bootmem_core(): zero-sized request\n");
194 BUG_ON(align
& (align
-1));
196 if (limit
&& bdata
->node_boot_start
>= limit
)
199 end_pfn
= bdata
->node_low_pfn
;
200 limit
= PFN_DOWN(limit
);
201 if (limit
&& end_pfn
> limit
)
204 eidx
= end_pfn
- PFN_DOWN(bdata
->node_boot_start
);
206 if (align
&& (bdata
->node_boot_start
& (align
- 1UL)) != 0)
207 offset
= align
- (bdata
->node_boot_start
& (align
- 1UL));
208 offset
= PFN_DOWN(offset
);
211 * We try to allocate bootmem pages above 'goal'
212 * first, then we try to allocate lower pages.
214 if (goal
&& goal
>= bdata
->node_boot_start
&& PFN_DOWN(goal
) < end_pfn
) {
215 preferred
= goal
- bdata
->node_boot_start
;
217 if (bdata
->last_success
>= preferred
)
218 if (!limit
|| (limit
&& limit
> bdata
->last_success
))
219 preferred
= bdata
->last_success
;
223 preferred
= PFN_DOWN(ALIGN(preferred
, align
)) + offset
;
224 areasize
= (size
+ PAGE_SIZE
-1) / PAGE_SIZE
;
225 incr
= align
>> PAGE_SHIFT
? : 1;
228 for (i
= preferred
; i
< eidx
; i
+= incr
) {
230 i
= find_next_zero_bit(bdata
->node_bootmem_map
, eidx
, i
);
234 if (test_bit(i
, bdata
->node_bootmem_map
))
236 for (j
= i
+ 1; j
< i
+ areasize
; ++j
) {
239 if (test_bit(j
, bdata
->node_bootmem_map
))
248 if (preferred
> offset
) {
255 bdata
->last_success
= PFN_PHYS(start
);
256 BUG_ON(start
>= eidx
);
259 * Is the next page of the previous allocation-end the start
260 * of this allocation's buffer? If yes then we can 'merge'
261 * the previous partial page with this allocation.
263 if (align
< PAGE_SIZE
&&
264 bdata
->last_offset
&& bdata
->last_pos
+1 == start
) {
265 offset
= ALIGN(bdata
->last_offset
, align
);
266 BUG_ON(offset
> PAGE_SIZE
);
267 remaining_size
= PAGE_SIZE
- offset
;
268 if (size
< remaining_size
) {
270 /* last_pos unchanged */
271 bdata
->last_offset
= offset
+ size
;
272 ret
= phys_to_virt(bdata
->last_pos
* PAGE_SIZE
+
274 bdata
->node_boot_start
);
276 remaining_size
= size
- remaining_size
;
277 areasize
= (remaining_size
+ PAGE_SIZE
-1) / PAGE_SIZE
;
278 ret
= phys_to_virt(bdata
->last_pos
* PAGE_SIZE
+
280 bdata
->node_boot_start
);
281 bdata
->last_pos
= start
+ areasize
- 1;
282 bdata
->last_offset
= remaining_size
;
284 bdata
->last_offset
&= ~PAGE_MASK
;
286 bdata
->last_pos
= start
+ areasize
- 1;
287 bdata
->last_offset
= size
& ~PAGE_MASK
;
288 ret
= phys_to_virt(start
* PAGE_SIZE
+ bdata
->node_boot_start
);
292 * Reserve the area now:
294 for (i
= start
; i
< start
+ areasize
; i
++)
295 if (unlikely(test_and_set_bit(i
, bdata
->node_bootmem_map
)))
297 memset(ret
, 0, size
);
301 static unsigned long __init
free_all_bootmem_core(pg_data_t
*pgdat
)
305 bootmem_data_t
*bdata
= pgdat
->bdata
;
306 unsigned long i
, count
, total
= 0;
311 BUG_ON(!bdata
->node_bootmem_map
);
314 /* first extant page of the node */
315 pfn
= PFN_DOWN(bdata
->node_boot_start
);
316 idx
= bdata
->node_low_pfn
- pfn
;
317 map
= bdata
->node_bootmem_map
;
318 /* Check physaddr is O(LOG2(BITS_PER_LONG)) page aligned */
319 if (bdata
->node_boot_start
== 0 ||
320 ffs(bdata
->node_boot_start
) - PAGE_SHIFT
> ffs(BITS_PER_LONG
))
322 for (i
= 0; i
< idx
; ) {
323 unsigned long v
= ~map
[i
/ BITS_PER_LONG
];
325 if (gofast
&& v
== ~0UL) {
328 page
= pfn_to_page(pfn
);
329 count
+= BITS_PER_LONG
;
330 order
= ffs(BITS_PER_LONG
) - 1;
331 __free_pages_bootmem(page
, order
);
333 page
+= BITS_PER_LONG
;
337 page
= pfn_to_page(pfn
);
338 for (m
= 1; m
&& i
< idx
; m
<<=1, page
++, i
++) {
341 __free_pages_bootmem(page
, 0);
347 pfn
+= BITS_PER_LONG
;
352 * Now free the allocator bitmap itself, it's not
355 page
= virt_to_page(bdata
->node_bootmem_map
);
357 idx
= (get_mapsize(bdata
) + PAGE_SIZE
-1) >> PAGE_SHIFT
;
358 for (i
= 0; i
< idx
; i
++, page
++) {
359 __free_pages_bootmem(page
, 0);
363 bdata
->node_bootmem_map
= NULL
;
368 unsigned long __init
init_bootmem_node(pg_data_t
*pgdat
, unsigned long freepfn
,
369 unsigned long startpfn
, unsigned long endpfn
)
371 return init_bootmem_core(pgdat
, freepfn
, startpfn
, endpfn
);
374 void __init
reserve_bootmem_node(pg_data_t
*pgdat
, unsigned long physaddr
,
377 reserve_bootmem_core(pgdat
->bdata
, physaddr
, size
);
380 void __init
free_bootmem_node(pg_data_t
*pgdat
, unsigned long physaddr
,
383 free_bootmem_core(pgdat
->bdata
, physaddr
, size
);
386 unsigned long __init
free_all_bootmem_node(pg_data_t
*pgdat
)
388 return free_all_bootmem_core(pgdat
);
391 unsigned long __init
init_bootmem(unsigned long start
, unsigned long pages
)
395 return init_bootmem_core(NODE_DATA(0), start
, 0, pages
);
398 #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
399 void __init
reserve_bootmem(unsigned long addr
, unsigned long size
)
401 reserve_bootmem_core(NODE_DATA(0)->bdata
, addr
, size
);
403 #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
405 void __init
free_bootmem(unsigned long addr
, unsigned long size
)
407 free_bootmem_core(NODE_DATA(0)->bdata
, addr
, size
);
410 unsigned long __init
free_all_bootmem(void)
412 return free_all_bootmem_core(NODE_DATA(0));
415 void * __init
__alloc_bootmem_nopanic(unsigned long size
, unsigned long align
,
418 bootmem_data_t
*bdata
;
421 list_for_each_entry(bdata
, &bdata_list
, list
) {
422 ptr
= __alloc_bootmem_core(bdata
, size
, align
, goal
, 0);
429 void * __init
__alloc_bootmem(unsigned long size
, unsigned long align
,
432 void *mem
= __alloc_bootmem_nopanic(size
,align
,goal
);
437 * Whoops, we cannot satisfy the allocation request.
439 printk(KERN_ALERT
"bootmem alloc of %lu bytes failed!\n", size
);
440 panic("Out of memory");
445 void * __init
__alloc_bootmem_node(pg_data_t
*pgdat
, unsigned long size
,
446 unsigned long align
, unsigned long goal
)
450 ptr
= __alloc_bootmem_core(pgdat
->bdata
, size
, align
, goal
, 0);
454 return __alloc_bootmem(size
, align
, goal
);
457 #ifndef ARCH_LOW_ADDRESS_LIMIT
458 #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
461 void * __init
__alloc_bootmem_low(unsigned long size
, unsigned long align
,
464 bootmem_data_t
*bdata
;
467 list_for_each_entry(bdata
, &bdata_list
, list
) {
468 ptr
= __alloc_bootmem_core(bdata
, size
, align
, goal
,
469 ARCH_LOW_ADDRESS_LIMIT
);
475 * Whoops, we cannot satisfy the allocation request.
477 printk(KERN_ALERT
"low bootmem alloc of %lu bytes failed!\n", size
);
478 panic("Out of low memory");
482 void * __init
__alloc_bootmem_low_node(pg_data_t
*pgdat
, unsigned long size
,
483 unsigned long align
, unsigned long goal
)
485 return __alloc_bootmem_core(pgdat
->bdata
, size
, align
, goal
,
486 ARCH_LOW_ADDRESS_LIMIT
);