blob: be8965427a9369596f1f79ed18cc25cae4ead418 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Handle the memory map.
3 * The functions here do the job until bootmem takes over.
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -07004 *
5 * Getting sanitize_e820_map() in sync with i386 version by applying change:
6 * - Provisions for empty E820 memory regions (reported by certain BIOSes).
7 * Alex Achenbach <xela@slit.de>, December 2002.
8 * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/init.h>
14#include <linux/bootmem.h>
15#include <linux/ioport.h>
16#include <linux/string.h>
Eric W. Biederman5f5609d2005-06-25 14:58:04 -070017#include <linux/kexec.h>
Andrew Mortonb9491ac2005-09-16 19:27:54 -070018#include <linux/module.h>
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -070019#include <linux/mm.h>
Andrew Mortonb9491ac2005-09-16 19:27:54 -070020
Andrew Morton1a91023a2006-07-10 04:43:49 -070021#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/page.h>
23#include <asm/e820.h>
24#include <asm/proto.h>
25#include <asm/bootsetup.h>
Andi Kleen2bc04142005-11-05 17:25:53 +010026#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Jan Beulichb92e9fa2007-05-02 19:27:11 +020028struct e820map e820;
Andi Kleen3bd4d182006-09-26 10:52:33 +020029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * PFN of last memory page.
32 */
33unsigned long end_pfn;
Andi Kleenf3591ff2005-09-13 11:35:28 +020034EXPORT_SYMBOL(end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * end_pfn only includes RAM, while end_pfn_map includes all e820 entries.
38 * The direct mapping extends to end_pfn_map, so that we can directly access
39 * apertures, ACPI and other tables without having to play with fixmaps.
40 */
41unsigned long end_pfn_map;
42
43/*
44 * Last pfn which the user wants to use.
45 */
Jan Beulichcaff0712006-09-26 10:52:31 +020046static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48extern struct resource code_resource, data_resource;
49
50/* Check for some hardcoded bad areas that early boot is not allowed to touch */
51static inline int bad_addr(unsigned long *addrp, unsigned long size)
52{
53 unsigned long addr = *addrp, last = addr + size;
54
55 /* various gunk below that needed for SMP startup */
56 if (addr < 0x8000) {
Vivek Goyal73bb8912006-10-21 18:37:01 +020057 *addrp = PAGE_ALIGN(0x8000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return 1;
59 }
60
61 /* direct mapping tables of the kernel */
62 if (last >= table_start<<PAGE_SHIFT && addr < table_end<<PAGE_SHIFT) {
Vivek Goyal73bb8912006-10-21 18:37:01 +020063 *addrp = PAGE_ALIGN(table_end << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return 1;
65 }
66
67 /* initrd */
68#ifdef CONFIG_BLK_DEV_INITRD
69 if (LOADER_TYPE && INITRD_START && last >= INITRD_START &&
70 addr < INITRD_START+INITRD_SIZE) {
Vivek Goyal73bb8912006-10-21 18:37:01 +020071 *addrp = PAGE_ALIGN(INITRD_START + INITRD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 1;
73 }
74#endif
Andi Kleendbf92722006-09-26 10:52:36 +020075 /* kernel code */
Vivek Goyal73bb8912006-10-21 18:37:01 +020076 if (last >= __pa_symbol(&_text) && addr < __pa_symbol(&_end)) {
77 *addrp = PAGE_ALIGN(__pa_symbol(&_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 1;
79 }
Andi Kleenac71d122006-05-08 15:17:28 +020080
81 if (last >= ebda_addr && addr < ebda_addr + ebda_size) {
Vivek Goyal73bb8912006-10-21 18:37:01 +020082 *addrp = PAGE_ALIGN(ebda_addr + ebda_size);
Andi Kleenac71d122006-05-08 15:17:28 +020083 return 1;
84 }
85
Amul Shah076422d2007-02-13 13:26:19 +010086#ifdef CONFIG_NUMA
87 /* NUMA memory to node map */
88 if (last >= nodemap_addr && addr < nodemap_addr + nodemap_size) {
89 *addrp = nodemap_addr + nodemap_size;
90 return 1;
91 }
92#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* XXX ramdisk image here? */
94 return 0;
95}
96
Arjan van de Ven95222362006-04-07 19:49:27 +020097/*
98 * This function checks if any part of the range <start,end> is mapped
99 * with type.
100 */
Jan Beulichb92e9fa2007-05-02 19:27:11 +0200101int
Arjan van de Veneee5a9f2006-04-07 19:49:24 +0200102e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int i;
105 for (i = 0; i < e820.nr_map; i++) {
106 struct e820entry *ei = &e820.map[i];
107 if (type && ei->type != type)
108 continue;
Eric W. Biederman48c8b112005-09-06 15:16:20 -0700109 if (ei->addr >= end || ei->addr + ei->size <= start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 continue;
111 return 1;
112 }
113 return 0;
114}
Jan Beulichb92e9fa2007-05-02 19:27:11 +0200115EXPORT_SYMBOL_GPL(e820_any_mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Linus Torvalds79e453d2006-09-19 08:15:22 -0700117/*
118 * This function checks if the entire range <start,end> is mapped with type.
119 *
120 * Note: this function only works correct if the e820 table is sorted and
121 * not-overlapping, which is the case
122 */
123int __init e820_all_mapped(unsigned long start, unsigned long end, unsigned type)
124{
125 int i;
126 for (i = 0; i < e820.nr_map; i++) {
127 struct e820entry *ei = &e820.map[i];
128 if (type && ei->type != type)
129 continue;
130 /* is the region (part) in overlap with the current region ?*/
131 if (ei->addr >= end || ei->addr + ei->size <= start)
132 continue;
133
134 /* if the region is at the beginning of <start,end> we move
135 * start to the end of the region since it's ok until there
136 */
137 if (ei->addr <= start)
138 start = ei->addr + ei->size;
139 /* if start is now at or beyond end, we're done, full coverage */
140 if (start >= end)
141 return 1; /* we're done */
142 }
143 return 0;
144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Find a free area in a specific range.
148 */
149unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size)
150{
151 int i;
152 for (i = 0; i < e820.nr_map; i++) {
153 struct e820entry *ei = &e820.map[i];
154 unsigned long addr = ei->addr, last;
155 if (ei->type != E820_RAM)
156 continue;
157 if (addr < start)
158 addr = start;
159 if (addr > ei->addr + ei->size)
160 continue;
Robert Hentosh7ca97c62006-05-30 22:48:00 +0200161 while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ;
Vivek Goyal73bb8912006-10-21 18:37:01 +0200163 last = PAGE_ALIGN(addr) + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (last > ei->addr + ei->size)
165 continue;
166 if (last > end)
167 continue;
168 return addr;
169 }
170 return -1UL;
171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
174 * Find the highest page frame number we have available
175 */
176unsigned long __init e820_end_of_ram(void)
177{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned long end_pfn = 0;
Mel Gorman5cb248a2006-09-27 01:49:52 -0700179 end_pfn = find_max_pfn_with_active_regions();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (end_pfn > end_pfn_map)
182 end_pfn_map = end_pfn;
183 if (end_pfn_map > MAXMEM>>PAGE_SHIFT)
184 end_pfn_map = MAXMEM>>PAGE_SHIFT;
185 if (end_pfn > end_user_pfn)
186 end_pfn = end_user_pfn;
187 if (end_pfn > end_pfn_map)
188 end_pfn = end_pfn_map;
189
Mel Gorman5cb248a2006-09-27 01:49:52 -0700190 printk("end_pfn_map = %lu\n", end_pfn_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return end_pfn;
192}
193
Andi Kleen485761b2005-08-26 18:34:10 -0700194/*
Rohit Seth53fee042007-02-13 13:26:22 +0100195 * Find the hole size in the range.
196 */
197unsigned long __init e820_hole_size(unsigned long start, unsigned long end)
198{
199 unsigned long ram = 0;
200 int i;
201
202 for (i = 0; i < e820.nr_map; i++) {
203 struct e820entry *ei = &e820.map[i];
204 unsigned long last, addr;
205
206 if (ei->type != E820_RAM ||
207 ei->addr+ei->size <= start ||
208 ei->addr >= end)
209 continue;
210
211 addr = round_up(ei->addr, PAGE_SIZE);
212 if (addr < start)
213 addr = start;
214
215 last = round_down(ei->addr + ei->size, PAGE_SIZE);
216 if (last >= end)
217 last = end;
218
219 if (last > addr)
220 ram += last - addr;
221 }
222 return ((end - start) - ram);
223}
224
225/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * Mark e820 reserved areas as busy for the resource manager.
227 */
228void __init e820_reserve_resources(void)
229{
230 int i;
231 for (i = 0; i < e820.nr_map; i++) {
232 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 res = alloc_bootmem_low(sizeof(struct resource));
234 switch (e820.map[i].type) {
235 case E820_RAM: res->name = "System RAM"; break;
236 case E820_ACPI: res->name = "ACPI Tables"; break;
237 case E820_NVS: res->name = "ACPI Non-volatile Storage"; break;
238 default: res->name = "reserved";
239 }
240 res->start = e820.map[i].addr;
241 res->end = res->start + e820.map[i].size - 1;
242 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
243 request_resource(&iomem_resource, res);
244 if (e820.map[i].type == E820_RAM) {
245 /*
246 * We don't know which RAM region contains kernel data,
247 * so we try it repeatedly and let the resource manager
248 * test it.
249 */
250 request_resource(res, &code_resource);
251 request_resource(res, &data_resource);
Eric W. Biederman5f5609d2005-06-25 14:58:04 -0700252#ifdef CONFIG_KEXEC
253 request_resource(res, &crashk_res);
254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
257}
258
Rafael J. Wysockie8eff5a2006-09-25 23:32:46 -0700259/* Mark pages corresponding to given address range as nosave */
260static void __init
261e820_mark_nosave_range(unsigned long start, unsigned long end)
262{
263 unsigned long pfn, max_pfn;
264
265 if (start >= end)
266 return;
267
268 printk("Nosave address range: %016lx - %016lx\n", start, end);
269 max_pfn = end >> PAGE_SHIFT;
270 for (pfn = start >> PAGE_SHIFT; pfn < max_pfn; pfn++)
271 if (pfn_valid(pfn))
272 SetPageNosave(pfn_to_page(pfn));
273}
274
275/*
276 * Find the ranges of physical addresses that do not correspond to
277 * e820 RAM areas and mark the corresponding pages as nosave for software
278 * suspend and suspend to RAM.
279 *
280 * This function requires the e820 map to be sorted and without any
281 * overlapping entries and assumes the first e820 area to be RAM.
282 */
283void __init e820_mark_nosave_regions(void)
284{
285 int i;
286 unsigned long paddr;
287
288 paddr = round_down(e820.map[0].addr + e820.map[0].size, PAGE_SIZE);
289 for (i = 1; i < e820.nr_map; i++) {
290 struct e820entry *ei = &e820.map[i];
291
292 if (paddr < ei->addr)
293 e820_mark_nosave_range(paddr,
294 round_up(ei->addr, PAGE_SIZE));
295
296 paddr = round_down(ei->addr + ei->size, PAGE_SIZE);
297 if (ei->type != E820_RAM)
298 e820_mark_nosave_range(round_up(ei->addr, PAGE_SIZE),
299 paddr);
300
301 if (paddr >= (end_pfn << PAGE_SHIFT))
302 break;
303 }
304}
305
Mel Gorman5cb248a2006-09-27 01:49:52 -0700306/* Walk the e820 map and register active regions within a node */
307void __init
308e820_register_active_regions(int nid, unsigned long start_pfn,
309 unsigned long end_pfn)
310{
311 int i;
312 unsigned long ei_startpfn, ei_endpfn;
313 for (i = 0; i < e820.nr_map; i++) {
314 struct e820entry *ei = &e820.map[i];
315 ei_startpfn = round_up(ei->addr, PAGE_SIZE) >> PAGE_SHIFT;
316 ei_endpfn = round_down(ei->addr + ei->size, PAGE_SIZE)
317 >> PAGE_SHIFT;
318
319 /* Skip map entries smaller than a page */
Aaron Durbin14f448e2006-11-14 16:57:45 +0100320 if (ei_startpfn >= ei_endpfn)
Mel Gorman5cb248a2006-09-27 01:49:52 -0700321 continue;
322
323 /* Check if end_pfn_map should be updated */
324 if (ei->type != E820_RAM && ei_endpfn > end_pfn_map)
325 end_pfn_map = ei_endpfn;
326
327 /* Skip if map is outside the node */
328 if (ei->type != E820_RAM ||
329 ei_endpfn <= start_pfn ||
330 ei_startpfn >= end_pfn)
331 continue;
332
333 /* Check for overlaps */
334 if (ei_startpfn < start_pfn)
335 ei_startpfn = start_pfn;
336 if (ei_endpfn > end_pfn)
337 ei_endpfn = end_pfn;
338
339 /* Obey end_user_pfn to save on memmap */
340 if (ei_startpfn >= end_user_pfn)
341 continue;
342 if (ei_endpfn > end_user_pfn)
343 ei_endpfn = end_user_pfn;
344
345 add_active_range(nid, ei_startpfn, ei_endpfn);
346 }
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/*
350 * Add a memory region to the kernel e820 map.
351 */
352void __init add_memory_region(unsigned long start, unsigned long size, int type)
353{
354 int x = e820.nr_map;
355
356 if (x == E820MAX) {
357 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
358 return;
359 }
360
361 e820.map[x].addr = start;
362 e820.map[x].size = size;
363 e820.map[x].type = type;
364 e820.nr_map++;
365}
366
367void __init e820_print_map(char *who)
368{
369 int i;
370
371 for (i = 0; i < e820.nr_map; i++) {
372 printk(" %s: %016Lx - %016Lx ", who,
373 (unsigned long long) e820.map[i].addr,
374 (unsigned long long) (e820.map[i].addr + e820.map[i].size));
375 switch (e820.map[i].type) {
376 case E820_RAM: printk("(usable)\n");
377 break;
378 case E820_RESERVED:
379 printk("(reserved)\n");
380 break;
381 case E820_ACPI:
382 printk("(ACPI data)\n");
383 break;
384 case E820_NVS:
385 printk("(ACPI NVS)\n");
386 break;
387 default: printk("type %u\n", e820.map[i].type);
388 break;
389 }
390 }
391}
392
393/*
394 * Sanitize the BIOS e820 map.
395 *
396 * Some e820 responses include overlapping entries. The following
397 * replaces the original e820 map with a new one, removing overlaps.
398 *
399 */
400static int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
401{
402 struct change_member {
403 struct e820entry *pbios; /* pointer to original bios entry */
404 unsigned long long addr; /* address for this change point */
405 };
406 static struct change_member change_point_list[2*E820MAX] __initdata;
407 static struct change_member *change_point[2*E820MAX] __initdata;
408 static struct e820entry *overlap_list[E820MAX] __initdata;
409 static struct e820entry new_bios[E820MAX] __initdata;
410 struct change_member *change_tmp;
411 unsigned long current_type, last_type;
412 unsigned long long last_addr;
413 int chgidx, still_changing;
414 int overlap_entries;
415 int new_bios_entry;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700416 int old_nr, new_nr, chg_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 int i;
418
419 /*
420 Visually we're performing the following (1,2,3,4 = memory types)...
421
422 Sample memory map (w/overlaps):
423 ____22__________________
424 ______________________4_
425 ____1111________________
426 _44_____________________
427 11111111________________
428 ____________________33__
429 ___________44___________
430 __________33333_________
431 ______________22________
432 ___________________2222_
433 _________111111111______
434 _____________________11_
435 _________________4______
436
437 Sanitized equivalent (no overlap):
438 1_______________________
439 _44_____________________
440 ___1____________________
441 ____22__________________
442 ______11________________
443 _________1______________
444 __________3_____________
445 ___________44___________
446 _____________33_________
447 _______________2________
448 ________________1_______
449 _________________4______
450 ___________________2____
451 ____________________33__
452 ______________________4_
453 */
454
455 /* if there's only one memory region, don't bother */
456 if (*pnr_map < 2)
457 return -1;
458
459 old_nr = *pnr_map;
460
461 /* bail out if we find any unreasonable addresses in bios map */
462 for (i=0; i<old_nr; i++)
463 if (biosmap[i].addr + biosmap[i].size < biosmap[i].addr)
464 return -1;
465
466 /* create pointers for initial change-point information (for sorting) */
467 for (i=0; i < 2*old_nr; i++)
468 change_point[i] = &change_point_list[i];
469
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700470 /* record all known change-points (starting and ending addresses),
471 omitting those that are for empty memory regions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 chgidx = 0;
473 for (i=0; i < old_nr; i++) {
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700474 if (biosmap[i].size != 0) {
475 change_point[chgidx]->addr = biosmap[i].addr;
476 change_point[chgidx++]->pbios = &biosmap[i];
477 change_point[chgidx]->addr = biosmap[i].addr + biosmap[i].size;
478 change_point[chgidx++]->pbios = &biosmap[i];
479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700481 chg_nr = chgidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* sort change-point list by memory addresses (low -> high) */
484 still_changing = 1;
485 while (still_changing) {
486 still_changing = 0;
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700487 for (i=1; i < chg_nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* if <current_addr> > <last_addr>, swap */
489 /* or, if current=<start_addr> & last=<end_addr>, swap */
490 if ((change_point[i]->addr < change_point[i-1]->addr) ||
491 ((change_point[i]->addr == change_point[i-1]->addr) &&
492 (change_point[i]->addr == change_point[i]->pbios->addr) &&
493 (change_point[i-1]->addr != change_point[i-1]->pbios->addr))
494 )
495 {
496 change_tmp = change_point[i];
497 change_point[i] = change_point[i-1];
498 change_point[i-1] = change_tmp;
499 still_changing=1;
500 }
501 }
502 }
503
504 /* create a new bios memory map, removing overlaps */
505 overlap_entries=0; /* number of entries in the overlap table */
506 new_bios_entry=0; /* index for creating new bios map entries */
507 last_type = 0; /* start with undefined memory type */
508 last_addr = 0; /* start with 0 as last starting address */
509 /* loop through change-points, determining affect on the new bios map */
Venkatesh Pallipadi8059b2a2005-05-01 08:58:52 -0700510 for (chgidx=0; chgidx < chg_nr; chgidx++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 {
512 /* keep track of all overlapping bios entries */
513 if (change_point[chgidx]->addr == change_point[chgidx]->pbios->addr)
514 {
515 /* add map entry to overlap list (> 1 entry implies an overlap) */
516 overlap_list[overlap_entries++]=change_point[chgidx]->pbios;
517 }
518 else
519 {
520 /* remove entry from list (order independent, so swap with last) */
521 for (i=0; i<overlap_entries; i++)
522 {
523 if (overlap_list[i] == change_point[chgidx]->pbios)
524 overlap_list[i] = overlap_list[overlap_entries-1];
525 }
526 overlap_entries--;
527 }
528 /* if there are overlapping entries, decide which "type" to use */
529 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
530 current_type = 0;
531 for (i=0; i<overlap_entries; i++)
532 if (overlap_list[i]->type > current_type)
533 current_type = overlap_list[i]->type;
534 /* continue building up new bios map based on this information */
535 if (current_type != last_type) {
536 if (last_type != 0) {
537 new_bios[new_bios_entry].size =
538 change_point[chgidx]->addr - last_addr;
539 /* move forward only if the new size was non-zero */
540 if (new_bios[new_bios_entry].size != 0)
541 if (++new_bios_entry >= E820MAX)
542 break; /* no more space left for new bios entries */
543 }
544 if (current_type != 0) {
545 new_bios[new_bios_entry].addr = change_point[chgidx]->addr;
546 new_bios[new_bios_entry].type = current_type;
547 last_addr=change_point[chgidx]->addr;
548 }
549 last_type = current_type;
550 }
551 }
552 new_nr = new_bios_entry; /* retain count for new bios entries */
553
554 /* copy new bios mapping into original location */
555 memcpy(biosmap, new_bios, new_nr*sizeof(struct e820entry));
556 *pnr_map = new_nr;
557
558 return 0;
559}
560
561/*
562 * Copy the BIOS e820 map into a safe place.
563 *
564 * Sanity-check it while we're at it..
565 *
566 * If we're lucky and live on a modern system, the setup code
567 * will have given us a memory map that we can use to properly
568 * set up memory. If we aren't, we'll fake a memory map.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 */
570static int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
571{
572 /* Only one memory region (or negative)? Ignore it */
573 if (nr_map < 2)
574 return -1;
575
576 do {
577 unsigned long start = biosmap->addr;
578 unsigned long size = biosmap->size;
579 unsigned long end = start + size;
580 unsigned long type = biosmap->type;
581
582 /* Overflow in 64 bits? Ignore the memory map. */
583 if (start > end)
584 return -1;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 add_memory_region(start, size, type);
587 } while (biosmap++,--nr_map);
588 return 0;
589}
590
Andi Kleen8380aab2006-09-26 10:52:37 +0200591void early_panic(char *msg)
592{
593 early_printk(msg);
594 panic(msg);
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597void __init setup_memory_region(void)
598{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /*
600 * Try to copy the BIOS-supplied E820-map.
601 *
602 * Otherwise fake a memory map; one section from 0k->640k,
603 * the next section from 1mb->appropriate_mem_k
604 */
605 sanitize_e820_map(E820_MAP, &E820_MAP_NR);
Andi Kleen8380aab2006-09-26 10:52:37 +0200606 if (copy_e820_map(E820_MAP, E820_MAP_NR) < 0)
607 early_panic("Cannot find a valid memory map");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 printk(KERN_INFO "BIOS-provided physical RAM map:\n");
Andi Kleen8380aab2006-09-26 10:52:37 +0200609 e820_print_map("BIOS-e820");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200612static int __init parse_memopt(char *p)
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800613{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200614 if (!p)
615 return -EINVAL;
616 end_user_pfn = memparse(p, &p);
617 end_user_pfn >>= PAGE_SHIFT;
618 return 0;
619}
620early_param("mem", parse_memopt);
621
622static int userdef __initdata;
623
624static int __init parse_memmap_opt(char *p)
625{
626 char *oldp;
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800627 unsigned long long start_at, mem_size;
628
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200629 if (!strcmp(p, "exactmap")) {
630#ifdef CONFIG_CRASH_DUMP
631 /* If we are doing a crash dump, we
632 * still need to know the real mem
633 * size before original memory map is
634 * reset.
635 */
Magnus Damm15803a42006-11-14 16:57:46 +0100636 e820_register_active_regions(0, 0, -1UL);
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200637 saved_max_pfn = e820_end_of_ram();
Magnus Damm15803a42006-11-14 16:57:46 +0100638 remove_all_active_ranges();
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200639#endif
640 end_pfn_map = 0;
641 e820.nr_map = 0;
642 userdef = 1;
643 return 0;
644 }
645
646 oldp = p;
647 mem_size = memparse(p, &p);
648 if (p == oldp)
649 return -EINVAL;
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800650 if (*p == '@') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200651 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800652 add_memory_region(start_at, mem_size, E820_RAM);
653 } else if (*p == '#') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200654 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800655 add_memory_region(start_at, mem_size, E820_ACPI);
656 } else if (*p == '$') {
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200657 start_at = memparse(p+1, &p);
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800658 add_memory_region(start_at, mem_size, E820_RESERVED);
659 } else {
660 end_user_pfn = (mem_size >> PAGE_SHIFT);
661 }
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200662 return *p == '\0' ? 0 : -EINVAL;
663}
664early_param("memmap", parse_memmap_opt);
665
Sam Ravnborg43999d92007-03-16 21:07:36 +0100666void __init finish_e820_parsing(void)
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200667{
668 if (userdef) {
669 printk(KERN_INFO "user-defined physical RAM map:\n");
670 e820_print_map("user");
671 }
akpm@osdl.org69cda7b2006-01-09 20:51:46 -0800672}
673
Andi Kleena1e97782005-04-16 15:25:12 -0700674unsigned long pci_mem_start = 0xaeedbabe;
Andi Kleen2ee60e172006-06-26 13:59:44 +0200675EXPORT_SYMBOL(pci_mem_start);
Andi Kleena1e97782005-04-16 15:25:12 -0700676
677/*
678 * Search for the biggest gap in the low 32 bits of the e820
679 * memory space. We pass this space to PCI to assign MMIO resources
680 * for hotplug or unconfigured devices in.
681 * Hopefully the BIOS let enough space left.
682 */
683__init void e820_setup_gap(void)
684{
Daniel Ritzf0eca962005-09-09 00:57:14 +0200685 unsigned long gapstart, gapsize, round;
Andi Kleena1e97782005-04-16 15:25:12 -0700686 unsigned long last;
687 int i;
688 int found = 0;
689
690 last = 0x100000000ull;
691 gapstart = 0x10000000;
692 gapsize = 0x400000;
693 i = e820.nr_map;
694 while (--i >= 0) {
695 unsigned long long start = e820.map[i].addr;
696 unsigned long long end = start + e820.map[i].size;
697
698 /*
699 * Since "last" is at most 4GB, we know we'll
700 * fit in 32 bits if this condition is true
701 */
702 if (last > end) {
703 unsigned long gap = last - end;
704
705 if (gap > gapsize) {
706 gapsize = gap;
707 gapstart = end;
708 found = 1;
709 }
710 }
711 if (start < last)
712 last = start;
713 }
714
715 if (!found) {
716 gapstart = (end_pfn << PAGE_SHIFT) + 1024*1024;
717 printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit address range\n"
718 KERN_ERR "PCI: Unassigned devices with 32bit resource registers may break!\n");
719 }
720
721 /*
Daniel Ritzf0eca962005-09-09 00:57:14 +0200722 * See how much we want to round up: start off with
723 * rounding to the next 1MB area.
Andi Kleena1e97782005-04-16 15:25:12 -0700724 */
Daniel Ritzf0eca962005-09-09 00:57:14 +0200725 round = 0x100000;
726 while ((gapsize >> 4) > round)
727 round += round;
728 /* Fun with two's complement */
729 pci_mem_start = (gapstart + round) & -round;
Andi Kleena1e97782005-04-16 15:25:12 -0700730
731 printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
732 pci_mem_start, gapstart, gapsize);
733}