Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Eric W. Biederman | 700efc1 | 2008-02-23 09:58:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * linux/arch/i386/kernel/head32.c -- prepare to run common code |
| 4 | * |
| 5 | * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE |
| 6 | * Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/start_kernel.h> |
Yinghai Lu | c967da6 | 2010-03-28 19:42:55 -0700 | [diff] [blame] | 11 | #include <linux/mm.h> |
Yinghai Lu | 72d7c3b | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 12 | #include <linux/memblock.h> |
Eric W. Biederman | 700efc1 | 2008-02-23 09:58:20 +0100 | [diff] [blame] | 13 | |
Thomas Gleixner | 87e8178 | 2017-08-28 08:47:48 +0200 | [diff] [blame] | 14 | #include <asm/desc.h> |
Yinghai Lu | a4c81cf | 2008-05-18 01:18:57 -0700 | [diff] [blame] | 15 | #include <asm/setup.h> |
| 16 | #include <asm/sections.h> |
Ingo Molnar | 66441bd | 2017-01-27 10:27:10 +0100 | [diff] [blame] | 17 | #include <asm/e820/api.h> |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame] | 18 | #include <asm/page.h> |
Thomas Gleixner | de93410 | 2009-08-20 09:27:29 +0200 | [diff] [blame] | 19 | #include <asm/apic.h> |
| 20 | #include <asm/io_apic.h> |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 21 | #include <asm/bios_ebda.h> |
Borislav Petkov | b40827fa | 2010-08-28 15:58:33 +0200 | [diff] [blame] | 22 | #include <asm/tlbflush.h> |
H. Peter Anvin | 5dcd14e | 2013-01-29 01:05:24 -0800 | [diff] [blame] | 23 | #include <asm/bootparam_utils.h> |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 24 | |
| 25 | static void __init i386_default_early_setup(void) |
| 26 | { |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 27 | /* Initialize 32bit specific setup functions */ |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 28 | x86_init.resources.reserve_resources = i386_reserve_resources; |
| 29 | x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc; |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 30 | } |
Yinghai Lu | a4c81cf | 2008-05-18 01:18:57 -0700 | [diff] [blame] | 31 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 32 | asmlinkage __visible void __init i386_start_kernel(void) |
Eric W. Biederman | 700efc1 | 2008-02-23 09:58:20 +0100 | [diff] [blame] | 33 | { |
Thomas Gleixner | 9c48c09 | 2017-10-16 12:12:16 +0200 | [diff] [blame] | 34 | /* Make sure IDT is set up before any exception happens */ |
Thomas Gleixner | 87e8178 | 2017-08-28 08:47:48 +0200 | [diff] [blame] | 35 | idt_setup_early_handler(); |
| 36 | |
Thomas Gleixner | 9c48c09 | 2017-10-16 12:12:16 +0200 | [diff] [blame] | 37 | cr4_init_shadow(); |
| 38 | |
H. Peter Anvin | 5dcd14e | 2013-01-29 01:05:24 -0800 | [diff] [blame] | 39 | sanitize_boot_params(&boot_params); |
| 40 | |
Luis R. Rodriguez | 8d152e7 | 2016-04-13 17:04:34 -0700 | [diff] [blame] | 41 | x86_early_init_platform_quirks(); |
| 42 | |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 43 | /* Call the subarch specific early setup function */ |
| 44 | switch (boot_params.hdr.hardware_subarch) { |
Kuppuswamy Sathyanarayanan | 712b6aa | 2013-10-17 15:35:29 -0700 | [diff] [blame] | 45 | case X86_SUBARCH_INTEL_MID: |
| 46 | x86_intel_mid_early_setup(); |
Thomas Gleixner | 3f4110a | 2009-08-29 14:54:20 +0200 | [diff] [blame] | 47 | break; |
Thomas Gleixner | c751e17 | 2010-11-09 12:08:04 -0800 | [diff] [blame] | 48 | case X86_SUBARCH_CE4100: |
| 49 | x86_ce4100_early_setup(); |
| 50 | break; |
Thomas Gleixner | 47a3d5d | 2009-08-29 15:03:59 +0200 | [diff] [blame] | 51 | default: |
| 52 | i386_default_early_setup(); |
| 53 | break; |
| 54 | } |
Yinghai Lu | a4c81cf | 2008-05-18 01:18:57 -0700 | [diff] [blame] | 55 | |
Eric W. Biederman | 700efc1 | 2008-02-23 09:58:20 +0100 | [diff] [blame] | 56 | start_kernel(); |
| 57 | } |
Boris Ostrovsky | 1e620f9 | 2016-12-08 11:44:31 -0500 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * Initialize page tables. This creates a PDE and a set of page |
| 61 | * tables, which are located immediately beyond __brk_base. The variable |
| 62 | * _brk_end is set up to point to the first "safe" location. |
| 63 | * Mappings are created both at virtual address 0 (identity mapping) |
| 64 | * and PAGE_OFFSET for up to _end. |
| 65 | * |
| 66 | * In PAE mode initial_page_table is statically defined to contain |
| 67 | * enough entries to cover the VMSPLIT option (that is the top 1, 2 or 3 |
| 68 | * entries). The identity mapping is handled by pointing two PGD entries |
| 69 | * to the first kernel PMD. Note the upper half of each PMD or PTE are |
| 70 | * always zero at this stage. |
| 71 | */ |
| 72 | void __init mk_early_pgtbl_32(void) |
| 73 | { |
| 74 | #ifdef __pa |
| 75 | #undef __pa |
| 76 | #endif |
| 77 | #define __pa(x) ((unsigned long)(x) - PAGE_OFFSET) |
| 78 | pte_t pte, *ptep; |
| 79 | int i; |
| 80 | unsigned long *ptr; |
| 81 | /* Enough space to fit pagetables for the low memory linear map */ |
| 82 | const unsigned long limit = __pa(_end) + |
| 83 | (PAGE_TABLE_SIZE(LOWMEM_PAGES) << PAGE_SHIFT); |
| 84 | #ifdef CONFIG_X86_PAE |
| 85 | pmd_t pl2, *pl2p = (pmd_t *)__pa(initial_pg_pmd); |
| 86 | #define SET_PL2(pl2, val) { (pl2).pmd = (val); } |
| 87 | #else |
| 88 | pgd_t pl2, *pl2p = (pgd_t *)__pa(initial_page_table); |
| 89 | #define SET_PL2(pl2, val) { (pl2).pgd = (val); } |
| 90 | #endif |
| 91 | |
| 92 | ptep = (pte_t *)__pa(__brk_base); |
| 93 | pte.pte = PTE_IDENT_ATTR; |
| 94 | |
| 95 | while ((pte.pte & PTE_PFN_MASK) < limit) { |
| 96 | |
| 97 | SET_PL2(pl2, (unsigned long)ptep | PDE_IDENT_ATTR); |
| 98 | *pl2p = pl2; |
| 99 | #ifndef CONFIG_X86_PAE |
| 100 | /* Kernel PDE entry */ |
| 101 | *(pl2p + ((PAGE_OFFSET >> PGDIR_SHIFT))) = pl2; |
| 102 | #endif |
| 103 | for (i = 0; i < PTRS_PER_PTE; i++) { |
| 104 | *ptep = pte; |
| 105 | pte.pte += PAGE_SIZE; |
| 106 | ptep++; |
| 107 | } |
| 108 | |
| 109 | pl2p++; |
| 110 | } |
| 111 | |
| 112 | ptr = (unsigned long *)__pa(&max_pfn_mapped); |
| 113 | /* Can't use pte_pfn() since it's a call with CONFIG_PARAVIRT */ |
| 114 | *ptr = (pte.pte & PTE_PFN_MASK) >> PAGE_SHIFT; |
| 115 | |
| 116 | ptr = (unsigned long *)__pa(&_brk_end); |
| 117 | *ptr = (unsigned long)ptep + PAGE_OFFSET; |
| 118 | } |
| 119 | |