blob: 51493f59325df7d25fd8700667309ce68657c8dc [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>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000030#include <linux/mmc/host.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030031
David Brownellbb3b9d82009-05-28 14:04:03 -070032#include <linux/regulator/machine.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010033#include <linux/i2c/twl.h>
Tony Lindgren145d9c92009-01-15 13:09:53 +020034
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030035#include <mach/hardware.h>
36#include <asm/mach-types.h>
37#include <asm/mach/arch.h>
38#include <asm/mach/map.h>
39#include <asm/mach/flash.h>
40
Tony Lindgrence491cf2009-10-20 09:40:47 -070041#include <plat/board.h>
42#include <plat/common.h>
Koen Kooi044d32f2010-04-22 10:23:42 +020043#include <plat/display.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070044#include <plat/gpmc.h>
45#include <plat/nand.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070046#include <plat/usb.h>
47#include <plat/timer-gp.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030048
Tony Lindgrenca5742b2009-12-11 16:16:32 -080049#include "mux.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080050#include "hsmmc.h"
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030051
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030052#define NAND_BLOCK_SIZE SZ_128K
53
54static struct mtd_partition omap3beagle_nand_partitions[] = {
55 /* All the partition sizes are listed in terms of NAND block size */
56 {
57 .name = "X-Loader",
58 .offset = 0,
59 .size = 4 * NAND_BLOCK_SIZE,
60 .mask_flags = MTD_WRITEABLE, /* force read-only */
61 },
62 {
63 .name = "U-Boot",
64 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
65 .size = 15 * NAND_BLOCK_SIZE,
66 .mask_flags = MTD_WRITEABLE, /* force read-only */
67 },
68 {
69 .name = "U-Boot Env",
70 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
71 .size = 1 * NAND_BLOCK_SIZE,
72 },
73 {
74 .name = "Kernel",
75 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
76 .size = 32 * NAND_BLOCK_SIZE,
77 },
78 {
79 .name = "File System",
80 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
81 .size = MTDPART_SIZ_FULL,
82 },
83};
84
85static struct omap_nand_platform_data omap3beagle_nand_data = {
86 .options = NAND_BUSWIDTH_16,
87 .parts = omap3beagle_nand_partitions,
88 .nr_parts = ARRAY_SIZE(omap3beagle_nand_partitions),
89 .dma_channel = -1, /* disable DMA in OMAP NAND driver */
90 .nand_setup = NULL,
91 .dev_ready = NULL,
92};
93
Koen Kooi044d32f2010-04-22 10:23:42 +020094/* DSS */
95
96static int beagle_enable_dvi(struct omap_dss_device *dssdev)
97{
98 if (gpio_is_valid(dssdev->reset_gpio))
99 gpio_set_value(dssdev->reset_gpio, 1);
100
101 return 0;
102}
103
104static void beagle_disable_dvi(struct omap_dss_device *dssdev)
105{
106 if (gpio_is_valid(dssdev->reset_gpio))
107 gpio_set_value(dssdev->reset_gpio, 0);
108}
109
110static struct omap_dss_device beagle_dvi_device = {
111 .type = OMAP_DISPLAY_TYPE_DPI,
112 .name = "dvi",
113 .driver_name = "generic_panel",
114 .phy.dpi.data_lines = 24,
115 .reset_gpio = 170,
116 .platform_enable = beagle_enable_dvi,
117 .platform_disable = beagle_disable_dvi,
118};
119
120static struct omap_dss_device beagle_tv_device = {
121 .name = "tv",
122 .driver_name = "venc",
123 .type = OMAP_DISPLAY_TYPE_VENC,
124 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
125};
126
127static struct omap_dss_device *beagle_dss_devices[] = {
128 &beagle_dvi_device,
129 &beagle_tv_device,
130};
131
132static struct omap_dss_board_info beagle_dss_data = {
133 .num_devices = ARRAY_SIZE(beagle_dss_devices),
134 .devices = beagle_dss_devices,
135 .default_device = &beagle_dvi_device,
136};
137
138static struct platform_device beagle_dss_device = {
139 .name = "omapdss",
140 .id = -1,
141 .dev = {
142 .platform_data = &beagle_dss_data,
143 },
144};
145
146static struct regulator_consumer_supply beagle_vdac_supply =
147 REGULATOR_SUPPLY("vdda_dac", "omapdss");
148
149static struct regulator_consumer_supply beagle_vdvi_supply =
150 REGULATOR_SUPPLY("vdds_dsi", "omapdss");
151
152static void __init beagle_display_init(void)
153{
154 int r;
155
156 r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
157 if (r < 0) {
158 printk(KERN_ERR "Unable to get DVI reset GPIO\n");
159 return;
160 }
161
162 gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
163}
164
Paul Walmsley2e12bd72009-05-28 14:03:59 -0700165#include "sdram-micron-mt46h32m32lf-6.h"
166
Adrian Hunter68ff0422010-02-15 10:03:34 -0800167static struct omap2_hsmmc_info mmc[] = {
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800168 {
169 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000170 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800171 .gpio_wp = 29,
172 },
173 {} /* Terminator */
174};
175
David Brownellbb3b9d82009-05-28 14:04:03 -0700176static struct regulator_consumer_supply beagle_vmmc1_supply = {
177 .supply = "vmmc",
178};
179
180static struct regulator_consumer_supply beagle_vsim_supply = {
181 .supply = "vmmc_aux",
182};
183
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800184static struct gpio_led gpio_leds[];
185
186static int beagle_twl_gpio_setup(struct device *dev,
187 unsigned gpio, unsigned ngpio)
188{
Jarkko Nikula44e74842009-09-24 16:23:17 -0700189 if (system_rev >= 0x20 && system_rev <= 0x34301000) {
Tony Lindgren4896e392009-12-11 16:16:32 -0800190 omap_mux_init_gpio(23, OMAP_PIN_INPUT);
Jarkko Nikula44e74842009-09-24 16:23:17 -0700191 mmc[0].gpio_wp = 23;
192 } else {
Tony Lindgren4896e392009-12-11 16:16:32 -0800193 omap_mux_init_gpio(29, OMAP_PIN_INPUT);
Jarkko Nikula44e74842009-09-24 16:23:17 -0700194 }
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800195 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
Tony Lindgren145d9c92009-01-15 13:09:53 +0200196 mmc[0].gpio_cd = gpio + 0;
Adrian Hunter68ff0422010-02-15 10:03:34 -0800197 omap2_hsmmc_init(mmc);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800198
David Brownellbb3b9d82009-05-28 14:04:03 -0700199 /* link regulators to MMC adapters */
200 beagle_vmmc1_supply.dev = mmc[0].dev;
201 beagle_vsim_supply.dev = mmc[0].dev;
202
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800203 /* REVISIT: need ehci-omap hooks for external VBUS
204 * power switch and overcurrent detect
205 */
206
207 gpio_request(gpio + 1, "EHCI_nOC");
208 gpio_direction_input(gpio + 1);
209
210 /* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low) */
211 gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
Jarkko Nikulae9840dc2009-11-11 11:00:36 -0800212 gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800213
214 /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
215 gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
216
217 return 0;
218}
219
220static struct twl4030_gpio_platform_data beagle_gpio_data = {
221 .gpio_base = OMAP_MAX_GPIO_LINES,
222 .irq_base = TWL4030_GPIO_IRQ_BASE,
223 .irq_end = TWL4030_GPIO_IRQ_END,
224 .use_leds = true,
225 .pullups = BIT(1),
226 .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
227 | BIT(15) | BIT(16) | BIT(17),
228 .setup = beagle_twl_gpio_setup,
229};
230
David Brownellbb3b9d82009-05-28 14:04:03 -0700231/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
232static struct regulator_init_data beagle_vmmc1 = {
233 .constraints = {
234 .min_uV = 1850000,
235 .max_uV = 3150000,
236 .valid_modes_mask = REGULATOR_MODE_NORMAL
237 | REGULATOR_MODE_STANDBY,
238 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
239 | REGULATOR_CHANGE_MODE
240 | REGULATOR_CHANGE_STATUS,
241 },
242 .num_consumer_supplies = 1,
243 .consumer_supplies = &beagle_vmmc1_supply,
244};
245
246/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
247static struct regulator_init_data beagle_vsim = {
248 .constraints = {
249 .min_uV = 1800000,
250 .max_uV = 3000000,
251 .valid_modes_mask = REGULATOR_MODE_NORMAL
252 | REGULATOR_MODE_STANDBY,
253 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
254 | REGULATOR_CHANGE_MODE
255 | REGULATOR_CHANGE_STATUS,
256 },
257 .num_consumer_supplies = 1,
258 .consumer_supplies = &beagle_vsim_supply,
259};
260
261/* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
262static struct regulator_init_data beagle_vdac = {
263 .constraints = {
264 .min_uV = 1800000,
265 .max_uV = 1800000,
266 .valid_modes_mask = REGULATOR_MODE_NORMAL
267 | REGULATOR_MODE_STANDBY,
268 .valid_ops_mask = REGULATOR_CHANGE_MODE
269 | REGULATOR_CHANGE_STATUS,
270 },
271 .num_consumer_supplies = 1,
272 .consumer_supplies = &beagle_vdac_supply,
273};
274
275/* VPLL2 for digital video outputs */
276static struct regulator_init_data beagle_vpll2 = {
277 .constraints = {
278 .name = "VDVI",
279 .min_uV = 1800000,
280 .max_uV = 1800000,
281 .valid_modes_mask = REGULATOR_MODE_NORMAL
282 | REGULATOR_MODE_STANDBY,
283 .valid_ops_mask = REGULATOR_CHANGE_MODE
284 | REGULATOR_CHANGE_STATUS,
285 },
286 .num_consumer_supplies = 1,
287 .consumer_supplies = &beagle_vdvi_supply,
288};
289
Felipe Balbibd04e462009-08-28 11:24:15 -0700290static struct twl4030_usb_data beagle_usb_data = {
291 .usb_mode = T2_USB_MODE_ULPI,
292};
293
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300294static struct twl4030_codec_audio_data beagle_audio_data = {
295 .audio_mclk = 26000000,
296};
297
298static struct twl4030_codec_data beagle_codec_data = {
Peter Ujfalusi6df74ef2009-11-04 09:58:18 +0200299 .audio_mclk = 26000000,
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300300 .audio = &beagle_audio_data,
301};
302
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800303static struct twl4030_platform_data beagle_twldata = {
304 .irq_base = TWL4030_IRQ_BASE,
305 .irq_end = TWL4030_IRQ_END,
306
307 /* platform_data for children goes here */
Felipe Balbibd04e462009-08-28 11:24:15 -0700308 .usb = &beagle_usb_data,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800309 .gpio = &beagle_gpio_data,
Peter Ujfalusie86fa0b2009-10-22 13:26:46 +0300310 .codec = &beagle_codec_data,
David Brownellbb3b9d82009-05-28 14:04:03 -0700311 .vmmc1 = &beagle_vmmc1,
312 .vsim = &beagle_vsim,
313 .vdac = &beagle_vdac,
314 .vpll2 = &beagle_vpll2,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800315};
316
317static struct i2c_board_info __initdata beagle_i2c_boardinfo[] = {
318 {
319 I2C_BOARD_INFO("twl4030", 0x48),
320 .flags = I2C_CLIENT_WAKE,
321 .irq = INT_34XX_SYS_NIRQ,
322 .platform_data = &beagle_twldata,
323 },
324};
325
326static int __init omap3_beagle_i2c_init(void)
327{
328 omap_register_i2c_bus(1, 2600, beagle_i2c_boardinfo,
329 ARRAY_SIZE(beagle_i2c_boardinfo));
Koen Kooi8ca7fe22009-03-04 10:07:42 -0800330 /* Bus 3 is attached to the DVI port where devices like the pico DLP
331 * projector don't work reliably with 400kHz */
332 omap_register_i2c_bus(3, 100, NULL, 0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800333 return 0;
334}
335
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300336static struct gpio_led gpio_leds[] = {
337 {
338 .name = "beagleboard::usr0",
339 .default_trigger = "heartbeat",
340 .gpio = 150,
341 },
342 {
343 .name = "beagleboard::usr1",
344 .default_trigger = "mmc0",
345 .gpio = 149,
346 },
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800347 {
348 .name = "beagleboard::pmu_stat",
349 .gpio = -EINVAL, /* gets replaced */
350 .active_low = true,
351 },
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300352};
353
354static struct gpio_led_platform_data gpio_led_info = {
355 .leds = gpio_leds,
356 .num_leds = ARRAY_SIZE(gpio_leds),
357};
358
359static struct platform_device leds_gpio = {
360 .name = "leds-gpio",
361 .id = -1,
362 .dev = {
363 .platform_data = &gpio_led_info,
364 },
365};
366
367static struct gpio_keys_button gpio_buttons[] = {
368 {
369 .code = BTN_EXTRA,
370 .gpio = 7,
371 .desc = "user",
372 .wakeup = 1,
373 },
374};
375
376static struct gpio_keys_platform_data gpio_key_info = {
377 .buttons = gpio_buttons,
378 .nbuttons = ARRAY_SIZE(gpio_buttons),
379};
380
381static struct platform_device keys_gpio = {
382 .name = "gpio-keys",
383 .id = -1,
384 .dev = {
385 .platform_data = &gpio_key_info,
386 },
387};
388
Paul Walmsleyb3c6df32009-09-03 20:14:02 +0300389static void __init omap3_beagle_init_irq(void)
390{
Paul Walmsleyb3c6df32009-09-03 20:14:02 +0300391 omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
392 mt46h32m32lf6_sdrc_params);
393 omap_init_irq();
394#ifdef CONFIG_OMAP_32K_TIMER
395 omap2_gp_clockevent_set_gptimer(12);
396#endif
397 omap_gpio_init();
398}
399
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300400static struct platform_device *omap3_beagle_devices[] __initdata = {
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300401 &leds_gpio,
402 &keys_gpio,
Koen Kooi044d32f2010-04-22 10:23:42 +0200403 &beagle_dss_device,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300404};
405
406static void __init omap3beagle_flash_init(void)
407{
408 u8 cs = 0;
409 u8 nandcs = GPMC_CS_NUM + 1;
410
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300411 /* find out the chip-select on which NAND exists */
412 while (cs < GPMC_CS_NUM) {
413 u32 ret = 0;
414 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
415
416 if ((ret & 0xC00) == 0x800) {
417 printk(KERN_INFO "Found NAND on CS%d\n", cs);
418 if (nandcs > GPMC_CS_NUM)
419 nandcs = cs;
420 }
421 cs++;
422 }
423
424 if (nandcs > GPMC_CS_NUM) {
425 printk(KERN_INFO "NAND: Unable to find configuration "
426 "in GPMC\n ");
427 return;
428 }
429
430 if (nandcs < GPMC_CS_NUM) {
431 omap3beagle_nand_data.cs = nandcs;
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300432
433 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
Sukumar Ghoraif450d862010-07-09 09:14:46 +0000434 if (gpmc_nand_init(&omap3beagle_nand_data) < 0)
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300435 printk(KERN_ERR "Unable to register NAND device\n");
436 }
437}
438
Felipe Balbi6f69a182010-03-04 09:45:53 +0200439static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
Felipe Balbi58a54912009-11-22 10:11:01 -0800440
441 .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY,
442 .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
443 .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
444
445 .phy_reset = true,
446 .reset_gpio_port[0] = -EINVAL,
447 .reset_gpio_port[1] = 147,
448 .reset_gpio_port[2] = -EINVAL
449};
450
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800451#ifdef CONFIG_OMAP_MUX
452static struct omap_board_mux board_mux[] __initdata = {
453 { .reg_offset = OMAP_MUX_TERMINATOR },
454};
455#else
456#define board_mux NULL
457#endif
458
Maulik Mankad884b8362010-02-17 14:09:30 -0800459static struct omap_musb_board_data musb_board_data = {
460 .interface_type = MUSB_INTERFACE_ULPI,
461 .mode = MUSB_OTG,
462 .power = 100,
463};
464
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300465static void __init omap3_beagle_init(void)
466{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800467 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800468 omap3_beagle_i2c_init();
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300469 platform_add_devices(omap3_beagle_devices,
470 ARRAY_SIZE(omap3_beagle_devices));
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300471 omap_serial_init();
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800472
Tony Lindgren4896e392009-12-11 16:16:32 -0800473 omap_mux_init_gpio(170, OMAP_PIN_INPUT);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800474 gpio_request(170, "DVI_nPD");
475 /* REVISIT leave DVI powered down until it's needed ... */
476 gpio_direction_output(170, true);
477
Maulik Mankad884b8362010-02-17 14:09:30 -0800478 usb_musb_init(&musb_board_data);
Felipe Balbi58a54912009-11-22 10:11:01 -0800479 usb_ehci_init(&ehci_pdata);
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300480 omap3beagle_flash_init();
Jean Pihet9fb97412009-07-24 19:43:25 -0600481
482 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800483 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
484 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Koen Kooi044d32f2010-04-22 10:23:42 +0200485
486 beagle_display_init();
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300487}
488
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300489MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
490 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
491 .phys_io = 0x48000000,
Santosh Shilimkarb4224b22009-10-19 17:25:55 -0700492 .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300493 .boot_params = 0x80000100,
Mike Rapoport869fef42010-08-04 14:43:18 +0300494 .map_io = omap3_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100495 .reserve = omap_reserve,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300496 .init_irq = omap3_beagle_init_irq,
497 .init_machine = omap3_beagle_init,
498 .timer = &omap_timer,
499MACHINE_END