ARM: OMAP2+: Introduce local usb.h
[deliverable/linux.git] / arch / arm / mach-omap2 / board-rx51.c
CommitLineData
ffe7f95b
LL
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#include <linux/io.h>
ffe7f95b 18#include <linux/gpio.h>
a4b41d8e 19#include <linux/leds.h>
2203747c 20#include <linux/platform_data/spi-omap2-mcspi.h>
ffe7f95b 21
ffe7f95b
LL
22#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
24#include <asm/mach/map.h>
25
4e65331c 26#include "common.h"
ce491cf8
TL
27#include <plat/dma.h>
28#include <plat/gpmc.h>
ffe7f95b 29
ca5742bd 30#include "mux.h"
5a1b1d3a 31#include "pm.h"
fcd8d846 32#include "sdram-nokia.h"
ca5742bd 33
a4b41d8e 34#define RX51_GPIO_SLEEP_IND 162
ca5742bd 35
03e11104 36extern void rx51_video_mem_init(void);
2000655e 37
a4b41d8e
KH
38static struct gpio_led gpio_leds[] = {
39 {
40 .name = "sleep_ind",
41 .gpio = RX51_GPIO_SLEEP_IND,
42 },
43};
44
45static struct gpio_led_platform_data gpio_led_info = {
46 .leds = gpio_leds,
47 .num_leds = ARRAY_SIZE(gpio_leds),
48};
49
50static struct platform_device leds_gpio = {
51 .name = "leds-gpio",
52 .id = -1,
53 .dev = {
54 .platform_data = &gpio_led_info,
55 },
56};
57
866ba0ef 58/*
231900af
DL
59 * cpuidle C-states definition for rx51.
60 *
61 * The 'exit_latency' field is the sum of sleep
62 * and wake-up latencies.
63
64 ---------------------------------------------
65 | state | exit_latency | target_residency |
66 ---------------------------------------------
67 | C1 | 110 + 162 | 5 |
68 | C2 | 106 + 180 | 309 |
69 | C3 | 107 + 410 | 46057 |
70 | C4 | 121 + 3374 | 46057 |
71 | C5 | 855 + 1146 | 46057 |
72 | C6 | 7580 + 4134 | 484329 |
73 | C7 | 7505 + 15274 | 484329 |
74 ---------------------------------------------
75
76*/
5a1b1d3a 77
ffe7f95b
LL
78extern void __init rx51_peripherals_init(void);
79
ca5742bd
TL
80#ifdef CONFIG_OMAP_MUX
81static struct omap_board_mux board_mux[] __initdata = {
82 { .reg_offset = OMAP_MUX_TERMINATOR },
83};
ca5742bd
TL
84#endif
85
884b8369
MM
86static struct omap_musb_board_data musb_board_data = {
87 .interface_type = MUSB_INTERFACE_ULPI,
88 .mode = MUSB_PERIPHERAL,
89 .power = 0,
90};
91
ffe7f95b
LL
92static void __init rx51_init(void)
93{
a4ca9dbe
TL
94 struct omap_sdrc_params *sdrc_params;
95
ca5742bd 96 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
ffe7f95b 97 omap_serial_init();
a4ca9dbe
TL
98
99 sdrc_params = nokia_get_sdram_timings();
100 omap_sdrc_init(sdrc_params, sdrc_params);
101
884b8369 102 usb_musb_init(&musb_board_data);
ffe7f95b 103 rx51_peripherals_init();
9fb97412
JP
104
105 /* Ensure SDRC pins are mux'd for self-refresh */
4896e394
TL
106 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
107 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
a4b41d8e
KH
108
109 platform_device_register(&leds_gpio);
ffe7f95b
LL
110}
111
26a064d5
FC
112static void __init rx51_reserve(void)
113{
114 rx51_video_mem_init();
115 omap_reserve();
116}
117
ffe7f95b
LL
118MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
119 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
5e52b435 120 .atag_offset = 0x100,
26a064d5 121 .reserve = rx51_reserve,
e990a406 122 .map_io = omap3_map_io,
8f5b5a41 123 .init_early = omap3430_init_early,
741e3a89 124 .init_irq = omap3_init_irq,
6b2f55d7 125 .handle_irq = omap3_intc_handle_irq,
ffe7f95b 126 .init_machine = rx51_init,
bbd707ac 127 .init_late = omap3430_init_late,
e74984e4 128 .timer = &omap3_timer,
baa95883 129 .restart = omap_prcm_restart,
ffe7f95b 130MACHINE_END
This page took 0.24367 seconds and 5 git commands to generate.