blob: faa2a8e28de59502d24b20ee59520711c3fd03f0 [file] [log] [blame]
Lauri Leukkunenffe7f952009-03-23 18:38:17 -07001/*
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>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070018#include <linux/gpio.h>
Kevin Hilmana4b41d82009-10-02 08:17:56 -070019#include <linux/leds.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070020
21#include <mach/hardware.h>
22#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
24#include <asm/mach/map.h>
25
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/mcspi.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070027#include <plat/board.h>
28#include <plat/common.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/dma.h>
30#include <plat/gpmc.h>
31#include <plat/usb.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070032
Tony Lindgrenca5742b2009-12-11 16:16:32 -080033#include "mux.h"
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020034#include "pm.h"
Aaro Koskinenfcd8d842010-12-17 15:13:44 -080035#include "sdram-nokia.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080036
Kevin Hilmana4b41d82009-10-02 08:17:56 -070037#define RX51_GPIO_SLEEP_IND 162
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070038
Roger Quadros03e11102010-05-10 10:35:17 +020039extern void rx51_video_mem_init(void);
Tero Kristo20006552009-11-22 10:11:36 -080040
Kevin Hilmana4b41d82009-10-02 08:17:56 -070041static struct gpio_led gpio_leds[] = {
42 {
43 .name = "sleep_ind",
44 .gpio = RX51_GPIO_SLEEP_IND,
45 },
46};
47
48static struct gpio_led_platform_data gpio_led_info = {
49 .leds = gpio_leds,
50 .num_leds = ARRAY_SIZE(gpio_leds),
51};
52
53static struct platform_device leds_gpio = {
54 .name = "leds-gpio",
55 .id = -1,
56 .dev = {
57 .platform_data = &gpio_led_info,
58 },
59};
60
Jean Pihet866ba0e2011-05-09 12:02:13 +020061/*
62 * cpuidle C-states definition override from the default values.
63 * The 'exit_latency' field is the sum of sleep and wake-up latencies.
64 */
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020065static struct cpuidle_params rx51_cpuidle_params[] = {
66 /* C1 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020067 {110 + 162, 5 , 1},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020068 /* C2 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020069 {106 + 180, 309, 1},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020070 /* C3 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020071 {107 + 410, 46057, 0},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020072 /* C4 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020073 {121 + 3374, 46057, 0},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020074 /* C5 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020075 {855 + 1146, 46057, 1},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020076 /* C6 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020077 {7580 + 4134, 484329, 0},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020078 /* C7 */
Jean Pihet866ba0e2011-05-09 12:02:13 +020079 {7505 + 15274, 484329, 1},
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020080};
81
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -080082static void __init rx51_init_early(void)
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070083{
Tero Kristo20006552009-11-22 10:11:36 -080084 struct omap_sdrc_params *sdrc_params;
85
Paul Walmsley48057342010-12-21 15:25:10 -070086 omap2_init_common_infrastructure();
Aaro Koskinen6c3bc4e2010-12-17 15:13:44 -080087 sdrc_params = nokia_get_sdram_timings();
Paul Walmsley48057342010-12-21 15:25:10 -070088 omap2_init_common_devices(sdrc_params, sdrc_params);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070089}
90
91extern void __init rx51_peripherals_init(void);
92
Tony Lindgrenca5742b2009-12-11 16:16:32 -080093#ifdef CONFIG_OMAP_MUX
94static struct omap_board_mux board_mux[] __initdata = {
95 { .reg_offset = OMAP_MUX_TERMINATOR },
96};
Tony Lindgrenca5742b2009-12-11 16:16:32 -080097#endif
98
Maulik Mankad884b8362010-02-17 14:09:30 -080099static struct omap_musb_board_data musb_board_data = {
100 .interface_type = MUSB_INTERFACE_ULPI,
101 .mode = MUSB_PERIPHERAL,
102 .power = 0,
103};
104
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700105static void __init rx51_init(void)
106{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800107 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800108 omap3_pm_init_cpuidle(rx51_cpuidle_params);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700109 omap_serial_init();
Maulik Mankad884b8362010-02-17 14:09:30 -0800110 usb_musb_init(&musb_board_data);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700111 rx51_peripherals_init();
Jean Pihet9fb97412009-07-24 19:43:25 -0600112
113 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800114 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
115 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Kevin Hilmana4b41d82009-10-02 08:17:56 -0700116
117 platform_device_register(&leds_gpio);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700118}
119
120static void __init rx51_map_io(void)
121{
Sergio Aguirrec573bcf2010-08-04 14:43:18 +0300122 omap2_set_globals_3xxx();
Tony Lindgren6fbd55d2010-02-12 12:26:47 -0800123 omap34xx_map_common_io();
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700124}
125
Felipe Contreras26a064d2011-04-26 02:45:28 -0700126static void __init rx51_reserve(void)
127{
128 rx51_video_mem_init();
129 omap_reserve();
130}
131
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700132MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
133 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400134 .atag_offset = 0x100,
Felipe Contreras26a064d2011-04-26 02:45:28 -0700135 .reserve = rx51_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800136 .map_io = rx51_map_io,
137 .init_early = rx51_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700138 .init_irq = omap3_init_irq,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700139 .init_machine = rx51_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700140 .timer = &omap3_timer,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700141MACHINE_END