blob: 0f30bc873eccbc4a775e2eea6720bbeb5271f000 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/bootmem.c
3 *
4 * Copyright (C) 1999 Ingo Molnar
5 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
6 *
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.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070012#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070015
16#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/io.h>
Heiko Carstensdfd54cb2006-09-25 23:31:33 -070018#include <asm/processor.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "internal.h"
21
22/*
23 * Access to this subsystem has to be serialized externally. (this is
24 * true for the boot process anyway)
25 */
26unsigned long max_low_pfn;
27unsigned long min_low_pfn;
28unsigned long max_pfn;
29
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080030static LIST_HEAD(bdata_list);
Vivek Goyal92aa63a2005-06-25 14:58:18 -070031#ifdef CONFIG_CRASH_DUMP
32/*
33 * If we have booted due to a crash, max_pfn will be a very low value. We need
34 * to know the amount of memory that the previous kernel used.
35 */
36unsigned long saved_max_pfn;
37#endif
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* return the number of _pages_ that will be allocated for the boot bitmap */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070040unsigned long __init bootmem_bootmap_pages(unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 unsigned long mapsize;
43
44 mapsize = (pages+7)/8;
45 mapsize = (mapsize + ~PAGE_MASK) & PAGE_MASK;
46 mapsize >>= PAGE_SHIFT;
47
48 return mapsize;
49}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070050
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080051/*
52 * link bdata in order
53 */
Franck Bui-Huu69d49e62006-09-25 23:31:04 -070054static void __init link_bootmem(bootmem_data_t *bdata)
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080055{
56 bootmem_data_t *ent;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070057
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080058 if (list_empty(&bdata_list)) {
59 list_add(&bdata->list, &bdata_list);
60 return;
61 }
62 /* insert in order */
63 list_for_each_entry(ent, &bdata_list, list) {
64 if (bdata->node_boot_start < ent->node_boot_start) {
65 list_add_tail(&bdata->list, &ent->list);
66 return;
67 }
68 }
69 list_add_tail(&bdata->list, &bdata_list);
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080070}
71
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070072/*
73 * Given an initialised bdata, it returns the size of the boot bitmap
74 */
75static unsigned long __init get_mapsize(bootmem_data_t *bdata)
76{
77 unsigned long mapsize;
78 unsigned long start = PFN_DOWN(bdata->node_boot_start);
79 unsigned long end = bdata->node_low_pfn;
80
81 mapsize = ((end - start) + 7) / 8;
82 return ALIGN(mapsize, sizeof(long));
83}
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/*
86 * Called once to set up the allocator itself.
87 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070088static unsigned long __init init_bootmem_core(pg_data_t *pgdat,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 unsigned long mapstart, unsigned long start, unsigned long end)
90{
91 bootmem_data_t *bdata = pgdat->bdata;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070092 unsigned long mapsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070094 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
95 bdata->node_boot_start = PFN_PHYS(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 bdata->node_low_pfn = end;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080097 link_bootmem(bdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /*
100 * Initially all pages are reserved - setup_arch() has to
101 * register free RAM areas explicitly.
102 */
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700103 mapsize = get_mapsize(bdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 memset(bdata->node_bootmem_map, 0xff, mapsize);
105
106 return mapsize;
107}
108
109/*
110 * Marks a particular physical memory range as unallocatable. Usable RAM
111 * might be used for boot-time allocations - or it might get added
112 * to the free page pool later on.
113 */
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800114static int __init reserve_bootmem_core(bootmem_data_t *bdata,
115 unsigned long addr, unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700117 unsigned long sidx, eidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned long i;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800119 int ret;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /*
122 * round up, partially reserved pages are considered
123 * fully reserved.
124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 BUG_ON(!size);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700126 BUG_ON(PFN_DOWN(addr) >= bdata->node_low_pfn);
127 BUG_ON(PFN_UP(addr + size) > bdata->node_low_pfn);
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700128 BUG_ON(addr < bdata->node_boot_start);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700129
130 sidx = PFN_DOWN(addr - bdata->node_boot_start);
131 eidx = PFN_UP(addr + size - bdata->node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
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);
137#endif
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800138 if (flags & BOOTMEM_EXCLUSIVE) {
139 ret = -EBUSY;
140 goto err;
141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800143
144 return 0;
145
146err:
147 /* unreserve memory we accidentally reserved */
148 for (i--; i >= sidx; i--)
149 clear_bit(i, bdata->node_bootmem_map);
150
151 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700154static void __init free_bootmem_core(bootmem_data_t *bdata, unsigned long addr,
155 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700157 unsigned long sidx, eidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 unsigned long i;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700159
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700160 BUG_ON(!size);
161
162 /* out range */
163 if (addr + size < bdata->node_boot_start ||
164 PFN_DOWN(addr) > bdata->node_low_pfn)
165 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /*
167 * round down end of usable mem, partially free pages are
168 * considered reserved.
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700171 if (addr >= bdata->node_boot_start && addr < bdata->last_success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 bdata->last_success = addr;
173
174 /*
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700175 * Round up to index to the range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700177 if (PFN_UP(addr) > PFN_DOWN(bdata->node_boot_start))
178 sidx = PFN_UP(addr) - PFN_DOWN(bdata->node_boot_start);
179 else
180 sidx = 0;
181
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700182 eidx = PFN_DOWN(addr + size - bdata->node_boot_start);
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700183 if (eidx > bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start))
184 eidx = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 for (i = sidx; i < eidx; i++) {
187 if (unlikely(!test_and_clear_bit(i, bdata->node_bootmem_map)))
188 BUG();
189 }
190}
191
192/*
193 * We 'merge' subsequent allocations to save space. We might 'lose'
194 * some fraction of a page if allocations cannot be satisfied due to
195 * size constraints on boxes where there is physical RAM space
196 * fragmentation - in these cases (mostly large memory boxes) this
197 * is not a problem.
198 *
199 * On low memory boxes we get it right in 100% of the cases.
200 *
201 * alignment has to be a power of 2 value.
202 *
203 * NOTE: This function is _not_ reentrant.
204 */
Andi Kleen267b4802006-03-25 16:31:10 +0100205void * __init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206__alloc_bootmem_core(struct bootmem_data *bdata, unsigned long size,
Yasunori Goto281dd252005-10-19 15:52:18 -0700207 unsigned long align, unsigned long goal, unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700209 unsigned long areasize, preferred;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700210 unsigned long i, start = 0, incr, eidx, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 void *ret;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700212 unsigned long node_boot_start;
213 void *node_bootmem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700215 if (!size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 printk("__alloc_bootmem_core(): zero-sized request\n");
217 BUG();
218 }
219 BUG_ON(align & (align-1));
220
Christian Krafft7c309a62006-12-06 20:32:41 -0800221 /* on nodes without memory - bootmem_map is NULL */
222 if (!bdata->node_bootmem_map)
223 return NULL;
224
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700225 /* bdata->node_boot_start is supposed to be (12+6)bits alignment on x86_64 ? */
226 node_boot_start = bdata->node_boot_start;
227 node_bootmem_map = bdata->node_bootmem_map;
228 if (align) {
229 node_boot_start = ALIGN(bdata->node_boot_start, align);
230 if (node_boot_start > bdata->node_boot_start)
231 node_bootmem_map = (unsigned long *)bdata->node_bootmem_map +
232 PFN_DOWN(node_boot_start - bdata->node_boot_start)/BITS_PER_LONG;
233 }
234
235 if (limit && node_boot_start >= limit)
236 return NULL;
237
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700238 end_pfn = bdata->node_low_pfn;
239 limit = PFN_DOWN(limit);
Yasunori Goto281dd252005-10-19 15:52:18 -0700240 if (limit && end_pfn > limit)
241 end_pfn = limit;
242
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700243 eidx = end_pfn - PFN_DOWN(node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /*
246 * We try to allocate bootmem pages above 'goal'
247 * first, then we try to allocate lower pages.
248 */
Yinghai Luad093152008-03-10 23:23:42 -0700249 preferred = 0;
250 if (goal && PFN_DOWN(goal) < end_pfn) {
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700251 if (goal > node_boot_start)
252 preferred = goal - node_boot_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700254 if (bdata->last_success > node_boot_start &&
255 bdata->last_success - node_boot_start >= preferred)
Yasunori Goto281dd252005-10-19 15:52:18 -0700256 if (!limit || (limit && limit > bdata->last_success))
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700257 preferred = bdata->last_success - node_boot_start;
Yinghai Luad093152008-03-10 23:23:42 -0700258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700260 preferred = PFN_DOWN(ALIGN(preferred, align));
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700261 areasize = (size + PAGE_SIZE-1) / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 incr = align >> PAGE_SHIFT ? : 1;
263
264restart_scan:
Yinghai Luad093152008-03-10 23:23:42 -0700265 for (i = preferred; i < eidx;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 unsigned long j;
Yinghai Luad093152008-03-10 23:23:42 -0700267
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700268 i = find_next_zero_bit(node_bootmem_map, eidx, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 i = ALIGN(i, incr);
Haren Myneni66d43e92005-12-12 00:37:39 -0800270 if (i >= eidx)
271 break;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700272 if (test_bit(i, node_bootmem_map)) {
Yinghai Luad093152008-03-10 23:23:42 -0700273 i += incr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 continue;
Yinghai Luad093152008-03-10 23:23:42 -0700275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 for (j = i + 1; j < i + areasize; ++j) {
277 if (j >= eidx)
278 goto fail_block;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700279 if (test_bit(j, node_bootmem_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 goto fail_block;
281 }
282 start = i;
283 goto found;
284 fail_block:
285 i = ALIGN(j, incr);
Yinghai Luad093152008-03-10 23:23:42 -0700286 if (i == j)
287 i += incr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700290 if (preferred > 0) {
291 preferred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 goto restart_scan;
293 }
294 return NULL;
295
296found:
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700297 bdata->last_success = PFN_PHYS(start) + node_boot_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 BUG_ON(start >= eidx);
299
300 /*
301 * Is the next page of the previous allocation-end the start
302 * of this allocation's buffer? If yes then we can 'merge'
303 * the previous partial page with this allocation.
304 */
305 if (align < PAGE_SIZE &&
306 bdata->last_offset && bdata->last_pos+1 == start) {
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700307 unsigned long offset, remaining_size;
Nick Wilson8c0e33c2005-06-25 14:59:00 -0700308 offset = ALIGN(bdata->last_offset, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 BUG_ON(offset > PAGE_SIZE);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700310 remaining_size = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (size < remaining_size) {
312 areasize = 0;
313 /* last_pos unchanged */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700314 bdata->last_offset = offset + size;
315 ret = phys_to_virt(bdata->last_pos * PAGE_SIZE +
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700316 offset + node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } else {
318 remaining_size = size - remaining_size;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700319 areasize = (remaining_size + PAGE_SIZE-1) / PAGE_SIZE;
320 ret = phys_to_virt(bdata->last_pos * PAGE_SIZE +
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700321 offset + node_boot_start);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700322 bdata->last_pos = start + areasize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bdata->last_offset = remaining_size;
324 }
325 bdata->last_offset &= ~PAGE_MASK;
326 } else {
327 bdata->last_pos = start + areasize - 1;
328 bdata->last_offset = size & ~PAGE_MASK;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700329 ret = phys_to_virt(start * PAGE_SIZE + node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
332 /*
333 * Reserve the area now:
334 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700335 for (i = start; i < start + areasize; i++)
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700336 if (unlikely(test_and_set_bit(i, node_bootmem_map)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 BUG();
338 memset(ret, 0, size);
339 return ret;
340}
341
342static unsigned long __init free_all_bootmem_core(pg_data_t *pgdat)
343{
344 struct page *page;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700345 unsigned long pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 bootmem_data_t *bdata = pgdat->bdata;
347 unsigned long i, count, total = 0;
348 unsigned long idx;
349 unsigned long *map;
350 int gofast = 0;
351
352 BUG_ON(!bdata->node_bootmem_map);
353
354 count = 0;
355 /* first extant page of the node */
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700356 pfn = PFN_DOWN(bdata->node_boot_start);
357 idx = bdata->node_low_pfn - pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 map = bdata->node_bootmem_map;
359 /* Check physaddr is O(LOG2(BITS_PER_LONG)) page aligned */
360 if (bdata->node_boot_start == 0 ||
361 ffs(bdata->node_boot_start) - PAGE_SHIFT > ffs(BITS_PER_LONG))
362 gofast = 1;
363 for (i = 0; i < idx; ) {
364 unsigned long v = ~map[i / BITS_PER_LONG];
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (gofast && v == ~0UL) {
David Howellsa226f6c2006-01-06 00:11:08 -0800367 int order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700369 page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 count += BITS_PER_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 order = ffs(BITS_PER_LONG) - 1;
David Howellsa226f6c2006-01-06 00:11:08 -0800372 __free_pages_bootmem(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 i += BITS_PER_LONG;
374 page += BITS_PER_LONG;
375 } else if (v) {
376 unsigned long m;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700377
378 page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 for (m = 1; m && i < idx; m<<=1, page++, i++) {
380 if (v & m) {
381 count++;
David Howellsa226f6c2006-01-06 00:11:08 -0800382 __free_pages_bootmem(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384 }
385 } else {
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700386 i += BITS_PER_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700388 pfn += BITS_PER_LONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390 total += count;
391
392 /*
393 * Now free the allocator bitmap itself, it's not
394 * needed anymore:
395 */
396 page = virt_to_page(bdata->node_bootmem_map);
397 count = 0;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700398 idx = (get_mapsize(bdata) + PAGE_SIZE-1) >> PAGE_SHIFT;
399 for (i = 0; i < idx; i++, page++) {
David Howellsa226f6c2006-01-06 00:11:08 -0800400 __free_pages_bootmem(page, 0);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700401 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 total += count;
404 bdata->node_bootmem_map = NULL;
405
406 return total;
407}
408
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700409unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700410 unsigned long startpfn, unsigned long endpfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700412 return init_bootmem_core(pgdat, freepfn, startpfn, endpfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700415void __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800416 unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800418 reserve_bootmem_core(pgdat->bdata, physaddr, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700421void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
422 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 free_bootmem_core(pgdat->bdata, physaddr, size);
425}
426
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700427unsigned long __init free_all_bootmem_node(pg_data_t *pgdat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700429 return free_all_bootmem_core(pgdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700432unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 max_low_pfn = pages;
435 min_low_pfn = start;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700436 return init_bootmem_core(NODE_DATA(0), start, 0, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800440int __init reserve_bootmem(unsigned long addr, unsigned long size,
441 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800443 return reserve_bootmem_core(NODE_DATA(0)->bdata, addr, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
446
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700447void __init free_bootmem(unsigned long addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Yinghai Lu5a982cb2008-03-24 12:29:45 -0700449 bootmem_data_t *bdata;
450 list_for_each_entry(bdata, &bdata_list, list)
451 free_bootmem_core(bdata, addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700454unsigned long __init free_all_bootmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700456 return free_all_bootmem_core(NODE_DATA(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700459void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
460 unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800462 bootmem_data_t *bdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 void *ptr;
464
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700465 list_for_each_entry(bdata, &bdata_list, list) {
466 ptr = __alloc_bootmem_core(bdata, size, align, goal, 0);
467 if (ptr)
468 return ptr;
469 }
Andi Kleena8062232006-04-07 19:49:21 +0200470 return NULL;
471}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700473void * __init __alloc_bootmem(unsigned long size, unsigned long align,
474 unsigned long goal)
Andi Kleena8062232006-04-07 19:49:21 +0200475{
476 void *mem = __alloc_bootmem_nopanic(size,align,goal);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700477
Andi Kleena8062232006-04-07 19:49:21 +0200478 if (mem)
479 return mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /*
481 * Whoops, we cannot satisfy the allocation request.
482 */
483 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
484 panic("Out of memory");
485 return NULL;
486}
487
Yasunori Goto281dd252005-10-19 15:52:18 -0700488
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700489void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
490 unsigned long align, unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 void *ptr;
493
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800494 ptr = __alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (ptr)
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700496 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800498 return __alloc_bootmem(size, align, goal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700501#ifndef ARCH_LOW_ADDRESS_LIMIT
502#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
503#endif
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800504
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700505void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
506 unsigned long goal)
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800507{
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800508 bootmem_data_t *bdata;
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800509 void *ptr;
510
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700511 list_for_each_entry(bdata, &bdata_list, list) {
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700512 ptr = __alloc_bootmem_core(bdata, size, align, goal,
513 ARCH_LOW_ADDRESS_LIMIT);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700514 if (ptr)
515 return ptr;
516 }
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800517
518 /*
519 * Whoops, we cannot satisfy the allocation request.
520 */
521 printk(KERN_ALERT "low bootmem alloc of %lu bytes failed!\n", size);
522 panic("Out of low memory");
523 return NULL;
524}
525
526void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
527 unsigned long align, unsigned long goal)
528{
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700529 return __alloc_bootmem_core(pgdat->bdata, size, align, goal,
530 ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800531}