blob: 2058cb7595f2d9de2e5fbb1d6fa8909db60ddc4f [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>
Catalin Marinasec3a3542009-07-07 10:33:01 +010015#include <linux/kmemleak.h>
Yinghai Lu08677212010-02-10 01:20:20 -080016#include <linux/range.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070017
18#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/io.h>
Heiko Carstensdfd54cb2006-09-25 23:31:33 -070020#include <asm/processor.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "internal.h"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024unsigned long max_low_pfn;
25unsigned long min_low_pfn;
26unsigned long max_pfn;
27
Vivek Goyal92aa63a2005-06-25 14:58:18 -070028#ifdef CONFIG_CRASH_DUMP
29/*
30 * If we have booted due to a crash, max_pfn will be a very low value. We need
31 * to know the amount of memory that the previous kernel used.
32 */
33unsigned long saved_max_pfn;
34#endif
35
Yinghai Lu08677212010-02-10 01:20:20 -080036#ifndef CONFIG_NO_BOOTMEM
Johannes Weinerb61bfa32008-07-23 21:26:55 -070037bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata;
38
Johannes Weiner636cc402008-07-23 21:28:03 -070039static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list);
40
Johannes Weiner2e5237d2008-07-23 21:28:02 -070041static int bootmem_debug;
42
43static int __init bootmem_debug_setup(char *buf)
44{
45 bootmem_debug = 1;
46 return 0;
47}
48early_param("bootmem_debug", bootmem_debug_setup);
49
50#define bdebug(fmt, args...) ({ \
51 if (unlikely(bootmem_debug)) \
52 printk(KERN_INFO \
53 "bootmem::%s " fmt, \
Harvey Harrison80a914d2008-10-15 22:01:25 -070054 __func__, ## args); \
Johannes Weiner2e5237d2008-07-23 21:28:02 -070055})
56
Johannes Weinerdf049a52008-07-23 21:28:02 -070057static unsigned long __init bootmap_bytes(unsigned long pages)
Johannes Weiner223e8dc2008-07-23 21:28:00 -070058{
Johannes Weinerdf049a52008-07-23 21:28:02 -070059 unsigned long bytes = (pages + 7) / 8;
Johannes Weiner223e8dc2008-07-23 21:28:00 -070060
Johannes Weinerdf049a52008-07-23 21:28:02 -070061 return ALIGN(bytes, sizeof(long));
Johannes Weiner223e8dc2008-07-23 21:28:00 -070062}
63
Johannes Weinera66fd7d2008-07-23 21:28:01 -070064/**
65 * bootmem_bootmap_pages - calculate bitmap size in pages
66 * @pages: number of pages the bitmap has to represent
67 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070068unsigned long __init bootmem_bootmap_pages(unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Johannes Weinerdf049a52008-07-23 21:28:02 -070070 unsigned long bytes = bootmap_bytes(pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Johannes Weinerdf049a52008-07-23 21:28:02 -070072 return PAGE_ALIGN(bytes) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070074
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080075/*
76 * link bdata in order
77 */
Franck Bui-Huu69d49e62006-09-25 23:31:04 -070078static void __init link_bootmem(bootmem_data_t *bdata)
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080079{
Johannes Weiner636cc402008-07-23 21:28:03 -070080 struct list_head *iter;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070081
Johannes Weiner636cc402008-07-23 21:28:03 -070082 list_for_each(iter, &bdata_list) {
83 bootmem_data_t *ent;
84
85 ent = list_entry(iter, bootmem_data_t, list);
Johannes Weiner3560e242008-07-23 21:28:09 -070086 if (bdata->node_min_pfn < ent->node_min_pfn)
Johannes Weiner636cc402008-07-23 21:28:03 -070087 break;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080088 }
Johannes Weiner636cc402008-07-23 21:28:03 -070089 list_add_tail(&bdata->list, iter);
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080090}
91
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070092/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * Called once to set up the allocator itself.
94 */
Johannes Weiner8ae04462008-07-23 21:26:59 -070095static unsigned long __init init_bootmem_core(bootmem_data_t *bdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unsigned long mapstart, unsigned long start, unsigned long end)
97{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070098 unsigned long mapsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700100 mminit_validate_memmodel_limits(&start, &end);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700101 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
Johannes Weiner3560e242008-07-23 21:28:09 -0700102 bdata->node_min_pfn = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 bdata->node_low_pfn = end;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800104 link_bootmem(bdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 /*
107 * Initially all pages are reserved - setup_arch() has to
108 * register free RAM areas explicitly.
109 */
Johannes Weinerdf049a52008-07-23 21:28:02 -0700110 mapsize = bootmap_bytes(end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 memset(bdata->node_bootmem_map, 0xff, mapsize);
112
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700113 bdebug("nid=%td start=%lx map=%lx end=%lx mapsize=%lx\n",
114 bdata - bootmem_node_data, start, mapstart, end, mapsize);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return mapsize;
117}
118
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700119/**
120 * init_bootmem_node - register a node as boot memory
121 * @pgdat: node to register
122 * @freepfn: pfn where the bitmap for this node is to be placed
123 * @startpfn: first pfn on the node
124 * @endpfn: first pfn after the node
125 *
126 * Returns the number of bytes needed to hold the bitmap for this node.
127 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700128unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
129 unsigned long startpfn, unsigned long endpfn)
130{
131 return init_bootmem_core(pgdat->bdata, freepfn, startpfn, endpfn);
132}
133
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700134/**
135 * init_bootmem - register boot memory
136 * @start: pfn where the bitmap is to be placed
137 * @pages: number of available physical pages
138 *
139 * Returns the number of bytes needed to hold the bitmap.
140 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700141unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
142{
143 max_low_pfn = pages;
144 min_low_pfn = start;
145 return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages);
146}
Yinghai Lu08677212010-02-10 01:20:20 -0800147#endif
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900148/*
149 * free_bootmem_late - free bootmem pages directly to page allocator
150 * @addr: starting address of the range
151 * @size: size of the range in bytes
152 *
153 * This is only useful when the bootmem allocator has already been torn
154 * down, but we are still initializing the system. Pages are given directly
155 * to the page allocator, no bootmem metadata is updated because it is gone.
156 */
157void __init free_bootmem_late(unsigned long addr, unsigned long size)
158{
159 unsigned long cursor, end;
160
161 kmemleak_free_part(__va(addr), size);
162
163 cursor = PFN_UP(addr);
164 end = PFN_DOWN(addr + size);
165
166 for (; cursor < end; cursor++) {
167 __free_pages_bootmem(pfn_to_page(cursor), 0);
168 totalram_pages++;
169 }
170}
171
Yinghai Lu08677212010-02-10 01:20:20 -0800172#ifdef CONFIG_NO_BOOTMEM
173static void __init __free_pages_memory(unsigned long start, unsigned long end)
174{
175 int i;
176 unsigned long start_aligned, end_aligned;
177 int order = ilog2(BITS_PER_LONG);
178
179 start_aligned = (start + (BITS_PER_LONG - 1)) & ~(BITS_PER_LONG - 1);
180 end_aligned = end & ~(BITS_PER_LONG - 1);
181
182 if (end_aligned <= start_aligned) {
Yinghai Lu08677212010-02-10 01:20:20 -0800183 for (i = start; i < end; i++)
184 __free_pages_bootmem(pfn_to_page(i), 0);
185
186 return;
187 }
188
Yinghai Lu08677212010-02-10 01:20:20 -0800189 for (i = start; i < start_aligned; i++)
190 __free_pages_bootmem(pfn_to_page(i), 0);
191
192 for (i = start_aligned; i < end_aligned; i += BITS_PER_LONG)
193 __free_pages_bootmem(pfn_to_page(i), order);
194
195 for (i = end_aligned; i < end; i++)
196 __free_pages_bootmem(pfn_to_page(i), 0);
197}
198
199unsigned long __init free_all_memory_core_early(int nodeid)
200{
201 int i;
202 u64 start, end;
203 unsigned long count = 0;
204 struct range *range = NULL;
205 int nr_range;
206
207 nr_range = get_free_all_memory_range(&range, nodeid);
208
209 for (i = 0; i < nr_range; i++) {
210 start = range[i].start;
211 end = range[i].end;
212 count += end - start;
213 __free_pages_memory(start, end);
214 }
215
216 return count;
217}
218#else
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700219static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
220{
Johannes Weiner41546c12008-07-23 21:28:03 -0700221 int aligned;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700222 struct page *page;
Johannes Weiner41546c12008-07-23 21:28:03 -0700223 unsigned long start, end, pages, count = 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700224
Johannes Weiner41546c12008-07-23 21:28:03 -0700225 if (!bdata->node_bootmem_map)
226 return 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700227
Johannes Weiner3560e242008-07-23 21:28:09 -0700228 start = bdata->node_min_pfn;
Johannes Weiner41546c12008-07-23 21:28:03 -0700229 end = bdata->node_low_pfn;
230
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700231 /*
Johannes Weiner41546c12008-07-23 21:28:03 -0700232 * If the start is aligned to the machines wordsize, we might
233 * be able to free pages in bulks of that order.
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700234 */
Johannes Weiner41546c12008-07-23 21:28:03 -0700235 aligned = !(start & (BITS_PER_LONG - 1));
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700236
Johannes Weiner41546c12008-07-23 21:28:03 -0700237 bdebug("nid=%td start=%lx end=%lx aligned=%d\n",
238 bdata - bootmem_node_data, start, end, aligned);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700239
Johannes Weiner41546c12008-07-23 21:28:03 -0700240 while (start < end) {
241 unsigned long *map, idx, vec;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700242
Johannes Weiner41546c12008-07-23 21:28:03 -0700243 map = bdata->node_bootmem_map;
Johannes Weiner3560e242008-07-23 21:28:09 -0700244 idx = start - bdata->node_min_pfn;
Johannes Weiner41546c12008-07-23 21:28:03 -0700245 vec = ~map[idx / BITS_PER_LONG];
246
247 if (aligned && vec == ~0UL && start + BITS_PER_LONG < end) {
248 int order = ilog2(BITS_PER_LONG);
249
250 __free_pages_bootmem(pfn_to_page(start), order);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700251 count += BITS_PER_LONG;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700252 } else {
Johannes Weiner41546c12008-07-23 21:28:03 -0700253 unsigned long off = 0;
254
255 while (vec && off < BITS_PER_LONG) {
256 if (vec & 1) {
257 page = pfn_to_page(start + off);
258 __free_pages_bootmem(page, 0);
259 count++;
260 }
261 vec >>= 1;
262 off++;
263 }
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700264 }
Johannes Weiner41546c12008-07-23 21:28:03 -0700265 start += BITS_PER_LONG;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700266 }
267
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700268 page = virt_to_page(bdata->node_bootmem_map);
Johannes Weiner3560e242008-07-23 21:28:09 -0700269 pages = bdata->node_low_pfn - bdata->node_min_pfn;
Johannes Weiner41546c12008-07-23 21:28:03 -0700270 pages = bootmem_bootmap_pages(pages);
271 count += pages;
272 while (pages--)
273 __free_pages_bootmem(page++, 0);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700274
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700275 bdebug("nid=%td released=%lx\n", bdata - bootmem_node_data, count);
276
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700277 return count;
278}
Yinghai Lu08677212010-02-10 01:20:20 -0800279#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700280
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700281/**
282 * free_all_bootmem_node - release a node's free pages to the buddy allocator
283 * @pgdat: node to be released
284 *
285 * Returns the number of pages actually released.
286 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700287unsigned long __init free_all_bootmem_node(pg_data_t *pgdat)
288{
289 register_page_bootmem_info_node(pgdat);
Yinghai Lu08677212010-02-10 01:20:20 -0800290#ifdef CONFIG_NO_BOOTMEM
291 /* free_all_memory_core_early(MAX_NUMNODES) will be called later */
292 return 0;
293#else
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700294 return free_all_bootmem_core(pgdat->bdata);
Yinghai Lu08677212010-02-10 01:20:20 -0800295#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700296}
297
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700298/**
299 * free_all_bootmem - release free pages to the buddy allocator
300 *
301 * Returns the number of pages actually released.
302 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700303unsigned long __init free_all_bootmem(void)
304{
Yinghai Lu08677212010-02-10 01:20:20 -0800305#ifdef CONFIG_NO_BOOTMEM
Yinghai Lu33799852010-03-31 20:44:09 -0700306 /*
307 * We need to use MAX_NUMNODES instead of NODE_DATA(0)->node_id
308 * because in some case like Node0 doesnt have RAM installed
309 * low ram will be on Node1
310 * Use MAX_NUMNODES will make sure all ranges in early_node_map[]
311 * will be used instead of only Node0 related
312 */
313 return free_all_memory_core_early(MAX_NUMNODES);
Yinghai Lu08677212010-02-10 01:20:20 -0800314#else
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700315 return free_all_bootmem_core(NODE_DATA(0)->bdata);
Yinghai Lu08677212010-02-10 01:20:20 -0800316#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700317}
318
Yinghai Lu08677212010-02-10 01:20:20 -0800319#ifndef CONFIG_NO_BOOTMEM
Johannes Weinerd747fa42008-07-23 21:28:05 -0700320static void __init __free(bootmem_data_t *bdata,
321 unsigned long sidx, unsigned long eidx)
322{
323 unsigned long idx;
324
325 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
Johannes Weiner3560e242008-07-23 21:28:09 -0700326 sidx + bdata->node_min_pfn,
327 eidx + bdata->node_min_pfn);
Johannes Weinerd747fa42008-07-23 21:28:05 -0700328
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700329 if (bdata->hint_idx > sidx)
330 bdata->hint_idx = sidx;
331
Johannes Weinerd747fa42008-07-23 21:28:05 -0700332 for (idx = sidx; idx < eidx; idx++)
333 if (!test_and_clear_bit(idx, bdata->node_bootmem_map))
334 BUG();
335}
336
337static int __init __reserve(bootmem_data_t *bdata, unsigned long sidx,
338 unsigned long eidx, int flags)
339{
340 unsigned long idx;
341 int exclusive = flags & BOOTMEM_EXCLUSIVE;
342
343 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
344 bdata - bootmem_node_data,
Johannes Weiner3560e242008-07-23 21:28:09 -0700345 sidx + bdata->node_min_pfn,
346 eidx + bdata->node_min_pfn,
Johannes Weinerd747fa42008-07-23 21:28:05 -0700347 flags);
348
349 for (idx = sidx; idx < eidx; idx++)
350 if (test_and_set_bit(idx, bdata->node_bootmem_map)) {
351 if (exclusive) {
352 __free(bdata, sidx, idx);
353 return -EBUSY;
354 }
355 bdebug("silent double reserve of PFN %lx\n",
Johannes Weiner3560e242008-07-23 21:28:09 -0700356 idx + bdata->node_min_pfn);
Johannes Weinerd747fa42008-07-23 21:28:05 -0700357 }
358 return 0;
359}
360
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700361static int __init mark_bootmem_node(bootmem_data_t *bdata,
362 unsigned long start, unsigned long end,
363 int reserve, int flags)
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700364{
365 unsigned long sidx, eidx;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700366
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700367 bdebug("nid=%td start=%lx end=%lx reserve=%d flags=%x\n",
368 bdata - bootmem_node_data, start, end, reserve, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700369
Johannes Weiner3560e242008-07-23 21:28:09 -0700370 BUG_ON(start < bdata->node_min_pfn);
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700371 BUG_ON(end > bdata->node_low_pfn);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700372
Johannes Weiner3560e242008-07-23 21:28:09 -0700373 sidx = start - bdata->node_min_pfn;
374 eidx = end - bdata->node_min_pfn;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700375
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700376 if (reserve)
377 return __reserve(bdata, sidx, eidx, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700378 else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700379 __free(bdata, sidx, eidx);
380 return 0;
381}
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700382
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700383static int __init mark_bootmem(unsigned long start, unsigned long end,
384 int reserve, int flags)
385{
386 unsigned long pos;
387 bootmem_data_t *bdata;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700388
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700389 pos = start;
390 list_for_each_entry(bdata, &bdata_list, list) {
391 int err;
392 unsigned long max;
393
Johannes Weiner3560e242008-07-23 21:28:09 -0700394 if (pos < bdata->node_min_pfn ||
395 pos >= bdata->node_low_pfn) {
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700396 BUG_ON(pos != start);
397 continue;
398 }
399
400 max = min(bdata->node_low_pfn, end);
401
402 err = mark_bootmem_node(bdata, pos, max, reserve, flags);
403 if (reserve && err) {
404 mark_bootmem(start, pos, 0, 0);
405 return err;
406 }
407
408 if (max == end)
409 return 0;
410 pos = bdata->node_low_pfn;
411 }
412 BUG();
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700413}
Yinghai Lu08677212010-02-10 01:20:20 -0800414#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700415
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700416/**
417 * free_bootmem_node - mark a page range as usable
418 * @pgdat: node the range resides on
419 * @physaddr: starting address of the range
420 * @size: size of the range in bytes
421 *
422 * Partial pages will be considered reserved and left as they are.
423 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700424 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700425 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700426void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
427 unsigned long size)
428{
Yinghai Lu08677212010-02-10 01:20:20 -0800429#ifdef CONFIG_NO_BOOTMEM
430 free_early(physaddr, physaddr + size);
Yinghai Lu08677212010-02-10 01:20:20 -0800431#else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700432 unsigned long start, end;
433
Catalin Marinasec3a3542009-07-07 10:33:01 +0100434 kmemleak_free_part(__va(physaddr), size);
435
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700436 start = PFN_UP(physaddr);
437 end = PFN_DOWN(physaddr + size);
438
439 mark_bootmem_node(pgdat->bdata, start, end, 0, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800440#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700441}
442
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700443/**
444 * free_bootmem - mark a page range as usable
445 * @addr: starting address of the range
446 * @size: size of the range in bytes
447 *
448 * Partial pages will be considered reserved and left as they are.
449 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700450 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700451 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700452void __init free_bootmem(unsigned long addr, unsigned long size)
453{
Yinghai Lu08677212010-02-10 01:20:20 -0800454#ifdef CONFIG_NO_BOOTMEM
455 free_early(addr, addr + size);
Yinghai Lu08677212010-02-10 01:20:20 -0800456#else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700457 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700458
Catalin Marinasec3a3542009-07-07 10:33:01 +0100459 kmemleak_free_part(__va(addr), size);
460
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700461 start = PFN_UP(addr);
462 end = PFN_DOWN(addr + size);
Yinghai Lua5645a62008-03-18 12:49:12 -0700463
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700464 mark_bootmem(start, end, 0, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700468/**
469 * reserve_bootmem_node - mark a page range as reserved
470 * @pgdat: node the range resides on
471 * @physaddr: starting address of the range
472 * @size: size of the range in bytes
473 * @flags: reservation flags (see linux/bootmem.h)
474 *
475 * Partial pages will be reserved.
476 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700477 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700478 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700479int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
480 unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Yinghai Lu08677212010-02-10 01:20:20 -0800482#ifdef CONFIG_NO_BOOTMEM
483 panic("no bootmem");
484 return 0;
485#else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700486 unsigned long start, end;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700487
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700488 start = PFN_DOWN(physaddr);
489 end = PFN_UP(physaddr + size);
490
491 return mark_bootmem_node(pgdat->bdata, start, end, 1, flags);
Yinghai Lu08677212010-02-10 01:20:20 -0800492#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700495/**
496 * reserve_bootmem - mark a page range as usable
497 * @addr: starting address of the range
498 * @size: size of the range in bytes
499 * @flags: reservation flags (see linux/bootmem.h)
500 *
501 * Partial pages will be reserved.
502 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700503 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700504 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700505int __init reserve_bootmem(unsigned long addr, unsigned long size,
506 int flags)
507{
Yinghai Lu08677212010-02-10 01:20:20 -0800508#ifdef CONFIG_NO_BOOTMEM
509 panic("no bootmem");
510 return 0;
511#else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700512 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700513
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700514 start = PFN_DOWN(addr);
515 end = PFN_UP(addr + size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700516
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700517 return mark_bootmem(start, end, 1, flags);
Yinghai Lu08677212010-02-10 01:20:20 -0800518#endif
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700519}
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700520
Yinghai Lu08677212010-02-10 01:20:20 -0800521#ifndef CONFIG_NO_BOOTMEM
Jan Beulich8aa043d2009-12-14 17:59:46 -0800522static unsigned long __init align_idx(struct bootmem_data *bdata,
523 unsigned long idx, unsigned long step)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700524{
525 unsigned long base = bdata->node_min_pfn;
526
527 /*
528 * Align the index with respect to the node start so that the
529 * combination of both satisfies the requested alignment.
530 */
531
532 return ALIGN(base + idx, step) - base;
533}
534
Jan Beulich8aa043d2009-12-14 17:59:46 -0800535static unsigned long __init align_off(struct bootmem_data *bdata,
536 unsigned long off, unsigned long align)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700537{
538 unsigned long base = PFN_PHYS(bdata->node_min_pfn);
539
540 /* Same as align_idx for byte offsets */
541
542 return ALIGN(base + off, align) - base;
543}
544
Tejun Heod0c4f572009-03-01 16:06:56 +0900545static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
546 unsigned long size, unsigned long align,
547 unsigned long goal, unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700549 unsigned long fallback = 0;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700550 unsigned long min, max, start, sidx, midx, step;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Johannes Weiner594fe1a2009-01-06 14:40:32 -0800552 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
553 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
554 align, goal, limit);
555
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700556 BUG_ON(!size);
557 BUG_ON(align & (align - 1));
558 BUG_ON(limit && goal + size > limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Christian Krafft7c309a62006-12-06 20:32:41 -0800560 if (!bdata->node_bootmem_map)
561 return NULL;
562
Johannes Weiner3560e242008-07-23 21:28:09 -0700563 min = bdata->node_min_pfn;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700564 max = bdata->node_low_pfn;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700565
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700566 goal >>= PAGE_SHIFT;
567 limit >>= PAGE_SHIFT;
568
569 if (limit && max > limit)
570 max = limit;
571 if (max <= min)
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700572 return NULL;
573
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700574 step = max(align >> PAGE_SHIFT, 1UL);
Yasunori Goto281dd252005-10-19 15:52:18 -0700575
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700576 if (goal && min < goal && goal < max)
577 start = ALIGN(goal, step);
578 else
579 start = ALIGN(min, step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Johannes Weiner481ebd02008-08-20 14:09:15 -0700581 sidx = start - bdata->node_min_pfn;
Johannes Weiner3560e242008-07-23 21:28:09 -0700582 midx = max - bdata->node_min_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700584 if (bdata->hint_idx > sidx) {
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700585 /*
586 * Handle the valid case of sidx being zero and still
587 * catch the fallback below.
588 */
589 fallback = sidx + 1;
Johannes Weiner481ebd02008-08-20 14:09:15 -0700590 sidx = align_idx(bdata, bdata->hint_idx, step);
Yinghai Luad093152008-03-10 23:23:42 -0700591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700593 while (1) {
594 int merge;
595 void *region;
596 unsigned long eidx, i, start_off, end_off;
597find_block:
598 sidx = find_next_zero_bit(bdata->node_bootmem_map, midx, sidx);
Johannes Weiner481ebd02008-08-20 14:09:15 -0700599 sidx = align_idx(bdata, sidx, step);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700600 eidx = sidx + PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700602 if (sidx >= midx || eidx > midx)
Haren Myneni66d43e92005-12-12 00:37:39 -0800603 break;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700604
605 for (i = sidx; i < eidx; i++)
606 if (test_bit(i, bdata->node_bootmem_map)) {
Johannes Weiner481ebd02008-08-20 14:09:15 -0700607 sidx = align_idx(bdata, i, step);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700608 if (sidx == i)
609 sidx += step;
610 goto find_block;
611 }
612
Mikulas Patocka627240a2008-08-15 00:40:17 -0700613 if (bdata->last_end_off & (PAGE_SIZE - 1) &&
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700614 PFN_DOWN(bdata->last_end_off) + 1 == sidx)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700615 start_off = align_off(bdata, bdata->last_end_off, align);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700616 else
617 start_off = PFN_PHYS(sidx);
618
619 merge = PFN_DOWN(start_off) < sidx;
620 end_off = start_off + size;
621
622 bdata->last_end_off = end_off;
623 bdata->hint_idx = PFN_UP(end_off);
624
625 /*
626 * Reserve the area now:
627 */
Johannes Weinerd747fa42008-07-23 21:28:05 -0700628 if (__reserve(bdata, PFN_DOWN(start_off) + merge,
629 PFN_UP(end_off), BOOTMEM_EXCLUSIVE))
630 BUG();
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700631
Johannes Weiner3560e242008-07-23 21:28:09 -0700632 region = phys_to_virt(PFN_PHYS(bdata->node_min_pfn) +
633 start_off);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700634 memset(region, 0, size);
Catalin Marinas008139d2009-08-27 14:29:17 +0100635 /*
636 * The min_count is set to 0 so that bootmem allocated blocks
637 * are never reported as leaks.
638 */
639 kmemleak_alloc(region, size, 0, 0);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700640 return region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700643 if (fallback) {
Johannes Weiner481ebd02008-08-20 14:09:15 -0700644 sidx = align_idx(bdata, fallback - 1, step);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700645 fallback = 0;
646 goto find_block;
647 }
648
649 return NULL;
650}
651
Tejun Heod0c4f572009-03-01 16:06:56 +0900652static void * __init alloc_arch_preferred_bootmem(bootmem_data_t *bdata,
653 unsigned long size, unsigned long align,
654 unsigned long goal, unsigned long limit)
655{
Pekka Enberg441c7e02009-06-10 20:05:53 +0300656 if (WARN_ON_ONCE(slab_is_available()))
657 return kzalloc(size, GFP_NOWAIT);
658
Tejun Heod0c4f572009-03-01 16:06:56 +0900659#ifdef CONFIG_HAVE_ARCH_BOOTMEM
Joe Perches433f13a2009-06-18 16:48:58 -0700660 {
661 bootmem_data_t *p_bdata;
Tejun Heod0c4f572009-03-01 16:06:56 +0900662
Joe Perches433f13a2009-06-18 16:48:58 -0700663 p_bdata = bootmem_arch_preferred_node(bdata, size, align,
664 goal, limit);
665 if (p_bdata)
666 return alloc_bootmem_core(p_bdata, size, align,
667 goal, limit);
668 }
Tejun Heod0c4f572009-03-01 16:06:56 +0900669#endif
670 return NULL;
671}
Yinghai Lu08677212010-02-10 01:20:20 -0800672#endif
Tejun Heod0c4f572009-03-01 16:06:56 +0900673
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700674static void * __init ___alloc_bootmem_nopanic(unsigned long size,
675 unsigned long align,
676 unsigned long goal,
677 unsigned long limit)
678{
Yinghai Lu08677212010-02-10 01:20:20 -0800679#ifdef CONFIG_NO_BOOTMEM
680 void *ptr;
681
682 if (WARN_ON_ONCE(slab_is_available()))
683 return kzalloc(size, GFP_NOWAIT);
684
685restart:
686
687 ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, goal, limit);
688
689 if (ptr)
690 return ptr;
691
692 if (goal != 0) {
693 goal = 0;
694 goto restart;
695 }
696
697 return NULL;
698#else
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700699 bootmem_data_t *bdata;
Tejun Heod0c4f572009-03-01 16:06:56 +0900700 void *region;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700701
702restart:
Tejun Heod0c4f572009-03-01 16:06:56 +0900703 region = alloc_arch_preferred_bootmem(NULL, size, align, goal, limit);
704 if (region)
705 return region;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700706
Tejun Heod0c4f572009-03-01 16:06:56 +0900707 list_for_each_entry(bdata, &bdata_list, list) {
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700708 if (goal && bdata->node_low_pfn <= PFN_DOWN(goal))
709 continue;
Johannes Weiner3560e242008-07-23 21:28:09 -0700710 if (limit && bdata->node_min_pfn >= PFN_DOWN(limit))
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700711 break;
712
713 region = alloc_bootmem_core(bdata, size, align, goal, limit);
714 if (region)
715 return region;
716 }
717
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700718 if (goal) {
719 goal = 0;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700720 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return NULL;
Yinghai Lu08677212010-02-10 01:20:20 -0800724#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700727/**
728 * __alloc_bootmem_nopanic - allocate boot memory without panicking
729 * @size: size of the request in bytes
730 * @align: alignment of the region
731 * @goal: preferred starting address of the region
732 *
733 * The goal is dropped if it can not be satisfied and the allocation will
734 * fall back to memory below @goal.
735 *
736 * Allocation may happen on any node in the system.
737 *
738 * Returns NULL on failure.
739 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700740void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700741 unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Yinghai Lu08677212010-02-10 01:20:20 -0800743 unsigned long limit = 0;
744
745#ifdef CONFIG_NO_BOOTMEM
746 limit = -1UL;
747#endif
748
749 return ___alloc_bootmem_nopanic(size, align, goal, limit);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700750}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700752static void * __init ___alloc_bootmem(unsigned long size, unsigned long align,
753 unsigned long goal, unsigned long limit)
754{
755 void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit);
756
757 if (mem)
758 return mem;
759 /*
760 * Whoops, we cannot satisfy the allocation request.
761 */
762 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
763 panic("Out of memory");
Andi Kleena8062232006-04-07 19:49:21 +0200764 return NULL;
765}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700767/**
768 * __alloc_bootmem - allocate boot memory
769 * @size: size of the request in bytes
770 * @align: alignment of the region
771 * @goal: preferred starting address of the region
772 *
773 * The goal is dropped if it can not be satisfied and the allocation will
774 * fall back to memory below @goal.
775 *
776 * Allocation may happen on any node in the system.
777 *
778 * The function panics if the request can not be satisfied.
779 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700780void * __init __alloc_bootmem(unsigned long size, unsigned long align,
781 unsigned long goal)
Andi Kleena8062232006-04-07 19:49:21 +0200782{
Yinghai Lu08677212010-02-10 01:20:20 -0800783 unsigned long limit = 0;
784
785#ifdef CONFIG_NO_BOOTMEM
786 limit = -1UL;
787#endif
788
789 return ___alloc_bootmem(size, align, goal, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Yinghai Lu08677212010-02-10 01:20:20 -0800792#ifndef CONFIG_NO_BOOTMEM
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700793static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata,
794 unsigned long size, unsigned long align,
795 unsigned long goal, unsigned long limit)
796{
797 void *ptr;
798
Tejun Heod0c4f572009-03-01 16:06:56 +0900799 ptr = alloc_arch_preferred_bootmem(bdata, size, align, goal, limit);
800 if (ptr)
801 return ptr;
802
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700803 ptr = alloc_bootmem_core(bdata, size, align, goal, limit);
804 if (ptr)
805 return ptr;
806
807 return ___alloc_bootmem(size, align, goal, limit);
808}
Yinghai Lu08677212010-02-10 01:20:20 -0800809#endif
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700810
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700811/**
812 * __alloc_bootmem_node - allocate boot memory from a specific node
813 * @pgdat: node to allocate from
814 * @size: size of the request in bytes
815 * @align: alignment of the region
816 * @goal: preferred starting address of the region
817 *
818 * The goal is dropped if it can not be satisfied and the allocation will
819 * fall back to memory below @goal.
820 *
821 * Allocation may fall back to any node in the system if the specified node
822 * can not hold the requested memory.
823 *
824 * The function panics if the request can not be satisfied.
825 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700826void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
827 unsigned long align, unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Pekka Enbergc91c4772009-06-11 08:10:28 +0300829 if (WARN_ON_ONCE(slab_is_available()))
830 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
831
Yinghai Lu08677212010-02-10 01:20:20 -0800832#ifdef CONFIG_NO_BOOTMEM
833 return __alloc_memory_core_early(pgdat->node_id, size, align,
834 goal, -1ULL);
835#else
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700836 return ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800837#endif
838}
839
840void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size,
841 unsigned long align, unsigned long goal)
842{
843#ifdef MAX_DMA32_PFN
844 unsigned long end_pfn;
845
846 if (WARN_ON_ONCE(slab_is_available()))
847 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
848
849 /* update goal according ...MAX_DMA32_PFN */
850 end_pfn = pgdat->node_start_pfn + pgdat->node_spanned_pages;
851
852 if (end_pfn > MAX_DMA32_PFN + (128 >> (20 - PAGE_SHIFT)) &&
853 (goal >> PAGE_SHIFT) < MAX_DMA32_PFN) {
854 void *ptr;
855 unsigned long new_goal;
856
857 new_goal = MAX_DMA32_PFN << PAGE_SHIFT;
858#ifdef CONFIG_NO_BOOTMEM
859 ptr = __alloc_memory_core_early(pgdat->node_id, size, align,
860 new_goal, -1ULL);
861#else
862 ptr = alloc_bootmem_core(pgdat->bdata, size, align,
863 new_goal, 0);
864#endif
865 if (ptr)
866 return ptr;
867 }
868#endif
869
870 return __alloc_bootmem_node(pgdat, size, align, goal);
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700874#ifdef CONFIG_SPARSEMEM
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700875/**
876 * alloc_bootmem_section - allocate boot memory from a specific section
877 * @size: size of the request in bytes
878 * @section_nr: sparse map section to allocate from
879 *
880 * Return NULL on failure.
881 */
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700882void * __init alloc_bootmem_section(unsigned long size,
883 unsigned long section_nr)
884{
Yinghai Lu08677212010-02-10 01:20:20 -0800885#ifdef CONFIG_NO_BOOTMEM
886 unsigned long pfn, goal, limit;
887
888 pfn = section_nr_to_pfn(section_nr);
889 goal = pfn << PAGE_SHIFT;
890 limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT;
891
892 return __alloc_memory_core_early(early_pfn_to_nid(pfn), size,
893 SMP_CACHE_BYTES, goal, limit);
894#else
Johannes Weiner75a56cf2008-07-23 21:28:09 -0700895 bootmem_data_t *bdata;
896 unsigned long pfn, goal, limit;
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700897
898 pfn = section_nr_to_pfn(section_nr);
Johannes Weiner75a56cf2008-07-23 21:28:09 -0700899 goal = pfn << PAGE_SHIFT;
900 limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT;
901 bdata = &bootmem_node_data[early_pfn_to_nid(pfn)];
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700902
Johannes Weiner75a56cf2008-07-23 21:28:09 -0700903 return alloc_bootmem_core(bdata, size, SMP_CACHE_BYTES, goal, limit);
Yinghai Lu08677212010-02-10 01:20:20 -0800904#endif
Yasunori Gotoe70260a2008-04-28 02:13:32 -0700905}
906#endif
907
Andi Kleenb54bbf72008-07-23 21:27:45 -0700908void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
909 unsigned long align, unsigned long goal)
910{
911 void *ptr;
912
Pekka Enbergc91c4772009-06-11 08:10:28 +0300913 if (WARN_ON_ONCE(slab_is_available()))
914 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
915
Yinghai Lu08677212010-02-10 01:20:20 -0800916#ifdef CONFIG_NO_BOOTMEM
917 ptr = __alloc_memory_core_early(pgdat->node_id, size, align,
918 goal, -1ULL);
919#else
Tejun Heod0c4f572009-03-01 16:06:56 +0900920 ptr = alloc_arch_preferred_bootmem(pgdat->bdata, size, align, goal, 0);
921 if (ptr)
922 return ptr;
923
Andi Kleenb54bbf72008-07-23 21:27:45 -0700924 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800925#endif
Andi Kleenb54bbf72008-07-23 21:27:45 -0700926 if (ptr)
927 return ptr;
928
929 return __alloc_bootmem_nopanic(size, align, goal);
930}
931
Heiko Carstensdfd54cb2006-09-25 23:31:33 -0700932#ifndef ARCH_LOW_ADDRESS_LIMIT
933#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
934#endif
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800935
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700936/**
937 * __alloc_bootmem_low - allocate low boot memory
938 * @size: size of the request in bytes
939 * @align: alignment of the region
940 * @goal: preferred starting address of the region
941 *
942 * The goal is dropped if it can not be satisfied and the allocation will
943 * fall back to memory below @goal.
944 *
945 * Allocation may happen on any node in the system.
946 *
947 * The function panics if the request can not be satisfied.
948 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700949void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
950 unsigned long goal)
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800951{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700952 return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800953}
954
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700955/**
956 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
957 * @pgdat: node to allocate from
958 * @size: size of the request in bytes
959 * @align: alignment of the region
960 * @goal: preferred starting address of the region
961 *
962 * The goal is dropped if it can not be satisfied and the allocation will
963 * fall back to memory below @goal.
964 *
965 * Allocation may fall back to any node in the system if the specified node
966 * can not hold the requested memory.
967 *
968 * The function panics if the request can not be satisfied.
969 */
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800970void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
971 unsigned long align, unsigned long goal)
972{
Pekka Enbergc91c4772009-06-11 08:10:28 +0300973 if (WARN_ON_ONCE(slab_is_available()))
974 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
975
Yinghai Lu08677212010-02-10 01:20:20 -0800976#ifdef CONFIG_NO_BOOTMEM
977 return __alloc_memory_core_early(pgdat->node_id, size, align,
978 goal, ARCH_LOW_ADDRESS_LIMIT);
979#else
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700980 return ___alloc_bootmem_node(pgdat->bdata, size, align,
981 goal, ARCH_LOW_ADDRESS_LIMIT);
Yinghai Lu08677212010-02-10 01:20:20 -0800982#endif
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800983}