head32.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * linux/arch/i386/kernel/head32.c -- prepare to run common code
  3. *
  4. * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
  5. * Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com>
  6. */
  7. #include <linux/init.h>
  8. #include <linux/start_kernel.h>
  9. #include <linux/mm.h>
  10. #include <linux/memblock.h>
  11. #include <asm/desc.h>
  12. #include <asm/setup.h>
  13. #include <asm/sections.h>
  14. #include <asm/e820/api.h>
  15. #include <asm/page.h>
  16. #include <asm/apic.h>
  17. #include <asm/io_apic.h>
  18. #include <asm/bios_ebda.h>
  19. #include <asm/tlbflush.h>
  20. #include <asm/bootparam_utils.h>
  21. static void __init i386_default_early_setup(void)
  22. {
  23. /* Initialize 32bit specific setup functions */
  24. x86_init.resources.reserve_resources = i386_reserve_resources;
  25. x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc;
  26. }
  27. asmlinkage __visible void __init i386_start_kernel(void)
  28. {
  29. /* Make sure IDT is set up before any exception happens */
  30. idt_setup_early_handler();
  31. cr4_init_shadow();
  32. sanitize_boot_params(&boot_params);
  33. x86_early_init_platform_quirks();
  34. /* Call the subarch specific early setup function */
  35. switch (boot_params.hdr.hardware_subarch) {
  36. case X86_SUBARCH_INTEL_MID:
  37. x86_intel_mid_early_setup();
  38. break;
  39. case X86_SUBARCH_CE4100:
  40. x86_ce4100_early_setup();
  41. break;
  42. default:
  43. i386_default_early_setup();
  44. break;
  45. }
  46. start_kernel();
  47. }
  48. /*
  49. * Initialize page tables. This creates a PDE and a set of page
  50. * tables, which are located immediately beyond __brk_base. The variable
  51. * _brk_end is set up to point to the first "safe" location.
  52. * Mappings are created both at virtual address 0 (identity mapping)
  53. * and PAGE_OFFSET for up to _end.
  54. *
  55. * In PAE mode initial_page_table is statically defined to contain
  56. * enough entries to cover the VMSPLIT option (that is the top 1, 2 or 3
  57. * entries). The identity mapping is handled by pointing two PGD entries
  58. * to the first kernel PMD. Note the upper half of each PMD or PTE are
  59. * always zero at this stage.
  60. */
  61. void __init mk_early_pgtbl_32(void)
  62. {
  63. #ifdef __pa
  64. #undef __pa
  65. #endif
  66. #define __pa(x) ((unsigned long)(x) - PAGE_OFFSET)
  67. pte_t pte, *ptep;
  68. int i;
  69. unsigned long *ptr;
  70. /* Enough space to fit pagetables for the low memory linear map */
  71. const unsigned long limit = __pa(_end) +
  72. (PAGE_TABLE_SIZE(LOWMEM_PAGES) << PAGE_SHIFT);
  73. #ifdef CONFIG_X86_PAE
  74. pmd_t pl2, *pl2p = (pmd_t *)__pa(initial_pg_pmd);
  75. #define SET_PL2(pl2, val) { (pl2).pmd = (val); }
  76. #else
  77. pgd_t pl2, *pl2p = (pgd_t *)__pa(initial_page_table);
  78. #define SET_PL2(pl2, val) { (pl2).pgd = (val); }
  79. #endif
  80. ptep = (pte_t *)__pa(__brk_base);
  81. pte.pte = PTE_IDENT_ATTR;
  82. while ((pte.pte & PTE_PFN_MASK) < limit) {
  83. SET_PL2(pl2, (unsigned long)ptep | PDE_IDENT_ATTR);
  84. *pl2p = pl2;
  85. #ifndef CONFIG_X86_PAE
  86. /* Kernel PDE entry */
  87. *(pl2p + ((PAGE_OFFSET >> PGDIR_SHIFT))) = pl2;
  88. #endif
  89. for (i = 0; i < PTRS_PER_PTE; i++) {
  90. *ptep = pte;
  91. pte.pte += PAGE_SIZE;
  92. ptep++;
  93. }
  94. pl2p++;
  95. }
  96. ptr = (unsigned long *)__pa(&max_pfn_mapped);
  97. /* Can't use pte_pfn() since it's a call with CONFIG_PARAVIRT */
  98. *ptr = (pte.pte & PTE_PFN_MASK) >> PAGE_SHIFT;
  99. ptr = (unsigned long *)__pa(&_brk_end);
  100. *ptr = (unsigned long)ptep + PAGE_OFFSET;
  101. }