head32.c 2.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
#include <asm/trampoline.h>
18 19
#include <asm/apic.h>
#include <asm/io_apic.h>
20
#include <asm/bios_ebda.h>
21
#include <asm/tlbflush.h>
22 23 24

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

	reserve_ebda_region();
}
32

33 34
void __init i386_start_kernel(void)
{
35 36
	memblock_init();

37 38 39 40 41 42
#ifdef CONFIG_X86_TRAMPOLINE
	/*
	 * But first pinch a few for the stack/trampoline stuff
	 * FIXME: Don't need the extra page at 4K, but need to fix
	 * trampoline before removing it. (see the GDT stuff)
	 */
43
	memblock_x86_reserve_range(PAGE_SIZE, PAGE_SIZE + PAGE_SIZE, "EX TRAMPOLINE");
44 45
#endif

46
	memblock_x86_reserve_range(__pa_symbol(&_text), __pa_symbol(&__bss_stop), "TEXT DATA BSS");
47 48 49 50

#ifdef CONFIG_BLK_DEV_INITRD
	/* Reserve INITRD */
	if (boot_params.hdr.type_of_loader && boot_params.hdr.ramdisk_image) {
51
		/* Assume only end is not page aligned */
52 53
		u64 ramdisk_image = boot_params.hdr.ramdisk_image;
		u64 ramdisk_size  = boot_params.hdr.ramdisk_size;
54
		u64 ramdisk_end   = PAGE_ALIGN(ramdisk_image + ramdisk_size);
55
		memblock_x86_reserve_range(ramdisk_image, ramdisk_end, "RAMDISK");
56 57
	}
#endif
58

59 60
	/* Call the subarch specific early setup function */
	switch (boot_params.hdr.hardware_subarch) {
61 62 63
	case X86_SUBARCH_MRST:
		x86_mrst_early_setup();
		break;
T
Thomas Gleixner 已提交
64 65 66
	case X86_SUBARCH_CE4100:
		x86_ce4100_early_setup();
		break;
67 68 69 70
	default:
		i386_default_early_setup();
		break;
	}
71 72 73 74 75 76 77

	/*
	 * At this point everything still needed from the boot loader
	 * or BIOS or kernel text should be early reserved or marked not
	 * RAM in e820. All other memory is free game.
	 */

78 79
	start_kernel();
}