[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-3.1-testing] x86: Respect e820 map even below 16MB.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1197134402 0 # Node ID 9fb4696d37e4aa5f7fc1f61488aa85b73e6f351d # Parent 49fa281c89721b623203bfa0548d451b846c0728 x86: Respect e820 map even below 16MB. NB. Even with this patch, x86/32 still statically allocates the range 1MB-12MB. This can be changed if there really are platforms that need stuff to persist in that range after the OS starts to boot. Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx> xen-unstable changeset: 16563:d4a3479e68ce xen-unstable date: Fri Dec 07 18:24:33 2007 +0000 --- xen/arch/x86/setup.c | 117 ++++++++++++++++++++++++++------------------------- 1 files changed, 60 insertions(+), 57 deletions(-) diff -r 49fa281c8972 -r 9fb4696d37e4 xen/arch/x86/setup.c --- a/xen/arch/x86/setup.c Sat Dec 08 17:18:06 2007 +0000 +++ b/xen/arch/x86/setup.c Sat Dec 08 17:20:02 2007 +0000 @@ -376,6 +376,32 @@ static void __init parse_video_info(void } } +void __init kexec_reserve_area(struct e820map *e820) +{ + unsigned long kdump_start = kexec_crash_area.start; + unsigned long kdump_size = kexec_crash_area.size; + static int is_reserved = 0; + + kdump_size = (kdump_size + PAGE_SIZE - 1) & PAGE_MASK; + + if ( (kdump_start == 0) || (kdump_size == 0) || is_reserved ) + return; + + is_reserved = 1; + + if ( !reserve_e820_ram(e820, kdump_start, kdump_size) ) + { + printk("Kdump: DISABLED (failed to reserve %luMB (%lukB) at 0x%lx)" + "\n", kdump_size >> 20, kdump_size >> 10, kdump_start); + kexec_crash_area.start = kexec_crash_area.size = 0; + } + else + { + printk("Kdump: %luMB (%lukB) at 0x%lx\n", + kdump_size >> 20, kdump_size >> 10, kdump_start); + } +} + void init_done(void) { extern char __init_begin[], __init_end[]; @@ -601,27 +627,11 @@ void __init __start_xen(unsigned long mb /* Sanitise the raw E820 map to produce a final clean version. */ max_page = init_e820(memmap_type, e820_raw, &e820_raw_nr); - /* - * Create a temporary copy of the E820 map. Truncate it to above 16MB - * as anything below that is already mapped and has a statically-allocated - * purpose. - */ + /* Create a temporary copy of the E820 map. */ memcpy(&boot_e820, &e820, sizeof(e820)); - for ( i = 0; i < boot_e820.nr_map; i++ ) - { - uint64_t s, e, min = 16 << 20; /* 16MB */ - s = boot_e820.map[i].addr; - e = boot_e820.map[i].addr + boot_e820.map[i].size; - if ( s >= min ) - continue; - if ( e > min ) - { - boot_e820.map[i].addr = min; - boot_e820.map[i].size = e - min; - } - else - boot_e820.map[i].type = E820_RESERVED; - } + + /* Early kexec reservation (explicit static start address). */ + kexec_reserve_area(&boot_e820); /* * Iterate backwards over all superpage-aligned RAM regions. @@ -641,9 +651,10 @@ void __init __start_xen(unsigned long mb { uint64_t s, e, mask = (1UL << L2_PAGETABLE_SHIFT) - 1; - /* Superpage-aligned chunks up to BOOTSTRAP_DIRECTMAP_END, please. */ + /* Superpage-aligned chunks from 16MB to BOOTSTRAP_DIRECTMAP_END. */ s = (boot_e820.map[i].addr + mask) & ~mask; e = (boot_e820.map[i].addr + boot_e820.map[i].size) & ~mask; + s = max_t(uint64_t, s, 16 << 20); e = min_t(uint64_t, e, BOOTSTRAP_DIRECTMAP_END); if ( (boot_e820.map[i].type != E820_RAM) || (s >= e) ) continue; @@ -746,10 +757,7 @@ void __init __start_xen(unsigned long mb EARLY_FAIL("Not enough memory to relocate the dom0 kernel image.\n"); reserve_e820_ram(&boot_e820, initial_images_start, initial_images_end); - /* - * With modules (and Xen itself, on x86/64) relocated out of the way, we - * can now initialise the boot allocator with some memory. - */ + /* Initialise Xen heap and boot heap. */ xenheap_phys_start = init_boot_allocator(__pa(&_end)); xenheap_phys_end = opt_xenheap_megabytes << 20; #if defined(CONFIG_X86_64) @@ -758,30 +766,10 @@ void __init __start_xen(unsigned long mb xenheap_phys_end += xen_phys_start; reserve_e820_ram(&boot_e820, xen_phys_start, xen_phys_start + (opt_xenheap_megabytes<<20)); - init_boot_pages(1<<20, 16<<20); /* Initial seed: 15MB */ -#else - init_boot_pages(xenheap_phys_end, 16<<20); /* Initial seed: 4MB */ -#endif - - if ( kexec_crash_area.size != 0 ) - { - unsigned long kdump_start = kexec_crash_area.start; - unsigned long kdump_size = kexec_crash_area.size; - - kdump_size = (kdump_size + PAGE_SIZE - 1) & PAGE_MASK; - - if ( !reserve_e820_ram(&boot_e820, kdump_start, kdump_size) ) - { - printk("Kdump: DISABLED (failed to reserve %luMB (%lukB) at 0x%lx)" - "\n", kdump_size >> 20, kdump_size >> 10, kdump_start); - kexec_crash_area.start = kexec_crash_area.size = 0; - } - else - { - printk("Kdump: %luMB (%lukB) at 0x%lx\n", - kdump_size >> 20, kdump_size >> 10, kdump_start); - } - } +#endif + + /* Late kexec reservation (dynamic start address). */ + kexec_reserve_area(&boot_e820); /* * With the boot allocator now seeded, we can walk every RAM region and @@ -790,25 +778,40 @@ void __init __start_xen(unsigned long mb */ for ( i = 0; i < boot_e820.nr_map; i++ ) { - uint64_t s, e, map_e, mask = PAGE_SIZE - 1; + uint64_t s, e, map_s, map_e, mask = PAGE_SIZE - 1; /* Only page alignment required now. */ s = (boot_e820.map[i].addr + mask) & ~mask; e = (boot_e820.map[i].addr + boot_e820.map[i].size) & ~mask; +#if defined(CONFIG_X86_32) + s = max_t(uint64_t, s, xenheap_phys_end); +#else + s = max_t(uint64_t, s, 1<<20); +#endif if ( (boot_e820.map[i].type != E820_RAM) || (s >= e) ) continue; - /* Perform the mapping (truncated in 32-bit mode). */ + /* Need to create mappings above 16MB. */ + map_s = max_t(uint64_t, s, 16<<20); map_e = e; -#if defined(CONFIG_X86_32) +#if defined(CONFIG_X86_32) /* mappings are truncated on x86_32 */ map_e = min_t(uint64_t, map_e, BOOTSTRAP_DIRECTMAP_END); #endif - if ( s < map_e ) + + /* Pass mapped memory to allocator /before/ creating new mappings. */ + if ( s < map_s ) + init_boot_pages(s, map_s); + + /* Create new mappings /before/ passing memory to the allocator. */ + if ( map_s < map_e ) map_pages_to_xen( - (unsigned long)maddr_to_bootstrap_virt(s), - s >> PAGE_SHIFT, (map_e-s) >> PAGE_SHIFT, PAGE_HYPERVISOR); - - init_boot_pages(s, e); + (unsigned long)maddr_to_bootstrap_virt(map_s), + map_s >> PAGE_SHIFT, (map_e-map_s) >> PAGE_SHIFT, + PAGE_HYPERVISOR); + + /* Pass remainder of this memory chunk to the allocator. */ + if ( map_s < e ) + init_boot_pages(map_s, e); } memguard_init(); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |