blob: d2ea68ea678af901715aa609b4c5f41175641ddf [file] [log] [blame]
Lauri Leukkunenffe7f952009-03-23 18:38:17 -07001/*
Pavel Machekcc067792012-10-17 23:03:00 +02002 * Board support file for Nokia N900 (aka RX-51).
Lauri Leukkunenffe7f952009-03-23 18:38:17 -07003 *
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>
Aaro Koskinenb0ad0992013-03-05 13:09:40 +020020#include <linux/usb/phy.h>
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070021#include <linux/usb/musb.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020022#include <linux/platform_data/spi-omap2-mcspi.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070023
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070024#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27
Tony Lindgren45c3eb72012-11-30 08:41:50 -080028#include <linux/omap-dma.h>
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070029
Tony Lindgren99f0b8d2012-10-17 11:07:18 -070030#include "common.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080031#include "mux.h"
Tony Lindgren99f0b8d2012-10-17 11:07:18 -070032#include "gpmc.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
Kevin Hilmana4b41d82009-10-02 08:17:56 -070038static 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
Jean Pihet866ba0e2011-05-09 12:02:13 +020058/*
Daniel Lezcano231900a2012-04-24 16:05:29 +020059 * 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*/
Kalle Jokiniemi5a1b1d32009-10-29 10:30:20 +020077
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070078extern void __init rx51_peripherals_init(void);
79
Tony Lindgrenca5742b2009-12-11 16:16:32 -080080#ifdef CONFIG_OMAP_MUX
81static struct omap_board_mux board_mux[] __initdata = {
82 { .reg_offset = OMAP_MUX_TERMINATOR },
83};
Tony Lindgrenca5742b2009-12-11 16:16:32 -080084#endif
85
Maulik Mankad884b83692010-02-17 14:09:30 -080086static struct omap_musb_board_data musb_board_data = {
87 .interface_type = MUSB_INTERFACE_ULPI,
88 .mode = MUSB_PERIPHERAL,
89 .power = 0,
90};
91
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070092static void __init rx51_init(void)
93{
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070094 struct omap_sdrc_params *sdrc_params;
95
Tony Lindgrenca5742b2009-12-11 16:16:32 -080096 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -070097 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -070098
99 sdrc_params = nokia_get_sdram_timings();
100 omap_sdrc_init(sdrc_params, sdrc_params);
101
Aaro Koskinenb0ad0992013-03-05 13:09:40 +0200102 usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
Maulik Mankad884b83692010-02-17 14:09:30 -0800103 usb_musb_init(&musb_board_data);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700104 rx51_peripherals_init();
Jean Pihet9fb97412009-07-24 19:43:25 -0600105
106 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800107 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
108 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Kevin Hilmana4b41d82009-10-02 08:17:56 -0700109
110 platform_device_register(&leds_gpio);
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700111}
112
Felipe Contreras26a064d2011-04-26 02:45:28 -0700113static void __init rx51_reserve(void)
114{
Felipe Contreras26a064d2011-04-26 02:45:28 -0700115 omap_reserve();
116}
117
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700118MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
119 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400120 .atag_offset = 0x100,
Felipe Contreras26a064d2011-04-26 02:45:28 -0700121 .reserve = rx51_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700122 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700123 .init_early = omap3430_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700124 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100125 .handle_irq = omap3_intc_handle_irq,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700126 .init_machine = rx51_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800127 .init_late = omap3430_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700128 .init_time = omap3_sync32k_timer_init,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600129 .restart = omap3xxx_restart,
Lauri Leukkunenffe7f952009-03-23 18:38:17 -0700130MACHINE_END