blob: 459da4710b8fa7fc9530b17c3162fd7637da36b2 [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
Johannes Weinerd747fa42008-07-23 21:28:05 -0700228static void __init __free(bootmem_data_t *bdata,
229 unsigned long sidx, unsigned long eidx)
230{
231 unsigned long idx;
232
233 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
234 sidx + PFN_DOWN(bdata->node_boot_start),
235 eidx + PFN_DOWN(bdata->node_boot_start));
236
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700237 if (bdata->hint_idx > sidx)
238 bdata->hint_idx = sidx;
239
Johannes Weinerd747fa42008-07-23 21:28:05 -0700240 for (idx = sidx; idx < eidx; idx++)
241 if (!test_and_clear_bit(idx, bdata->node_bootmem_map))
242 BUG();
243}
244
245static int __init __reserve(bootmem_data_t *bdata, unsigned long sidx,
246 unsigned long eidx, int flags)
247{
248 unsigned long idx;
249 int exclusive = flags & BOOTMEM_EXCLUSIVE;
250
251 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
252 bdata - bootmem_node_data,
253 sidx + PFN_DOWN(bdata->node_boot_start),
254 eidx + PFN_DOWN(bdata->node_boot_start),
255 flags);
256
257 for (idx = sidx; idx < eidx; idx++)
258 if (test_and_set_bit(idx, bdata->node_bootmem_map)) {
259 if (exclusive) {
260 __free(bdata, sidx, idx);
261 return -EBUSY;
262 }
263 bdebug("silent double reserve of PFN %lx\n",
264 idx + PFN_DOWN(bdata->node_boot_start));
265 }
266 return 0;
267}
268
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700269static int __init mark_bootmem_node(bootmem_data_t *bdata,
270 unsigned long start, unsigned long end,
271 int reserve, int flags)
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700272{
273 unsigned long sidx, eidx;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700274
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700275 bdebug("nid=%td start=%lx end=%lx reserve=%d flags=%x\n",
276 bdata - bootmem_node_data, start, end, reserve, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700277
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700278 BUG_ON(start < PFN_DOWN(bdata->node_boot_start));
279 BUG_ON(end > bdata->node_low_pfn);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700280
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700281 sidx = start - PFN_DOWN(bdata->node_boot_start);
282 eidx = end - PFN_DOWN(bdata->node_boot_start);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700283
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700284 if (reserve)
285 return __reserve(bdata, sidx, eidx, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700286 else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700287 __free(bdata, sidx, eidx);
288 return 0;
289}
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700290
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700291static int __init mark_bootmem(unsigned long start, unsigned long end,
292 int reserve, int flags)
293{
294 unsigned long pos;
295 bootmem_data_t *bdata;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700296
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700297 pos = start;
298 list_for_each_entry(bdata, &bdata_list, list) {
299 int err;
300 unsigned long max;
301
302 if (pos < PFN_DOWN(bdata->node_boot_start)) {
303 BUG_ON(pos != start);
304 continue;
305 }
306
307 max = min(bdata->node_low_pfn, end);
308
309 err = mark_bootmem_node(bdata, pos, max, reserve, flags);
310 if (reserve && err) {
311 mark_bootmem(start, pos, 0, 0);
312 return err;
313 }
314
315 if (max == end)
316 return 0;
317 pos = bdata->node_low_pfn;
318 }
319 BUG();
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700320}
321
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700322/**
323 * free_bootmem_node - mark a page range as usable
324 * @pgdat: node the range resides on
325 * @physaddr: starting address of the range
326 * @size: size of the range in bytes
327 *
328 * Partial pages will be considered reserved and left as they are.
329 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700330 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700331 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700332void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
333 unsigned long size)
334{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700335 unsigned long start, end;
336
337 start = PFN_UP(physaddr);
338 end = PFN_DOWN(physaddr + size);
339
340 mark_bootmem_node(pgdat->bdata, start, end, 0, 0);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700341}
342
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700343/**
344 * free_bootmem - mark a page range as usable
345 * @addr: starting address of the range
346 * @size: size of the range in bytes
347 *
348 * Partial pages will be considered reserved and left as they are.
349 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700350 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700351 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700352void __init free_bootmem(unsigned long addr, unsigned long size)
353{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700354 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700355
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700356 start = PFN_UP(addr);
357 end = PFN_DOWN(addr + size);
Yinghai Lua5645a62008-03-18 12:49:12 -0700358
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700359 mark_bootmem(start, end, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700362/**
363 * reserve_bootmem_node - mark a page range as reserved
364 * @pgdat: node the range resides on
365 * @physaddr: starting address of the range
366 * @size: size of the range in bytes
367 * @flags: reservation flags (see linux/bootmem.h)
368 *
369 * Partial pages will be reserved.
370 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700371 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700372 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700373int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
374 unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700376 unsigned long start, end;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700377
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700378 start = PFN_DOWN(physaddr);
379 end = PFN_UP(physaddr + size);
380
381 return mark_bootmem_node(pgdat->bdata, start, end, 1, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700384#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700385/**
386 * reserve_bootmem - mark a page range as usable
387 * @addr: starting address of the range
388 * @size: size of the range in bytes
389 * @flags: reservation flags (see linux/bootmem.h)
390 *
391 * Partial pages will be reserved.
392 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700393 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700394 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700395int __init reserve_bootmem(unsigned long addr, unsigned long size,
396 int flags)
397{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700398 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700399
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700400 start = PFN_DOWN(addr);
401 end = PFN_UP(addr + size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700402
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700403 return mark_bootmem(start, end, 1, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700404}
405#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
406
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700407static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
408 unsigned long size, unsigned long align,
409 unsigned long goal, unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700411 unsigned long fallback = 0;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700412 unsigned long min, max, start, sidx, midx, step;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700414 BUG_ON(!size);
415 BUG_ON(align & (align - 1));
416 BUG_ON(limit && goal + size > limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Christian Krafft7c309a62006-12-06 20:32:41 -0800418 if (!bdata->node_bootmem_map)
419 return NULL;
420
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700421 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
422 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
423 align, goal, limit);
424
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700425 min = PFN_DOWN(bdata->node_boot_start);
426 max = bdata->node_low_pfn;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700427
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700428 goal >>= PAGE_SHIFT;
429 limit >>= PAGE_SHIFT;
430
431 if (limit && max > limit)
432 max = limit;
433 if (max <= min)
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700434 return NULL;
435
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700436 step = max(align >> PAGE_SHIFT, 1UL);
Yasunori Goto281dd252005-10-19 15:52:18 -0700437
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700438 if (goal && min < goal && goal < max)
439 start = ALIGN(goal, step);
440 else
441 start = ALIGN(min, step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700443 sidx = start - PFN_DOWN(bdata->node_boot_start);
444 midx = max - PFN_DOWN(bdata->node_boot_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700446 if (bdata->hint_idx > sidx) {
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700447 /*
448 * Handle the valid case of sidx being zero and still
449 * catch the fallback below.
450 */
451 fallback = sidx + 1;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700452 sidx = ALIGN(bdata->hint_idx, step);
Yinghai Luad093152008-03-10 23:23:42 -0700453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700455 while (1) {
456 int merge;
457 void *region;
458 unsigned long eidx, i, start_off, end_off;
459find_block:
460 sidx = find_next_zero_bit(bdata->node_bootmem_map, midx, sidx);
461 sidx = ALIGN(sidx, step);
462 eidx = sidx + PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700464 if (sidx >= midx || eidx > midx)
Haren Myneni66d43e92005-12-12 00:37:39 -0800465 break;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700466
467 for (i = sidx; i < eidx; i++)
468 if (test_bit(i, bdata->node_bootmem_map)) {
469 sidx = ALIGN(i, step);
470 if (sidx == i)
471 sidx += step;
472 goto find_block;
473 }
474
475 if (bdata->last_end_off &&
476 PFN_DOWN(bdata->last_end_off) + 1 == sidx)
477 start_off = ALIGN(bdata->last_end_off, align);
478 else
479 start_off = PFN_PHYS(sidx);
480
481 merge = PFN_DOWN(start_off) < sidx;
482 end_off = start_off + size;
483
484 bdata->last_end_off = end_off;
485 bdata->hint_idx = PFN_UP(end_off);
486
487 /*
488 * Reserve the area now:
489 */
Johannes Weinerd747fa42008-07-23 21:28:05 -0700490 if (__reserve(bdata, PFN_DOWN(start_off) + merge,
491 PFN_UP(end_off), BOOTMEM_EXCLUSIVE))
492 BUG();
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700493
494 region = phys_to_virt(bdata->node_boot_start + start_off);
495 memset(region, 0, size);
496 return region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700499 if (fallback) {
500 sidx = ALIGN(fallback - 1, step);
501 fallback = 0;
502 goto find_block;
503 }
504
505 return NULL;
506}
507
508static void * __init ___alloc_bootmem_nopanic(unsigned long size,
509 unsigned long align,
510 unsigned long goal,
511 unsigned long limit)
512{
513 bootmem_data_t *bdata;
514
515restart:
516 list_for_each_entry(bdata, &bdata_list, list) {
517 void *region;
518
519 if (goal && bdata->node_low_pfn <= PFN_DOWN(goal))
520 continue;
521 if (limit && bdata->node_boot_start >= limit)
522 break;
523
524 region = alloc_bootmem_core(bdata, size, align, goal, limit);
525 if (region)
526 return region;
527 }
528
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700529 if (goal) {
530 goal = 0;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700531 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700537/**
538 * __alloc_bootmem_nopanic - allocate boot memory without panicking
539 * @size: size of the request in bytes
540 * @align: alignment of the region
541 * @goal: preferred starting address of the region
542 *
543 * The goal is dropped if it can not be satisfied and the allocation will
544 * fall back to memory below @goal.
545 *
546 * Allocation may happen on any node in the system.
547 *
548 * Returns NULL on failure.
549 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700550void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700551 unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700553 return ___alloc_bootmem_nopanic(size, align, goal, 0);
554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700556static void * __init ___alloc_bootmem(unsigned long size, unsigned long align,
557 unsigned long goal, unsigned long limit)
558{
559 void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit);
560
561 if (mem)
562 return mem;
563 /*
564 * Whoops, we cannot satisfy the allocation request.
565 */
566 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
567 panic("Out of memory");
Andi Kleena8062232006-04-07 19:49:21 +0200568 return NULL;
569}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700571/**
572 * __alloc_bootmem - allocate boot memory
573 * @size: size of the request in bytes
574 * @align: alignment of the region
575 * @goal: preferred starting address of the region
576 *
577 * The goal is dropped if it can not be satisfied and the allocation will
578 * fall back to memory below @goal.
579 *
580 * Allocation may happen on any node in the system.
581 *
582 * The function panics if the request can not be satisfied.
583 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700584void * __init __alloc_bootmem(unsigned long size, unsigned long align,
585 unsigned long goal)
Andi Kleena8062232006-04-07 19:49:21 +0200586{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700587 return ___alloc_bootmem(size, align, goal, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700590static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata,
591 unsigned long size, unsigned long align,
592 unsigned long goal, unsigned long limit)
593{
594 void *ptr;
595
596 ptr = alloc_bootmem_core(bdata, size, align, goal, limit);
597 if (ptr)
598 return ptr;
599
600 return ___alloc_bootmem(size, align, goal, limit);
601}
602
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700603/**
604 * __alloc_bootmem_node - allocate boot memory from a specific node
605 * @pgdat: node to allocate from
606 * @size: size of the request in bytes
607 * @align: alignment of the region
608 * @goal: preferred starting address of the region
609 *
610 * The goal is dropped if it can not be satisfied and the allocation will
611 * fall back to memory below @goal.
612 *
613 * Allocation may fall back to any node in the system if the specified node
614 * can not hold the requested memory.
615 *
616 * The function panics if the request can not be satisfied.
617 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700618void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
619 unsigned long align, unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700621 return ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700624#ifdef CONFIG_SPARSEMEM
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700625/**
626 * alloc_bootmem_section - allocate boot memory from a specific section
627 * @size: size of the request in bytes
628 * @section_nr: sparse map section to allocate from
629 *
630 * Return NULL on failure.
631 */
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700632void * __init alloc_bootmem_section(unsigned long size,
633 unsigned long section_nr)
634{
635 void *ptr;
636 unsigned long limit, goal, start_nr, end_nr, pfn;
637 struct pglist_data *pgdat;
638
639 pfn = section_nr_to_pfn(section_nr);
640 goal = PFN_PHYS(pfn);
641 limit = PFN_PHYS(section_nr_to_pfn(section_nr + 1)) - 1;
642 pgdat = NODE_DATA(early_pfn_to_nid(pfn));
Johannes Weinerffc64212008-07-23 21:26:59 -0700643 ptr = alloc_bootmem_core(pgdat->bdata, size, SMP_CACHE_BYTES, goal,
644 limit);
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700645
646 if (!ptr)
647 return NULL;
648
649 start_nr = pfn_to_section_nr(PFN_DOWN(__pa(ptr)));
650 end_nr = pfn_to_section_nr(PFN_DOWN(__pa(ptr) + size));
651 if (start_nr != section_nr || end_nr != section_nr) {
652 printk(KERN_WARNING "alloc_bootmem failed on section %ld.\n",
653 section_nr);
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700654 free_bootmem_node(pgdat, __pa(ptr), size);
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700655 ptr = NULL;
656 }
657
658 return ptr;
659}
660#endif
661
Andi Kleenb54bbf72008-07-23 21:27:45 -0700662void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
663 unsigned long align, unsigned long goal)
664{
665 void *ptr;
666
667 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
668 if (ptr)
669 return ptr;
670
671 return __alloc_bootmem_nopanic(size, align, goal);
672}
673
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700674#ifndef ARCH_LOW_ADDRESS_LIMIT
675#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
676#endif
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800677
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700678/**
679 * __alloc_bootmem_low - allocate low boot memory
680 * @size: size of the request in bytes
681 * @align: alignment of the region
682 * @goal: preferred starting address of the region
683 *
684 * The goal is dropped if it can not be satisfied and the allocation will
685 * fall back to memory below @goal.
686 *
687 * Allocation may happen on any node in the system.
688 *
689 * The function panics if the request can not be satisfied.
690 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700691void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
692 unsigned long goal)
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800693{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700694 return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800695}
696
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700697/**
698 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
699 * @pgdat: node to allocate from
700 * @size: size of the request in bytes
701 * @align: alignment of the region
702 * @goal: preferred starting address of the region
703 *
704 * The goal is dropped if it can not be satisfied and the allocation will
705 * fall back to memory below @goal.
706 *
707 * Allocation may fall back to any node in the system if the specified node
708 * can not hold the requested memory.
709 *
710 * The function panics if the request can not be satisfied.
711 */
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800712void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
713 unsigned long align, unsigned long goal)
714{
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700715 return ___alloc_bootmem_node(pgdat->bdata, size, align,
716 goal, ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800717}