diff options
author | vikram pandita <vikram.pandita@ti.com> | 2010-02-17 17:09:23 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-02-17 17:09:23 -0500 |
commit | 31e464cdbc11c7872901851f06eff6d67edfcff5 (patch) | |
tree | 918c616cc464187a4798acb3a51f680f6ab982fb /arch/arm/mach-omap2/board-zoom3.c | |
parent | 80c20d543d142ee54ec85259b77aaf0b83c32db5 (diff) |
omap: zoom3: enable ehci support
Zoom3 board has omap3630 EHCI port2 connected to a ULPI phy.
GPIO_64 is connected to the PHY reset pin.
Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
Cc: Anand Gadiyar <gadiyar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-zoom3.c')
-rw-r--r-- | arch/arm/mach-omap2/board-zoom3.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c index 5e208942ca71..d3e3cd5170d1 100644 --- a/arch/arm/mach-omap2/board-zoom3.c +++ b/arch/arm/mach-omap2/board-zoom3.c | |||
@@ -20,6 +20,7 @@ | |||
20 | 20 | ||
21 | #include <plat/common.h> | 21 | #include <plat/common.h> |
22 | #include <plat/board.h> | 22 | #include <plat/board.h> |
23 | #include <plat/usb.h> | ||
23 | 24 | ||
24 | #include "mux.h" | 25 | #include "mux.h" |
25 | #include "sdram-hynix-h8mbx00u0mer-0em.h" | 26 | #include "sdram-hynix-h8mbx00u0mer-0em.h" |
@@ -51,11 +52,24 @@ static struct omap_board_mux board_mux[] __initdata = { | |||
51 | #define board_mux NULL | 52 | #define board_mux NULL |
52 | #endif | 53 | #endif |
53 | 54 | ||
55 | static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { | ||
56 | .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN, | ||
57 | .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, | ||
58 | .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, | ||
59 | .phy_reset = true, | ||
60 | .reset_gpio_port[0] = -EINVAL, | ||
61 | .reset_gpio_port[1] = 64, | ||
62 | .reset_gpio_port[2] = -EINVAL, | ||
63 | }; | ||
64 | |||
54 | static void __init omap_zoom_init(void) | 65 | static void __init omap_zoom_init(void) |
55 | { | 66 | { |
56 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); | 67 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); |
57 | zoom_peripherals_init(); | 68 | zoom_peripherals_init(); |
58 | zoom_debugboard_init(); | 69 | zoom_debugboard_init(); |
70 | |||
71 | omap_mux_init_gpio(64, OMAP_PIN_OUTPUT); | ||
72 | usb_ehci_init(&ehci_pdata); | ||
59 | } | 73 | } |
60 | 74 | ||
61 | MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board") | 75 | MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board") |