2 * Board support file for Nokia N900 (aka RX-51).
4 * Copyright (C) 2007, 2008 Nokia
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.
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>
18 #include <linux/gpio.h>
19 #include <linux/leds.h>
20 #include <linux/usb/phy.h>
21 #include <linux/usb/musb.h>
22 #include <linux/platform_data/spi-omap2-mcspi.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
28 #include <linux/omap-dma.h>
34 #include "sdram-nokia.h"
36 #define RX51_GPIO_SLEEP_IND 162
38 static struct gpio_led gpio_leds
[] = {
41 .gpio
= RX51_GPIO_SLEEP_IND
,
45 static struct gpio_led_platform_data gpio_led_info
= {
47 .num_leds
= ARRAY_SIZE(gpio_leds
),
50 static struct platform_device leds_gpio
= {
54 .platform_data
= &gpio_led_info
,
59 * cpuidle C-states definition for rx51.
61 * The 'exit_latency' field is the sum of sleep
62 * and wake-up latencies.
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 ---------------------------------------------
78 extern void __init
rx51_peripherals_init(void);
80 #ifdef CONFIG_OMAP_MUX
81 static struct omap_board_mux board_mux
[] __initdata
= {
82 { .reg_offset
= OMAP_MUX_TERMINATOR
},
86 static struct omap_musb_board_data musb_board_data
= {
87 .interface_type
= MUSB_INTERFACE_ULPI
,
92 static void __init
rx51_init(void)
94 struct omap_sdrc_params
*sdrc_params
;
96 omap3_mux_init(board_mux
, OMAP_PACKAGE_CBB
);
99 sdrc_params
= nokia_get_sdram_timings();
100 omap_sdrc_init(sdrc_params
, sdrc_params
);
102 usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
103 usb_musb_init(&musb_board_data
);
104 rx51_peripherals_init();
106 /* Ensure SDRC pins are mux'd for self-refresh */
107 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT
);
108 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT
);
110 platform_device_register(&leds_gpio
);
113 static void __init
rx51_reserve(void)
118 MACHINE_START(NOKIA_RX51
, "Nokia RX-51 board")
119 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
120 .atag_offset
= 0x100,
121 .reserve
= rx51_reserve
,
122 .map_io
= omap3_map_io
,
123 .init_early
= omap3430_init_early
,
124 .init_irq
= omap3_init_irq
,
125 .handle_irq
= omap3_intc_handle_irq
,
126 .init_machine
= rx51_init
,
127 .init_late
= omap3430_init_late
,
128 .init_time
= omap3_sync32k_timer_init
,
129 .restart
= omap3xxx_restart
,