2008-01-30 20:30:12 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Handle the memory map.
|
|
|
|
* The functions here do the job until bootmem takes over.
|
2005-05-01 23:58:52 +08:00
|
|
|
*
|
|
|
|
* Getting sanitize_e820_map() in sync with i386 version by applying change:
|
|
|
|
* - Provisions for empty E820 memory regions (reported by certain BIOSes).
|
|
|
|
* Alex Achenbach <xela@slit.de>, December 2002.
|
|
|
|
* Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
|
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/string.h>
|
2005-06-26 05:58:04 +08:00
|
|
|
#include <linux/kexec.h>
|
2005-09-17 10:27:54 +08:00
|
|
|
#include <linux/module.h>
|
2006-09-26 14:32:46 +08:00
|
|
|
#include <linux/mm.h>
|
2007-05-07 05:50:43 +08:00
|
|
|
#include <linux/pfn.h>
|
2008-05-12 21:43:37 +08:00
|
|
|
#include <linux/pci.h>
|
2005-09-17 10:27:54 +08:00
|
|
|
|
2006-07-10 19:43:49 +08:00
|
|
|
#include <asm/pgtable.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/e820.h>
|
|
|
|
#include <asm/proto.h>
|
2007-10-16 08:13:22 +08:00
|
|
|
#include <asm/setup.h>
|
2005-11-06 00:25:53 +08:00
|
|
|
#include <asm/sections.h>
|
2008-01-30 20:30:17 +08:00
|
|
|
#include <asm/kdebug.h>
|
2008-04-11 05:28:10 +08:00
|
|
|
#include <asm/trampoline.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-30 20:30:12 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* PFN of last memory page.
|
|
|
|
*/
|
2008-01-30 20:30:12 +08:00
|
|
|
unsigned long end_pfn;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-30 20:30:12 +08:00
|
|
|
/*
|
2008-03-22 04:27:10 +08:00
|
|
|
* end_pfn only includes RAM, while max_pfn_mapped includes all e820 entries.
|
|
|
|
* The direct mapping extends to max_pfn_mapped, so that we can directly access
|
2005-04-17 06:20:36 +08:00
|
|
|
* apertures, ACPI and other tables without having to play with fixmaps.
|
2008-01-30 20:30:12 +08:00
|
|
|
*/
|
2008-03-22 04:27:10 +08:00
|
|
|
unsigned long max_pfn_mapped;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-08-27 09:34:10 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Mark e820 reserved areas as busy for the resource manager.
|
|
|
|
*/
|
2008-02-23 09:07:16 +08:00
|
|
|
void __init e820_reserve_resources(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
int i;
|
2008-03-21 14:57:21 +08:00
|
|
|
struct resource *res;
|
|
|
|
|
|
|
|
res = alloc_bootmem_low(sizeof(struct resource) * e820.nr_map);
|
2005-04-17 06:20:36 +08:00
|
|
|
for (i = 0; i < e820.nr_map; i++) {
|
|
|
|
switch (e820.map[i].type) {
|
|
|
|
case E820_RAM: res->name = "System RAM"; break;
|
|
|
|
case E820_ACPI: res->name = "ACPI Tables"; break;
|
|
|
|
case E820_NVS: res->name = "ACPI Non-volatile Storage"; break;
|
|
|
|
default: res->name = "reserved";
|
|
|
|
}
|
|
|
|
res->start = e820.map[i].addr;
|
|
|
|
res->end = res->start + e820.map[i].size - 1;
|
|
|
|
res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
|
2008-02-23 09:07:16 +08:00
|
|
|
insert_resource(&iomem_resource, res);
|
2008-03-21 14:57:21 +08:00
|
|
|
res++;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-30 20:30:30 +08:00
|
|
|
static void early_panic(char *msg)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-09-26 16:52:37 +08:00
|
|
|
early_printk(msg);
|
|
|
|
panic(msg);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-30 20:31:11 +08:00
|
|
|
/* We're not void only for x86 32-bit compat */
|
2008-05-14 23:15:28 +08:00
|
|
|
char *__init machine_specific_memory_setup(void)
|
2006-09-26 16:52:37 +08:00
|
|
|
{
|
2008-01-30 20:31:11 +08:00
|
|
|
char *who = "BIOS-e820";
|
2008-05-14 23:15:46 +08:00
|
|
|
int new_nr;
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Try to copy the BIOS-supplied E820-map.
|
|
|
|
*
|
|
|
|
* Otherwise fake a memory map; one section from 0k->640k,
|
|
|
|
* the next section from 1mb->appropriate_mem_k
|
|
|
|
*/
|
2008-05-14 23:15:46 +08:00
|
|
|
new_nr = boot_params.e820_entries;
|
2008-05-14 23:15:34 +08:00
|
|
|
sanitize_e820_map(boot_params.e820_map,
|
|
|
|
ARRAY_SIZE(boot_params.e820_map),
|
2008-05-14 23:15:46 +08:00
|
|
|
&new_nr);
|
|
|
|
boot_params.e820_entries = new_nr;
|
2007-10-16 08:13:22 +08:00
|
|
|
if (copy_e820_map(boot_params.e820_map, boot_params.e820_entries) < 0)
|
2006-09-26 16:52:37 +08:00
|
|
|
early_panic("Cannot find a valid memory map");
|
2005-04-17 06:20:36 +08:00
|
|
|
printk(KERN_INFO "BIOS-provided physical RAM map:\n");
|
2008-01-30 20:31:11 +08:00
|
|
|
e820_print_map(who);
|
|
|
|
|
|
|
|
/* In case someone cares... */
|
|
|
|
return who;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-09-26 16:52:32 +08:00
|
|
|
static int __init parse_memopt(char *p)
|
|
|
|
{
|
|
|
|
if (!p)
|
|
|
|
return -EINVAL;
|
|
|
|
end_user_pfn = memparse(p, &p);
|
2008-01-30 20:30:12 +08:00
|
|
|
end_user_pfn >>= PAGE_SHIFT;
|
2006-09-26 16:52:32 +08:00
|
|
|
return 0;
|
2008-01-30 20:30:12 +08:00
|
|
|
}
|
2006-09-26 16:52:32 +08:00
|
|
|
early_param("mem", parse_memopt);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-26 16:52:32 +08:00
|
|
|
static int userdef __initdata;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-26 16:52:32 +08:00
|
|
|
static int __init parse_memmap_opt(char *p)
|
2006-01-10 12:51:46 +08:00
|
|
|
{
|
2006-09-26 16:52:32 +08:00
|
|
|
char *oldp;
|
2006-01-10 12:51:46 +08:00
|
|
|
unsigned long long start_at, mem_size;
|
|
|
|
|
2006-09-26 16:52:32 +08:00
|
|
|
if (!strcmp(p, "exactmap")) {
|
|
|
|
#ifdef CONFIG_CRASH_DUMP
|
2008-01-30 20:30:12 +08:00
|
|
|
/*
|
|
|
|
* If we are doing a crash dump, we still need to know
|
|
|
|
* the real mem size before original memory map is
|
2006-09-26 16:52:32 +08:00
|
|
|
* reset.
|
|
|
|
*/
|
2006-11-14 23:57:46 +08:00
|
|
|
e820_register_active_regions(0, 0, -1UL);
|
2006-09-26 16:52:32 +08:00
|
|
|
saved_max_pfn = e820_end_of_ram();
|
2006-11-14 23:57:46 +08:00
|
|
|
remove_all_active_ranges();
|
2006-09-26 16:52:32 +08:00
|
|
|
#endif
|
|
|
|
e820.nr_map = 0;
|
|
|
|
userdef = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
oldp = p;
|
|
|
|
mem_size = memparse(p, &p);
|
|
|
|
if (p == oldp)
|
|
|
|
return -EINVAL;
|
2008-01-30 20:30:46 +08:00
|
|
|
|
|
|
|
userdef = 1;
|
2006-01-10 12:51:46 +08:00
|
|
|
if (*p == '@') {
|
2006-09-26 16:52:32 +08:00
|
|
|
start_at = memparse(p+1, &p);
|
2006-01-10 12:51:46 +08:00
|
|
|
add_memory_region(start_at, mem_size, E820_RAM);
|
|
|
|
} else if (*p == '#') {
|
2006-09-26 16:52:32 +08:00
|
|
|
start_at = memparse(p+1, &p);
|
2006-01-10 12:51:46 +08:00
|
|
|
add_memory_region(start_at, mem_size, E820_ACPI);
|
|
|
|
} else if (*p == '$') {
|
2006-09-26 16:52:32 +08:00
|
|
|
start_at = memparse(p+1, &p);
|
2006-01-10 12:51:46 +08:00
|
|
|
add_memory_region(start_at, mem_size, E820_RESERVED);
|
|
|
|
} else {
|
|
|
|
end_user_pfn = (mem_size >> PAGE_SHIFT);
|
|
|
|
}
|
2006-09-26 16:52:32 +08:00
|
|
|
return *p == '\0' ? 0 : -EINVAL;
|
|
|
|
}
|
|
|
|
early_param("memmap", parse_memmap_opt);
|
|
|
|
|
2007-03-17 04:07:36 +08:00
|
|
|
void __init finish_e820_parsing(void)
|
2006-09-26 16:52:32 +08:00
|
|
|
{
|
|
|
|
if (userdef) {
|
2008-05-14 23:15:46 +08:00
|
|
|
int nr = e820.nr_map;
|
2008-01-30 20:30:46 +08:00
|
|
|
|
2008-05-14 23:15:34 +08:00
|
|
|
if (sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &nr) < 0)
|
2008-01-30 20:30:46 +08:00
|
|
|
early_panic("Invalid user supplied memory map");
|
|
|
|
e820.nr_map = nr;
|
|
|
|
|
2006-09-26 16:52:32 +08:00
|
|
|
printk(KERN_INFO "user-defined physical RAM map:\n");
|
|
|
|
e820_print_map("user");
|
|
|
|
}
|
2006-01-10 12:51:46 +08:00
|
|
|
}
|
|
|
|
|
2007-10-22 07:41:55 +08:00
|
|
|
int __init arch_get_ram_range(int slot, u64 *addr, u64 *size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (slot < 0 || slot >= e820.nr_map)
|
|
|
|
return -1;
|
|
|
|
for (i = slot; i < e820.nr_map; i++) {
|
|
|
|
if (e820.map[i].type != E820_RAM)
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == e820.nr_map || e820.map[i].addr > (max_pfn << PAGE_SHIFT))
|
|
|
|
return -1;
|
|
|
|
*addr = e820.map[i].addr;
|
|
|
|
*size = min_t(u64, e820.map[i].size + e820.map[i].addr,
|
|
|
|
max_pfn << PAGE_SHIFT) - *addr;
|
|
|
|
return i + 1;
|
|
|
|
}
|