blob: 201360781ac1c48029abdf1424a6d48baf69cfe3 [file] [log] [blame]
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +03001/*
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
David Brownellbb3b9d82009-05-28 14:04:03 -070031#include <linux/regulator/machine.h>
Tony Lindgren145d9c92009-01-15 13:09:53 +020032#include <linux/i2c/twl4030.h>
33
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030034#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/common.h>
42#include <mach/gpmc.h>
43#include <mach/nand.h>
Tony Lindgren90c62bf2008-12-10 17:37:17 -080044#include <mach/mux.h>
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070045#include <mach/usb.h>
Paul Walmsleyf2480762009-04-23 21:11:10 -060046#include <mach/timer-gp.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030047
Tony Lindgren90c62bf2008-12-10 17:37:17 -080048#include "mmc-twl4030.h"
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030049
50#define GPMC_CS0_BASE 0x60
51#define GPMC_CS_SIZE 0x30
52
53#define NAND_BLOCK_SIZE SZ_128K
54
55static struct mtd_partition omap3beagle_nand_partitions[] = {
56 /* All the partition sizes are listed in terms of NAND block size */
57 {
58 .name = "X-Loader",
59 .offset = 0,
60 .size = 4 * NAND_BLOCK_SIZE,
61 .mask_flags = MTD_WRITEABLE, /* force read-only */
62 },
63 {
64 .name = "U-Boot",
65 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
66 .size = 15 * NAND_BLOCK_SIZE,
67 .mask_flags = MTD_WRITEABLE, /* force read-only */
68 },
69 {
70 .name = "U-Boot Env",
71 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
72 .size = 1 * NAND_BLOCK_SIZE,
73 },
74 {
75 .name = "Kernel",
76 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
77 .size = 32 * NAND_BLOCK_SIZE,
78 },
79 {
80 .name = "File System",
81 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
82 .size = MTDPART_SIZ_FULL,
83 },
84};
85
86static struct omap_nand_platform_data omap3beagle_nand_data = {
87 .options = NAND_BUSWIDTH_16,
88 .parts = omap3beagle_nand_partitions,
89 .nr_parts = ARRAY_SIZE(omap3beagle_nand_partitions),
90 .dma_channel = -1, /* disable DMA in OMAP NAND driver */
91 .nand_setup = NULL,
92 .dev_ready = NULL,
93};
94
95static struct resource omap3beagle_nand_resource = {
96 .flags = IORESOURCE_MEM,
97};
98
99static struct platform_device omap3beagle_nand_device = {
100 .name = "omap2-nand",
101 .id = -1,
102 .dev = {
103 .platform_data = &omap3beagle_nand_data,
104 },
105 .num_resources = 1,
106 .resource = &omap3beagle_nand_resource,
107};
108
Paul Walmsley2e12bd72009-05-28 14:03:59 -0700109#include "sdram-micron-mt46h32m32lf-6.h"
110
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800111static struct twl4030_hsmmc_info mmc[] = {
112 {
113 .mmc = 1,
114 .wires = 8,
115 .gpio_wp = 29,
116 },
117 {} /* Terminator */
118};
119
David Brownellbb3b9d82009-05-28 14:04:03 -0700120static struct platform_device omap3_beagle_lcd_device = {
121 .name = "omap3beagle_lcd",
122 .id = -1,
123};
124
125static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
126 .ctrl_name = "internal",
127};
128
129static struct regulator_consumer_supply beagle_vmmc1_supply = {
130 .supply = "vmmc",
131};
132
133static struct regulator_consumer_supply beagle_vsim_supply = {
134 .supply = "vmmc_aux",
135};
136
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800137static struct gpio_led gpio_leds[];
138
139static int beagle_twl_gpio_setup(struct device *dev,
140 unsigned gpio, unsigned ngpio)
141{
142 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
Tony Lindgren145d9c92009-01-15 13:09:53 +0200143 omap_cfg_reg(AH8_34XX_GPIO29);
144 mmc[0].gpio_cd = gpio + 0;
145 twl4030_mmc_init(mmc);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800146
David Brownellbb3b9d82009-05-28 14:04:03 -0700147 /* link regulators to MMC adapters */
148 beagle_vmmc1_supply.dev = mmc[0].dev;
149 beagle_vsim_supply.dev = mmc[0].dev;
150
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800151 /* 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
168static 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
David Brownellbb3b9d82009-05-28 14:04:03 -0700179static struct regulator_consumer_supply beagle_vdac_supply = {
180 .supply = "vdac",
181 .dev = &omap3_beagle_lcd_device.dev,
182};
183
184static struct regulator_consumer_supply beagle_vdvi_supply = {
185 .supply = "vdvi",
186 .dev = &omap3_beagle_lcd_device.dev,
187};
188
189/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
190static struct regulator_init_data beagle_vmmc1 = {
191 .constraints = {
192 .min_uV = 1850000,
193 .max_uV = 3150000,
194 .valid_modes_mask = REGULATOR_MODE_NORMAL
195 | REGULATOR_MODE_STANDBY,
196 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
197 | REGULATOR_CHANGE_MODE
198 | REGULATOR_CHANGE_STATUS,
199 },
200 .num_consumer_supplies = 1,
201 .consumer_supplies = &beagle_vmmc1_supply,
202};
203
204/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
205static struct regulator_init_data beagle_vsim = {
206 .constraints = {
207 .min_uV = 1800000,
208 .max_uV = 3000000,
209 .valid_modes_mask = REGULATOR_MODE_NORMAL
210 | REGULATOR_MODE_STANDBY,
211 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
212 | REGULATOR_CHANGE_MODE
213 | REGULATOR_CHANGE_STATUS,
214 },
215 .num_consumer_supplies = 1,
216 .consumer_supplies = &beagle_vsim_supply,
217};
218
219/* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
220static struct regulator_init_data beagle_vdac = {
221 .constraints = {
222 .min_uV = 1800000,
223 .max_uV = 1800000,
224 .valid_modes_mask = REGULATOR_MODE_NORMAL
225 | REGULATOR_MODE_STANDBY,
226 .valid_ops_mask = REGULATOR_CHANGE_MODE
227 | REGULATOR_CHANGE_STATUS,
228 },
229 .num_consumer_supplies = 1,
230 .consumer_supplies = &beagle_vdac_supply,
231};
232
233/* VPLL2 for digital video outputs */
234static struct regulator_init_data beagle_vpll2 = {
235 .constraints = {
236 .name = "VDVI",
237 .min_uV = 1800000,
238 .max_uV = 1800000,
239 .valid_modes_mask = REGULATOR_MODE_NORMAL
240 | REGULATOR_MODE_STANDBY,
241 .valid_ops_mask = REGULATOR_CHANGE_MODE
242 | REGULATOR_CHANGE_STATUS,
243 },
244 .num_consumer_supplies = 1,
245 .consumer_supplies = &beagle_vdvi_supply,
246};
247
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800248static struct twl4030_platform_data beagle_twldata = {
249 .irq_base = TWL4030_IRQ_BASE,
250 .irq_end = TWL4030_IRQ_END,
251
252 /* platform_data for children goes here */
253 .gpio = &beagle_gpio_data,
David Brownellbb3b9d82009-05-28 14:04:03 -0700254 .vmmc1 = &beagle_vmmc1,
255 .vsim = &beagle_vsim,
256 .vdac = &beagle_vdac,
257 .vpll2 = &beagle_vpll2,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800258};
259
260static struct i2c_board_info __initdata beagle_i2c_boardinfo[] = {
261 {
262 I2C_BOARD_INFO("twl4030", 0x48),
263 .flags = I2C_CLIENT_WAKE,
264 .irq = INT_34XX_SYS_NIRQ,
265 .platform_data = &beagle_twldata,
266 },
267};
268
269static int __init omap3_beagle_i2c_init(void)
270{
271 omap_register_i2c_bus(1, 2600, beagle_i2c_boardinfo,
272 ARRAY_SIZE(beagle_i2c_boardinfo));
Koen Kooi8ca7fe22009-03-04 10:07:42 -0800273 /* Bus 3 is attached to the DVI port where devices like the pico DLP
274 * projector don't work reliably with 400kHz */
275 omap_register_i2c_bus(3, 100, NULL, 0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800276 return 0;
277}
278
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300279static void __init omap3_beagle_init_irq(void)
280{
Jean Pihet58cda882009-07-24 19:43:25 -0600281 omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
282 mt46h32m32lf6_sdrc_params);
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300283 omap_init_irq();
Paul Walmsleyf2480762009-04-23 21:11:10 -0600284#ifdef CONFIG_OMAP_32K_TIMER
285 omap2_gp_clockevent_set_gptimer(12);
286#endif
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300287 omap_gpio_init();
288}
289
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300290static struct gpio_led gpio_leds[] = {
291 {
292 .name = "beagleboard::usr0",
293 .default_trigger = "heartbeat",
294 .gpio = 150,
295 },
296 {
297 .name = "beagleboard::usr1",
298 .default_trigger = "mmc0",
299 .gpio = 149,
300 },
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800301 {
302 .name = "beagleboard::pmu_stat",
303 .gpio = -EINVAL, /* gets replaced */
304 .active_low = true,
305 },
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300306};
307
308static struct gpio_led_platform_data gpio_led_info = {
309 .leds = gpio_leds,
310 .num_leds = ARRAY_SIZE(gpio_leds),
311};
312
313static struct platform_device leds_gpio = {
314 .name = "leds-gpio",
315 .id = -1,
316 .dev = {
317 .platform_data = &gpio_led_info,
318 },
319};
320
321static struct gpio_keys_button gpio_buttons[] = {
322 {
323 .code = BTN_EXTRA,
324 .gpio = 7,
325 .desc = "user",
326 .wakeup = 1,
327 },
328};
329
330static struct gpio_keys_platform_data gpio_key_info = {
331 .buttons = gpio_buttons,
332 .nbuttons = ARRAY_SIZE(gpio_buttons),
333};
334
335static struct platform_device keys_gpio = {
336 .name = "gpio-keys",
337 .id = -1,
338 .dev = {
339 .platform_data = &gpio_key_info,
340 },
341};
342
343static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300344 { OMAP_TAG_LCD, &omap3_beagle_lcd_config },
345};
346
347static struct platform_device *omap3_beagle_devices[] __initdata = {
348 &omap3_beagle_lcd_device,
349 &leds_gpio,
350 &keys_gpio,
351};
352
353static void __init omap3beagle_flash_init(void)
354{
355 u8 cs = 0;
356 u8 nandcs = GPMC_CS_NUM + 1;
357
358 u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
359
360 /* find out the chip-select on which NAND exists */
361 while (cs < GPMC_CS_NUM) {
362 u32 ret = 0;
363 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
364
365 if ((ret & 0xC00) == 0x800) {
366 printk(KERN_INFO "Found NAND on CS%d\n", cs);
367 if (nandcs > GPMC_CS_NUM)
368 nandcs = cs;
369 }
370 cs++;
371 }
372
373 if (nandcs > GPMC_CS_NUM) {
374 printk(KERN_INFO "NAND: Unable to find configuration "
375 "in GPMC\n ");
376 return;
377 }
378
379 if (nandcs < GPMC_CS_NUM) {
380 omap3beagle_nand_data.cs = nandcs;
381 omap3beagle_nand_data.gpmc_cs_baseaddr = (void *)
382 (gpmc_base_add + GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
383 omap3beagle_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
384
385 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
386 if (platform_device_register(&omap3beagle_nand_device) < 0)
387 printk(KERN_ERR "Unable to register NAND device\n");
388 }
389}
390
391static void __init omap3_beagle_init(void)
392{
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800393 omap3_beagle_i2c_init();
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300394 platform_add_devices(omap3_beagle_devices,
395 ARRAY_SIZE(omap3_beagle_devices));
396 omap_board_config = omap3_beagle_config;
397 omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
398 omap_serial_init();
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800399
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800400 omap_cfg_reg(J25_34XX_GPIO170);
401 gpio_request(170, "DVI_nPD");
402 /* REVISIT leave DVI powered down until it's needed ... */
403 gpio_direction_output(170, true);
404
Felipe Balbi18cb7ac2009-03-23 18:34:06 -0700405 usb_musb_init();
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300406 omap3beagle_flash_init();
Jean Pihet9fb97412009-07-24 19:43:25 -0600407
408 /* Ensure SDRC pins are mux'd for self-refresh */
409 omap_cfg_reg(H16_34XX_SDRC_CKE0);
410 omap_cfg_reg(H17_34XX_SDRC_CKE1);
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300411}
412
413static void __init omap3_beagle_map_io(void)
414{
415 omap2_set_globals_343x();
416 omap2_map_common_io();
417}
418
419MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
420 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
421 .phys_io = 0x48000000,
422 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
423 .boot_params = 0x80000100,
424 .map_io = omap3_beagle_map_io,
425 .init_irq = omap3_beagle_init_irq,
426 .init_machine = omap3_beagle_init,
427 .timer = &omap_timer,
428MACHINE_END