2 * Handle the memory map.
3 * The functions here do the job until bootmem takes over.
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>
11 #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>
17 #include <linux/kexec.h>
18 #include <linux/module.h>
21 #include <asm/pgtable.h>
24 #include <asm/proto.h>
25 #include <asm/bootsetup.h>
26 #include <asm/sections.h>
28 struct e820map e820 __initdata;
31 * PFN of last memory page.
33 unsigned long end_pfn;
34 EXPORT_SYMBOL(end_pfn);
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.
41 unsigned long end_pfn_map;
44 * Last pfn which the user wants to use.
46 static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT;
48 extern struct resource code_resource, data_resource;
50 /* Check for some hardcoded bad areas that early boot is not allowed to touch */
51 static inline int bad_addr(unsigned long *addrp, unsigned long size)
53 unsigned long addr = *addrp, last = addr + size;
55 /* various gunk below that needed for SMP startup */
57 *addrp = PAGE_ALIGN(0x8000);
61 /* direct mapping tables of the kernel */
62 if (last >= table_start<<PAGE_SHIFT && addr < table_end<<PAGE_SHIFT) {
63 *addrp = PAGE_ALIGN(table_end << PAGE_SHIFT);
68 #ifdef CONFIG_BLK_DEV_INITRD
69 if (LOADER_TYPE && INITRD_START && last >= INITRD_START &&
70 addr < INITRD_START+INITRD_SIZE) {
71 *addrp = PAGE_ALIGN(INITRD_START + INITRD_SIZE);
76 if (last >= __pa_symbol(&_text) && addr < __pa_symbol(&_end)) {
77 *addrp = PAGE_ALIGN(__pa_symbol(&_end));
81 if (last >= ebda_addr && addr < ebda_addr + ebda_size) {
82 *addrp = PAGE_ALIGN(ebda_addr + ebda_size);
87 /* NUMA memory to node map */
88 if (last >= nodemap_addr && addr < nodemap_addr + nodemap_size) {
89 *addrp = nodemap_addr + nodemap_size;
93 /* XXX ramdisk image here? */
98 * This function checks if any part of the range <start,end> is mapped
102 e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
105 for (i = 0; i < e820.nr_map; i++) {
106 struct e820entry *ei = &e820.map[i];
107 if (type && ei->type != type)
109 if (ei->addr >= end || ei->addr + ei->size <= start)
117 * This function checks if the entire range <start,end> is mapped with type.
119 * Note: this function only works correct if the e820 table is sorted and
120 * not-overlapping, which is the case
122 int __init e820_all_mapped(unsigned long start, unsigned long end, unsigned type)
125 for (i = 0; i < e820.nr_map; i++) {
126 struct e820entry *ei = &e820.map[i];
127 if (type && ei->type != type)
129 /* is the region (part) in overlap with the current region ?*/
130 if (ei->addr >= end || ei->addr + ei->size <= start)
133 /* if the region is at the beginning of <start,end> we move
134 * start to the end of the region since it's ok until there
136 if (ei->addr <= start)
137 start = ei->addr + ei->size;
138 /* if start is now at or beyond end, we're done, full coverage */
140 return 1; /* we're done */
146 * Find a free area in a specific range.
148 unsigned long __init find_e820_area(unsigned long start, unsigned long end, unsigned size)
151 for (i = 0; i < e820.nr_map; i++) {
152 struct e820entry *ei = &e820.map[i];
153 unsigned long addr = ei->addr, last;
154 if (ei->type != E820_RAM)
158 if (addr > ei->addr + ei->size)
160 while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size)
162 last = PAGE_ALIGN(addr) + size;
163 if (last > ei->addr + ei->size)
173 * Find the highest page frame number we have available
175 unsigned long __init e820_end_of_ram(void)
177 unsigned long end_pfn = 0;
178 end_pfn = find_max_pfn_with_active_regions();
180 if (end_pfn > end_pfn_map)
181 end_pfn_map = end_pfn;
182 if (end_pfn_map > MAXMEM>>PAGE_SHIFT)
183 end_pfn_map = MAXMEM>>PAGE_SHIFT;
184 if (end_pfn > end_user_pfn)
185 end_pfn = end_user_pfn;
186 if (end_pfn > end_pfn_map)
187 end_pfn = end_pfn_map;
189 printk("end_pfn_map = %lu\n", end_pfn_map);
194 * Find the hole size in the range.
196 unsigned long __init e820_hole_size(unsigned long start, unsigned long end)
198 unsigned long ram = 0;
201 for (i = 0; i < e820.nr_map; i++) {
202 struct e820entry *ei = &e820.map[i];
203 unsigned long last, addr;
205 if (ei->type != E820_RAM ||
206 ei->addr+ei->size <= start ||
210 addr = round_up(ei->addr, PAGE_SIZE);
214 last = round_down(ei->addr + ei->size, PAGE_SIZE);
221 return ((end - start) - ram);
225 * Mark e820 reserved areas as busy for the resource manager.
227 void __init e820_reserve_resources(void)
230 for (i = 0; i < e820.nr_map; i++) {
231 struct resource *res;
232 res = alloc_bootmem_low(sizeof(struct resource));
233 switch (e820.map[i].type) {
234 case E820_RAM: res->name = "System RAM"; break;
235 case E820_ACPI: res->name = "ACPI Tables"; break;
236 case E820_NVS: res->name = "ACPI Non-volatile Storage"; break;
237 default: res->name = "reserved";
239 res->start = e820.map[i].addr;
240 res->end = res->start + e820.map[i].size - 1;
241 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
242 request_resource(&iomem_resource, res);
243 if (e820.map[i].type == E820_RAM) {
245 * We don't know which RAM region contains kernel data,
246 * so we try it repeatedly and let the resource manager
249 request_resource(res, &code_resource);
250 request_resource(res, &data_resource);
252 request_resource(res, &crashk_res);
258 /* Mark pages corresponding to given address range as nosave */
260 e820_mark_nosave_range(unsigned long start, unsigned long end)
262 unsigned long pfn, max_pfn;
267 printk("Nosave address range: %016lx - %016lx\n", start, end);
268 max_pfn = end >> PAGE_SHIFT;
269 for (pfn = start >> PAGE_SHIFT; pfn < max_pfn; pfn++)
271 SetPageNosave(pfn_to_page(pfn));
275 * Find the ranges of physical addresses that do not correspond to
276 * e820 RAM areas and mark the corresponding pages as nosave for software
277 * suspend and suspend to RAM.
279 * This function requires the e820 map to be sorted and without any
280 * overlapping entries and assumes the first e820 area to be RAM.
282 void __init e820_mark_nosave_regions(void)
287 paddr = round_down(e820.map[0].addr + e820.map[0].size, PAGE_SIZE);
288 for (i = 1; i < e820.nr_map; i++) {
289 struct e820entry *ei = &e820.map[i];
291 if (paddr < ei->addr)
292 e820_mark_nosave_range(paddr,
293 round_up(ei->addr, PAGE_SIZE));
295 paddr = round_down(ei->addr + ei->size, PAGE_SIZE);
296 if (ei->type != E820_RAM)
297 e820_mark_nosave_range(round_up(ei->addr, PAGE_SIZE),
300 if (paddr >= (end_pfn << PAGE_SHIFT))
305 /* Walk the e820 map and register active regions within a node */
307 e820_register_active_regions(int nid, unsigned long start_pfn,
308 unsigned long end_pfn)
311 unsigned long ei_startpfn, ei_endpfn;
312 for (i = 0; i < e820.nr_map; i++) {
313 struct e820entry *ei = &e820.map[i];
314 ei_startpfn = round_up(ei->addr, PAGE_SIZE) >> PAGE_SHIFT;
315 ei_endpfn = round_down(ei->addr + ei->size, PAGE_SIZE)
318 /* Skip map entries smaller than a page */
319 if (ei_startpfn >= ei_endpfn)
322 /* Check if end_pfn_map should be updated */
323 if (ei->type != E820_RAM && ei_endpfn > end_pfn_map)
324 end_pfn_map = ei_endpfn;
326 /* Skip if map is outside the node */
327 if (ei->type != E820_RAM ||
328 ei_endpfn <= start_pfn ||
329 ei_startpfn >= end_pfn)
332 /* Check for overlaps */
333 if (ei_startpfn < start_pfn)
334 ei_startpfn = start_pfn;
335 if (ei_endpfn > end_pfn)
338 /* Obey end_user_pfn to save on memmap */
339 if (ei_startpfn >= end_user_pfn)
341 if (ei_endpfn > end_user_pfn)
342 ei_endpfn = end_user_pfn;
344 add_active_range(nid, ei_startpfn, ei_endpfn);
349 * Add a memory region to the kernel e820 map.
351 void __init add_memory_region(unsigned long start, unsigned long size, int type)
356 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
360 e820.map[x].addr = start;
361 e820.map[x].size = size;
362 e820.map[x].type = type;
366 void __init e820_print_map(char *who)
370 for (i = 0; i < e820.nr_map; i++) {
371 printk(" %s: %016Lx - %016Lx ", who,
372 (unsigned long long) e820.map[i].addr,
373 (unsigned long long) (e820.map[i].addr + e820.map[i].size));
374 switch (e820.map[i].type) {
375 case E820_RAM: printk("(usable)\n");
378 printk("(reserved)\n");
381 printk("(ACPI data)\n");
384 printk("(ACPI NVS)\n");
386 default: printk("type %u\n", e820.map[i].type);
393 * Sanitize the BIOS e820 map.
395 * Some e820 responses include overlapping entries. The following
396 * replaces the original e820 map with a new one, removing overlaps.
399 static int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map)
401 struct change_member {
402 struct e820entry *pbios; /* pointer to original bios entry */
403 unsigned long long addr; /* address for this change point */
405 static struct change_member change_point_list[2*E820MAX] __initdata;
406 static struct change_member *change_point[2*E820MAX] __initdata;
407 static struct e820entry *overlap_list[E820MAX] __initdata;
408 static struct e820entry new_bios[E820MAX] __initdata;
409 struct change_member *change_tmp;
410 unsigned long current_type, last_type;
411 unsigned long long last_addr;
412 int chgidx, still_changing;
415 int old_nr, new_nr, chg_nr;
419 Visually we're performing the following (1,2,3,4 = memory types)...
421 Sample memory map (w/overlaps):
422 ____22__________________
423 ______________________4_
424 ____1111________________
425 _44_____________________
426 11111111________________
427 ____________________33__
428 ___________44___________
429 __________33333_________
430 ______________22________
431 ___________________2222_
432 _________111111111______
433 _____________________11_
434 _________________4______
436 Sanitized equivalent (no overlap):
437 1_______________________
438 _44_____________________
439 ___1____________________
440 ____22__________________
441 ______11________________
442 _________1______________
443 __________3_____________
444 ___________44___________
445 _____________33_________
446 _______________2________
447 ________________1_______
448 _________________4______
449 ___________________2____
450 ____________________33__
451 ______________________4_
454 /* if there's only one memory region, don't bother */
460 /* bail out if we find any unreasonable addresses in bios map */
461 for (i=0; i<old_nr; i++)
462 if (biosmap[i].addr + biosmap[i].size < biosmap[i].addr)
465 /* create pointers for initial change-point information (for sorting) */
466 for (i=0; i < 2*old_nr; i++)
467 change_point[i] = &change_point_list[i];
469 /* record all known change-points (starting and ending addresses),
470 omitting those that are for empty memory regions */
472 for (i=0; i < old_nr; i++) {
473 if (biosmap[i].size != 0) {
474 change_point[chgidx]->addr = biosmap[i].addr;
475 change_point[chgidx++]->pbios = &biosmap[i];
476 change_point[chgidx]->addr = biosmap[i].addr + biosmap[i].size;
477 change_point[chgidx++]->pbios = &biosmap[i];
482 /* sort change-point list by memory addresses (low -> high) */
484 while (still_changing) {
486 for (i=1; i < chg_nr; i++) {
487 /* if <current_addr> > <last_addr>, swap */
488 /* or, if current=<start_addr> & last=<end_addr>, swap */
489 if ((change_point[i]->addr < change_point[i-1]->addr) ||
490 ((change_point[i]->addr == change_point[i-1]->addr) &&
491 (change_point[i]->addr == change_point[i]->pbios->addr) &&
492 (change_point[i-1]->addr != change_point[i-1]->pbios->addr))
495 change_tmp = change_point[i];
496 change_point[i] = change_point[i-1];
497 change_point[i-1] = change_tmp;
503 /* create a new bios memory map, removing overlaps */
504 overlap_entries=0; /* number of entries in the overlap table */
505 new_bios_entry=0; /* index for creating new bios map entries */
506 last_type = 0; /* start with undefined memory type */
507 last_addr = 0; /* start with 0 as last starting address */
508 /* loop through change-points, determining affect on the new bios map */
509 for (chgidx=0; chgidx < chg_nr; chgidx++)
511 /* keep track of all overlapping bios entries */
512 if (change_point[chgidx]->addr == change_point[chgidx]->pbios->addr)
514 /* add map entry to overlap list (> 1 entry implies an overlap) */
515 overlap_list[overlap_entries++]=change_point[chgidx]->pbios;
519 /* remove entry from list (order independent, so swap with last) */
520 for (i=0; i<overlap_entries; i++)
522 if (overlap_list[i] == change_point[chgidx]->pbios)
523 overlap_list[i] = overlap_list[overlap_entries-1];
527 /* if there are overlapping entries, decide which "type" to use */
528 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
530 for (i=0; i<overlap_entries; i++)
531 if (overlap_list[i]->type > current_type)
532 current_type = overlap_list[i]->type;
533 /* continue building up new bios map based on this information */
534 if (current_type != last_type) {
535 if (last_type != 0) {
536 new_bios[new_bios_entry].size =
537 change_point[chgidx]->addr - last_addr;
538 /* move forward only if the new size was non-zero */
539 if (new_bios[new_bios_entry].size != 0)
540 if (++new_bios_entry >= E820MAX)
541 break; /* no more space left for new bios entries */
543 if (current_type != 0) {
544 new_bios[new_bios_entry].addr = change_point[chgidx]->addr;
545 new_bios[new_bios_entry].type = current_type;
546 last_addr=change_point[chgidx]->addr;
548 last_type = current_type;
551 new_nr = new_bios_entry; /* retain count for new bios entries */
553 /* copy new bios mapping into original location */
554 memcpy(biosmap, new_bios, new_nr*sizeof(struct e820entry));
561 * Copy the BIOS e820 map into a safe place.
563 * Sanity-check it while we're at it..
565 * If we're lucky and live on a modern system, the setup code
566 * will have given us a memory map that we can use to properly
567 * set up memory. If we aren't, we'll fake a memory map.
569 static int __init copy_e820_map(struct e820entry * biosmap, int nr_map)
571 /* Only one memory region (or negative)? Ignore it */
576 unsigned long start = biosmap->addr;
577 unsigned long size = biosmap->size;
578 unsigned long end = start + size;
579 unsigned long type = biosmap->type;
581 /* Overflow in 64 bits? Ignore the memory map. */
585 add_memory_region(start, size, type);
586 } while (biosmap++,--nr_map);
590 void early_panic(char *msg)
596 void __init setup_memory_region(void)
599 * Try to copy the BIOS-supplied E820-map.
601 * Otherwise fake a memory map; one section from 0k->640k,
602 * the next section from 1mb->appropriate_mem_k
604 sanitize_e820_map(E820_MAP, &E820_MAP_NR);
605 if (copy_e820_map(E820_MAP, E820_MAP_NR) < 0)
606 early_panic("Cannot find a valid memory map");
607 printk(KERN_INFO "BIOS-provided physical RAM map:\n");
608 e820_print_map("BIOS-e820");
611 static int __init parse_memopt(char *p)
615 end_user_pfn = memparse(p, &p);
616 end_user_pfn >>= PAGE_SHIFT;
619 early_param("mem", parse_memopt);
621 static int userdef __initdata;
623 static int __init parse_memmap_opt(char *p)
626 unsigned long long start_at, mem_size;
628 if (!strcmp(p, "exactmap")) {
629 #ifdef CONFIG_CRASH_DUMP
630 /* If we are doing a crash dump, we
631 * still need to know the real mem
632 * size before original memory map is
635 e820_register_active_regions(0, 0, -1UL);
636 saved_max_pfn = e820_end_of_ram();
637 remove_all_active_ranges();
646 mem_size = memparse(p, &p);
650 start_at = memparse(p+1, &p);
651 add_memory_region(start_at, mem_size, E820_RAM);
652 } else if (*p == '#') {
653 start_at = memparse(p+1, &p);
654 add_memory_region(start_at, mem_size, E820_ACPI);
655 } else if (*p == '$') {
656 start_at = memparse(p+1, &p);
657 add_memory_region(start_at, mem_size, E820_RESERVED);
659 end_user_pfn = (mem_size >> PAGE_SHIFT);
661 return *p == '\0' ? 0 : -EINVAL;
663 early_param("memmap", parse_memmap_opt);
665 void __init finish_e820_parsing(void)
668 printk(KERN_INFO "user-defined physical RAM map:\n");
669 e820_print_map("user");
673 unsigned long pci_mem_start = 0xaeedbabe;
674 EXPORT_SYMBOL(pci_mem_start);
677 * Search for the biggest gap in the low 32 bits of the e820
678 * memory space. We pass this space to PCI to assign MMIO resources
679 * for hotplug or unconfigured devices in.
680 * Hopefully the BIOS let enough space left.
682 __init void e820_setup_gap(void)
684 unsigned long gapstart, gapsize, round;
689 last = 0x100000000ull;
690 gapstart = 0x10000000;
694 unsigned long long start = e820.map[i].addr;
695 unsigned long long end = start + e820.map[i].size;
698 * Since "last" is at most 4GB, we know we'll
699 * fit in 32 bits if this condition is true
702 unsigned long gap = last - end;
715 gapstart = (end_pfn << PAGE_SHIFT) + 1024*1024;
716 printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit address range\n"
717 KERN_ERR "PCI: Unassigned devices with 32bit resource registers may break!\n");
721 * See how much we want to round up: start off with
722 * rounding to the next 1MB area.
725 while ((gapsize >> 4) > round)
727 /* Fun with two's complement */
728 pci_mem_start = (gapstart + round) & -round;
730 printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n",
731 pci_mem_start, gapstart, gapsize);