blob: 9242902d3a43ccf36670f89daee4a2a5677b11ef [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/arm/mach-omap2/board-generic.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
4 * Copyright (C) 2005 Nokia Corporation
5 * Author: Paul Mundt <paul.mundt@nokia.com>
6 *
7 * Modified from mach-omap/omap1/board-generic.c
8 *
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.
13 *
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.
17 */
18
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/device.h>
22
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000024#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/gpio.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/mux.h>
30#include <plat/usb.h>
31#include <plat/board.h>
32#include <plat/common.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000033
Paul Walmsleyb3c6df32009-09-03 20:14:02 +030034static struct omap_board_config_kernel generic_config[] = {
35};
36
Tony Lindgren1dbae812005-11-10 14:26:51 +000037static void __init omap_generic_init_irq(void)
38{
Paul Walmsleyb3c6df32009-09-03 20:14:02 +030039 omap_board_config = generic_config;
40 omap_board_config_size = ARRAY_SIZE(generic_config);
Jean Pihet58cda882009-07-24 19:43:25 -060041 omap2_init_common_hw(NULL, NULL);
Tony Lindgren1dbae812005-11-10 14:26:51 +000042 omap_init_irq();
43}
44
Tony Lindgren1dbae812005-11-10 14:26:51 +000045static void __init omap_generic_init(void)
46{
Tony Lindgren1dbae812005-11-10 14:26:51 +000047 omap_serial_init();
48}
49
50static void __init omap_generic_map_io(void)
51{
Paul Walmsleyc8d2eb82008-05-07 16:55:13 -070052 omap2_set_globals_242x(); /* should be 242x, 243x, or 343x */
Tony Lindgren6fbd55d2010-02-12 12:26:47 -080053 omap242x_map_common_io();
Tony Lindgren1dbae812005-11-10 14:26:51 +000054}
55
56MACHINE_START(OMAP_GENERIC, "Generic OMAP24xx")
57 /* Maintainer: Paul Mundt <paul.mundt@nokia.com> */
Tony Lindgren1dbae812005-11-10 14:26:51 +000058 .phys_io = 0x48000000,
Santosh Shilimkarb4224b22009-10-19 17:25:55 -070059 .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
Tony Lindgren1dbae812005-11-10 14:26:51 +000060 .boot_params = 0x80000100,
61 .map_io = omap_generic_map_io,
Russell King71ee7da2010-05-23 10:18:16 +010062 .reserve = omap_reserve,
Tony Lindgren1dbae812005-11-10 14:26:51 +000063 .init_irq = omap_generic_init_irq,
64 .init_machine = omap_generic_init,
65 .timer = &omap_timer,
66MACHINE_END