setup_32.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. /*
  2. * Copyright (C) 1995 Linus Torvalds
  3. *
  4. * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
  5. *
  6. * Memory region support
  7. * David Parsons <orc@pell.chi.il.us>, July-August 1999
  8. *
  9. * Added E820 sanitization routine (removes overlapping memory regions);
  10. * Brian Moyle <bmoyle@mvista.com>, February 2001
  11. *
  12. * Moved CPU detection code to cpu/${cpu}.c
  13. * Patrick Mochel <mochel@osdl.org>, March 2002
  14. *
  15. * Provisions for empty E820 memory regions (reported by certain BIOSes).
  16. * Alex Achenbach <xela@slit.de>, December 2002.
  17. *
  18. */
  19. /*
  20. * This file handles the architecture-dependent parts of initialization
  21. */
  22. #include <linux/sched.h>
  23. #include <linux/mm.h>
  24. #include <linux/mmzone.h>
  25. #include <linux/screen_info.h>
  26. #include <linux/ioport.h>
  27. #include <linux/acpi.h>
  28. #include <linux/apm_bios.h>
  29. #include <linux/initrd.h>
  30. #include <linux/bootmem.h>
  31. #include <linux/seq_file.h>
  32. #include <linux/console.h>
  33. #include <linux/mca.h>
  34. #include <linux/root_dev.h>
  35. #include <linux/highmem.h>
  36. #include <linux/module.h>
  37. #include <linux/efi.h>
  38. #include <linux/init.h>
  39. #include <linux/edd.h>
  40. #include <linux/iscsi_ibft.h>
  41. #include <linux/nodemask.h>
  42. #include <linux/kexec.h>
  43. #include <linux/dmi.h>
  44. #include <linux/pfn.h>
  45. #include <linux/pci.h>
  46. #include <linux/init_ohci1394_dma.h>
  47. #include <linux/kvm_para.h>
  48. #include <video/edid.h>
  49. #include <asm/mtrr.h>
  50. #include <asm/apic.h>
  51. #include <asm/e820.h>
  52. #include <asm/mpspec.h>
  53. #include <asm/mmzone.h>
  54. #include <asm/setup.h>
  55. #include <asm/arch_hooks.h>
  56. #include <asm/sections.h>
  57. #include <asm/dmi.h>
  58. #include <asm/io_apic.h>
  59. #include <asm/ist.h>
  60. #include <asm/io.h>
  61. #include <asm/vmi.h>
  62. #include <setup_arch.h>
  63. #include <asm/bios_ebda.h>
  64. #include <asm/cacheflush.h>
  65. #include <asm/processor.h>
  66. #include <asm/efi.h>
  67. #include <asm/bugs.h>
  68. /* This value is set up by the early boot code to point to the value
  69. immediately after the boot time page tables. It contains a *physical*
  70. address, and must not be in the .bss segment! */
  71. unsigned long init_pg_tables_start __initdata = ~0UL;
  72. unsigned long init_pg_tables_end __initdata = ~0UL;
  73. /*
  74. * Machine setup..
  75. */
  76. static struct resource data_resource = {
  77. .name = "Kernel data",
  78. .start = 0,
  79. .end = 0,
  80. .flags = IORESOURCE_BUSY | IORESOURCE_MEM
  81. };
  82. static struct resource code_resource = {
  83. .name = "Kernel code",
  84. .start = 0,
  85. .end = 0,
  86. .flags = IORESOURCE_BUSY | IORESOURCE_MEM
  87. };
  88. static struct resource bss_resource = {
  89. .name = "Kernel bss",
  90. .start = 0,
  91. .end = 0,
  92. .flags = IORESOURCE_BUSY | IORESOURCE_MEM
  93. };
  94. static struct resource video_ram_resource = {
  95. .name = "Video RAM area",
  96. .start = 0xa0000,
  97. .end = 0xbffff,
  98. .flags = IORESOURCE_BUSY | IORESOURCE_MEM
  99. };
  100. /* cpu data as detected by the assembly code in head.S */
  101. struct cpuinfo_x86 new_cpu_data __cpuinitdata = { 0, 0, 0, 0, -1, 1, 0, 0, -1 };
  102. /* common cpu data for all cpus */
  103. struct cpuinfo_x86 boot_cpu_data __read_mostly = { 0, 0, 0, 0, -1, 1, 0, 0, -1 };
  104. EXPORT_SYMBOL(boot_cpu_data);
  105. unsigned int def_to_bigsmp;
  106. #ifndef CONFIG_X86_PAE
  107. unsigned long mmu_cr4_features;
  108. #else
  109. unsigned long mmu_cr4_features = X86_CR4_PAE;
  110. #endif
  111. /* for MCA, but anyone else can use it if they want */
  112. unsigned int machine_id;
  113. unsigned int machine_submodel_id;
  114. unsigned int BIOS_revision;
  115. /* Boot loader ID as an integer, for the benefit of proc_dointvec */
  116. int bootloader_type;
  117. /* user-defined highmem size */
  118. static unsigned int highmem_pages = -1;
  119. /*
  120. * Early DMI memory
  121. */
  122. int dmi_alloc_index;
  123. char dmi_alloc_data[DMI_MAX_DATA];
  124. /*
  125. * Setup options
  126. */
  127. struct screen_info screen_info;
  128. EXPORT_SYMBOL(screen_info);
  129. struct apm_info apm_info;
  130. EXPORT_SYMBOL(apm_info);
  131. struct edid_info edid_info;
  132. EXPORT_SYMBOL_GPL(edid_info);
  133. struct ist_info ist_info;
  134. #if defined(CONFIG_X86_SPEEDSTEP_SMI) || \
  135. defined(CONFIG_X86_SPEEDSTEP_SMI_MODULE)
  136. EXPORT_SYMBOL(ist_info);
  137. #endif
  138. extern int root_mountflags;
  139. unsigned long saved_video_mode;
  140. #define RAMDISK_IMAGE_START_MASK 0x07FF
  141. #define RAMDISK_PROMPT_FLAG 0x8000
  142. #define RAMDISK_LOAD_FLAG 0x4000
  143. static char __initdata command_line[COMMAND_LINE_SIZE];
  144. #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
  145. struct edd edd;
  146. #ifdef CONFIG_EDD_MODULE
  147. EXPORT_SYMBOL(edd);
  148. #endif
  149. /**
  150. * copy_edd() - Copy the BIOS EDD information
  151. * from boot_params into a safe place.
  152. *
  153. */
  154. static inline void copy_edd(void)
  155. {
  156. memcpy(edd.mbr_signature, boot_params.edd_mbr_sig_buffer,
  157. sizeof(edd.mbr_signature));
  158. memcpy(edd.edd_info, boot_params.eddbuf, sizeof(edd.edd_info));
  159. edd.mbr_signature_nr = boot_params.edd_mbr_sig_buf_entries;
  160. edd.edd_info_nr = boot_params.eddbuf_entries;
  161. }
  162. #else
  163. static inline void copy_edd(void)
  164. {
  165. }
  166. #endif
  167. /*
  168. * highmem=size forces highmem to be exactly 'size' bytes.
  169. * This works even on boxes that have no highmem otherwise.
  170. * This also works to reduce highmem size on bigger boxes.
  171. */
  172. static int __init parse_highmem(char *arg)
  173. {
  174. if (!arg)
  175. return -EINVAL;
  176. highmem_pages = memparse(arg, &arg) >> PAGE_SHIFT;
  177. return 0;
  178. }
  179. early_param("highmem", parse_highmem);
  180. /*
  181. * vmalloc=size forces the vmalloc area to be exactly 'size'
  182. * bytes. This can be used to increase (or decrease) the
  183. * vmalloc area - the default is 128m.
  184. */
  185. static int __init parse_vmalloc(char *arg)
  186. {
  187. if (!arg)
  188. return -EINVAL;
  189. __VMALLOC_RESERVE = memparse(arg, &arg);
  190. return 0;
  191. }
  192. early_param("vmalloc", parse_vmalloc);
  193. /*
  194. * reservetop=size reserves a hole at the top of the kernel address space which
  195. * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
  196. * so relocating the fixmap can be done before paging initialization.
  197. */
  198. static int __init parse_reservetop(char *arg)
  199. {
  200. unsigned long address;
  201. if (!arg)
  202. return -EINVAL;
  203. address = memparse(arg, &arg);
  204. reserve_top_address(address);
  205. return 0;
  206. }
  207. early_param("reservetop", parse_reservetop);
  208. /*
  209. * Determine low and high memory ranges:
  210. */
  211. unsigned long __init find_max_low_pfn(void)
  212. {
  213. unsigned long max_low_pfn;
  214. max_low_pfn = max_pfn;
  215. if (max_low_pfn > MAXMEM_PFN) {
  216. if (highmem_pages == -1)
  217. highmem_pages = max_pfn - MAXMEM_PFN;
  218. if (highmem_pages + MAXMEM_PFN < max_pfn)
  219. max_pfn = MAXMEM_PFN + highmem_pages;
  220. if (highmem_pages + MAXMEM_PFN > max_pfn) {
  221. printk("only %luMB highmem pages available, ignoring highmem size of %uMB.\n", pages_to_mb(max_pfn - MAXMEM_PFN), pages_to_mb(highmem_pages));
  222. highmem_pages = 0;
  223. }
  224. max_low_pfn = MAXMEM_PFN;
  225. #ifndef CONFIG_HIGHMEM
  226. /* Maximum memory usable is what is directly addressable */
  227. printk(KERN_WARNING "Warning only %ldMB will be used.\n",
  228. MAXMEM>>20);
  229. if (max_pfn > MAX_NONPAE_PFN)
  230. printk(KERN_WARNING "Use a HIGHMEM64G enabled kernel.\n");
  231. else
  232. printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n");
  233. max_pfn = MAXMEM_PFN;
  234. #else /* !CONFIG_HIGHMEM */
  235. #ifndef CONFIG_HIGHMEM64G
  236. if (max_pfn > MAX_NONPAE_PFN) {
  237. max_pfn = MAX_NONPAE_PFN;
  238. printk(KERN_WARNING "Warning only 4GB will be used.\n");
  239. printk(KERN_WARNING "Use a HIGHMEM64G enabled kernel.\n");
  240. }
  241. #endif /* !CONFIG_HIGHMEM64G */
  242. #endif /* !CONFIG_HIGHMEM */
  243. } else {
  244. if (highmem_pages == -1)
  245. highmem_pages = 0;
  246. #ifdef CONFIG_HIGHMEM
  247. if (highmem_pages >= max_pfn) {
  248. printk(KERN_ERR "highmem size specified (%uMB) is bigger than pages available (%luMB)!.\n", pages_to_mb(highmem_pages), pages_to_mb(max_pfn));
  249. highmem_pages = 0;
  250. }
  251. if (highmem_pages) {
  252. if (max_low_pfn-highmem_pages < 64*1024*1024/PAGE_SIZE){
  253. printk(KERN_ERR "highmem size %uMB results in smaller than 64MB lowmem, ignoring it.\n", pages_to_mb(highmem_pages));
  254. highmem_pages = 0;
  255. }
  256. max_low_pfn -= highmem_pages;
  257. }
  258. #else
  259. if (highmem_pages)
  260. printk(KERN_ERR "ignoring highmem size on non-highmem kernel!\n");
  261. #endif
  262. }
  263. return max_low_pfn;
  264. }
  265. #ifdef CONFIG_BLK_DEV_INITRD
  266. static bool do_relocate_initrd = false;
  267. void __init reserve_initrd(void)
  268. {
  269. u64 ramdisk_image = boot_params.hdr.ramdisk_image;
  270. u64 ramdisk_size = boot_params.hdr.ramdisk_size;
  271. u64 ramdisk_end = ramdisk_image + ramdisk_size;
  272. u64 end_of_lowmem = max_low_pfn << PAGE_SHIFT;
  273. u64 ramdisk_here;
  274. if (!boot_params.hdr.type_of_loader ||
  275. !ramdisk_image || !ramdisk_size)
  276. return; /* No initrd provided by bootloader */
  277. initrd_start = 0;
  278. if (ramdisk_size >= end_of_lowmem/2) {
  279. free_early(ramdisk_image, ramdisk_end);
  280. printk(KERN_ERR "initrd too large to handle, "
  281. "disabling initrd\n");
  282. return;
  283. }
  284. printk(KERN_INFO "old RAMDISK: %08llx - %08llx\n", ramdisk_image,
  285. ramdisk_end);
  286. if (ramdisk_end <= end_of_lowmem) {
  287. /* All in lowmem, easy case */
  288. /*
  289. * don't need to reserve again, already reserved early
  290. * in i386_start_kernel
  291. */
  292. initrd_start = ramdisk_image + PAGE_OFFSET;
  293. initrd_end = initrd_start + ramdisk_size;
  294. return;
  295. }
  296. /* We need to move the initrd down into lowmem */
  297. ramdisk_here = find_e820_area(min_low_pfn<<PAGE_SHIFT,
  298. end_of_lowmem, ramdisk_size,
  299. PAGE_SIZE);
  300. if (ramdisk_here == -1ULL)
  301. panic("Cannot find place for new RAMDISK of size %lld\n",
  302. ramdisk_size);
  303. /* Note: this includes all the lowmem currently occupied by
  304. the initrd, we rely on that fact to keep the data intact. */
  305. reserve_early(ramdisk_here, ramdisk_here + ramdisk_size,
  306. "NEW RAMDISK");
  307. initrd_start = ramdisk_here + PAGE_OFFSET;
  308. initrd_end = initrd_start + ramdisk_size;
  309. printk(KERN_INFO "Allocated new RAMDISK: %08llx - %08llx\n",
  310. ramdisk_here, ramdisk_here + ramdisk_size);
  311. do_relocate_initrd = true;
  312. }
  313. #define MAX_MAP_CHUNK (NR_FIX_BTMAPS << PAGE_SHIFT)
  314. static void __init post_reserve_initrd(void)
  315. {
  316. u64 ramdisk_image = boot_params.hdr.ramdisk_image;
  317. u64 ramdisk_size = boot_params.hdr.ramdisk_size;
  318. u64 end_of_lowmem = max_low_pfn << PAGE_SHIFT;
  319. u64 ramdisk_here;
  320. unsigned long slop, clen, mapaddr;
  321. char *p, *q;
  322. if (!do_relocate_initrd)
  323. return;
  324. ramdisk_here = initrd_start - PAGE_OFFSET;
  325. q = (char *)initrd_start;
  326. /* Copy any lowmem portion of the initrd */
  327. if (ramdisk_image < end_of_lowmem) {
  328. clen = end_of_lowmem - ramdisk_image;
  329. p = (char *)__va(ramdisk_image);
  330. memcpy(q, p, clen);
  331. q += clen;
  332. /* need to free these low pages...*/
  333. printk(KERN_INFO "Freeing old partial RAMDISK %08llx-%08llx\n",
  334. ramdisk_image, ramdisk_image + clen - 1);
  335. free_bootmem(ramdisk_image, clen);
  336. ramdisk_image += clen;
  337. ramdisk_size -= clen;
  338. }
  339. /* Copy the highmem portion of the initrd */
  340. while (ramdisk_size) {
  341. slop = ramdisk_image & ~PAGE_MASK;
  342. clen = ramdisk_size;
  343. if (clen > MAX_MAP_CHUNK-slop)
  344. clen = MAX_MAP_CHUNK-slop;
  345. mapaddr = ramdisk_image & PAGE_MASK;
  346. p = early_ioremap(mapaddr, clen+slop);
  347. memcpy(q, p+slop, clen);
  348. early_iounmap(p, clen+slop);
  349. q += clen;
  350. ramdisk_image += clen;
  351. ramdisk_size -= clen;
  352. }
  353. /* high pages is not converted by early_res_to_bootmem */
  354. ramdisk_image = boot_params.hdr.ramdisk_image;
  355. ramdisk_size = boot_params.hdr.ramdisk_size;
  356. printk(KERN_INFO "Copied RAMDISK from %016llx - %016llx to %08llx - %08llx\n",
  357. ramdisk_image, ramdisk_image + ramdisk_size - 1,
  358. ramdisk_here, ramdisk_here + ramdisk_size - 1);
  359. /* need to free that, otherwise init highmem will reserve it again */
  360. free_early(ramdisk_image, ramdisk_image+ramdisk_size);
  361. }
  362. #else
  363. void __init reserve_initrd(void)
  364. {
  365. }
  366. static void __init post_reserve_initrd(void)
  367. {
  368. }
  369. #endif /* CONFIG_BLK_DEV_INITRD */
  370. /*
  371. * The node 0 pgdat is initialized before all of these because
  372. * it's needed for bootmem. node>0 pgdats have their virtual
  373. * space allocated before the pagetables are in place to access
  374. * them, so they can't be cleared then.
  375. *
  376. * This should all compile down to nothing when NUMA is off.
  377. */
  378. static void __init remapped_pgdat_init(void)
  379. {
  380. int nid;
  381. for_each_online_node(nid) {
  382. if (nid != 0)
  383. memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
  384. }
  385. }
  386. #ifdef CONFIG_MCA
  387. static void set_mca_bus(int x)
  388. {
  389. MCA_bus = x;
  390. }
  391. #else
  392. static void set_mca_bus(int x) { }
  393. #endif
  394. /*
  395. * Determine if we were loaded by an EFI loader. If so, then we have also been
  396. * passed the efi memmap, systab, etc., so we should use these data structures
  397. * for initialization. Note, the efi init code path is determined by the
  398. * global efi_enabled. This allows the same kernel image to be used on existing
  399. * systems (with a traditional BIOS) as well as on EFI systems.
  400. */
  401. void __init setup_arch(char **cmdline_p)
  402. {
  403. unsigned long max_low_pfn;
  404. memcpy(&boot_cpu_data, &new_cpu_data, sizeof(new_cpu_data));
  405. pre_setup_arch_hook();
  406. early_cpu_init();
  407. early_ioremap_init();
  408. reserve_setup_data();
  409. #ifdef CONFIG_EFI
  410. if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
  411. "EL32", 4)) {
  412. efi_enabled = 1;
  413. efi_reserve_early();
  414. }
  415. #endif
  416. ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev);
  417. screen_info = boot_params.screen_info;
  418. edid_info = boot_params.edid_info;
  419. apm_info.bios = boot_params.apm_bios_info;
  420. ist_info = boot_params.ist_info;
  421. saved_video_mode = boot_params.hdr.vid_mode;
  422. if( boot_params.sys_desc_table.length != 0 ) {
  423. set_mca_bus(boot_params.sys_desc_table.table[3] & 0x2);
  424. machine_id = boot_params.sys_desc_table.table[0];
  425. machine_submodel_id = boot_params.sys_desc_table.table[1];
  426. BIOS_revision = boot_params.sys_desc_table.table[2];
  427. }
  428. bootloader_type = boot_params.hdr.type_of_loader;
  429. #ifdef CONFIG_BLK_DEV_RAM
  430. rd_image_start = boot_params.hdr.ram_size & RAMDISK_IMAGE_START_MASK;
  431. rd_prompt = ((boot_params.hdr.ram_size & RAMDISK_PROMPT_FLAG) != 0);
  432. rd_doload = ((boot_params.hdr.ram_size & RAMDISK_LOAD_FLAG) != 0);
  433. #endif
  434. ARCH_SETUP
  435. setup_memory_map();
  436. copy_edd();
  437. if (!boot_params.hdr.root_flags)
  438. root_mountflags &= ~MS_RDONLY;
  439. init_mm.start_code = (unsigned long) _text;
  440. init_mm.end_code = (unsigned long) _etext;
  441. init_mm.end_data = (unsigned long) _edata;
  442. init_mm.brk = init_pg_tables_end + PAGE_OFFSET;
  443. code_resource.start = virt_to_phys(_text);
  444. code_resource.end = virt_to_phys(_etext)-1;
  445. data_resource.start = virt_to_phys(_etext);
  446. data_resource.end = virt_to_phys(_edata)-1;
  447. bss_resource.start = virt_to_phys(&__bss_start);
  448. bss_resource.end = virt_to_phys(&__bss_stop)-1;
  449. parse_setup_data();
  450. parse_early_param();
  451. if (acpi_mps_check()){
  452. enable_local_apic = -1;
  453. clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
  454. }
  455. finish_e820_parsing();
  456. probe_roms();
  457. /* after parse_early_param, so could debug it */
  458. insert_resource(&iomem_resource, &code_resource);
  459. insert_resource(&iomem_resource, &data_resource);
  460. insert_resource(&iomem_resource, &bss_resource);
  461. strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
  462. *cmdline_p = command_line;
  463. if (efi_enabled)
  464. efi_init();
  465. if (ppro_with_ram_bug()) {
  466. e820_update_range(0x70000000ULL, 0x40000ULL, E820_RAM,
  467. E820_RESERVED);
  468. sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
  469. printk(KERN_INFO "fixed physical RAM map:\n");
  470. e820_print_map("bad_ppro");
  471. }
  472. e820_register_active_regions(0, 0, -1UL);
  473. /*
  474. * partially used pages are not usable - thus
  475. * we are rounding upwards:
  476. */
  477. max_pfn = e820_end_of_ram();
  478. /* preallocate 4k for mptable mpc */
  479. early_reserve_e820_mpc_new();
  480. /* update e820 for memory not covered by WB MTRRs */
  481. mtrr_bp_init();
  482. if (mtrr_trim_uncached_memory(max_pfn)) {
  483. remove_all_active_ranges();
  484. e820_register_active_regions(0, 0, -1UL);
  485. max_pfn = e820_end_of_ram();
  486. }
  487. dmi_scan_machine();
  488. io_delay_init();
  489. /*
  490. * Parse the ACPI tables for possible boot-time SMP configuration.
  491. */
  492. acpi_boot_table_init();
  493. #ifdef CONFIG_ACPI_NUMA
  494. /*
  495. * Parse SRAT to discover nodes.
  496. */
  497. acpi_numa_init();
  498. #endif
  499. max_low_pfn = initmem_init(0, max_pfn);
  500. #ifdef CONFIG_ACPI_SLEEP
  501. /*
  502. * Reserve low memory region for sleep support.
  503. */
  504. acpi_reserve_bootmem();
  505. #endif
  506. #ifdef CONFIG_X86_FIND_SMP_CONFIG
  507. /*
  508. * Find and reserve possible boot-time SMP configuration:
  509. */
  510. find_smp_config();
  511. #endif
  512. reserve_crashkernel();
  513. reserve_ibft_region();
  514. #ifdef CONFIG_KVM_CLOCK
  515. kvmclock_init();
  516. #endif
  517. #ifdef CONFIG_VMI
  518. /*
  519. * Must be after max_low_pfn is determined, and before kernel
  520. * pagetables are setup.
  521. */
  522. vmi_init();
  523. #endif
  524. kvm_guest_init();
  525. /*
  526. * NOTE: before this point _nobody_ is allowed to allocate
  527. * any memory using the bootmem allocator. Although the
  528. * allocator is now initialised only the first 8Mb of the kernel
  529. * virtual address space has been mapped. All allocations before
  530. * paging_init() has completed must use the alloc_bootmem_low_pages()
  531. * variant (which allocates DMA'able memory) and care must be taken
  532. * not to exceed the 8Mb limit.
  533. */
  534. paging_init();
  535. /*
  536. * NOTE: On x86-32, only from this point on, fixmaps are ready for use.
  537. */
  538. #ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
  539. if (init_ohci1394_dma_early)
  540. init_ohci1394_dma_on_all_controllers();
  541. #endif
  542. /*
  543. * NOTE: at this point the bootmem allocator is fully available.
  544. */
  545. post_reserve_initrd();
  546. remapped_pgdat_init();
  547. sparse_init();
  548. zone_sizes_init();
  549. paravirt_post_allocator_init();
  550. #ifdef CONFIG_X86_GENERICARCH
  551. generic_apic_probe();
  552. #endif
  553. early_quirks();
  554. acpi_boot_init();
  555. #if defined(CONFIG_X86_MPPARSE) || defined(CONFIG_X86_VISWS)
  556. if (smp_found_config)
  557. get_smp_config();
  558. #endif
  559. #if defined(CONFIG_SMP) && defined(CONFIG_X86_PC)
  560. if (def_to_bigsmp)
  561. printk(KERN_WARNING "More than 8 CPUs detected and "
  562. "CONFIG_X86_PC cannot handle it.\nUse "
  563. "CONFIG_X86_GENERICARCH or CONFIG_X86_BIGSMP.\n");
  564. #endif
  565. e820_reserve_resources();
  566. e820_mark_nosave_regions(max_low_pfn);
  567. request_resource(&iomem_resource, &video_ram_resource);
  568. reserve_standard_io_resources();
  569. e820_setup_gap();
  570. #ifdef CONFIG_VT
  571. #if defined(CONFIG_VGA_CONSOLE)
  572. if (!efi_enabled || (efi_mem_type(0xa0000) != EFI_CONVENTIONAL_MEMORY))
  573. conswitchp = &vga_con;
  574. #elif defined(CONFIG_DUMMY_CONSOLE)
  575. conswitchp = &dummy_con;
  576. #endif
  577. #endif
  578. }