]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/board-rx51.c
98dfde19593eb0217fda40eb9b54da1cddeaed30
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-rx51.c
1 /*
2  * linux/arch/arm/mach-omap2/board-rx51.c
3  *
4  * Copyright (C) 2007, 2008 Nokia
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/delay.h>
15 #include <linux/err.h>
16 #include <linux/clk.h>
17
18 #include <mach/hardware.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
22
23 #include <mach/mcspi.h>
24 #include <mach/gpio.h>
25 #include <mach/mux.h>
26 #include <mach/board.h>
27 #include <mach/common.h>
28 #include <mach/keypad.h>
29 #include <mach/dma.h>
30 #include <mach/gpmc.h>
31 #include <mach/usb.h>
32
33 #include <asm/io.h>
34 #include <asm/delay.h>
35
36
37 static struct omap_uart_config rx51_uart_config = {
38         .enabled_uarts  = ((1 << 0) | (1 << 1) | (1 << 2)),
39 };
40
41 static struct omap_lcd_config rx51_lcd_config = {
42         .ctrl_name      = "internal",
43 };
44
45 static struct omap_fbmem_config rx51_fbmem0_config = {
46         .size = 752 * 1024,
47 };
48
49 static struct omap_fbmem_config rx51_fbmem1_config = {
50         .size = 752 * 1024,
51 };
52
53 static struct omap_fbmem_config rx51_fbmem2_config = {
54         .size = 752 * 1024,
55 };
56
57 static struct omap_board_config_kernel rx51_config[] = {
58         { OMAP_TAG_UART,        &rx51_uart_config },
59         { OMAP_TAG_FBMEM,       &rx51_fbmem0_config },
60         { OMAP_TAG_FBMEM,       &rx51_fbmem1_config },
61         { OMAP_TAG_FBMEM,       &rx51_fbmem2_config },
62         { OMAP_TAG_LCD,         &rx51_lcd_config },
63 };
64
65 static void __init rx51_init_irq(void)
66 {
67         omap2_init_common_hw(rx51_get_sdram_timings());
68         omap_init_irq();
69         omap_gpio_init();
70 }
71
72 extern void __init rx51_flash_init(void);
73 extern void __init rx51_peripherals_init(void);
74 extern void __init rx51_video_init(void);
75
76 static void __init rx51_init(void)
77 {
78         omap_board_config = rx51_config;
79         omap_board_config_size = ARRAY_SIZE(rx51_config);
80         omap_serial_init();
81         usb_musb_init();
82         rx51_flash_init();
83         rx51_peripherals_init();
84         rx51_video_init();
85 }
86
87 static void __init rx51_map_io(void)
88 {
89         omap2_set_globals_343x();
90         omap2_map_common_io();
91 }
92
93 MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
94         /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
95         .phys_io        = 0x48000000,
96         .io_pg_offst    = ((0xd8000000) >> 18) & 0xfffc,
97         .boot_params    = 0x80000100,
98         .map_io         = rx51_map_io,
99         .init_irq       = rx51_init_irq,
100         .init_machine   = rx51_init,
101         .timer          = &omap_timer,
102 MACHINE_END