blob: 92924ebbdae53cdd92c67e42a22e8f938770c06c [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 Lindgren4e653312011-11-10 22:45:17 +010027#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/dma.h>
29#include <plat/gpmc.h>
30#include <plat/usb.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070031
Tony Lindgrenca5742b2009-12-11 16:16:32 -080032#include "mux.h"
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020033#include "pm.h"
Aaro Koskinenfcd8d8462010-12-17 15:13:44 -080034#include "sdram-nokia.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080035
Kevin Hilmana4b41d82009-10-02 08:17:56 -070036#define RX51_GPIO_SLEEP_IND 162
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070037
Roger Quadros03e11102010-05-10 10:35:17 +020038extern void rx51_video_mem_init(void);
Tero Kristo20006552009-11-22 10:11:36 -080039
Kevin Hilmana4b41d82009-10-02 08:17:56 -070040static struct gpio_led gpio_leds[] = {
41 {
42 .name = "sleep_ind",
43 .gpio = RX51_GPIO_SLEEP_IND,
44 },
45};
46
47static struct gpio_led_platform_data gpio_led_info = {
48 .leds = gpio_leds,
49 .num_leds = ARRAY_SIZE(gpio_leds),
50};
51
52static struct platform_device leds_gpio = {
53 .name = "leds-gpio",
54 .id = -1,
55 .dev = {
56 .platform_data = &gpio_led_info,
57 },
58};
59
Jean Pihet866ba0e2011-05-09 12:02:13 +020060/*
Daniel Lezcano231900a2012-04-24 16:05:29 +020061 * cpuidle C-states definition for rx51.
62 *
63 * The 'exit_latency' field is the sum of sleep
64 * and wake-up latencies.
65
66 ---------------------------------------------
67 | state | exit_latency | target_residency |
68 ---------------------------------------------
69 | C1 | 110 + 162 | 5 |
70 | C2 | 106 + 180 | 309 |
71 | C3 | 107 + 410 | 46057 |
72 | C4 | 121 + 3374 | 46057 |
73 | C5 | 855 + 1146 | 46057 |
74 | C6 | 7580 + 4134 | 484329 |
75 | C7 | 7505 + 15274 | 484329 |
76 ---------------------------------------------
77
78*/
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020079
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070080extern void __init rx51_peripherals_init(void);
81
Tony Lindgrenca5742b2009-12-11 16:16:32 -080082#ifdef CONFIG_OMAP_MUX
83static struct omap_board_mux board_mux[] __initdata = {
84 { .reg_offset = OMAP_MUX_TERMINATOR },
85};
Tony Lindgrenca5742b2009-12-11 16:16:32 -080086#endif
87
Maulik Mankad884b83692010-02-17 14:09:30 -080088static struct omap_musb_board_data musb_board_data = {
89 .interface_type = MUSB_INTERFACE_ULPI,
90 .mode = MUSB_PERIPHERAL,
91 .power = 0,
92};
93
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070094static void __init rx51_init(void)
95{
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070096 struct omap_sdrc_params *sdrc_params;
97
Tony Lindgrenca5742b2009-12-11 16:16:32 -080098 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070099 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700100
101 sdrc_params = nokia_get_sdram_timings();
102 omap_sdrc_init(sdrc_params, sdrc_params);
103
Maulik Mankad884b83692010-02-17 14:09:30 -0800104 usb_musb_init(&musb_board_data);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700105 rx51_peripherals_init();
Jean Pihet9fb97412009-07-24 19:43:25 -0600106
107 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800108 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
109 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Kevin Hilmana4b41d82009-10-02 08:17:56 -0700110
111 platform_device_register(&leds_gpio);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700112}
113
Felipe Contreras26a064d2011-04-26 02:45:28 -0700114static void __init rx51_reserve(void)
115{
116 rx51_video_mem_init();
117 omap_reserve();
118}
119
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700120MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
121 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400122 .atag_offset = 0x100,
Felipe Contreras26a064d2011-04-26 02:45:28 -0700123 .reserve = rx51_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700124 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700125 .init_early = omap3430_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700126 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100127 .handle_irq = omap3_intc_handle_irq,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700128 .init_machine = rx51_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800129 .init_late = omap3430_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700130 .timer = &omap3_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000131 .restart = omap_prcm_restart,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700132MACHINE_END