head64.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * prepare to run common code
  3. *
  4. * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
  5. */
  6. #define DISABLE_BRANCH_PROFILING
  7. #include <linux/init.h>
  8. #include <linux/linkage.h>
  9. #include <linux/types.h>
  10. #include <linux/kernel.h>
  11. #include <linux/string.h>
  12. #include <linux/percpu.h>
  13. #include <linux/start_kernel.h>
  14. #include <linux/io.h>
  15. #include <linux/memblock.h>
  16. #include <asm/processor.h>
  17. #include <asm/proto.h>
  18. #include <asm/smp.h>
  19. #include <asm/setup.h>
  20. #include <asm/desc.h>
  21. #include <asm/pgtable.h>
  22. #include <asm/tlbflush.h>
  23. #include <asm/sections.h>
  24. #include <asm/kdebug.h>
  25. #include <asm/e820.h>
  26. #include <asm/bios_ebda.h>
  27. #include <asm/bootparam_utils.h>
  28. #include <asm/microcode.h>
  29. #include <asm/kasan.h>
  30. /*
  31. * Manage page tables very early on.
  32. */
  33. extern pgd_t early_level4_pgt[PTRS_PER_PGD];
  34. extern pmd_t early_dynamic_pgts[EARLY_DYNAMIC_PAGE_TABLES][PTRS_PER_PMD];
  35. static unsigned int __initdata next_early_pgt = 2;
  36. pmdval_t early_pmd_flags = __PAGE_KERNEL_LARGE & ~(_PAGE_GLOBAL | _PAGE_NX);
  37. /* Wipe all early page tables except for the kernel symbol map */
  38. static void __init reset_early_page_tables(void)
  39. {
  40. memset(early_level4_pgt, 0, sizeof(pgd_t)*(PTRS_PER_PGD-1));
  41. next_early_pgt = 0;
  42. write_cr3(__pa_nodebug(early_level4_pgt));
  43. }
  44. /* Create a new PMD entry */
  45. int __init early_make_pgtable(unsigned long address)
  46. {
  47. unsigned long physaddr = address - __PAGE_OFFSET;
  48. pgdval_t pgd, *pgd_p;
  49. pudval_t pud, *pud_p;
  50. pmdval_t pmd, *pmd_p;
  51. /* Invalid address or early pgt is done ? */
  52. if (physaddr >= MAXMEM || read_cr3() != __pa_nodebug(early_level4_pgt))
  53. return -1;
  54. again:
  55. pgd_p = &early_level4_pgt[pgd_index(address)].pgd;
  56. pgd = *pgd_p;
  57. /*
  58. * The use of __START_KERNEL_map rather than __PAGE_OFFSET here is
  59. * critical -- __PAGE_OFFSET would point us back into the dynamic
  60. * range and we might end up looping forever...
  61. */
  62. if (pgd)
  63. pud_p = (pudval_t *)((pgd & PTE_PFN_MASK) + __START_KERNEL_map - phys_base);
  64. else {
  65. if (next_early_pgt >= EARLY_DYNAMIC_PAGE_TABLES) {
  66. reset_early_page_tables();
  67. goto again;
  68. }
  69. pud_p = (pudval_t *)early_dynamic_pgts[next_early_pgt++];
  70. memset(pud_p, 0, sizeof(*pud_p) * PTRS_PER_PUD);
  71. *pgd_p = (pgdval_t)pud_p - __START_KERNEL_map + phys_base + _KERNPG_TABLE;
  72. }
  73. pud_p += pud_index(address);
  74. pud = *pud_p;
  75. if (pud)
  76. pmd_p = (pmdval_t *)((pud & PTE_PFN_MASK) + __START_KERNEL_map - phys_base);
  77. else {
  78. if (next_early_pgt >= EARLY_DYNAMIC_PAGE_TABLES) {
  79. reset_early_page_tables();
  80. goto again;
  81. }
  82. pmd_p = (pmdval_t *)early_dynamic_pgts[next_early_pgt++];
  83. memset(pmd_p, 0, sizeof(*pmd_p) * PTRS_PER_PMD);
  84. *pud_p = (pudval_t)pmd_p - __START_KERNEL_map + phys_base + _KERNPG_TABLE;
  85. }
  86. pmd = (physaddr & PMD_MASK) + early_pmd_flags;
  87. pmd_p[pmd_index(address)] = pmd;
  88. return 0;
  89. }
  90. /* Don't add a printk in there. printk relies on the PDA which is not initialized
  91. yet. */
  92. static void __init clear_bss(void)
  93. {
  94. memset(__bss_start, 0,
  95. (unsigned long) __bss_stop - (unsigned long) __bss_start);
  96. }
  97. static unsigned long get_cmd_line_ptr(void)
  98. {
  99. unsigned long cmd_line_ptr = boot_params.hdr.cmd_line_ptr;
  100. cmd_line_ptr |= (u64)boot_params.ext_cmd_line_ptr << 32;
  101. return cmd_line_ptr;
  102. }
  103. static void __init copy_bootdata(char *real_mode_data)
  104. {
  105. char * command_line;
  106. unsigned long cmd_line_ptr;
  107. memcpy(&boot_params, real_mode_data, sizeof boot_params);
  108. sanitize_boot_params(&boot_params);
  109. cmd_line_ptr = get_cmd_line_ptr();
  110. if (cmd_line_ptr) {
  111. command_line = __va(cmd_line_ptr);
  112. memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
  113. }
  114. }
  115. asmlinkage __visible void __init x86_64_start_kernel(char * real_mode_data)
  116. {
  117. int i;
  118. /*
  119. * Build-time sanity checks on the kernel image and module
  120. * area mappings. (these are purely build-time and produce no code)
  121. */
  122. BUILD_BUG_ON(MODULES_VADDR < __START_KERNEL_map);
  123. BUILD_BUG_ON(MODULES_VADDR - __START_KERNEL_map < KERNEL_IMAGE_SIZE);
  124. BUILD_BUG_ON(MODULES_LEN + KERNEL_IMAGE_SIZE > 2*PUD_SIZE);
  125. BUILD_BUG_ON((__START_KERNEL_map & ~PMD_MASK) != 0);
  126. BUILD_BUG_ON((MODULES_VADDR & ~PMD_MASK) != 0);
  127. BUILD_BUG_ON(!(MODULES_VADDR > __START_KERNEL));
  128. BUILD_BUG_ON(!(((MODULES_END - 1) & PGDIR_MASK) ==
  129. (__START_KERNEL & PGDIR_MASK)));
  130. BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses) <= MODULES_END);
  131. cr4_init_shadow();
  132. /* Kill off the identity-map trampoline */
  133. reset_early_page_tables();
  134. clear_bss();
  135. clear_page(init_level4_pgt);
  136. kasan_early_init();
  137. for (i = 0; i < NUM_EXCEPTION_VECTORS; i++)
  138. set_intr_gate(i, early_idt_handler_array[i]);
  139. load_idt((const struct desc_ptr *)&idt_descr);
  140. copy_bootdata(__va(real_mode_data));
  141. /*
  142. * Load microcode early on BSP.
  143. */
  144. load_ucode_bsp();
  145. /* set init_level4_pgt kernel high mapping*/
  146. init_level4_pgt[511] = early_level4_pgt[511];
  147. x86_64_start_reservations(real_mode_data);
  148. }
  149. void __init x86_64_start_reservations(char *real_mode_data)
  150. {
  151. /* version is always not zero if it is copied */
  152. if (!boot_params.hdr.version)
  153. copy_bootdata(__va(real_mode_data));
  154. x86_early_init_platform_quirks();
  155. switch (boot_params.hdr.hardware_subarch) {
  156. case X86_SUBARCH_INTEL_MID:
  157. x86_intel_mid_early_setup();
  158. break;
  159. default:
  160. break;
  161. }
  162. start_kernel();
  163. }