OMAP3: PM: Emu_pwrdm is switched off by hardware even when sdti is in use
[linux-ginger.git] / arch / arm / mach-omap2 / board-omap3pandora.c
blob39720eafb294556a5a45b2e4ac1b4187f7a83f52
1 /*
2 * board-omap3pandora.c (Pandora Handheld Console)
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
16 * 02110-1301 USA
20 #include <linux/clk.h>
21 #include <linux/delay.h>
22 #include <linux/err.h>
23 #include <linux/init.h>
24 #include <linux/io.h>
25 #include <linux/kernel.h>
26 #include <linux/platform_device.h>
28 #include <linux/spi/spi.h>
29 #include <linux/spi/ads7846.h>
30 #include <linux/i2c/twl4030.h>
32 #include <linux/mtd/mtd.h>
33 #include <linux/mtd/nand.h>
34 #include <linux/mtd/partitions.h>
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/flash.h>
39 #include <asm/mach/map.h>
41 #include <mach/board.h>
42 #include <mach/common.h>
43 #include <mach/gpio.h>
44 #include <mach/gpmc.h>
45 #include <mach/hardware.h>
46 #include <mach/nand.h>
47 #include <mach/usb-ehci.h>
48 #include <mach/usb-musb.h>
49 #include <mach/mcspi.h>
51 #include "sdram-micron-mt46h32m32lf-6.h"
52 #include "mmc-twl4030.h"
55 #define NAND_BLOCK_SIZE SZ_128K
56 #define GPMC_CS0_BASE 0x60
57 #define GPMC_CS_SIZE 0x30
59 #define OMAP3_PANDORA_TS_GPIO 94
61 static struct mtd_partition omap3pandora_nand_partitions[] = {
63 .name = "xloader",
64 .offset = 0, /* Offset = 0x00000 */
65 .size = 4 * NAND_BLOCK_SIZE,
66 .mask_flags = MTD_WRITEABLE
67 }, {
68 .name = "uboot",
69 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
70 .size = 14 * NAND_BLOCK_SIZE,
71 }, {
72 .name = "uboot environment",
73 .offset = MTDPART_OFS_APPEND, /* Offset = 0x240000 */
74 .size = 2 * NAND_BLOCK_SIZE,
75 }, {
76 .name = "linux",
77 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
78 .size = 32 * NAND_BLOCK_SIZE,
79 }, {
80 .name = "rootfs",
81 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
82 .size = MTDPART_SIZ_FULL,
86 static struct omap_nand_platform_data omap3pandora_nand_data = {
87 .parts = omap3pandora_nand_partitions,
88 .nr_parts = ARRAY_SIZE(omap3pandora_nand_partitions),
89 .dma_channel = -1, /* disable DMA in OMAP NAND driver */
92 static struct resource omap3pandora_nand_resource[] = {
94 .flags = IORESOURCE_MEM,
98 static struct platform_device omap3pandora_nand_device = {
99 .name = "omap2-nand",
100 .id = -1,
101 .dev = {
102 .platform_data = &omap3pandora_nand_data,
104 .num_resources = ARRAY_SIZE(omap3pandora_nand_resource),
105 .resource = omap3pandora_nand_resource,
108 static void __init omap3pandora_flash_init(void)
110 u8 cs = 0;
111 u8 nandcs = GPMC_CS_NUM + 1;
113 u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
115 /* find out the chip-select on which NAND exists */
116 while (cs < GPMC_CS_NUM) {
117 u32 ret = 0;
118 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
120 if ((ret & 0xC00) == 0x800) {
121 printk(KERN_INFO "Found NAND on CS%d\n", cs);
122 if (nandcs > GPMC_CS_NUM)
123 nandcs = cs;
125 cs++;
128 if (nandcs > GPMC_CS_NUM) {
129 printk(KERN_INFO "NAND: Unable to find configuration "
130 "in GPMC\n ");
131 return;
134 if (nandcs < GPMC_CS_NUM) {
135 omap3pandora_nand_data.cs = nandcs;
136 omap3pandora_nand_data.gpmc_cs_baseaddr = (void *)
137 (gpmc_base_add + GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
138 omap3pandora_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
140 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
141 if (platform_device_register(&omap3pandora_nand_device) < 0)
142 printk(KERN_ERR "Unable to register NAND device\n");
146 static struct twl4030_hsmmc_info omap3pandora_mmc[] = {
148 .mmc = 1,
149 .wires = 4,
150 .gpio_cd = -EINVAL,
151 .gpio_wp = 126,
152 .ext_clock = 0,
155 .mmc = 2,
156 .wires = 4,
157 .gpio_cd = -EINVAL,
158 .gpio_wp = 127,
159 .ext_clock = 1,
161 {} /* Terminator */
164 static struct omap_uart_config omap3pandora_uart_config __initdata = {
165 .enabled_uarts = (1 << 2), /* UART3 */
168 static int omap3pandora_twl_gpio_setup(struct device *dev,
169 unsigned gpio, unsigned ngpio)
171 /* gpio + {0,1} is "mmc{0,1}_cd" (input/IRQ) */
172 omap3pandora_mmc[0].gpio_cd = gpio + 0;
173 omap3pandora_mmc[1].gpio_cd = gpio + 1;
174 twl4030_mmc_init(omap3pandora_mmc);
176 return 0;
179 static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {
180 .gpio_base = OMAP_MAX_GPIO_LINES,
181 .irq_base = TWL4030_GPIO_IRQ_BASE,
182 .irq_end = TWL4030_GPIO_IRQ_END,
183 .setup = omap3pandora_twl_gpio_setup,
186 static struct twl4030_usb_data omap3pandora_usb_data = {
187 .usb_mode = T2_USB_MODE_ULPI,
190 static struct twl4030_platform_data omap3pandora_twldata = {
191 .irq_base = TWL4030_IRQ_BASE,
192 .irq_end = TWL4030_IRQ_END,
193 .gpio = &omap3pandora_gpio_data,
194 .usb = &omap3pandora_usb_data,
197 static struct i2c_board_info __initdata omap3pandora_i2c_boardinfo[] = {
199 I2C_BOARD_INFO("tps65950", 0x48),
200 .flags = I2C_CLIENT_WAKE,
201 .irq = INT_34XX_SYS_NIRQ,
202 .platform_data = &omap3pandora_twldata,
206 static int __init omap3pandora_i2c_init(void)
208 omap_register_i2c_bus(1, 2600, omap3pandora_i2c_boardinfo,
209 ARRAY_SIZE(omap3pandora_i2c_boardinfo));
210 /* i2c2 pins are not connected */
211 omap_register_i2c_bus(3, 400, NULL, 0);
212 return 0;
215 static void __init omap3pandora_init_irq(void)
217 omap2_init_common_hw(mt46h32m32lf6_sdrc_params);
218 omap_init_irq();
219 omap_gpio_init();
222 static void __init omap3pandora_ads7846_init(void)
224 int gpio = OMAP3_PANDORA_TS_GPIO;
225 int ret;
227 ret = gpio_request(gpio, "ads7846_pen_down");
228 if (ret < 0) {
229 printk(KERN_ERR "Failed to request GPIO %d for "
230 "ads7846 pen down IRQ\n", gpio);
231 return;
234 gpio_direction_input(gpio);
237 static int ads7846_get_pendown_state(void)
239 return !gpio_get_value(OMAP3_PANDORA_TS_GPIO);
242 static struct ads7846_platform_data ads7846_config = {
243 .x_max = 0x0fff,
244 .y_max = 0x0fff,
245 .x_plate_ohms = 180,
246 .pressure_max = 255,
247 .debounce_max = 10,
248 .debounce_tol = 3,
249 .debounce_rep = 1,
250 .get_pendown_state = ads7846_get_pendown_state,
251 .keep_vref_on = 1,
254 static struct omap2_mcspi_device_config ads7846_mcspi_config = {
255 .turbo_mode = 0,
256 .single_channel = 1, /* 0: slave, 1: master */
259 static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {
261 .modalias = "ads7846",
262 .bus_num = 1,
263 .chip_select = 0,
264 .max_speed_hz = 1500000,
265 .controller_data = &ads7846_mcspi_config,
266 .irq = OMAP_GPIO_IRQ(OMAP3_PANDORA_TS_GPIO),
267 .platform_data = &ads7846_config,
271 static struct platform_device omap3pandora_lcd_device = {
272 .name = "pandora_lcd",
273 .id = -1,
276 static struct omap_lcd_config omap3pandora_lcd_config __initdata = {
277 .ctrl_name = "internal",
280 static struct omap_board_config_kernel omap3pandora_config[] __initdata = {
281 { OMAP_TAG_UART, &omap3pandora_uart_config },
282 { OMAP_TAG_LCD, &omap3pandora_lcd_config },
285 static struct platform_device *omap3pandora_devices[] __initdata = {
286 &omap3pandora_lcd_device,
289 static void __init omap3pandora_init(void)
291 omap3pandora_i2c_init();
292 platform_add_devices(omap3pandora_devices,
293 ARRAY_SIZE(omap3pandora_devices));
294 omap_board_config = omap3pandora_config;
295 omap_board_config_size = ARRAY_SIZE(omap3pandora_config);
296 omap_serial_init();
297 spi_register_board_info(omap3pandora_spi_board_info,
298 ARRAY_SIZE(omap3pandora_spi_board_info));
299 usb_musb_init();
300 usb_ehci_init();
301 omap3pandora_flash_init();
302 omap3pandora_ads7846_init();
305 static void __init omap3pandora_map_io(void)
307 omap2_set_globals_343x();
308 omap2_map_common_io();
311 MACHINE_START(OMAP3_PANDORA, "Pandora Handheld Console")
312 .phys_io = 0x48000000,
313 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
314 .boot_params = 0x80000100,
315 .map_io = omap3pandora_map_io,
316 .init_irq = omap3pandora_init_irq,
317 .init_machine = omap3pandora_init,
318 .timer = &omap_timer,
319 MACHINE_END