diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-10-28 11:26:12 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-28 11:26:12 -0400 |
commit | 7a9787e1eba95a166265e6a260cf30af04ef0a99 (patch) | |
tree | e730a4565e0318140d2fbd2f0415d18a339d7336 /arch/x86/kernel/setup.c | |
parent | 41b9eb264c8407655db57b60b4457fe1b2ec9977 (diff) | |
parent | 0173a3265b228da319ceb9c1ec6a5682fd1b2d92 (diff) |
Merge commit 'v2.6.28-rc2' into x86/pci-ioapic-boot-irq-quirks
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 305 |
1 files changed, 260 insertions, 45 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 531b55b8e81a..0fa6790c1dd3 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
@@ -57,12 +57,8 @@ | |||
57 | #include <linux/slab.h> | 57 | #include <linux/slab.h> |
58 | #include <linux/user.h> | 58 | #include <linux/user.h> |
59 | #include <linux/delay.h> | 59 | #include <linux/delay.h> |
60 | #include <linux/highmem.h> | ||
61 | 60 | ||
62 | #include <linux/kallsyms.h> | 61 | #include <linux/kallsyms.h> |
63 | #include <linux/edd.h> | ||
64 | #include <linux/iscsi_ibft.h> | ||
65 | #include <linux/kexec.h> | ||
66 | #include <linux/cpufreq.h> | 62 | #include <linux/cpufreq.h> |
67 | #include <linux/dma-mapping.h> | 63 | #include <linux/dma-mapping.h> |
68 | #include <linux/ctype.h> | 64 | #include <linux/ctype.h> |
@@ -96,7 +92,7 @@ | |||
96 | #include <asm/smp.h> | 92 | #include <asm/smp.h> |
97 | #include <asm/desc.h> | 93 | #include <asm/desc.h> |
98 | #include <asm/dma.h> | 94 | #include <asm/dma.h> |
99 | #include <asm/gart.h> | 95 | #include <asm/iommu.h> |
100 | #include <asm/mmu_context.h> | 96 | #include <asm/mmu_context.h> |
101 | #include <asm/proto.h> | 97 | #include <asm/proto.h> |
102 | 98 | ||
@@ -104,7 +100,6 @@ | |||
104 | #include <asm/paravirt.h> | 100 | #include <asm/paravirt.h> |
105 | 101 | ||
106 | #include <asm/percpu.h> | 102 | #include <asm/percpu.h> |
107 | #include <asm/sections.h> | ||
108 | #include <asm/topology.h> | 103 | #include <asm/topology.h> |
109 | #include <asm/apicdef.h> | 104 | #include <asm/apicdef.h> |
110 | #ifdef CONFIG_X86_64 | 105 | #ifdef CONFIG_X86_64 |
@@ -228,6 +223,9 @@ unsigned long saved_video_mode; | |||
228 | #define RAMDISK_LOAD_FLAG 0x4000 | 223 | #define RAMDISK_LOAD_FLAG 0x4000 |
229 | 224 | ||
230 | static char __initdata command_line[COMMAND_LINE_SIZE]; | 225 | static char __initdata command_line[COMMAND_LINE_SIZE]; |
226 | #ifdef CONFIG_CMDLINE_BOOL | ||
227 | static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE; | ||
228 | #endif | ||
231 | 229 | ||
232 | #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE) | 230 | #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE) |
233 | struct edd edd; | 231 | struct edd edd; |
@@ -304,7 +302,7 @@ static void __init relocate_initrd(void) | |||
304 | if (clen > MAX_MAP_CHUNK-slop) | 302 | if (clen > MAX_MAP_CHUNK-slop) |
305 | clen = MAX_MAP_CHUNK-slop; | 303 | clen = MAX_MAP_CHUNK-slop; |
306 | mapaddr = ramdisk_image & PAGE_MASK; | 304 | mapaddr = ramdisk_image & PAGE_MASK; |
307 | p = early_ioremap(mapaddr, clen+slop); | 305 | p = early_memremap(mapaddr, clen+slop); |
308 | memcpy(q, p+slop, clen); | 306 | memcpy(q, p+slop, clen); |
309 | early_iounmap(p, clen+slop); | 307 | early_iounmap(p, clen+slop); |
310 | q += clen; | 308 | q += clen; |
@@ -381,7 +379,7 @@ static void __init parse_setup_data(void) | |||
381 | return; | 379 | return; |
382 | pa_data = boot_params.hdr.setup_data; | 380 | pa_data = boot_params.hdr.setup_data; |
383 | while (pa_data) { | 381 | while (pa_data) { |
384 | data = early_ioremap(pa_data, PAGE_SIZE); | 382 | data = early_memremap(pa_data, PAGE_SIZE); |
385 | switch (data->type) { | 383 | switch (data->type) { |
386 | case SETUP_E820_EXT: | 384 | case SETUP_E820_EXT: |
387 | parse_e820_ext(data, pa_data); | 385 | parse_e820_ext(data, pa_data); |
@@ -404,7 +402,7 @@ static void __init e820_reserve_setup_data(void) | |||
404 | return; | 402 | return; |
405 | pa_data = boot_params.hdr.setup_data; | 403 | pa_data = boot_params.hdr.setup_data; |
406 | while (pa_data) { | 404 | while (pa_data) { |
407 | data = early_ioremap(pa_data, sizeof(*data)); | 405 | data = early_memremap(pa_data, sizeof(*data)); |
408 | e820_update_range(pa_data, sizeof(*data)+data->len, | 406 | e820_update_range(pa_data, sizeof(*data)+data->len, |
409 | E820_RAM, E820_RESERVED_KERN); | 407 | E820_RAM, E820_RESERVED_KERN); |
410 | found = 1; | 408 | found = 1; |
@@ -430,7 +428,7 @@ static void __init reserve_early_setup_data(void) | |||
430 | return; | 428 | return; |
431 | pa_data = boot_params.hdr.setup_data; | 429 | pa_data = boot_params.hdr.setup_data; |
432 | while (pa_data) { | 430 | while (pa_data) { |
433 | data = early_ioremap(pa_data, sizeof(*data)); | 431 | data = early_memremap(pa_data, sizeof(*data)); |
434 | sprintf(buf, "setup data %x", data->type); | 432 | sprintf(buf, "setup data %x", data->type); |
435 | reserve_early(pa_data, pa_data+sizeof(*data)+data->len, buf); | 433 | reserve_early(pa_data, pa_data+sizeof(*data)+data->len, buf); |
436 | pa_data = data->next; | 434 | pa_data = data->next; |
@@ -450,7 +448,7 @@ static void __init reserve_early_setup_data(void) | |||
450 | * @size: Size of the crashkernel memory to reserve. | 448 | * @size: Size of the crashkernel memory to reserve. |
451 | * Returns the base address on success, and -1ULL on failure. | 449 | * Returns the base address on success, and -1ULL on failure. |
452 | */ | 450 | */ |
453 | unsigned long long find_and_reserve_crashkernel(unsigned long long size) | 451 | unsigned long long __init find_and_reserve_crashkernel(unsigned long long size) |
454 | { | 452 | { |
455 | const unsigned long long alignment = 16<<20; /* 16M */ | 453 | const unsigned long long alignment = 16<<20; /* 16M */ |
456 | unsigned long long start = 0LL; | 454 | unsigned long long start = 0LL; |
@@ -563,7 +561,13 @@ static void __init reserve_standard_io_resources(void) | |||
563 | 561 | ||
564 | } | 562 | } |
565 | 563 | ||
566 | #ifdef CONFIG_PROC_VMCORE | 564 | /* |
565 | * Note: elfcorehdr_addr is not just limited to vmcore. It is also used by | ||
566 | * is_kdump_kernel() to determine if we are booting after a panic. Hence | ||
567 | * ifdef it under CONFIG_CRASH_DUMP and not CONFIG_PROC_VMCORE. | ||
568 | */ | ||
569 | |||
570 | #ifdef CONFIG_CRASH_DUMP | ||
567 | /* elfcorehdr= specifies the location of elf core header | 571 | /* elfcorehdr= specifies the location of elf core header |
568 | * stored by the crashed kernel. This option will be passed | 572 | * stored by the crashed kernel. This option will be passed |
569 | * by kexec loader to the capture kernel. | 573 | * by kexec loader to the capture kernel. |
@@ -579,6 +583,194 @@ static int __init setup_elfcorehdr(char *arg) | |||
579 | early_param("elfcorehdr", setup_elfcorehdr); | 583 | early_param("elfcorehdr", setup_elfcorehdr); |
580 | #endif | 584 | #endif |
581 | 585 | ||
586 | static struct x86_quirks default_x86_quirks __initdata; | ||
587 | |||
588 | struct x86_quirks *x86_quirks __initdata = &default_x86_quirks; | ||
589 | |||
590 | /* | ||
591 | * Some BIOSes seem to corrupt the low 64k of memory during events | ||
592 | * like suspend/resume and unplugging an HDMI cable. Reserve all | ||
593 | * remaining free memory in that area and fill it with a distinct | ||
594 | * pattern. | ||
595 | */ | ||
596 | #ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION | ||
597 | #define MAX_SCAN_AREAS 8 | ||
598 | |||
599 | static int __read_mostly memory_corruption_check = -1; | ||
600 | |||
601 | static unsigned __read_mostly corruption_check_size = 64*1024; | ||
602 | static unsigned __read_mostly corruption_check_period = 60; /* seconds */ | ||
603 | |||
604 | static struct e820entry scan_areas[MAX_SCAN_AREAS]; | ||
605 | static int num_scan_areas; | ||
606 | |||
607 | |||
608 | static int set_corruption_check(char *arg) | ||
609 | { | ||
610 | char *end; | ||
611 | |||
612 | memory_corruption_check = simple_strtol(arg, &end, 10); | ||
613 | |||
614 | return (*end == 0) ? 0 : -EINVAL; | ||
615 | } | ||
616 | early_param("memory_corruption_check", set_corruption_check); | ||
617 | |||
618 | static int set_corruption_check_period(char *arg) | ||
619 | { | ||
620 | char *end; | ||
621 | |||
622 | corruption_check_period = simple_strtoul(arg, &end, 10); | ||
623 | |||
624 | return (*end == 0) ? 0 : -EINVAL; | ||
625 | } | ||
626 | early_param("memory_corruption_check_period", set_corruption_check_period); | ||
627 | |||
628 | static int set_corruption_check_size(char *arg) | ||
629 | { | ||
630 | char *end; | ||
631 | unsigned size; | ||
632 | |||
633 | size = memparse(arg, &end); | ||
634 | |||
635 | if (*end == '\0') | ||
636 | corruption_check_size = size; | ||
637 | |||
638 | return (size == corruption_check_size) ? 0 : -EINVAL; | ||
639 | } | ||
640 | early_param("memory_corruption_check_size", set_corruption_check_size); | ||
641 | |||
642 | |||
643 | static void __init setup_bios_corruption_check(void) | ||
644 | { | ||
645 | u64 addr = PAGE_SIZE; /* assume first page is reserved anyway */ | ||
646 | |||
647 | if (memory_corruption_check == -1) { | ||
648 | memory_corruption_check = | ||
649 | #ifdef CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK | ||
650 | 1 | ||
651 | #else | ||
652 | 0 | ||
653 | #endif | ||
654 | ; | ||
655 | } | ||
656 | |||
657 | if (corruption_check_size == 0) | ||
658 | memory_corruption_check = 0; | ||
659 | |||
660 | if (!memory_corruption_check) | ||
661 | return; | ||
662 | |||
663 | corruption_check_size = round_up(corruption_check_size, PAGE_SIZE); | ||
664 | |||
665 | while(addr < corruption_check_size && num_scan_areas < MAX_SCAN_AREAS) { | ||
666 | u64 size; | ||
667 | addr = find_e820_area_size(addr, &size, PAGE_SIZE); | ||
668 | |||
669 | if (addr == 0) | ||
670 | break; | ||
671 | |||
672 | if ((addr + size) > corruption_check_size) | ||
673 | size = corruption_check_size - addr; | ||
674 | |||
675 | if (size == 0) | ||
676 | break; | ||
677 | |||
678 | e820_update_range(addr, size, E820_RAM, E820_RESERVED); | ||
679 | scan_areas[num_scan_areas].addr = addr; | ||
680 | scan_areas[num_scan_areas].size = size; | ||
681 | num_scan_areas++; | ||
682 | |||
683 | /* Assume we've already mapped this early memory */ | ||
684 | memset(__va(addr), 0, size); | ||
685 | |||
686 | addr += size; | ||
687 | } | ||
688 | |||
689 | printk(KERN_INFO "Scanning %d areas for low memory corruption\n", | ||
690 | num_scan_areas); | ||
691 | update_e820(); | ||
692 | } | ||
693 | |||
694 | static struct timer_list periodic_check_timer; | ||
695 | |||
696 | void check_for_bios_corruption(void) | ||
697 | { | ||
698 | int i; | ||
699 | int corruption = 0; | ||
700 | |||
701 | if (!memory_corruption_check) | ||
702 | return; | ||
703 | |||
704 | for(i = 0; i < num_scan_areas; i++) { | ||
705 | unsigned long *addr = __va(scan_areas[i].addr); | ||
706 | unsigned long size = scan_areas[i].size; | ||
707 | |||
708 | for(; size; addr++, size -= sizeof(unsigned long)) { | ||
709 | if (!*addr) | ||
710 | continue; | ||
711 | printk(KERN_ERR "Corrupted low memory at %p (%lx phys) = %08lx\n", | ||
712 | addr, __pa(addr), *addr); | ||
713 | corruption = 1; | ||
714 | *addr = 0; | ||
715 | } | ||
716 | } | ||
717 | |||
718 | WARN(corruption, KERN_ERR "Memory corruption detected in low memory\n"); | ||
719 | } | ||
720 | |||
721 | static void periodic_check_for_corruption(unsigned long data) | ||
722 | { | ||
723 | check_for_bios_corruption(); | ||
724 | mod_timer(&periodic_check_timer, round_jiffies(jiffies + corruption_check_period*HZ)); | ||
725 | } | ||
726 | |||
727 | void start_periodic_check_for_corruption(void) | ||
728 | { | ||
729 | if (!memory_corruption_check || corruption_check_period == 0) | ||
730 | return; | ||
731 | |||
732 | printk(KERN_INFO "Scanning for low memory corruption every %d seconds\n", | ||
733 | corruption_check_period); | ||
734 | |||
735 | init_timer(&periodic_check_timer); | ||
736 | periodic_check_timer.function = &periodic_check_for_corruption; | ||
737 | periodic_check_for_corruption(0); | ||
738 | } | ||
739 | #endif | ||
740 | |||
741 | static int __init dmi_low_memory_corruption(const struct dmi_system_id *d) | ||
742 | { | ||
743 | printk(KERN_NOTICE | ||
744 | "%s detected: BIOS may corrupt low RAM, working it around.\n", | ||
745 | d->ident); | ||
746 | |||
747 | e820_update_range(0, 0x10000, E820_RAM, E820_RESERVED); | ||
748 | sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map); | ||
749 | |||
750 | return 0; | ||
751 | } | ||
752 | |||
753 | /* List of systems that have known low memory corruption BIOS problems */ | ||
754 | static struct dmi_system_id __initdata bad_bios_dmi_table[] = { | ||
755 | #ifdef CONFIG_X86_RESERVE_LOW_64K | ||
756 | { | ||
757 | .callback = dmi_low_memory_corruption, | ||
758 | .ident = "AMI BIOS", | ||
759 | .matches = { | ||
760 | DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."), | ||
761 | }, | ||
762 | }, | ||
763 | { | ||
764 | .callback = dmi_low_memory_corruption, | ||
765 | .ident = "Phoenix BIOS", | ||
766 | .matches = { | ||
767 | DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies, LTD"), | ||
768 | }, | ||
769 | }, | ||
770 | #endif | ||
771 | {} | ||
772 | }; | ||
773 | |||
582 | /* | 774 | /* |
583 | * Determine if we were loaded by an EFI loader. If so, then we have also been | 775 | * Determine if we were loaded by an EFI loader. If so, then we have also been |
584 | * passed the efi memmap, systab, etc., so we should use these data structures | 776 | * passed the efi memmap, systab, etc., so we should use these data structures |
@@ -598,11 +790,11 @@ void __init setup_arch(char **cmdline_p) | |||
598 | memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data)); | 790 | memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data)); |
599 | visws_early_detect(); | 791 | visws_early_detect(); |
600 | pre_setup_arch_hook(); | 792 | pre_setup_arch_hook(); |
601 | early_cpu_init(); | ||
602 | #else | 793 | #else |
603 | printk(KERN_INFO "Command line: %s\n", boot_command_line); | 794 | printk(KERN_INFO "Command line: %s\n", boot_command_line); |
604 | #endif | 795 | #endif |
605 | 796 | ||
797 | early_cpu_init(); | ||
606 | early_ioremap_init(); | 798 | early_ioremap_init(); |
607 | 799 | ||
608 | ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev); | 800 | ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev); |
@@ -666,14 +858,36 @@ void __init setup_arch(char **cmdline_p) | |||
666 | bss_resource.start = virt_to_phys(&__bss_start); | 858 | bss_resource.start = virt_to_phys(&__bss_start); |
667 | bss_resource.end = virt_to_phys(&__bss_stop)-1; | 859 | bss_resource.end = virt_to_phys(&__bss_stop)-1; |
668 | 860 | ||
669 | #ifdef CONFIG_X86_64 | 861 | #ifdef CONFIG_CMDLINE_BOOL |
670 | early_cpu_init(); | 862 | #ifdef CONFIG_CMDLINE_OVERRIDE |
863 | strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); | ||
864 | #else | ||
865 | if (builtin_cmdline[0]) { | ||
866 | /* append boot loader cmdline to builtin */ | ||
867 | strlcat(builtin_cmdline, " ", COMMAND_LINE_SIZE); | ||
868 | strlcat(builtin_cmdline, boot_command_line, COMMAND_LINE_SIZE); | ||
869 | strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE); | ||
870 | } | ||
671 | #endif | 871 | #endif |
872 | #endif | ||
873 | |||
672 | strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); | 874 | strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); |
673 | *cmdline_p = command_line; | 875 | *cmdline_p = command_line; |
674 | 876 | ||
675 | parse_early_param(); | 877 | parse_early_param(); |
676 | 878 | ||
879 | #ifdef CONFIG_X86_64 | ||
880 | check_efer(); | ||
881 | #endif | ||
882 | |||
883 | #if defined(CONFIG_VMI) && defined(CONFIG_X86_32) | ||
884 | /* | ||
885 | * Must be before kernel pagetables are setup | ||
886 | * or fixmap area is touched. | ||
887 | */ | ||
888 | vmi_init(); | ||
889 | #endif | ||
890 | |||
677 | /* after early param, so could get panic from serial */ | 891 | /* after early param, so could get panic from serial */ |
678 | reserve_early_setup_data(); | 892 | reserve_early_setup_data(); |
679 | 893 | ||
@@ -681,7 +895,7 @@ void __init setup_arch(char **cmdline_p) | |||
681 | #ifdef CONFIG_X86_LOCAL_APIC | 895 | #ifdef CONFIG_X86_LOCAL_APIC |
682 | disable_apic = 1; | 896 | disable_apic = 1; |
683 | #endif | 897 | #endif |
684 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC); | 898 | setup_clear_cpu_cap(X86_FEATURE_APIC); |
685 | } | 899 | } |
686 | 900 | ||
687 | #ifdef CONFIG_PCI | 901 | #ifdef CONFIG_PCI |
@@ -691,6 +905,10 @@ void __init setup_arch(char **cmdline_p) | |||
691 | 905 | ||
692 | finish_e820_parsing(); | 906 | finish_e820_parsing(); |
693 | 907 | ||
908 | dmi_scan_machine(); | ||
909 | |||
910 | dmi_check_system(bad_bios_dmi_table); | ||
911 | |||
694 | #ifdef CONFIG_X86_32 | 912 | #ifdef CONFIG_X86_32 |
695 | probe_roms(); | 913 | probe_roms(); |
696 | #endif | 914 | #endif |
@@ -734,7 +952,8 @@ void __init setup_arch(char **cmdline_p) | |||
734 | #else | 952 | #else |
735 | num_physpages = max_pfn; | 953 | num_physpages = max_pfn; |
736 | 954 | ||
737 | check_efer(); | 955 | if (cpu_has_x2apic) |
956 | check_x2apic(); | ||
738 | 957 | ||
739 | /* How many end-of-memory variables you have, grandma! */ | 958 | /* How many end-of-memory variables you have, grandma! */ |
740 | /* need this before calling reserve_initrd */ | 959 | /* need this before calling reserve_initrd */ |
@@ -746,6 +965,10 @@ void __init setup_arch(char **cmdline_p) | |||
746 | high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1; | 965 | high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1; |
747 | #endif | 966 | #endif |
748 | 967 | ||
968 | #ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION | ||
969 | setup_bios_corruption_check(); | ||
970 | #endif | ||
971 | |||
749 | /* max_pfn_mapped is updated here */ | 972 | /* max_pfn_mapped is updated here */ |
750 | max_low_pfn_mapped = init_memory_mapping(0, max_low_pfn<<PAGE_SHIFT); | 973 | max_low_pfn_mapped = init_memory_mapping(0, max_low_pfn<<PAGE_SHIFT); |
751 | max_pfn_mapped = max_low_pfn_mapped; | 974 | max_pfn_mapped = max_low_pfn_mapped; |
@@ -774,8 +997,6 @@ void __init setup_arch(char **cmdline_p) | |||
774 | vsmp_init(); | 997 | vsmp_init(); |
775 | #endif | 998 | #endif |
776 | 999 | ||
777 | dmi_scan_machine(); | ||
778 | |||
779 | io_delay_init(); | 1000 | io_delay_init(); |
780 | 1001 | ||
781 | /* | 1002 | /* |
@@ -783,6 +1004,8 @@ void __init setup_arch(char **cmdline_p) | |||
783 | */ | 1004 | */ |
784 | acpi_boot_table_init(); | 1005 | acpi_boot_table_init(); |
785 | 1006 | ||
1007 | early_acpi_boot_init(); | ||
1008 | |||
786 | #ifdef CONFIG_ACPI_NUMA | 1009 | #ifdef CONFIG_ACPI_NUMA |
787 | /* | 1010 | /* |
788 | * Parse SRAT to discover nodes. | 1011 | * Parse SRAT to discover nodes. |
@@ -792,10 +1015,6 @@ void __init setup_arch(char **cmdline_p) | |||
792 | 1015 | ||
793 | initmem_init(0, max_pfn); | 1016 | initmem_init(0, max_pfn); |
794 | 1017 | ||
795 | #ifdef CONFIG_X86_64 | ||
796 | dma32_reserve_bootmem(); | ||
797 | #endif | ||
798 | |||
799 | #ifdef CONFIG_ACPI_SLEEP | 1018 | #ifdef CONFIG_ACPI_SLEEP |
800 | /* | 1019 | /* |
801 | * Reserve low memory region for sleep support. | 1020 | * Reserve low memory region for sleep support. |
@@ -810,21 +1029,25 @@ void __init setup_arch(char **cmdline_p) | |||
810 | #endif | 1029 | #endif |
811 | reserve_crashkernel(); | 1030 | reserve_crashkernel(); |
812 | 1031 | ||
1032 | #ifdef CONFIG_X86_64 | ||
1033 | /* | ||
1034 | * dma32_reserve_bootmem() allocates bootmem which may conflict | ||
1035 | * with the crashkernel command line, so do that after | ||
1036 | * reserve_crashkernel() | ||
1037 | */ | ||
1038 | dma32_reserve_bootmem(); | ||
1039 | #endif | ||
1040 | |||
813 | reserve_ibft_region(); | 1041 | reserve_ibft_region(); |
814 | 1042 | ||
815 | #ifdef CONFIG_KVM_CLOCK | 1043 | #ifdef CONFIG_KVM_CLOCK |
816 | kvmclock_init(); | 1044 | kvmclock_init(); |
817 | #endif | 1045 | #endif |
818 | 1046 | ||
819 | #if defined(CONFIG_VMI) && defined(CONFIG_X86_32) | 1047 | paravirt_pagetable_setup_start(swapper_pg_dir); |
820 | /* | ||
821 | * Must be after max_low_pfn is determined, and before kernel | ||
822 | * pagetables are setup. | ||
823 | */ | ||
824 | vmi_init(); | ||
825 | #endif | ||
826 | |||
827 | paging_init(); | 1048 | paging_init(); |
1049 | paravirt_pagetable_setup_done(swapper_pg_dir); | ||
1050 | paravirt_post_allocator_init(); | ||
828 | 1051 | ||
829 | #ifdef CONFIG_X86_64 | 1052 | #ifdef CONFIG_X86_64 |
830 | map_vsyscall(); | 1053 | map_vsyscall(); |
@@ -850,27 +1073,17 @@ void __init setup_arch(char **cmdline_p) | |||
850 | #endif | 1073 | #endif |
851 | 1074 | ||
852 | prefill_possible_map(); | 1075 | prefill_possible_map(); |
1076 | |||
853 | #ifdef CONFIG_X86_64 | 1077 | #ifdef CONFIG_X86_64 |
854 | init_cpu_to_node(); | 1078 | init_cpu_to_node(); |
855 | #endif | 1079 | #endif |
856 | 1080 | ||
857 | #ifdef CONFIG_X86_NUMAQ | ||
858 | /* | ||
859 | * need to check online nodes num, call it | ||
860 | * here before time_init/tsc_init | ||
861 | */ | ||
862 | numaq_tsc_disable(); | ||
863 | #endif | ||
864 | |||
865 | init_apic_mappings(); | 1081 | init_apic_mappings(); |
866 | ioapic_init_mappings(); | 1082 | ioapic_init_mappings(); |
867 | 1083 | ||
868 | #if defined(CONFIG_SMP) && defined(CONFIG_X86_PC) && defined(CONFIG_X86_32) | 1084 | /* need to wait for io_apic is mapped */ |
869 | if (def_to_bigsmp) | 1085 | nr_irqs = probe_nr_irqs(); |
870 | printk(KERN_WARNING "More than 8 CPUs detected and " | 1086 | |
871 | "CONFIG_X86_PC cannot handle it.\nUse " | ||
872 | "CONFIG_X86_GENERICARCH or CONFIG_X86_BIGSMP.\n"); | ||
873 | #endif | ||
874 | kvm_guest_init(); | 1087 | kvm_guest_init(); |
875 | 1088 | ||
876 | e820_reserve_resources(); | 1089 | e820_reserve_resources(); |
@@ -892,3 +1105,5 @@ void __init setup_arch(char **cmdline_p) | |||
892 | #endif | 1105 | #endif |
893 | #endif | 1106 | #endif |
894 | } | 1107 | } |
1108 | |||
1109 | |||