blob: 300d126ec533be0a575d2cdafc76af75b4883569 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Johannes Weiner57cfc292008-07-23 21:28:00 -07002 * bootmem - A boot-time physical memory allocator and configurator
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999 Ingo Molnar
Johannes Weiner57cfc292008-07-23 21:28:00 -07005 * 1999 Kanoj Sarcar, SGI
6 * 2008 Johannes Weiner
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Johannes Weiner57cfc292008-07-23 21:28:00 -07008 * Access to this subsystem has to be serialized externally (which is true
9 * for the boot process anyway).
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022unsigned long max_low_pfn;
23unsigned long min_low_pfn;
24unsigned long max_pfn;
25
Vivek Goyal92aa63a2005-06-25 14:58:18 -070026#ifdef CONFIG_CRASH_DUMP
27/*
28 * If we have booted due to a crash, max_pfn will be a very low value. We need
29 * to know the amount of memory that the previous kernel used.
30 */
31unsigned long saved_max_pfn;
32#endif
33
Johannes Weinerb61bfa32008-07-23 21:26:55 -070034bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata;
35
Johannes Weiner636cc402008-07-23 21:28:03 -070036static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list);
37
Johannes Weiner2e5237d2008-07-23 21:28:02 -070038static int bootmem_debug;
39
40static int __init bootmem_debug_setup(char *buf)
41{
42 bootmem_debug = 1;
43 return 0;
44}
45early_param("bootmem_debug", bootmem_debug_setup);
46
47#define bdebug(fmt, args...) ({ \
48 if (unlikely(bootmem_debug)) \
49 printk(KERN_INFO \
50 "bootmem::%s " fmt, \
51 __FUNCTION__, ## args); \
52})
53
Johannes Weinerdf049a52008-07-23 21:28:02 -070054static unsigned long __init bootmap_bytes(unsigned long pages)
Johannes Weiner223e8dc2008-07-23 21:28:00 -070055{
Johannes Weinerdf049a52008-07-23 21:28:02 -070056 unsigned long bytes = (pages + 7) / 8;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070057
Johannes Weinerdf049a52008-07-23 21:28:02 -070058 return ALIGN(bytes, sizeof(long));
Johannes Weiner223e8dc2008-07-23 21:28:00 -070059}
60
Johannes Weinera66fd7d2008-07-23 21:28:01 -070061/**
62 * bootmem_bootmap_pages - calculate bitmap size in pages
63 * @pages: number of pages the bitmap has to represent
64 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070065unsigned long __init bootmem_bootmap_pages(unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Johannes Weinerdf049a52008-07-23 21:28:02 -070067 unsigned long bytes = bootmap_bytes(pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Johannes Weinerdf049a52008-07-23 21:28:02 -070069 return PAGE_ALIGN(bytes) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070071
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080072/*
73 * link bdata in order
74 */
Franck Bui-Huu69d49e62006-09-25 23:31:04 -070075static void __init link_bootmem(bootmem_data_t *bdata)
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080076{
Johannes Weiner636cc402008-07-23 21:28:03 -070077 struct list_head *iter;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070078
Johannes Weiner636cc402008-07-23 21:28:03 -070079 list_for_each(iter, &bdata_list) {
80 bootmem_data_t *ent;
81
82 ent = list_entry(iter, bootmem_data_t, list);
83 if (bdata->node_boot_start < ent->node_boot_start)
84 break;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080085 }
Johannes Weiner636cc402008-07-23 21:28:03 -070086 list_add_tail(&bdata->list, iter);
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080087}
88
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070089/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * Called once to set up the allocator itself.
91 */
Johannes Weiner8ae04462008-07-23 21:26:59 -070092static unsigned long __init init_bootmem_core(bootmem_data_t *bdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned long mapstart, unsigned long start, unsigned long end)
94{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070095 unsigned long mapsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Mel Gorman2dbb51c2008-07-23 21:26:52 -070097 mminit_validate_memmodel_limits(&start, &end);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070098 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
99 bdata->node_boot_start = PFN_PHYS(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 bdata->node_low_pfn = end;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800101 link_bootmem(bdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /*
104 * Initially all pages are reserved - setup_arch() has to
105 * register free RAM areas explicitly.
106 */
Johannes Weinerdf049a52008-07-23 21:28:02 -0700107 mapsize = bootmap_bytes(end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 memset(bdata->node_bootmem_map, 0xff, mapsize);
109
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700110 bdebug("nid=%td start=%lx map=%lx end=%lx mapsize=%lx\n",
111 bdata - bootmem_node_data, start, mapstart, end, mapsize);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return mapsize;
114}
115
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700116/**
117 * init_bootmem_node - register a node as boot memory
118 * @pgdat: node to register
119 * @freepfn: pfn where the bitmap for this node is to be placed
120 * @startpfn: first pfn on the node
121 * @endpfn: first pfn after the node
122 *
123 * Returns the number of bytes needed to hold the bitmap for this node.
124 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700125unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
126 unsigned long startpfn, unsigned long endpfn)
127{
128 return init_bootmem_core(pgdat->bdata, freepfn, startpfn, endpfn);
129}
130
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700131/**
132 * init_bootmem - register boot memory
133 * @start: pfn where the bitmap is to be placed
134 * @pages: number of available physical pages
135 *
136 * Returns the number of bytes needed to hold the bitmap.
137 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700138unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
139{
140 max_low_pfn = pages;
141 min_low_pfn = start;
142 return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages);
143}
144
145static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
146{
Johannes Weiner41546c12008-07-23 21:28:03 -0700147 int aligned;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700148 struct page *page;
Johannes Weiner41546c12008-07-23 21:28:03 -0700149 unsigned long start, end, pages, count = 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700150
Johannes Weiner41546c12008-07-23 21:28:03 -0700151 if (!bdata->node_bootmem_map)
152 return 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700153
Johannes Weiner41546c12008-07-23 21:28:03 -0700154 start = PFN_DOWN(bdata->node_boot_start);
155 end = bdata->node_low_pfn;
156
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700157 /*
Johannes Weiner41546c12008-07-23 21:28:03 -0700158 * If the start is aligned to the machines wordsize, we might
159 * be able to free pages in bulks of that order.
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700160 */
Johannes Weiner41546c12008-07-23 21:28:03 -0700161 aligned = !(start & (BITS_PER_LONG - 1));
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700162
Johannes Weiner41546c12008-07-23 21:28:03 -0700163 bdebug("nid=%td start=%lx end=%lx aligned=%d\n",
164 bdata - bootmem_node_data, start, end, aligned);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700165
Johannes Weiner41546c12008-07-23 21:28:03 -0700166 while (start < end) {
167 unsigned long *map, idx, vec;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700168
Johannes Weiner41546c12008-07-23 21:28:03 -0700169 map = bdata->node_bootmem_map;
170 idx = start - PFN_DOWN(bdata->node_boot_start);
171 vec = ~map[idx / BITS_PER_LONG];
172
173 if (aligned && vec == ~0UL && start + BITS_PER_LONG < end) {
174 int order = ilog2(BITS_PER_LONG);
175
176 __free_pages_bootmem(pfn_to_page(start), order);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700177 count += BITS_PER_LONG;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700178 } else {
Johannes Weiner41546c12008-07-23 21:28:03 -0700179 unsigned long off = 0;
180
181 while (vec && off < BITS_PER_LONG) {
182 if (vec & 1) {
183 page = pfn_to_page(start + off);
184 __free_pages_bootmem(page, 0);
185 count++;
186 }
187 vec >>= 1;
188 off++;
189 }
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700190 }
Johannes Weiner41546c12008-07-23 21:28:03 -0700191 start += BITS_PER_LONG;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700192 }
193
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700194 page = virt_to_page(bdata->node_bootmem_map);
Johannes Weinerdf049a52008-07-23 21:28:02 -0700195 pages = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
Johannes Weiner41546c12008-07-23 21:28:03 -0700196 pages = bootmem_bootmap_pages(pages);
197 count += pages;
198 while (pages--)
199 __free_pages_bootmem(page++, 0);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700200
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700201 bdebug("nid=%td released=%lx\n", bdata - bootmem_node_data, count);
202
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700203 return count;
204}
205
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700206/**
207 * free_all_bootmem_node - release a node's free pages to the buddy allocator
208 * @pgdat: node to be released
209 *
210 * Returns the number of pages actually released.
211 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700212unsigned long __init free_all_bootmem_node(pg_data_t *pgdat)
213{
214 register_page_bootmem_info_node(pgdat);
215 return free_all_bootmem_core(pgdat->bdata);
216}
217
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700218/**
219 * free_all_bootmem - release free pages to the buddy allocator
220 *
221 * Returns the number of pages actually released.
222 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700223unsigned long __init free_all_bootmem(void)
224{
225 return free_all_bootmem_core(NODE_DATA(0)->bdata);
226}
227
228static void __init free_bootmem_core(bootmem_data_t *bdata, unsigned long addr,
229 unsigned long size)
230{
231 unsigned long sidx, eidx;
232 unsigned long i;
233
234 BUG_ON(!size);
235
236 /* out range */
237 if (addr + size < bdata->node_boot_start ||
238 PFN_DOWN(addr) > bdata->node_low_pfn)
239 return;
240 /*
241 * round down end of usable mem, partially free pages are
242 * considered reserved.
243 */
244
245 if (addr >= bdata->node_boot_start && addr < bdata->last_success)
246 bdata->last_success = addr;
247
248 /*
249 * Round up to index to the range.
250 */
251 if (PFN_UP(addr) > PFN_DOWN(bdata->node_boot_start))
252 sidx = PFN_UP(addr) - PFN_DOWN(bdata->node_boot_start);
253 else
254 sidx = 0;
255
256 eidx = PFN_DOWN(addr + size - bdata->node_boot_start);
257 if (eidx > bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start))
258 eidx = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
259
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700260 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
261 sidx + PFN_DOWN(bdata->node_boot_start),
262 eidx + PFN_DOWN(bdata->node_boot_start));
263
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700264 for (i = sidx; i < eidx; i++) {
265 if (unlikely(!test_and_clear_bit(i, bdata->node_bootmem_map)))
266 BUG();
267 }
268}
269
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700270/**
271 * free_bootmem_node - mark a page range as usable
272 * @pgdat: node the range resides on
273 * @physaddr: starting address of the range
274 * @size: size of the range in bytes
275 *
276 * Partial pages will be considered reserved and left as they are.
277 *
278 * Only physical pages that actually reside on @pgdat are marked.
279 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700280void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
281 unsigned long size)
282{
283 free_bootmem_core(pgdat->bdata, physaddr, size);
284}
285
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700286/**
287 * free_bootmem - mark a page range as usable
288 * @addr: starting address of the range
289 * @size: size of the range in bytes
290 *
291 * Partial pages will be considered reserved and left as they are.
292 *
293 * All physical pages within the range are marked, no matter what
294 * node they reside on.
295 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700296void __init free_bootmem(unsigned long addr, unsigned long size)
297{
298 bootmem_data_t *bdata;
299 list_for_each_entry(bdata, &bdata_list, list)
300 free_bootmem_core(bdata, addr, size);
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * Marks a particular physical memory range as unallocatable. Usable RAM
305 * might be used for boot-time allocations - or it might get added
306 * to the free page pool later on.
307 */
Yinghai Lua5645a62008-03-18 12:49:12 -0700308static int __init can_reserve_bootmem_core(bootmem_data_t *bdata,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800309 unsigned long addr, unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700311 unsigned long sidx, eidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 unsigned long i;
Yinghai Lua5645a62008-03-18 12:49:12 -0700313
314 BUG_ON(!size);
315
316 /* out of range, don't hold other */
317 if (addr + size < bdata->node_boot_start ||
318 PFN_DOWN(addr) > bdata->node_low_pfn)
319 return 0;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /*
Yinghai Lua5645a62008-03-18 12:49:12 -0700322 * Round up to index to the range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
Yinghai Lua5645a62008-03-18 12:49:12 -0700324 if (addr > bdata->node_boot_start)
325 sidx= PFN_DOWN(addr - bdata->node_boot_start);
326 else
327 sidx = 0;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700328
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700329 eidx = PFN_UP(addr + size - bdata->node_boot_start);
Yinghai Lua5645a62008-03-18 12:49:12 -0700330 if (eidx > bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start))
331 eidx = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Yinghai Lua5645a62008-03-18 12:49:12 -0700333 for (i = sidx; i < eidx; i++) {
334 if (test_bit(i, bdata->node_bootmem_map)) {
335 if (flags & BOOTMEM_EXCLUSIVE)
336 return -EBUSY;
337 }
338 }
339
340 return 0;
341
342}
343
344static void __init reserve_bootmem_core(bootmem_data_t *bdata,
345 unsigned long addr, unsigned long size, int flags)
346{
347 unsigned long sidx, eidx;
348 unsigned long i;
349
350 BUG_ON(!size);
351
352 /* out of range */
353 if (addr + size < bdata->node_boot_start ||
354 PFN_DOWN(addr) > bdata->node_low_pfn)
355 return;
356
357 /*
358 * Round up to index to the range.
359 */
360 if (addr > bdata->node_boot_start)
361 sidx= PFN_DOWN(addr - bdata->node_boot_start);
362 else
363 sidx = 0;
364
365 eidx = PFN_UP(addr + size - bdata->node_boot_start);
366 if (eidx > bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start))
367 eidx = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
368
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700369 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
370 bdata - bootmem_node_data,
371 sidx + PFN_DOWN(bdata->node_boot_start),
372 eidx + PFN_DOWN(bdata->node_boot_start),
373 flags);
374
375 for (i = sidx; i < eidx; i++)
376 if (test_and_set_bit(i, bdata->node_bootmem_map))
377 bdebug("hm, page %lx reserved twice.\n",
378 PFN_DOWN(bdata->node_boot_start) + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700381/**
382 * reserve_bootmem_node - mark a page range as reserved
383 * @pgdat: node the range resides on
384 * @physaddr: starting address of the range
385 * @size: size of the range in bytes
386 * @flags: reservation flags (see linux/bootmem.h)
387 *
388 * Partial pages will be reserved.
389 *
390 * Only physical pages that actually reside on @pgdat are marked.
391 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700392int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
393 unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700395 int ret;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700396
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700397 ret = can_reserve_bootmem_core(pgdat->bdata, physaddr, size, flags);
398 if (ret < 0)
399 return -ENOMEM;
400 reserve_bootmem_core(pgdat->bdata, physaddr, size, flags);
401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700404#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700405/**
406 * reserve_bootmem - mark a page range as usable
407 * @addr: starting address of the range
408 * @size: size of the range in bytes
409 * @flags: reservation flags (see linux/bootmem.h)
410 *
411 * Partial pages will be reserved.
412 *
413 * All physical pages within the range are marked, no matter what
414 * node they reside on.
415 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700416int __init reserve_bootmem(unsigned long addr, unsigned long size,
417 int flags)
418{
419 bootmem_data_t *bdata;
420 int ret;
421
422 list_for_each_entry(bdata, &bdata_list, list) {
423 ret = can_reserve_bootmem_core(bdata, addr, size, flags);
424 if (ret < 0)
425 return ret;
426 }
427 list_for_each_entry(bdata, &bdata_list, list)
428 reserve_bootmem_core(bdata, addr, size, flags);
429
430 return 0;
431}
432#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
435 * We 'merge' subsequent allocations to save space. We might 'lose'
436 * some fraction of a page if allocations cannot be satisfied due to
437 * size constraints on boxes where there is physical RAM space
438 * fragmentation - in these cases (mostly large memory boxes) this
439 * is not a problem.
440 *
441 * On low memory boxes we get it right in 100% of the cases.
442 *
443 * alignment has to be a power of 2 value.
444 *
445 * NOTE: This function is _not_ reentrant.
446 */
Johannes Weinerffc64212008-07-23 21:26:59 -0700447static void * __init
448alloc_bootmem_core(struct bootmem_data *bdata, unsigned long size,
449 unsigned long align, unsigned long goal, unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700451 unsigned long areasize, preferred;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700452 unsigned long i, start = 0, incr, eidx, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 void *ret;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700454 unsigned long node_boot_start;
455 void *node_bootmem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700457 if (!size) {
Johannes Weinerffc64212008-07-23 21:26:59 -0700458 printk("alloc_bootmem_core(): zero-sized request\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 BUG();
460 }
461 BUG_ON(align & (align-1));
462
Christian Krafft7c309a62006-12-06 20:32:41 -0800463 /* on nodes without memory - bootmem_map is NULL */
464 if (!bdata->node_bootmem_map)
465 return NULL;
466
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700467 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
468 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
469 align, goal, limit);
470
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700471 /* bdata->node_boot_start is supposed to be (12+6)bits alignment on x86_64 ? */
472 node_boot_start = bdata->node_boot_start;
473 node_bootmem_map = bdata->node_bootmem_map;
474 if (align) {
475 node_boot_start = ALIGN(bdata->node_boot_start, align);
476 if (node_boot_start > bdata->node_boot_start)
477 node_bootmem_map = (unsigned long *)bdata->node_bootmem_map +
478 PFN_DOWN(node_boot_start - bdata->node_boot_start)/BITS_PER_LONG;
479 }
480
481 if (limit && node_boot_start >= limit)
482 return NULL;
483
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700484 end_pfn = bdata->node_low_pfn;
485 limit = PFN_DOWN(limit);
Yasunori Goto281dd252005-10-19 15:52:18 -0700486 if (limit && end_pfn > limit)
487 end_pfn = limit;
488
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700489 eidx = end_pfn - PFN_DOWN(node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /*
492 * We try to allocate bootmem pages above 'goal'
493 * first, then we try to allocate lower pages.
494 */
Yinghai Luad093152008-03-10 23:23:42 -0700495 preferred = 0;
496 if (goal && PFN_DOWN(goal) < end_pfn) {
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700497 if (goal > node_boot_start)
498 preferred = goal - node_boot_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700500 if (bdata->last_success > node_boot_start &&
501 bdata->last_success - node_boot_start >= preferred)
Yasunori Goto281dd252005-10-19 15:52:18 -0700502 if (!limit || (limit && limit > bdata->last_success))
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700503 preferred = bdata->last_success - node_boot_start;
Yinghai Luad093152008-03-10 23:23:42 -0700504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700506 preferred = PFN_DOWN(ALIGN(preferred, align));
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700507 areasize = (size + PAGE_SIZE-1) / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 incr = align >> PAGE_SHIFT ? : 1;
509
510restart_scan:
Yinghai Luad093152008-03-10 23:23:42 -0700511 for (i = preferred; i < eidx;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 unsigned long j;
Yinghai Luad093152008-03-10 23:23:42 -0700513
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700514 i = find_next_zero_bit(node_bootmem_map, eidx, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 i = ALIGN(i, incr);
Haren Myneni66d43e92005-12-12 00:37:39 -0800516 if (i >= eidx)
517 break;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700518 if (test_bit(i, node_bootmem_map)) {
Yinghai Luad093152008-03-10 23:23:42 -0700519 i += incr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 continue;
Yinghai Luad093152008-03-10 23:23:42 -0700521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 for (j = i + 1; j < i + areasize; ++j) {
523 if (j >= eidx)
524 goto fail_block;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700525 if (test_bit(j, node_bootmem_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 goto fail_block;
527 }
528 start = i;
529 goto found;
530 fail_block:
531 i = ALIGN(j, incr);
Yinghai Luad093152008-03-10 23:23:42 -0700532 if (i == j)
533 i += incr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700536 if (preferred > 0) {
537 preferred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto restart_scan;
539 }
540 return NULL;
541
542found:
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700543 bdata->last_success = PFN_PHYS(start) + node_boot_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 BUG_ON(start >= eidx);
545
546 /*
547 * Is the next page of the previous allocation-end the start
548 * of this allocation's buffer? If yes then we can 'merge'
549 * the previous partial page with this allocation.
550 */
551 if (align < PAGE_SIZE &&
552 bdata->last_offset && bdata->last_pos+1 == start) {
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700553 unsigned long offset, remaining_size;
Nick Wilson8c0e33c2005-06-25 14:59:00 -0700554 offset = ALIGN(bdata->last_offset, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 BUG_ON(offset > PAGE_SIZE);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700556 remaining_size = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (size < remaining_size) {
558 areasize = 0;
559 /* last_pos unchanged */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700560 bdata->last_offset = offset + size;
561 ret = phys_to_virt(bdata->last_pos * PAGE_SIZE +
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700562 offset + node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 } else {
564 remaining_size = size - remaining_size;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700565 areasize = (remaining_size + PAGE_SIZE-1) / PAGE_SIZE;
566 ret = phys_to_virt(bdata->last_pos * PAGE_SIZE +
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700567 offset + node_boot_start);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700568 bdata->last_pos = start + areasize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 bdata->last_offset = remaining_size;
570 }
571 bdata->last_offset &= ~PAGE_MASK;
572 } else {
573 bdata->last_pos = start + areasize - 1;
574 bdata->last_offset = size & ~PAGE_MASK;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700575 ret = phys_to_virt(start * PAGE_SIZE + node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700578 bdebug("nid=%td start=%lx end=%lx\n",
579 bdata - bootmem_node_data,
580 start + PFN_DOWN(bdata->node_boot_start),
581 start + areasize + PFN_DOWN(bdata->node_boot_start));
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /*
584 * Reserve the area now:
585 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700586 for (i = start; i < start + areasize; i++)
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700587 if (unlikely(test_and_set_bit(i, node_bootmem_map)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 BUG();
589 memset(ret, 0, size);
590 return ret;
591}
592
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700593/**
594 * __alloc_bootmem_nopanic - allocate boot memory without panicking
595 * @size: size of the request in bytes
596 * @align: alignment of the region
597 * @goal: preferred starting address of the region
598 *
599 * The goal is dropped if it can not be satisfied and the allocation will
600 * fall back to memory below @goal.
601 *
602 * Allocation may happen on any node in the system.
603 *
604 * Returns NULL on failure.
605 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700606void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
607 unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800609 bootmem_data_t *bdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 void *ptr;
611
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700612 list_for_each_entry(bdata, &bdata_list, list) {
Johannes Weinerffc64212008-07-23 21:26:59 -0700613 ptr = alloc_bootmem_core(bdata, size, align, goal, 0);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700614 if (ptr)
615 return ptr;
616 }
Andi Kleena8062232006-04-07 19:49:21 +0200617 return NULL;
618}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700620/**
621 * __alloc_bootmem - allocate boot memory
622 * @size: size of the request in bytes
623 * @align: alignment of the region
624 * @goal: preferred starting address of the region
625 *
626 * The goal is dropped if it can not be satisfied and the allocation will
627 * fall back to memory below @goal.
628 *
629 * Allocation may happen on any node in the system.
630 *
631 * The function panics if the request can not be satisfied.
632 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700633void * __init __alloc_bootmem(unsigned long size, unsigned long align,
634 unsigned long goal)
Andi Kleena8062232006-04-07 19:49:21 +0200635{
636 void *mem = __alloc_bootmem_nopanic(size,align,goal);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700637
Andi Kleena8062232006-04-07 19:49:21 +0200638 if (mem)
639 return mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
641 * Whoops, we cannot satisfy the allocation request.
642 */
643 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
644 panic("Out of memory");
645 return NULL;
646}
647
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700648/**
649 * __alloc_bootmem_node - allocate boot memory from a specific node
650 * @pgdat: node to allocate from
651 * @size: size of the request in bytes
652 * @align: alignment of the region
653 * @goal: preferred starting address of the region
654 *
655 * The goal is dropped if it can not be satisfied and the allocation will
656 * fall back to memory below @goal.
657 *
658 * Allocation may fall back to any node in the system if the specified node
659 * can not hold the requested memory.
660 *
661 * The function panics if the request can not be satisfied.
662 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700663void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
664 unsigned long align, unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 void *ptr;
667
Johannes Weinerffc64212008-07-23 21:26:59 -0700668 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (ptr)
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700670 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800672 return __alloc_bootmem(size, align, goal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700675#ifdef CONFIG_SPARSEMEM
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700676/**
677 * alloc_bootmem_section - allocate boot memory from a specific section
678 * @size: size of the request in bytes
679 * @section_nr: sparse map section to allocate from
680 *
681 * Return NULL on failure.
682 */
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700683void * __init alloc_bootmem_section(unsigned long size,
684 unsigned long section_nr)
685{
686 void *ptr;
687 unsigned long limit, goal, start_nr, end_nr, pfn;
688 struct pglist_data *pgdat;
689
690 pfn = section_nr_to_pfn(section_nr);
691 goal = PFN_PHYS(pfn);
692 limit = PFN_PHYS(section_nr_to_pfn(section_nr + 1)) - 1;
693 pgdat = NODE_DATA(early_pfn_to_nid(pfn));
Johannes Weinerffc64212008-07-23 21:26:59 -0700694 ptr = alloc_bootmem_core(pgdat->bdata, size, SMP_CACHE_BYTES, goal,
695 limit);
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700696
697 if (!ptr)
698 return NULL;
699
700 start_nr = pfn_to_section_nr(PFN_DOWN(__pa(ptr)));
701 end_nr = pfn_to_section_nr(PFN_DOWN(__pa(ptr) + size));
702 if (start_nr != section_nr || end_nr != section_nr) {
703 printk(KERN_WARNING "alloc_bootmem failed on section %ld.\n",
704 section_nr);
705 free_bootmem_core(pgdat->bdata, __pa(ptr), size);
706 ptr = NULL;
707 }
708
709 return ptr;
710}
711#endif
712
Andi Kleenb54bbf72008-07-23 21:27:45 -0700713void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
714 unsigned long align, unsigned long goal)
715{
716 void *ptr;
717
718 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
719 if (ptr)
720 return ptr;
721
722 return __alloc_bootmem_nopanic(size, align, goal);
723}
724
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700725#ifndef ARCH_LOW_ADDRESS_LIMIT
726#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
727#endif
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800728
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700729/**
730 * __alloc_bootmem_low - allocate low boot memory
731 * @size: size of the request in bytes
732 * @align: alignment of the region
733 * @goal: preferred starting address of the region
734 *
735 * The goal is dropped if it can not be satisfied and the allocation will
736 * fall back to memory below @goal.
737 *
738 * Allocation may happen on any node in the system.
739 *
740 * The function panics if the request can not be satisfied.
741 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700742void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
743 unsigned long goal)
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800744{
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800745 bootmem_data_t *bdata;
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800746 void *ptr;
747
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700748 list_for_each_entry(bdata, &bdata_list, list) {
Johannes Weinerffc64212008-07-23 21:26:59 -0700749 ptr = alloc_bootmem_core(bdata, size, align, goal,
750 ARCH_LOW_ADDRESS_LIMIT);
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -0700751 if (ptr)
752 return ptr;
753 }
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800754
755 /*
756 * Whoops, we cannot satisfy the allocation request.
757 */
758 printk(KERN_ALERT "low bootmem alloc of %lu bytes failed!\n", size);
759 panic("Out of low memory");
760 return NULL;
761}
762
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700763/**
764 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
765 * @pgdat: node to allocate from
766 * @size: size of the request in bytes
767 * @align: alignment of the region
768 * @goal: preferred starting address of the region
769 *
770 * The goal is dropped if it can not be satisfied and the allocation will
771 * fall back to memory below @goal.
772 *
773 * Allocation may fall back to any node in the system if the specified node
774 * can not hold the requested memory.
775 *
776 * The function panics if the request can not be satisfied.
777 */
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800778void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
779 unsigned long align, unsigned long goal)
780{
Johannes Weinerffc64212008-07-23 21:26:59 -0700781 return alloc_bootmem_core(pgdat->bdata, size, align, goal,
782 ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800783}