head32.c 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 *  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>
10
#include <linux/mm.h>
11
#include <linux/memblock.h>
12

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

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

	reserve_ebda_region();
}
31

32
asmlinkage void __init i386_start_kernel(void)
33
{
34 35
	sanitize_boot_params(&boot_params);

36 37
	/* Call the subarch specific early setup function */
	switch (boot_params.hdr.hardware_subarch) {
38 39 40
	case X86_SUBARCH_MRST:
		x86_mrst_early_setup();
		break;
T
Thomas Gleixner 已提交
41 42 43
	case X86_SUBARCH_CE4100:
		x86_ce4100_early_setup();
		break;
44 45 46 47
	default:
		i386_default_early_setup();
		break;
	}
48

49 50
	start_kernel();
}