head32.c 3.18 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9 10
/*
 *  linux/arch/i386/kernel/head32.c -- prepare to run common code
 *
 *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
 *  Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com>
 */

#include <linux/init.h>
#include <linux/start_kernel.h>
11
#include <linux/mm.h>
12
#include <linux/memblock.h>
13

14
#include <asm/desc.h>
15 16
#include <asm/setup.h>
#include <asm/sections.h>
17
#include <asm/e820/api.h>
18
#include <asm/page.h>
19 20
#include <asm/apic.h>
#include <asm/io_apic.h>
21
#include <asm/bios_ebda.h>
22
#include <asm/tlbflush.h>
23
#include <asm/bootparam_utils.h>
24 25 26

static void __init i386_default_early_setup(void)
{
27
	/* Initialize 32bit specific setup functions */
28 29 30
	x86_init.resources.reserve_resources = i386_reserve_resources;
	x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc;
}
31

32
asmlinkage __visible void __init __noreturn i386_start_kernel(void)
33
{
34
	/* Make sure IDT is set up before any exception happens */
35 36
	idt_setup_early_handler();

37 38
	cr4_init_shadow();

39 40
	sanitize_boot_params(&boot_params);

41 42
	x86_early_init_platform_quirks();

43 44
	/* Call the subarch specific early setup function */
	switch (boot_params.hdr.hardware_subarch) {
45 46
	case X86_SUBARCH_INTEL_MID:
		x86_intel_mid_early_setup();
47
		break;
48 49 50
	case X86_SUBARCH_CE4100:
		x86_ce4100_early_setup();
		break;
51 52 53 54
	default:
		i386_default_early_setup();
		break;
	}
55

56 57
	start_kernel();
}
58 59 60 61 62 63 64 65 66 67 68 69 70 71

/*
 * Initialize page tables.  This creates a PDE and a set of page
 * tables, which are located immediately beyond __brk_base.  The variable
 * _brk_end is set up to point to the first "safe" location.
 * Mappings are created both at virtual address 0 (identity mapping)
 * and PAGE_OFFSET for up to _end.
 *
 * In PAE mode initial_page_table is statically defined to contain
 * enough entries to cover the VMSPLIT option (that is the top 1, 2 or 3
 * entries). The identity mapping is handled by pointing two PGD entries
 * to the first kernel PMD. Note the upper half of each PMD or PTE are
 * always zero at this stage.
 */
72
void __init mk_early_pgtbl_32(void);
73 74

void __init __no_stack_protector mk_early_pgtbl_32(void)
75 76 77 78 79
{
	pte_t pte, *ptep;
	int i;
	unsigned long *ptr;
	/* Enough space to fit pagetables for the low memory linear map */
80
	const unsigned long limit = __pa_nodebug(_end) +
81 82
		(PAGE_TABLE_SIZE(LOWMEM_PAGES) << PAGE_SHIFT);
#ifdef CONFIG_X86_PAE
83
	pmd_t pl2, *pl2p = (pmd_t *)__pa_nodebug(initial_pg_pmd);
84 85
#define SET_PL2(pl2, val)    { (pl2).pmd = (val); }
#else
86
	pgd_t pl2, *pl2p = (pgd_t *)__pa_nodebug(initial_page_table);
87 88 89
#define SET_PL2(pl2, val)   { (pl2).pgd = (val); }
#endif

90
	ptep = (pte_t *)__pa_nodebug(__brk_base);
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
	pte.pte = PTE_IDENT_ATTR;

	while ((pte.pte & PTE_PFN_MASK) < limit) {

		SET_PL2(pl2, (unsigned long)ptep | PDE_IDENT_ATTR);
		*pl2p = pl2;
#ifndef CONFIG_X86_PAE
		/* Kernel PDE entry */
		*(pl2p +  ((PAGE_OFFSET >> PGDIR_SHIFT))) = pl2;
#endif
		for (i = 0; i < PTRS_PER_PTE; i++) {
			*ptep = pte;
			pte.pte += PAGE_SIZE;
			ptep++;
		}

		pl2p++;
	}

110
	ptr = (unsigned long *)__pa_nodebug(&max_pfn_mapped);
111 112 113
	/* Can't use pte_pfn() since it's a call with CONFIG_PARAVIRT */
	*ptr = (pte.pte & PTE_PFN_MASK) >> PAGE_SHIFT;

114
	ptr = (unsigned long *)__pa_nodebug(&_brk_end);
115 116 117
	*ptr = (unsigned long)ptep + PAGE_OFFSET;
}