head32.c 3.0 KB

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