blob: 1965bff3489c3df405da37f1c46e9da050e1c0e8 [file] [log] [blame]
Thomas Gleixner57844a82009-08-19 14:48:38 +02001/*
2 * Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
3 *
4 * For licencing details see kernel-base/COPYING
5 */
6#include <linux/init.h>
7
Thomas Gleixner816c25e2009-08-19 14:36:27 +02008#include <asm/bios_ebda.h>
Thomas Gleixner8fee6972009-08-19 14:55:50 +02009#include <asm/setup.h>
Thomas Gleixner6b18ae32009-08-20 10:19:54 +020010#include <asm/e820.h>
Thomas Gleixner57844a82009-08-19 14:48:38 +020011
12void __cpuinit x86_init_noop(void) { }
13
14/*
15 * The platform setup functions are preset with the default functions
16 * for standard PC hardware.
17 */
18struct __initdata x86_init_ops x86_init = {
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020019
20 .resources = {
21 .probe_roms = x86_init_noop,
Thomas Gleixner8fee6972009-08-19 14:55:50 +020022 .reserve_resources = reserve_standard_io_resources,
Thomas Gleixner816c25e2009-08-19 14:36:27 +020023 .reserve_ebda_region = reserve_ebda_region,
Thomas Gleixner6b18ae32009-08-20 10:19:54 +020024 .memory_setup = default_machine_specific_memory_setup,
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020025 },
Thomas Gleixner57844a82009-08-19 14:48:38 +020026};