diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3evm.c')
-rw-r--r-- | arch/arm/mach-omap2/board-omap3evm.c | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index 149d45ca89a7..010454f58e7d 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c | |||
@@ -43,6 +43,8 @@ | |||
43 | #include "mmc-twl4030.h" | 43 | #include "mmc-twl4030.h" |
44 | 44 | ||
45 | #define OMAP3_EVM_TS_GPIO 175 | 45 | #define OMAP3_EVM_TS_GPIO 175 |
46 | #define OMAP3_EVM_EHCI_VBUS 22 | ||
47 | #define OMAP3_EVM_EHCI_SELECT 61 | ||
46 | 48 | ||
47 | #define OMAP3EVM_ETHR_START 0x2c000000 | 49 | #define OMAP3EVM_ETHR_START 0x2c000000 |
48 | #define OMAP3EVM_ETHR_SIZE 1024 | 50 | #define OMAP3EVM_ETHR_SIZE 1024 |
@@ -347,8 +349,9 @@ static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { | |||
347 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, | 349 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, |
348 | 350 | ||
349 | .phy_reset = true, | 351 | .phy_reset = true, |
352 | /* PHY reset GPIO will be runtime programmed based on EVM version */ | ||
350 | .reset_gpio_port[0] = -EINVAL, | 353 | .reset_gpio_port[0] = -EINVAL, |
351 | .reset_gpio_port[1] = 135, | 354 | .reset_gpio_port[1] = -EINVAL, |
352 | .reset_gpio_port[2] = -EINVAL | 355 | .reset_gpio_port[2] = -EINVAL |
353 | }; | 356 | }; |
354 | 357 | ||
@@ -368,9 +371,29 @@ static void __init omap3_evm_init(void) | |||
368 | /* OMAP3EVM uses ISP1504 phy and so register nop transceiver */ | 371 | /* OMAP3EVM uses ISP1504 phy and so register nop transceiver */ |
369 | usb_nop_xceiv_register(); | 372 | usb_nop_xceiv_register(); |
370 | #endif | 373 | #endif |
374 | if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2) { | ||
375 | /* enable EHCI VBUS using GPIO22 */ | ||
376 | omap_cfg_reg(AF9_34XX_GPIO22); | ||
377 | gpio_request(OMAP3_EVM_EHCI_VBUS, "enable EHCI VBUS"); | ||
378 | gpio_direction_output(OMAP3_EVM_EHCI_VBUS, 0); | ||
379 | gpio_set_value(OMAP3_EVM_EHCI_VBUS, 1); | ||
380 | |||
381 | /* Select EHCI port on main board */ | ||
382 | omap_cfg_reg(U3_34XX_GPIO61); | ||
383 | gpio_request(OMAP3_EVM_EHCI_SELECT, "select EHCI port"); | ||
384 | gpio_direction_output(OMAP3_EVM_EHCI_SELECT, 0); | ||
385 | gpio_set_value(OMAP3_EVM_EHCI_SELECT, 0); | ||
386 | |||
387 | /* setup EHCI phy reset config */ | ||
388 | omap_cfg_reg(AH14_34XX_GPIO21); | ||
389 | ehci_pdata.reset_gpio_port[1] = 21; | ||
390 | |||
391 | } else { | ||
392 | /* setup EHCI phy reset on MDC */ | ||
393 | omap_cfg_reg(AF4_34XX_GPIO135_OUT); | ||
394 | ehci_pdata.reset_gpio_port[1] = 135; | ||
395 | } | ||
371 | usb_musb_init(); | 396 | usb_musb_init(); |
372 | /* Setup EHCI phy reset padconfig */ | ||
373 | omap_cfg_reg(AF4_34XX_GPIO135_OUT); | ||
374 | usb_ehci_init(&ehci_pdata); | 397 | usb_ehci_init(&ehci_pdata); |
375 | ads7846_dev_init(); | 398 | ads7846_dev_init(); |
376 | } | 399 | } |