]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/board-omap3pandora.c
c67f62ff8850976a9da45820f6ed19493323b0ae
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-omap3pandora.c
1 /*
2  * board-omap3pandora.c (Pandora Handheld Console)
3  *
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.
7  *
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.
12  *
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
17  *
18  */
19
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>
27
28 #include <linux/spi/spi.h>
29 #include <linux/spi/ads7846.h>
30 #include <linux/i2c/twl4030.h>
31
32 #include <linux/mtd/mtd.h>
33 #include <linux/mtd/nand.h>
34 #include <linux/mtd/partitions.h>
35
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/flash.h>
39 #include <asm/mach/map.h>
40
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.h>
48 #include <mach/mcspi.h>
49
50 #include "sdram-micron-mt46h32m32lf-6.h"
51 #include "mmc-twl4030.h"
52
53
54 #define NAND_BLOCK_SIZE                 SZ_128K
55 #define GPMC_CS0_BASE                   0x60
56 #define GPMC_CS_SIZE                    0x30
57
58 #define OMAP3_PANDORA_TS_GPIO           94
59
60 static struct mtd_partition omap3pandora_nand_partitions[] = {
61         {
62                 .name           = "xloader",
63                 .offset         = 0,                    /* Offset = 0x00000 */
64                 .size           = 4 * NAND_BLOCK_SIZE,
65                 .mask_flags     = MTD_WRITEABLE
66         }, {
67                 .name           = "uboot",
68                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x80000 */
69                 .size           = 14 * NAND_BLOCK_SIZE,
70         }, {
71                 .name           = "uboot environment",
72                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x240000 */
73                 .size           = 2 * NAND_BLOCK_SIZE,
74         }, {
75                 .name           = "linux",
76                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x280000 */
77                 .size           = 32 * NAND_BLOCK_SIZE,
78         }, {
79                 .name           = "rootfs",
80                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x680000 */
81                 .size           = MTDPART_SIZ_FULL,
82         },
83 };
84
85 static struct omap_nand_platform_data omap3pandora_nand_data = {
86         .parts          = omap3pandora_nand_partitions,
87         .nr_parts       = ARRAY_SIZE(omap3pandora_nand_partitions),
88         .dma_channel    = -1,   /* disable DMA in OMAP NAND driver */
89 };
90
91 static struct resource omap3pandora_nand_resource[] = {
92         {
93                 .flags          = IORESOURCE_MEM,
94         },
95 };
96
97 static struct platform_device omap3pandora_nand_device = {
98         .name           = "omap2-nand",
99         .id             = -1,
100         .dev            = {
101                 .platform_data  = &omap3pandora_nand_data,
102         },
103         .num_resources  = ARRAY_SIZE(omap3pandora_nand_resource),
104         .resource       = omap3pandora_nand_resource,
105 };
106
107 static void __init omap3pandora_flash_init(void)
108 {
109         u8 cs = 0;
110         u8 nandcs = GPMC_CS_NUM + 1;
111
112         u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
113
114         /* find out the chip-select on which NAND exists */
115         while (cs < GPMC_CS_NUM) {
116                 u32 ret = 0;
117                 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
118
119                 if ((ret & 0xC00) == 0x800) {
120                         printk(KERN_INFO "Found NAND on CS%d\n", cs);
121                         if (nandcs > GPMC_CS_NUM)
122                                 nandcs = cs;
123                 }
124                 cs++;
125         }
126
127         if (nandcs > GPMC_CS_NUM) {
128                 printk(KERN_INFO "NAND: Unable to find configuration "
129                                  "in GPMC\n ");
130                 return;
131         }
132
133         if (nandcs < GPMC_CS_NUM) {
134                 omap3pandora_nand_data.cs = nandcs;
135                 omap3pandora_nand_data.gpmc_cs_baseaddr = (void *)
136                         (gpmc_base_add + GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
137                 omap3pandora_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
138
139                 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
140                 if (platform_device_register(&omap3pandora_nand_device) < 0)
141                         printk(KERN_ERR "Unable to register NAND device\n");
142         }
143 }
144
145 static struct twl4030_hsmmc_info omap3pandora_mmc[] = {
146         {
147                 .mmc            = 1,
148                 .wires          = 4,
149                 .gpio_cd        = -EINVAL,
150                 .gpio_wp        = 126,
151                 .ext_clock      = 0,
152         },
153         {
154                 .mmc            = 2,
155                 .wires          = 4,
156                 .gpio_cd        = -EINVAL,
157                 .gpio_wp        = 127,
158                 .ext_clock      = 1,
159                 .transceiver    = true,
160         },
161         {
162                 .mmc            = 3,
163                 .wires          = 4,
164                 .gpio_cd        = -EINVAL,
165                 .gpio_wp        = -EINVAL,
166         },
167         {}      /* Terminator */
168 };
169
170 static struct omap_uart_config omap3pandora_uart_config __initdata = {
171         .enabled_uarts  = (1 << 2), /* UART3 */
172 };
173
174 static int omap3pandora_twl_gpio_setup(struct device *dev,
175                 unsigned gpio, unsigned ngpio)
176 {
177         /* gpio + {0,1} is "mmc{0,1}_cd" (input/IRQ) */
178         omap3pandora_mmc[0].gpio_cd = gpio + 0;
179         omap3pandora_mmc[1].gpio_cd = gpio + 1;
180         twl4030_mmc_init(omap3pandora_mmc);
181
182         return 0;
183 }
184
185 static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {
186         .gpio_base      = OMAP_MAX_GPIO_LINES,
187         .irq_base       = TWL4030_GPIO_IRQ_BASE,
188         .irq_end        = TWL4030_GPIO_IRQ_END,
189         .setup          = omap3pandora_twl_gpio_setup,
190 };
191
192 static struct twl4030_usb_data omap3pandora_usb_data = {
193         .usb_mode       = T2_USB_MODE_ULPI,
194 };
195
196 static struct twl4030_platform_data omap3pandora_twldata = {
197         .irq_base       = TWL4030_IRQ_BASE,
198         .irq_end        = TWL4030_IRQ_END,
199         .gpio           = &omap3pandora_gpio_data,
200         .usb            = &omap3pandora_usb_data,
201 };
202
203 static struct i2c_board_info __initdata omap3pandora_i2c_boardinfo[] = {
204         {
205                 I2C_BOARD_INFO("tps65950", 0x48),
206                 .flags = I2C_CLIENT_WAKE,
207                 .irq = INT_34XX_SYS_NIRQ,
208                 .platform_data = &omap3pandora_twldata,
209         },
210 };
211
212 static int __init omap3pandora_i2c_init(void)
213 {
214         omap_register_i2c_bus(1, 2600, omap3pandora_i2c_boardinfo,
215                         ARRAY_SIZE(omap3pandora_i2c_boardinfo));
216         /* i2c2 pins are not connected */
217         omap_register_i2c_bus(3, 400, NULL, 0);
218         return 0;
219 }
220
221 static void __init omap3pandora_init_irq(void)
222 {
223         omap2_init_common_hw(mt46h32m32lf6_sdrc_params);
224         omap_init_irq();
225         omap_gpio_init();
226 }
227
228 static void __init omap3pandora_ads7846_init(void)
229 {
230         int gpio = OMAP3_PANDORA_TS_GPIO;
231         int ret;
232
233         ret = gpio_request(gpio, "ads7846_pen_down");
234         if (ret < 0) {
235                 printk(KERN_ERR "Failed to request GPIO %d for "
236                                 "ads7846 pen down IRQ\n", gpio);
237                 return;
238         }
239
240         gpio_direction_input(gpio);
241 }
242
243 static int ads7846_get_pendown_state(void)
244 {
245         return !gpio_get_value(OMAP3_PANDORA_TS_GPIO);
246 }
247
248 static struct ads7846_platform_data ads7846_config = {
249         .x_max                  = 0x0fff,
250         .y_max                  = 0x0fff,
251         .x_plate_ohms           = 180,
252         .pressure_max           = 255,
253         .debounce_max           = 10,
254         .debounce_tol           = 3,
255         .debounce_rep           = 1,
256         .get_pendown_state      = ads7846_get_pendown_state,
257         .keep_vref_on           = 1,
258 };
259
260 static struct omap2_mcspi_device_config ads7846_mcspi_config = {
261         .turbo_mode     = 0,
262         .single_channel = 1,    /* 0: slave, 1: master */
263 };
264
265 static struct spi_board_info omap3pandora_spi_board_info[] __initdata = {
266         {
267                 .modalias               = "ads7846",
268                 .bus_num                = 1,
269                 .chip_select            = 0,
270                 .max_speed_hz           = 1500000,
271                 .controller_data        = &ads7846_mcspi_config,
272                 .irq                    = OMAP_GPIO_IRQ(OMAP3_PANDORA_TS_GPIO),
273                 .platform_data          = &ads7846_config,
274         }
275 };
276
277 static struct platform_device omap3pandora_lcd_device = {
278         .name           = "pandora_lcd",
279         .id             = -1,
280 };
281
282 static struct omap_lcd_config omap3pandora_lcd_config __initdata = {
283         .ctrl_name      = "internal",
284 };
285
286 static struct omap_board_config_kernel omap3pandora_config[] __initdata = {
287         { OMAP_TAG_UART,        &omap3pandora_uart_config },
288         { OMAP_TAG_LCD,         &omap3pandora_lcd_config },
289 };
290
291 static struct platform_device *omap3pandora_devices[] __initdata = {
292         &omap3pandora_lcd_device,
293 };
294
295 static void __init omap3pandora_init(void)
296 {
297         omap3pandora_i2c_init();
298         platform_add_devices(omap3pandora_devices,
299                         ARRAY_SIZE(omap3pandora_devices));
300         omap_board_config = omap3pandora_config;
301         omap_board_config_size = ARRAY_SIZE(omap3pandora_config);
302         omap_serial_init();
303         spi_register_board_info(omap3pandora_spi_board_info,
304                         ARRAY_SIZE(omap3pandora_spi_board_info));
305         usb_musb_init();
306         usb_ehci_init();
307         omap3pandora_flash_init();
308         omap3pandora_ads7846_init();
309 }
310
311 static void __init omap3pandora_map_io(void)
312 {
313         omap2_set_globals_343x();
314         omap2_map_common_io();
315 }
316
317 MACHINE_START(OMAP3_PANDORA, "Pandora Handheld Console")
318         .phys_io        = 0x48000000,
319         .io_pg_offst    = ((0xd8000000) >> 18) & 0xfffc,
320         .boot_params    = 0x80000100,
321         .map_io         = omap3pandora_map_io,
322         .init_irq       = omap3pandora_init_irq,
323         .init_machine   = omap3pandora_init,
324         .timer          = &omap_timer,
325 MACHINE_END