Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 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> |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 18 | #include <linux/gpio.h> |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 19 | #include <linux/leds.h> |
Arnd Bergmann | 2203747 | 2012-08-24 15:21:06 +0200 | [diff] [blame^] | 20 | #include <linux/platform_data/spi-omap2-mcspi.h> |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 21 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 22 | #include <asm/mach-types.h> |
| 23 | #include <asm/mach/arch.h> |
| 24 | #include <asm/mach/map.h> |
| 25 | |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 26 | #include "common.h" |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 27 | #include <plat/dma.h> |
| 28 | #include <plat/gpmc.h> |
| 29 | #include <plat/usb.h> |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 30 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 31 | #include "mux.h" |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 32 | #include "pm.h" |
Aaro Koskinen | fcd8d846 | 2010-12-17 15:13:44 -0800 | [diff] [blame] | 33 | #include "sdram-nokia.h" |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 34 | |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 35 | #define RX51_GPIO_SLEEP_IND 162 |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 36 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 37 | extern void rx51_video_mem_init(void); |
Tero Kristo | 2000655 | 2009-11-22 10:11:36 -0800 | [diff] [blame] | 38 | |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 39 | static struct gpio_led gpio_leds[] = { |
| 40 | { |
| 41 | .name = "sleep_ind", |
| 42 | .gpio = RX51_GPIO_SLEEP_IND, |
| 43 | }, |
| 44 | }; |
| 45 | |
| 46 | static struct gpio_led_platform_data gpio_led_info = { |
| 47 | .leds = gpio_leds, |
| 48 | .num_leds = ARRAY_SIZE(gpio_leds), |
| 49 | }; |
| 50 | |
| 51 | static struct platform_device leds_gpio = { |
| 52 | .name = "leds-gpio", |
| 53 | .id = -1, |
| 54 | .dev = { |
| 55 | .platform_data = &gpio_led_info, |
| 56 | }, |
| 57 | }; |
| 58 | |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 59 | /* |
Daniel Lezcano | 231900a | 2012-04-24 16:05:29 +0200 | [diff] [blame] | 60 | * cpuidle C-states definition for rx51. |
| 61 | * |
| 62 | * The 'exit_latency' field is the sum of sleep |
| 63 | * and wake-up latencies. |
| 64 | |
| 65 | --------------------------------------------- |
| 66 | | state | exit_latency | target_residency | |
| 67 | --------------------------------------------- |
| 68 | | C1 | 110 + 162 | 5 | |
| 69 | | C2 | 106 + 180 | 309 | |
| 70 | | C3 | 107 + 410 | 46057 | |
| 71 | | C4 | 121 + 3374 | 46057 | |
| 72 | | C5 | 855 + 1146 | 46057 | |
| 73 | | C6 | 7580 + 4134 | 484329 | |
| 74 | | C7 | 7505 + 15274 | 484329 | |
| 75 | --------------------------------------------- |
| 76 | |
| 77 | */ |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 78 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 79 | extern void __init rx51_peripherals_init(void); |
| 80 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 81 | #ifdef CONFIG_OMAP_MUX |
| 82 | static struct omap_board_mux board_mux[] __initdata = { |
| 83 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
| 84 | }; |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 85 | #endif |
| 86 | |
Maulik Mankad | 884b836 | 2010-02-17 14:09:30 -0800 | [diff] [blame] | 87 | static struct omap_musb_board_data musb_board_data = { |
| 88 | .interface_type = MUSB_INTERFACE_ULPI, |
| 89 | .mode = MUSB_PERIPHERAL, |
| 90 | .power = 0, |
| 91 | }; |
| 92 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 93 | static void __init rx51_init(void) |
| 94 | { |
Tony Lindgren | a4ca9db | 2011-08-22 23:57:23 -0700 | [diff] [blame] | 95 | struct omap_sdrc_params *sdrc_params; |
| 96 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 97 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 98 | omap_serial_init(); |
Tony Lindgren | a4ca9db | 2011-08-22 23:57:23 -0700 | [diff] [blame] | 99 | |
| 100 | sdrc_params = nokia_get_sdram_timings(); |
| 101 | omap_sdrc_init(sdrc_params, sdrc_params); |
| 102 | |
Maulik Mankad | 884b836 | 2010-02-17 14:09:30 -0800 | [diff] [blame] | 103 | usb_musb_init(&musb_board_data); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 104 | rx51_peripherals_init(); |
Jean Pihet | 9fb9741 | 2009-07-24 19:43:25 -0600 | [diff] [blame] | 105 | |
| 106 | /* Ensure SDRC pins are mux'd for self-refresh */ |
Tony Lindgren | 4896e39 | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 107 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
| 108 | omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT); |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 109 | |
| 110 | platform_device_register(&leds_gpio); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Felipe Contreras | 26a064d | 2011-04-26 02:45:28 -0700 | [diff] [blame] | 113 | static void __init rx51_reserve(void) |
| 114 | { |
| 115 | rx51_video_mem_init(); |
| 116 | omap_reserve(); |
| 117 | } |
| 118 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 119 | MACHINE_START(NOKIA_RX51, "Nokia RX-51 board") |
| 120 | /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */ |
Nicolas Pitre | 5e52b43 | 2011-07-05 22:38:15 -0400 | [diff] [blame] | 121 | .atag_offset = 0x100, |
Felipe Contreras | 26a064d | 2011-04-26 02:45:28 -0700 | [diff] [blame] | 122 | .reserve = rx51_reserve, |
Tony Lindgren | e990a40 | 2011-09-26 14:52:55 -0700 | [diff] [blame] | 123 | .map_io = omap3_map_io, |
Tony Lindgren | 8f5b5a4 | 2011-08-22 23:57:24 -0700 | [diff] [blame] | 124 | .init_early = omap3430_init_early, |
Tony Lindgren | 741e3a8 | 2011-05-17 03:51:26 -0700 | [diff] [blame] | 125 | .init_irq = omap3_init_irq, |
Marc Zyngier | 6b2f55d | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 126 | .handle_irq = omap3_intc_handle_irq, |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 127 | .init_machine = rx51_init, |
Shawn Guo | bbd707a | 2012-04-26 16:06:50 +0800 | [diff] [blame] | 128 | .init_late = omap3430_init_late, |
Tony Lindgren | e74984e | 2011-03-29 15:54:48 -0700 | [diff] [blame] | 129 | .timer = &omap3_timer, |
Russell King | baa9588 | 2011-11-05 17:06:28 +0000 | [diff] [blame] | 130 | .restart = omap_prcm_restart, |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 131 | MACHINE_END |