arm: remove machine_desc.io_pg_offst and .phys_io
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap2 / board-generic.c
blob69064b1c6a75da991e7a229296be750eb68c4649
1 /*
2 * linux/arch/arm/mach-omap2/board-generic.c
4 * Copyright (C) 2005 Nokia Corporation
5 * Author: Paul Mundt <paul.mundt@nokia.com>
7 * Modified from mach-omap/omap1/board-generic.c
9 * Code for generic OMAP2 board. Should work on many OMAP2 systems where
10 * the bootloader passes the board-specific data to the kernel.
11 * Do not put any board specific code to this file; create a new machine
12 * type if you need custom low-level initializations.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/device.h>
23 #include <mach/hardware.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
28 #include <mach/gpio.h>
29 #include <plat/usb.h>
30 #include <plat/board.h>
31 #include <plat/common.h>
33 static struct omap_board_config_kernel generic_config[] = {
36 static void __init omap_generic_init_irq(void)
38 omap_board_config = generic_config;
39 omap_board_config_size = ARRAY_SIZE(generic_config);
40 omap2_init_common_hw(NULL, NULL);
41 omap_init_irq();
44 static void __init omap_generic_init(void)
46 omap_serial_init();
49 static void __init omap_generic_map_io(void)
51 omap2_set_globals_242x(); /* should be 242x, 243x, or 343x */
52 omap242x_map_common_io();
55 MACHINE_START(OMAP_GENERIC, "Generic OMAP24xx")
56 /* Maintainer: Paul Mundt <paul.mundt@nokia.com> */
57 .boot_params = 0x80000100,
58 .map_io = omap_generic_map_io,
59 .reserve = omap_reserve,
60 .init_irq = omap_generic_init_irq,
61 .init_machine = omap_generic_init,
62 .timer = &omap_timer,
63 MACHINE_END