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> |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 20 | |
| 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 Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 26 | #include <plat/mcspi.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 27 | #include <plat/board.h> |
| 28 | #include <plat/common.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 29 | #include <plat/dma.h> |
| 30 | #include <plat/gpmc.h> |
| 31 | #include <plat/usb.h> |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 32 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 33 | #include "mux.h" |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 34 | #include "pm.h" |
Aaro Koskinen | fcd8d846 | 2010-12-17 15:13:44 -0800 | [diff] [blame] | 35 | #include "sdram-nokia.h" |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 36 | |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 37 | #define RX51_GPIO_SLEEP_IND 162 |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 38 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 39 | extern void rx51_video_mem_init(void); |
Tero Kristo | 2000655 | 2009-11-22 10:11:36 -0800 | [diff] [blame] | 40 | |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 41 | static struct gpio_led gpio_leds[] = { |
| 42 | { |
| 43 | .name = "sleep_ind", |
| 44 | .gpio = RX51_GPIO_SLEEP_IND, |
| 45 | }, |
| 46 | }; |
| 47 | |
| 48 | static struct gpio_led_platform_data gpio_led_info = { |
| 49 | .leds = gpio_leds, |
| 50 | .num_leds = ARRAY_SIZE(gpio_leds), |
| 51 | }; |
| 52 | |
| 53 | static struct platform_device leds_gpio = { |
| 54 | .name = "leds-gpio", |
| 55 | .id = -1, |
| 56 | .dev = { |
| 57 | .platform_data = &gpio_led_info, |
| 58 | }, |
| 59 | }; |
| 60 | |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 61 | /* |
| 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 Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 65 | static struct cpuidle_params rx51_cpuidle_params[] = { |
| 66 | /* C1 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 67 | {110 + 162, 5 , 1}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 68 | /* C2 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 69 | {106 + 180, 309, 1}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 70 | /* C3 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 71 | {107 + 410, 46057, 0}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 72 | /* C4 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 73 | {121 + 3374, 46057, 0}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 74 | /* C5 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 75 | {855 + 1146, 46057, 1}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 76 | /* C6 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 77 | {7580 + 4134, 484329, 0}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 78 | /* C7 */ |
Jean Pihet | 866ba0e | 2011-05-09 12:02:13 +0200 | [diff] [blame] | 79 | {7505 + 15274, 484329, 1}, |
Kalle Jokiniemi | 5a1b1d3 | 2009-10-29 10:30:20 +0200 | [diff] [blame] | 80 | }; |
| 81 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 82 | static struct omap_lcd_config rx51_lcd_config = { |
| 83 | .ctrl_name = "internal", |
| 84 | }; |
| 85 | |
| 86 | static struct omap_fbmem_config rx51_fbmem0_config = { |
| 87 | .size = 752 * 1024, |
| 88 | }; |
| 89 | |
| 90 | static struct omap_fbmem_config rx51_fbmem1_config = { |
| 91 | .size = 752 * 1024, |
| 92 | }; |
| 93 | |
| 94 | static struct omap_fbmem_config rx51_fbmem2_config = { |
| 95 | .size = 752 * 1024, |
| 96 | }; |
| 97 | |
| 98 | static struct omap_board_config_kernel rx51_config[] = { |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 99 | { OMAP_TAG_FBMEM, &rx51_fbmem0_config }, |
| 100 | { OMAP_TAG_FBMEM, &rx51_fbmem1_config }, |
| 101 | { OMAP_TAG_FBMEM, &rx51_fbmem2_config }, |
| 102 | { OMAP_TAG_LCD, &rx51_lcd_config }, |
| 103 | }; |
| 104 | |
Russell King - ARM Linux | 3dc3bad | 2011-02-14 15:40:20 -0800 | [diff] [blame] | 105 | static void __init rx51_init_early(void) |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 106 | { |
Tero Kristo | 2000655 | 2009-11-22 10:11:36 -0800 | [diff] [blame] | 107 | struct omap_sdrc_params *sdrc_params; |
| 108 | |
Paul Walmsley | 4805734 | 2010-12-21 15:25:10 -0700 | [diff] [blame] | 109 | omap2_init_common_infrastructure(); |
Aaro Koskinen | 6c3bc4e | 2010-12-17 15:13:44 -0800 | [diff] [blame] | 110 | sdrc_params = nokia_get_sdram_timings(); |
Paul Walmsley | 4805734 | 2010-12-21 15:25:10 -0700 | [diff] [blame] | 111 | omap2_init_common_devices(sdrc_params, sdrc_params); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | extern void __init rx51_peripherals_init(void); |
| 115 | |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 116 | #ifdef CONFIG_OMAP_MUX |
| 117 | static struct omap_board_mux board_mux[] __initdata = { |
| 118 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
| 119 | }; |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 120 | #endif |
| 121 | |
Maulik Mankad | 884b836 | 2010-02-17 14:09:30 -0800 | [diff] [blame] | 122 | static struct omap_musb_board_data musb_board_data = { |
| 123 | .interface_type = MUSB_INTERFACE_ULPI, |
| 124 | .mode = MUSB_PERIPHERAL, |
| 125 | .power = 0, |
| 126 | }; |
| 127 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 128 | static void __init rx51_init(void) |
| 129 | { |
Tony Lindgren | ca5742b | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 130 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
Tony Lindgren | e41cccf | 2011-02-24 14:36:03 -0800 | [diff] [blame] | 131 | omap_board_config = rx51_config; |
| 132 | omap_board_config_size = ARRAY_SIZE(rx51_config); |
| 133 | omap3_pm_init_cpuidle(rx51_cpuidle_params); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 134 | omap_serial_init(); |
Maulik Mankad | 884b836 | 2010-02-17 14:09:30 -0800 | [diff] [blame] | 135 | usb_musb_init(&musb_board_data); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 136 | rx51_peripherals_init(); |
Jean Pihet | 9fb9741 | 2009-07-24 19:43:25 -0600 | [diff] [blame] | 137 | |
| 138 | /* Ensure SDRC pins are mux'd for self-refresh */ |
Tony Lindgren | 4896e39 | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 139 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
| 140 | omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT); |
Kevin Hilman | a4b41d8 | 2009-10-02 08:17:56 -0700 | [diff] [blame] | 141 | |
| 142 | platform_device_register(&leds_gpio); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static void __init rx51_map_io(void) |
| 146 | { |
Sergio Aguirre | c573bcf | 2010-08-04 14:43:18 +0300 | [diff] [blame] | 147 | omap2_set_globals_3xxx(); |
Tony Lindgren | 6fbd55d | 2010-02-12 12:26:47 -0800 | [diff] [blame] | 148 | omap34xx_map_common_io(); |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Felipe Contreras | 26a064d | 2011-04-26 02:45:28 -0700 | [diff] [blame] | 151 | static void __init rx51_reserve(void) |
| 152 | { |
| 153 | rx51_video_mem_init(); |
| 154 | omap_reserve(); |
| 155 | } |
| 156 | |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 157 | MACHINE_START(NOKIA_RX51, "Nokia RX-51 board") |
| 158 | /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */ |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 159 | .boot_params = 0x80000100, |
Felipe Contreras | 26a064d | 2011-04-26 02:45:28 -0700 | [diff] [blame] | 160 | .reserve = rx51_reserve, |
Russell King - ARM Linux | 3dc3bad | 2011-02-14 15:40:20 -0800 | [diff] [blame] | 161 | .map_io = rx51_map_io, |
| 162 | .init_early = rx51_init_early, |
| 163 | .init_irq = omap_init_irq, |
Lauri Leukkunen | ffe7f95 | 2009-03-23 18:38:17 -0700 | [diff] [blame] | 164 | .init_machine = rx51_init, |
| 165 | .timer = &omap_timer, |
| 166 | MACHINE_END |