blob: 83bd5db376ba8a154cd453ea29f8f8c58fd4dbb2 [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) { }
Thomas Gleixnerf4848472009-08-20 12:05:01 +020013void __init x86_init_uint_noop(unsigned int unused) { }
Thomas Gleixner57844a82009-08-19 14:48:38 +020014
15/*
16 * The platform setup functions are preset with the default functions
17 * for standard PC hardware.
18 */
19struct __initdata x86_init_ops x86_init = {
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020020
21 .resources = {
22 .probe_roms = x86_init_noop,
Thomas Gleixner8fee6972009-08-19 14:55:50 +020023 .reserve_resources = reserve_standard_io_resources,
Thomas Gleixner816c25e2009-08-19 14:36:27 +020024 .reserve_ebda_region = reserve_ebda_region,
Thomas Gleixner6b18ae32009-08-20 10:19:54 +020025 .memory_setup = default_machine_specific_memory_setup,
Thomas Gleixnerf7cf5a52009-08-19 14:43:56 +020026 },
Thomas Gleixnerf4848472009-08-20 12:05:01 +020027
28 .mpparse = {
29 .mpc_record = x86_init_uint_noop,
30 },
Thomas Gleixner57844a82009-08-19 14:48:38 +020031};