omap3: beaglexm: fix EHCI power up GPIO dir
[deliverable/linux.git] / arch / arm / mach-omap2 / board-omap3beagle.c
CommitLineData
2885f000
SMK
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>
3a63833e 30#include <linux/mmc/host.h>
2885f000 31
bb3b9d8e 32#include <linux/regulator/machine.h>
b07682b6 33#include <linux/i2c/twl.h>
145d9c94 34
2885f000
SMK
35#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
ce491cf8
TL
41#include <plat/board.h>
42#include <plat/common.h>
044d32ff 43#include <plat/display.h>
ce491cf8
TL
44#include <plat/gpmc.h>
45#include <plat/nand.h>
ce491cf8 46#include <plat/usb.h>
2885f000 47
ca5742bd 48#include "mux.h"
d02a900b 49#include "hsmmc.h"
04aeae77 50#include "timer-gp.h"
2885f000 51
2885f000
SMK
52#define NAND_BLOCK_SIZE SZ_128K
53
954bed04
RN
54/*
55 * OMAP3 Beagle revision
56 * Run time detection of Beagle revision is done by reading GPIO.
57 * GPIO ID -
58 * AXBX = GPIO173, GPIO172, GPIO171: 1 1 1
59 * C1_3 = GPIO173, GPIO172, GPIO171: 1 1 0
60 * C4 = GPIO173, GPIO172, GPIO171: 1 0 1
61 * XM = GPIO173, GPIO172, GPIO171: 0 0 0
62 */
63enum {
64 OMAP3BEAGLE_BOARD_UNKN = 0,
65 OMAP3BEAGLE_BOARD_AXBX,
66 OMAP3BEAGLE_BOARD_C1_3,
67 OMAP3BEAGLE_BOARD_C4,
68 OMAP3BEAGLE_BOARD_XM,
69};
70
71static u8 omap3_beagle_version;
72
73static u8 omap3_beagle_get_rev(void)
74{
75 return omap3_beagle_version;
76}
77
78static void __init omap3_beagle_init_rev(void)
79{
80 int ret;
81 u16 beagle_rev = 0;
82
83 omap_mux_init_gpio(171, OMAP_PIN_INPUT_PULLUP);
84 omap_mux_init_gpio(172, OMAP_PIN_INPUT_PULLUP);
85 omap_mux_init_gpio(173, OMAP_PIN_INPUT_PULLUP);
86
87 ret = gpio_request(171, "rev_id_0");
88 if (ret < 0)
89 goto fail0;
90
91 ret = gpio_request(172, "rev_id_1");
92 if (ret < 0)
93 goto fail1;
94
95 ret = gpio_request(173, "rev_id_2");
96 if (ret < 0)
97 goto fail2;
98
99 gpio_direction_input(171);
100 gpio_direction_input(172);
101 gpio_direction_input(173);
102
103 beagle_rev = gpio_get_value(171) | (gpio_get_value(172) << 1)
104 | (gpio_get_value(173) << 2);
105
106 switch (beagle_rev) {
107 case 7:
108 printk(KERN_INFO "OMAP3 Beagle Rev: Ax/Bx\n");
109 omap3_beagle_version = OMAP3BEAGLE_BOARD_AXBX;
110 break;
111 case 6:
112 printk(KERN_INFO "OMAP3 Beagle Rev: C1/C2/C3\n");
113 omap3_beagle_version = OMAP3BEAGLE_BOARD_C1_3;
114 break;
115 case 5:
116 printk(KERN_INFO "OMAP3 Beagle Rev: C4\n");
117 omap3_beagle_version = OMAP3BEAGLE_BOARD_C4;
118 break;
119 case 0:
120 printk(KERN_INFO "OMAP3 Beagle Rev: xM\n");
121 omap3_beagle_version = OMAP3BEAGLE_BOARD_XM;
122 break;
123 default:
124 printk(KERN_INFO "OMAP3 Beagle Rev: unknown %hd\n", beagle_rev);
125 omap3_beagle_version = OMAP3BEAGLE_BOARD_UNKN;
126 }
127
128 return;
129
130fail2:
131 gpio_free(172);
132fail1:
133 gpio_free(171);
134fail0:
135 printk(KERN_ERR "Unable to get revision detection GPIO pins\n");
136 omap3_beagle_version = OMAP3BEAGLE_BOARD_UNKN;
137
138 return;
139}
140
2885f000
SMK
141static struct mtd_partition omap3beagle_nand_partitions[] = {
142 /* All the partition sizes are listed in terms of NAND block size */
143 {
144 .name = "X-Loader",
145 .offset = 0,
146 .size = 4 * NAND_BLOCK_SIZE,
147 .mask_flags = MTD_WRITEABLE, /* force read-only */
148 },
149 {
150 .name = "U-Boot",
151 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
152 .size = 15 * NAND_BLOCK_SIZE,
153 .mask_flags = MTD_WRITEABLE, /* force read-only */
154 },
155 {
156 .name = "U-Boot Env",
157 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
158 .size = 1 * NAND_BLOCK_SIZE,
159 },
160 {
161 .name = "Kernel",
162 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
163 .size = 32 * NAND_BLOCK_SIZE,
164 },
165 {
166 .name = "File System",
167 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
168 .size = MTDPART_SIZ_FULL,
169 },
170};
171
172static struct omap_nand_platform_data omap3beagle_nand_data = {
173 .options = NAND_BUSWIDTH_16,
174 .parts = omap3beagle_nand_partitions,
175 .nr_parts = ARRAY_SIZE(omap3beagle_nand_partitions),
176 .dma_channel = -1, /* disable DMA in OMAP NAND driver */
177 .nand_setup = NULL,
178 .dev_ready = NULL,
179};
180
044d32ff
KK
181/* DSS */
182
183static int beagle_enable_dvi(struct omap_dss_device *dssdev)
184{
185 if (gpio_is_valid(dssdev->reset_gpio))
186 gpio_set_value(dssdev->reset_gpio, 1);
187
188 return 0;
189}
190
191static void beagle_disable_dvi(struct omap_dss_device *dssdev)
192{
193 if (gpio_is_valid(dssdev->reset_gpio))
194 gpio_set_value(dssdev->reset_gpio, 0);
195}
196
197static struct omap_dss_device beagle_dvi_device = {
198 .type = OMAP_DISPLAY_TYPE_DPI,
199 .name = "dvi",
200 .driver_name = "generic_panel",
201 .phy.dpi.data_lines = 24,
202 .reset_gpio = 170,
203 .platform_enable = beagle_enable_dvi,
204 .platform_disable = beagle_disable_dvi,
205};
206
207static struct omap_dss_device beagle_tv_device = {
208 .name = "tv",
209 .driver_name = "venc",
210 .type = OMAP_DISPLAY_TYPE_VENC,
211 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
212};
213
214static struct omap_dss_device *beagle_dss_devices[] = {
215 &beagle_dvi_device,
216 &beagle_tv_device,
217};
218
219static struct omap_dss_board_info beagle_dss_data = {
220 .num_devices = ARRAY_SIZE(beagle_dss_devices),
221 .devices = beagle_dss_devices,
222 .default_device = &beagle_dvi_device,
223};
224
225static struct platform_device beagle_dss_device = {
226 .name = "omapdss",
227 .id = -1,
228 .dev = {
229 .platform_data = &beagle_dss_data,
230 },
231};
232
233static struct regulator_consumer_supply beagle_vdac_supply =
234 REGULATOR_SUPPLY("vdda_dac", "omapdss");
235
236static struct regulator_consumer_supply beagle_vdvi_supply =
237 REGULATOR_SUPPLY("vdds_dsi", "omapdss");
238
239static void __init beagle_display_init(void)
240{
241 int r;
242
243 r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
244 if (r < 0) {
245 printk(KERN_ERR "Unable to get DVI reset GPIO\n");
246 return;
247 }
248
249 gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
250}
251
2e12bd7e
PW
252#include "sdram-micron-mt46h32m32lf-6.h"
253
68ff0423 254static struct omap2_hsmmc_info mmc[] = {
90c62bf0
TL
255 {
256 .mmc = 1,
3a63833e 257 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
90c62bf0
TL
258 .gpio_wp = 29,
259 },
260 {} /* Terminator */
261};
262
bb3b9d8e
DB
263static struct regulator_consumer_supply beagle_vmmc1_supply = {
264 .supply = "vmmc",
265};
266
267static struct regulator_consumer_supply beagle_vsim_supply = {
268 .supply = "vmmc_aux",
269};
270
90c62bf0
TL
271static struct gpio_led gpio_leds[];
272
273static int beagle_twl_gpio_setup(struct device *dev,
274 unsigned gpio, unsigned ngpio)
275{
cf74d41e
RN
276 if (omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_XM) {
277 mmc[0].gpio_wp = -EINVAL;
278 } else if ((omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_C1_3) ||
e4916e11 279 (omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_C4)) {
4896e394 280 omap_mux_init_gpio(23, OMAP_PIN_INPUT);
44e74840
JN
281 mmc[0].gpio_wp = 23;
282 } else {
4896e394 283 omap_mux_init_gpio(29, OMAP_PIN_INPUT);
44e74840 284 }
90c62bf0 285 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
145d9c94 286 mmc[0].gpio_cd = gpio + 0;
68ff0423 287 omap2_hsmmc_init(mmc);
90c62bf0 288
bb3b9d8e
DB
289 /* link regulators to MMC adapters */
290 beagle_vmmc1_supply.dev = mmc[0].dev;
291 beagle_vsim_supply.dev = mmc[0].dev;
292
90c62bf0
TL
293 /* REVISIT: need ehci-omap hooks for external VBUS
294 * power switch and overcurrent detect
295 */
296
297 gpio_request(gpio + 1, "EHCI_nOC");
298 gpio_direction_input(gpio + 1);
299
68fc3e15
KK
300 /*
301 * TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, XM active
302 * high / others active low)
303 */
90c62bf0 304 gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
68fc3e15
KK
305 if (omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_XM)
306 gpio_direction_output(gpio + TWL4030_GPIO_MAX, 1);
307 else
308 gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);
90c62bf0
TL
309
310 /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
311 gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
312
313 return 0;
314}
315
316static struct twl4030_gpio_platform_data beagle_gpio_data = {
317 .gpio_base = OMAP_MAX_GPIO_LINES,
318 .irq_base = TWL4030_GPIO_IRQ_BASE,
319 .irq_end = TWL4030_GPIO_IRQ_END,
320 .use_leds = true,
321 .pullups = BIT(1),
322 .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
323 | BIT(15) | BIT(16) | BIT(17),
324 .setup = beagle_twl_gpio_setup,
325};
326
bb3b9d8e
DB
327/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
328static struct regulator_init_data beagle_vmmc1 = {
329 .constraints = {
330 .min_uV = 1850000,
331 .max_uV = 3150000,
332 .valid_modes_mask = REGULATOR_MODE_NORMAL
333 | REGULATOR_MODE_STANDBY,
334 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
335 | REGULATOR_CHANGE_MODE
336 | REGULATOR_CHANGE_STATUS,
337 },
338 .num_consumer_supplies = 1,
339 .consumer_supplies = &beagle_vmmc1_supply,
340};
341
342/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
343static struct regulator_init_data beagle_vsim = {
344 .constraints = {
345 .min_uV = 1800000,
346 .max_uV = 3000000,
347 .valid_modes_mask = REGULATOR_MODE_NORMAL
348 | REGULATOR_MODE_STANDBY,
349 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
350 | REGULATOR_CHANGE_MODE
351 | REGULATOR_CHANGE_STATUS,
352 },
353 .num_consumer_supplies = 1,
354 .consumer_supplies = &beagle_vsim_supply,
355};
356
357/* VDAC for DSS driving S-Video (8 mA unloaded, max 65 mA) */
358static struct regulator_init_data beagle_vdac = {
359 .constraints = {
360 .min_uV = 1800000,
361 .max_uV = 1800000,
362 .valid_modes_mask = REGULATOR_MODE_NORMAL
363 | REGULATOR_MODE_STANDBY,
364 .valid_ops_mask = REGULATOR_CHANGE_MODE
365 | REGULATOR_CHANGE_STATUS,
366 },
367 .num_consumer_supplies = 1,
368 .consumer_supplies = &beagle_vdac_supply,
369};
370
371/* VPLL2 for digital video outputs */
372static struct regulator_init_data beagle_vpll2 = {
373 .constraints = {
374 .name = "VDVI",
375 .min_uV = 1800000,
376 .max_uV = 1800000,
377 .valid_modes_mask = REGULATOR_MODE_NORMAL
378 | REGULATOR_MODE_STANDBY,
379 .valid_ops_mask = REGULATOR_CHANGE_MODE
380 | REGULATOR_CHANGE_STATUS,
381 },
382 .num_consumer_supplies = 1,
383 .consumer_supplies = &beagle_vdvi_supply,
384};
385
bd04e465
FB
386static struct twl4030_usb_data beagle_usb_data = {
387 .usb_mode = T2_USB_MODE_ULPI,
388};
389
e86fa0b4
PU
390static struct twl4030_codec_audio_data beagle_audio_data = {
391 .audio_mclk = 26000000,
392};
393
394static struct twl4030_codec_data beagle_codec_data = {
6df74efb 395 .audio_mclk = 26000000,
e86fa0b4
PU
396 .audio = &beagle_audio_data,
397};
398
90c62bf0
TL
399static struct twl4030_platform_data beagle_twldata = {
400 .irq_base = TWL4030_IRQ_BASE,
401 .irq_end = TWL4030_IRQ_END,
402
403 /* platform_data for children goes here */
bd04e465 404 .usb = &beagle_usb_data,
90c62bf0 405 .gpio = &beagle_gpio_data,
e86fa0b4 406 .codec = &beagle_codec_data,
bb3b9d8e
DB
407 .vmmc1 = &beagle_vmmc1,
408 .vsim = &beagle_vsim,
409 .vdac = &beagle_vdac,
410 .vpll2 = &beagle_vpll2,
90c62bf0
TL
411};
412
413static struct i2c_board_info __initdata beagle_i2c_boardinfo[] = {
414 {
415 I2C_BOARD_INFO("twl4030", 0x48),
416 .flags = I2C_CLIENT_WAKE,
417 .irq = INT_34XX_SYS_NIRQ,
418 .platform_data = &beagle_twldata,
419 },
420};
421
e3333f48
MP
422static struct i2c_board_info __initdata beagle_i2c_eeprom[] = {
423 {
424 I2C_BOARD_INFO("eeprom", 0x50),
425 },
426};
427
90c62bf0
TL
428static int __init omap3_beagle_i2c_init(void)
429{
430 omap_register_i2c_bus(1, 2600, beagle_i2c_boardinfo,
431 ARRAY_SIZE(beagle_i2c_boardinfo));
8ca7fe26
KK
432 /* Bus 3 is attached to the DVI port where devices like the pico DLP
433 * projector don't work reliably with 400kHz */
e3333f48 434 omap_register_i2c_bus(3, 100, beagle_i2c_eeprom, ARRAY_SIZE(beagle_i2c_eeprom));
90c62bf0
TL
435 return 0;
436}
437
2885f000
SMK
438static struct gpio_led gpio_leds[] = {
439 {
440 .name = "beagleboard::usr0",
441 .default_trigger = "heartbeat",
442 .gpio = 150,
443 },
444 {
445 .name = "beagleboard::usr1",
446 .default_trigger = "mmc0",
447 .gpio = 149,
448 },
90c62bf0
TL
449 {
450 .name = "beagleboard::pmu_stat",
451 .gpio = -EINVAL, /* gets replaced */
452 .active_low = true,
453 },
2885f000
SMK
454};
455
456static struct gpio_led_platform_data gpio_led_info = {
457 .leds = gpio_leds,
458 .num_leds = ARRAY_SIZE(gpio_leds),
459};
460
461static struct platform_device leds_gpio = {
462 .name = "leds-gpio",
463 .id = -1,
464 .dev = {
465 .platform_data = &gpio_led_info,
466 },
467};
468
469static struct gpio_keys_button gpio_buttons[] = {
470 {
471 .code = BTN_EXTRA,
472 .gpio = 7,
473 .desc = "user",
474 .wakeup = 1,
475 },
476};
477
478static struct gpio_keys_platform_data gpio_key_info = {
479 .buttons = gpio_buttons,
480 .nbuttons = ARRAY_SIZE(gpio_buttons),
481};
482
483static struct platform_device keys_gpio = {
484 .name = "gpio-keys",
485 .id = -1,
486 .dev = {
487 .platform_data = &gpio_key_info,
488 },
489};
490
b3c6df3a
PW
491static void __init omap3_beagle_init_irq(void)
492{
4805734b
PW
493 omap2_init_common_infrastructure();
494 omap2_init_common_devices(mt46h32m32lf6_sdrc_params,
495 mt46h32m32lf6_sdrc_params);
b3c6df3a
PW
496 omap_init_irq();
497#ifdef CONFIG_OMAP_32K_TIMER
498 omap2_gp_clockevent_set_gptimer(12);
499#endif
b3c6df3a
PW
500}
501
2885f000 502static struct platform_device *omap3_beagle_devices[] __initdata = {
2885f000
SMK
503 &leds_gpio,
504 &keys_gpio,
044d32ff 505 &beagle_dss_device,
2885f000
SMK
506};
507
508static void __init omap3beagle_flash_init(void)
509{
510 u8 cs = 0;
511 u8 nandcs = GPMC_CS_NUM + 1;
512
2885f000
SMK
513 /* find out the chip-select on which NAND exists */
514 while (cs < GPMC_CS_NUM) {
515 u32 ret = 0;
516 ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
517
518 if ((ret & 0xC00) == 0x800) {
519 printk(KERN_INFO "Found NAND on CS%d\n", cs);
520 if (nandcs > GPMC_CS_NUM)
521 nandcs = cs;
522 }
523 cs++;
524 }
525
526 if (nandcs > GPMC_CS_NUM) {
527 printk(KERN_INFO "NAND: Unable to find configuration "
528 "in GPMC\n ");
529 return;
530 }
531
532 if (nandcs < GPMC_CS_NUM) {
533 omap3beagle_nand_data.cs = nandcs;
2885f000
SMK
534
535 printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
f450d867 536 if (gpmc_nand_init(&omap3beagle_nand_data) < 0)
2885f000
SMK
537 printk(KERN_ERR "Unable to register NAND device\n");
538 }
539}
540
6f69a181 541static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
58a5491c
FB
542
543 .port_mode[0] = EHCI_HCD_OMAP_MODE_PHY,
544 .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
545 .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
546
547 .phy_reset = true,
548 .reset_gpio_port[0] = -EINVAL,
549 .reset_gpio_port[1] = 147,
550 .reset_gpio_port[2] = -EINVAL
551};
552
ca5742bd
TL
553#ifdef CONFIG_OMAP_MUX
554static struct omap_board_mux board_mux[] __initdata = {
555 { .reg_offset = OMAP_MUX_TERMINATOR },
556};
ca5742bd
TL
557#endif
558
884b8369
MM
559static struct omap_musb_board_data musb_board_data = {
560 .interface_type = MUSB_INTERFACE_ULPI,
561 .mode = MUSB_OTG,
562 .power = 100,
563};
564
2885f000
SMK
565static void __init omap3_beagle_init(void)
566{
ca5742bd 567 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
954bed04 568 omap3_beagle_init_rev();
90c62bf0 569 omap3_beagle_i2c_init();
2885f000
SMK
570 platform_add_devices(omap3_beagle_devices,
571 ARRAY_SIZE(omap3_beagle_devices));
2885f000 572 omap_serial_init();
90c62bf0 573
4896e394 574 omap_mux_init_gpio(170, OMAP_PIN_INPUT);
90c62bf0
TL
575 gpio_request(170, "DVI_nPD");
576 /* REVISIT leave DVI powered down until it's needed ... */
577 gpio_direction_output(170, true);
578
884b8369 579 usb_musb_init(&musb_board_data);
58a5491c 580 usb_ehci_init(&ehci_pdata);
2885f000 581 omap3beagle_flash_init();
9fb97412
JP
582
583 /* Ensure SDRC pins are mux'd for self-refresh */
4896e394
TL
584 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
585 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
044d32ff
KK
586
587 beagle_display_init();
2885f000
SMK
588}
589
2885f000
SMK
590MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
591 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
2885f000 592 .boot_params = 0x80000100,
869fef41 593 .map_io = omap3_map_io,
71ee7dad 594 .reserve = omap_reserve,
2885f000
SMK
595 .init_irq = omap3_beagle_init_irq,
596 .init_machine = omap3_beagle_init,
597 .timer = &omap_timer,
598MACHINE_END
This page took 0.1914 seconds and 5 git commands to generate.