]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/board-omap3beagle.c
Merge branch 'omap-fixes'
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-omap3beagle.c
1 /*
2  * linux/arch/arm/mach-omap2/board-omap3beagle.c
3  *
4  * Copyright (C) 2008 Texas Instruments
5  *
6  * Modified from mach-omap2/board-3430sdp.c
7  *
8  * Initial code: Syed Mohammed Khasim
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
21 #include <linux/io.h>
22 #include <linux/leds.h>
23 #include <linux/gpio.h>
24 #include <linux/input.h>
25 #include <linux/gpio_keys.h>
26
27 #include <linux/mtd/mtd.h>
28 #include <linux/mtd/partitions.h>
29 #include <linux/mtd/nand.h>
30
31 #include <linux/regulator/machine.h>
32 #include <linux/i2c/twl4030.h>
33
34 #include <mach/hardware.h>
35 #include <asm/mach-types.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/flash.h>
39
40 #include <mach/board.h>
41 #include <mach/usb.h>
42 #include <mach/common.h>
43 #include <mach/gpmc.h>
44 #include <mach/nand.h>
45 #include <mach/mux.h>
46
47 #include "twl4030-generic-scripts.h"
48 #include "mmc-twl4030.h"
49
50
51 #define GPMC_CS0_BASE  0x60
52 #define GPMC_CS_SIZE   0x30
53
54 #define NAND_BLOCK_SIZE         SZ_128K
55
56 static struct mtd_partition omap3beagle_nand_partitions[] = {
57         /* All the partition sizes are listed in terms of NAND block size */
58         {
59                 .name           = "X-Loader",
60                 .offset         = 0,
61                 .size           = 4 * NAND_BLOCK_SIZE,
62                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
63         },
64         {
65                 .name           = "U-Boot",
66                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x80000 */
67                 .size           = 15 * NAND_BLOCK_SIZE,
68                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
69         },
70         {
71                 .name           = "U-Boot Env",
72                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x260000 */
73                 .size           = 1 * NAND_BLOCK_SIZE,
74         },
75         {
76                 .name           = "Kernel",
77                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x280000 */
78                 .size           = 32 * NAND_BLOCK_SIZE,
79         },
80         {
81                 .name           = "File System",
82                 .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x680000 */
83                 .size           = MTDPART_SIZ_FULL,
84         },
85 };
86
87 static struct omap_nand_platform_data omap3beagle_nand_data = {
88         .options        = NAND_BUSWIDTH_16,
89         .parts          = omap3beagle_nand_partitions,
90         .nr_parts       = ARRAY_SIZE(omap3beagle_nand_partitions),
91         .dma_channel    = -1,           /* disable DMA in OMAP NAND driver */
92         .nand_setup     = NULL,
93         .dev_ready      = NULL,
94 };
95
96 static struct resource omap3beagle_nand_resource = {
97         .flags          = IORESOURCE_MEM,
98 };
99
100 static struct platform_device omap3beagle_nand_device = {
101         .name           = "omap2-nand",
102         .id             = -1,
103         .dev            = {
104                 .platform_data  = &omap3beagle_nand_data,
105         },
106         .num_resources  = 1,
107         .resource       = &omap3beagle_nand_resource,
108 };
109
110 #include "sdram-micron-mt46h32m32lf-6.h"
111
112 static struct omap_uart_config omap3_beagle_uart_config __initdata = {
113         .enabled_uarts  = ((1 << 0) | (1 << 1) | (1 << 2)),
114 };
115
116 static struct twl4030_usb_data beagle_usb_data = {
117         .usb_mode       = T2_USB_MODE_ULPI,
118 };
119
120 static struct twl4030_hsmmc_info mmc[] = {
121         {
122                 .mmc            = 1,
123                 .wires          = 8,
124                 .gpio_wp        = 29,
125         },
126         {}      /* Terminator */
127 };
128
129 static struct regulator_consumer_supply beagle_vmmc1_supply = {
130         .supply                 = "vmmc",
131 };
132
133 static struct regulator_consumer_supply beagle_vsim_supply = {
134         .supply                 = "vmmc_aux",
135 };
136
137 static struct gpio_led gpio_leds[];
138
139 static int beagle_twl_gpio_setup(struct device *dev,
140                 unsigned gpio, unsigned ngpio)
141 {
142         /* gpio + 0 is "mmc0_cd" (input/IRQ) */
143         omap_cfg_reg(AH8_34XX_GPIO29);
144         mmc[0].gpio_cd = gpio + 0;
145         twl4030_mmc_init(mmc);
146
147         /* link regulators to MMC adapters */
148         beagle_vmmc1_supply.dev = mmc[0].dev;
149         beagle_vsim_supply.dev = mmc[0].dev;
150
151         /* REVISIT: need ehci-omap hooks for external VBUS
152          * power switch and overcurrent detect
153          */
154
155         gpio_request(gpio + 1, "EHCI_nOC");
156         gpio_direction_input(gpio + 1);
157
158         /* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low) */
159         gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
160         gpio_direction_output(gpio + TWL4030_GPIO_MAX, 1);
161
162         /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
163         gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
164
165         return 0;
166 }
167
168 static struct twl4030_gpio_platform_data beagle_gpio_data = {
169         .gpio_base      = OMAP_MAX_GPIO_LINES,
170         .irq_base       = TWL4030_GPIO_IRQ_BASE,
171         .irq_end        = TWL4030_GPIO_IRQ_END,
172         .use_leds       = true,
173         .pullups        = BIT(1),
174         .pulldowns      = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
175                                 | BIT(15) | BIT(16) | BIT(17),
176         .setup          = beagle_twl_gpio_setup,
177 };
178
179 static struct platform_device omap3_beagle_lcd_device = {
180         .name           = "omap3beagle_lcd",
181         .id             = -1,
182 };
183
184 static struct regulator_consumer_supply beagle_vdac_supply = {
185         .supply         = "vdac",
186         .dev            = &omap3_beagle_lcd_device.dev,
187 };
188
189 static struct regulator_consumer_supply beagle_vdvi_supply = {
190         .supply         = "vdvi",
191         .dev            = &omap3_beagle_lcd_device.dev,
192 };
193
194 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
195 static struct regulator_init_data beagle_vmmc1 = {
196         .constraints = {
197                 .min_uV                 = 1850000,
198                 .max_uV                 = 3150000,
199                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
200                                         | REGULATOR_MODE_STANDBY,
201                 .valid_ops_mask         = REGULATOR_CHANGE_VOLTAGE
202                                         | REGULATOR_CHANGE_MODE
203                                         | REGULATOR_CHANGE_STATUS,
204         },
205         .num_consumer_supplies  = 1,
206         .consumer_supplies      = &beagle_vmmc1_supply,
207 };
208
209 /* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
210 static struct regulator_init_data beagle_vsim = {
211         .constraints = {
212                 .min_uV                 = 1800000,
213                 .max_uV                 = 3000000,
214                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
215                                         | REGULATOR_MODE_STANDBY,
216                 .valid_ops_mask         = REGULATOR_CHANGE_VOLTAGE
217                                         | REGULATOR_CHANGE_MODE
218                                         | REGULATOR_CHANGE_STATUS,
219         },
220         .num_consumer_supplies  = 1,
221         .consumer_supplies      = &beagle_vsim_supply,
222 };
223
224 /* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
225 static struct regulator_init_data beagle_vdac = {
226         .constraints = {
227                 .min_uV                 = 1800000,
228                 .max_uV                 = 1800000,
229                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
230                                         | REGULATOR_MODE_STANDBY,
231                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
232                                         | REGULATOR_CHANGE_STATUS,
233         },
234         .num_consumer_supplies  = 1,
235         .consumer_supplies      = &beagle_vdac_supply,
236 };
237
238 /* VPLL2 for digital video outputs */
239 static struct regulator_init_data beagle_vpll2 = {
240         .constraints = {
241                 .name                   = "VDVI",
242                 .min_uV                 = 1800000,
243                 .max_uV                 = 1800000,
244                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
245                                         | REGULATOR_MODE_STANDBY,
246                 .valid_ops_mask         = REGULATOR_CHANGE_MODE
247                                         | REGULATOR_CHANGE_STATUS,
248         },
249         .num_consumer_supplies  = 1,
250         .consumer_supplies      = &beagle_vdvi_supply,
251 };
252
253 static const struct twl4030_resconfig beagle_resconfig[] = {
254         /* disable regulators that u-boot left enabled; the
255          * devices' drivers should be managing these.
256          */
257         { .resource = RES_VAUX3, },     /* not even connected! */
258         { .resource = RES_VMMC1, },
259         { .resource = RES_VSIM, },
260         { .resource = RES_VPLL2, },
261         { .resource = RES_VDAC, },
262         { .resource = RES_VUSB_1V5, },
263         { .resource = RES_VUSB_1V8, },
264         { .resource = RES_VUSB_3V1, },
265         { 0, },
266 };
267
268 static struct twl4030_power_data beagle_power_data = {
269         .resource_config        = beagle_resconfig,
270         /* REVISIT can't use GENERIC3430_T2SCRIPTS_DATA;
271          * among other things, it makes reboot fail.
272          */
273 };
274
275 static struct twl4030_platform_data beagle_twldata = {
276         .irq_base       = TWL4030_IRQ_BASE,
277         .irq_end        = TWL4030_IRQ_END,
278
279         /* platform_data for children goes here */
280         .usb            = &beagle_usb_data,
281         .gpio           = &beagle_gpio_data,
282         .power          = &beagle_power_data,
283         .vmmc1          = &beagle_vmmc1,
284         .vsim           = &beagle_vsim,
285         .vdac           = &beagle_vdac,
286         .vpll2          = &beagle_vpll2,
287 };
288
289 static struct i2c_board_info __initdata beagle_i2c_boardinfo[] = {
290         {
291                 I2C_BOARD_INFO("twl4030", 0x48),
292                 .flags = I2C_CLIENT_WAKE,
293                 .irq = INT_34XX_SYS_NIRQ,
294                 .platform_data = &beagle_twldata,
295         },
296 };
297
298 static int __init omap3_beagle_i2c_init(void)
299 {
300         omap_register_i2c_bus(1, 2600, beagle_i2c_boardinfo,
301                         ARRAY_SIZE(beagle_i2c_boardinfo));
302         /* Bus 3 is attached to the DVI port where devices like the pico DLP
303          * projector don't work reliably with 400kHz */
304         omap_register_i2c_bus(3, 100, NULL, 0);
305         return 0;
306 }
307
308 static void __init omap3_beagle_init_irq(void)
309 {
310         omap2_init_common_hw(mt46h32m32lf6_sdrc_params);
311         omap_init_irq();
312         omap_gpio_init();
313 }
314
315 static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
316         .ctrl_name      = "internal",
317 };
318
319 static struct gpio_led gpio_leds[] = {
320         {
321                 .name                   = "beagleboard::usr0",
322                 .default_trigger        = "heartbeat",
323                 .gpio                   = 150,
324         },
325         {
326                 .name                   = "beagleboard::usr1",
327                 .default_trigger        = "mmc0",
328                 .gpio                   = 149,
329         },
330         {
331                 .name                   = "beagleboard::pmu_stat",
332                 .gpio                   = -EINVAL,      /* gets replaced */
333                 .active_low             = true,
334         },
335 };
336
337 static struct gpio_led_platform_data gpio_led_info = {
338         .leds           = gpio_leds,
339         .num_leds       = ARRAY_SIZE(gpio_leds),
340 };
341
342 static struct platform_device leds_gpio = {
343         .name   = "leds-gpio",
344         .id     = -1,
345         .dev    = {
346                 .platform_data  = &gpio_led_info,
347         },
348 };
349
350 static struct gpio_keys_button gpio_buttons[] = {
351         {
352                 .code                   = BTN_EXTRA,
353                 .gpio                   = 7,
354                 .desc                   = "user",
355                 .wakeup                 = 1,
356         },
357 };
358
359 static struct gpio_keys_platform_data gpio_key_info = {
360         .buttons        = gpio_buttons,
361         .nbuttons       = ARRAY_SIZE(gpio_buttons),
362 };
363
364 static struct platform_device keys_gpio = {
365         .name   = "gpio-keys",
366         .id     = -1,
367         .dev    = {
368                 .platform_data  = &gpio_key_info,
369         },
370 };
371
372 static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
373         { OMAP_TAG_UART,        &omap3_beagle_uart_config },
374         { OMAP_TAG_LCD,         &omap3_beagle_lcd_config },
375 };
376
377 static struct platform_device *omap3_beagle_devices[] __initdata = {
378         &omap3_beagle_lcd_device,
379         &leds_gpio,
380         &keys_gpio,
381 };
382
383 static void __init omap3beagle_flash_init(void)
384 {
385         u8 cs = 0;
386         u8 nandcs = GPMC_CS_NUM + 1;
387
388         u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
389
390         /* find out the chip-select on which NAND exists */
391         while (cs < GPMC_CS_NUM) {
392                 u32 ret = 0;
393                 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
394
395                 if ((ret & 0xC00) == 0x800) {
396                         printk(KERN_INFO "Found NAND on CS%d\n", cs);
397                         if (nandcs > GPMC_CS_NUM)
398                                 nandcs = cs;
399                 }
400                 cs++;
401         }
402
403         if (nandcs > GPMC_CS_NUM) {
404                 printk(KERN_INFO "NAND: Unable to find configuration "
405                                  "in GPMC\n ");
406                 return;
407         }
408
409         if (nandcs < GPMC_CS_NUM) {
410                 omap3beagle_nand_data.cs = nandcs;
411                 omap3beagle_nand_data.gpmc_cs_baseaddr = (void *)
412                         (gpmc_base_add + GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
413                 omap3beagle_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
414
415                 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
416                 if (platform_device_register(&omap3beagle_nand_device) < 0)
417                         printk(KERN_ERR "Unable to register NAND device\n");
418         }
419 }
420
421 static void __init omap3_beagle_init(void)
422 {
423         omap3_beagle_i2c_init();
424         platform_add_devices(omap3_beagle_devices,
425                         ARRAY_SIZE(omap3_beagle_devices));
426         omap_board_config = omap3_beagle_config;
427         omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
428         omap_serial_init();
429
430         omap_cfg_reg(J25_34XX_GPIO170);
431         gpio_request(170, "DVI_nPD");
432         /* REVISIT leave DVI powered down until it's needed ... */
433         gpio_direction_output(170, true);
434
435         usb_musb_init();
436         usb_ehci_init();
437         omap3beagle_flash_init();
438 }
439
440 static void __init omap3_beagle_map_io(void)
441 {
442         omap2_set_globals_343x();
443         omap2_map_common_io();
444 }
445
446 MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
447         /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
448         .phys_io        = 0x48000000,
449         .io_pg_offst    = ((0xd8000000) >> 18) & 0xfffc,
450         .boot_params    = 0x80000100,
451         .map_io         = omap3_beagle_map_io,
452         .init_irq       = omap3_beagle_init_irq,
453         .init_machine   = omap3_beagle_init,
454         .timer          = &omap_timer,
455 MACHINE_END