head32.c 1.4 KB
Newer Older
1 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 12 13
#include <asm/setup.h>
#include <asm/sections.h>
#include <asm/e820.h>
14
#include <asm/page.h>
15
#include <asm/trampoline.h>
16 17
#include <asm/apic.h>
#include <asm/io_apic.h>
18

19 20
void __init i386_start_kernel(void)
{
21 22
	reserve_trampoline_memory();

23
	reserve_early(__pa_symbol(&_text), __pa_symbol(&__bss_stop), "TEXT DATA BSS");
24 25 26 27 28 29 30 31 32 33

#ifdef CONFIG_BLK_DEV_INITRD
	/* Reserve INITRD */
	if (boot_params.hdr.type_of_loader && boot_params.hdr.ramdisk_image) {
		u64 ramdisk_image = boot_params.hdr.ramdisk_image;
		u64 ramdisk_size  = boot_params.hdr.ramdisk_size;
		u64 ramdisk_end   = ramdisk_image + ramdisk_size;
		reserve_early(ramdisk_image, ramdisk_end, "RAMDISK");
	}
#endif
34 35
	/* Initilize 32bit specific setup functions */
	x86_init.resources.probe_roms = probe_roms;
36
	x86_init.resources.reserve_resources = i386_reserve_resources;
37
	x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc;
38

39
	x86_init.resources.reserve_ebda_region();
40 41 42 43 44 45 46

	/*
	 * 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.
	 */

47 48
	start_kernel();
}