* [PATCH] omap: zoom3: enable ehci support
@ 2009-12-18 19:41 Vikram Pandita
2009-12-19 11:13 ` Gadiyar, Anand
0 siblings, 1 reply; 3+ messages in thread
From: Vikram Pandita @ 2009-12-18 19:41 UTC (permalink / raw)
To: linux-omap; +Cc: Vikram Pandita, Gadiyar, Anand
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: Gadiyar, Anand <gadiyar@ti.com>
---
arch/arm/mach-omap2/board-zoom3.c | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c
index a9fe918..a5e8036 100644
--- a/arch/arm/mach-omap2/board-zoom3.c
+++ b/arch/arm/mach-omap2/board-zoom3.c
@@ -20,6 +20,8 @@
#include <plat/common.h>
#include <plat/board.h>
+#include <plat/usb.h>
+#include <plat/mux.h>
#include "mux.h"
#include "sdram-hynix-h8mbx00u0mer-0em.h"
@@ -51,11 +53,25 @@ static struct omap_board_mux board_mux[] __initdata = {
#define board_mux NULL
#endif
+static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
+ .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
+ .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
+ .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
+
+ .phy_reset = true,
+ .reset_gpio_port[0] = -EINVAL,
+ .reset_gpio_port[1] = 64,
+ .reset_gpio_port[2] = -EINVAL
+};
+
static void __init omap_zoom_init(void)
{
omap3_mux_init(board_mux, OMAP_PACKAGE_CBP);
zoom_peripherals_init();
zoom_debugboard_init();
+
+ omap_mux_init_gpio(64, OMAP_PIN_OUTPUT);
+ usb_ehci_init(&ehci_pdata);
}
MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")
--
1.6.6.rc0.66.ge160d
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [PATCH] omap: zoom3: enable ehci support
2009-12-18 19:41 [PATCH] omap: zoom3: enable ehci support Vikram Pandita
@ 2009-12-19 11:13 ` Gadiyar, Anand
2009-12-29 0:04 ` Tony Lindgren
0 siblings, 1 reply; 3+ messages in thread
From: Gadiyar, Anand @ 2009-12-19 11:13 UTC (permalink / raw)
To: Pandita, Vikram, linux-omap@vger.kernel.org
> 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: Gadiyar, Anand <gadiyar@ti.com>
Except for one comment (see below),
Acked-by: Anand Gadiyar <gadiyar@ti.com>
> ---
> arch/arm/mach-omap2/board-zoom3.c | 16 ++++++++++++++++
> 1 files changed, 16 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c
> index a9fe918..a5e8036 100644
> --- a/arch/arm/mach-omap2/board-zoom3.c
> +++ b/arch/arm/mach-omap2/board-zoom3.c
> @@ -20,6 +20,8 @@
>
> #include <plat/common.h>
> #include <plat/board.h>
> +#include <plat/usb.h>
> +#include <plat/mux.h>
I don't think you need plat/mux.h here?
The omap_mux_init_gpio() call that you added, is declared
in mux.h, that's included on the next line.
>
> #include "mux.h"
> #include "sdram-hynix-h8mbx00u0mer-0em.h"
> @@ -51,11 +53,25 @@ static struct omap_board_mux board_mux[] __initdata = {
> #define board_mux NULL
> #endif
>
> +static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
> + .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
> + .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
> + .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
> +
> + .phy_reset = true,
> + .reset_gpio_port[0] = -EINVAL,
> + .reset_gpio_port[1] = 64,
> + .reset_gpio_port[2] = -EINVAL
> +};
> +
> static void __init omap_zoom_init(void)
> {
> omap3_mux_init(board_mux, OMAP_PACKAGE_CBP);
> zoom_peripherals_init();
> zoom_debugboard_init();
> +
> + omap_mux_init_gpio(64, OMAP_PIN_OUTPUT);
> + usb_ehci_init(&ehci_pdata);
> }
>
> MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")
> --
> 1.6.6.rc0.66.ge160d
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] omap: zoom3: enable ehci support
2009-12-19 11:13 ` Gadiyar, Anand
@ 2009-12-29 0:04 ` Tony Lindgren
0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2009-12-29 0:04 UTC (permalink / raw)
To: Gadiyar, Anand; +Cc: Pandita, Vikram, linux-omap@vger.kernel.org
* Gadiyar, Anand <gadiyar@ti.com> [091219 03:12]:
> > 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: Gadiyar, Anand <gadiyar@ti.com>
>
> Except for one comment (see below),
>
> Acked-by: Anand Gadiyar <gadiyar@ti.com>
>
> > ---
> > arch/arm/mach-omap2/board-zoom3.c | 16 ++++++++++++++++
> > 1 files changed, 16 insertions(+), 0 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c
> > index a9fe918..a5e8036 100644
> > --- a/arch/arm/mach-omap2/board-zoom3.c
> > +++ b/arch/arm/mach-omap2/board-zoom3.c
> > @@ -20,6 +20,8 @@
> >
> > #include <plat/common.h>
> > #include <plat/board.h>
> > +#include <plat/usb.h>
> > +#include <plat/mux.h>
>
> I don't think you need plat/mux.h here?
>
> The omap_mux_init_gpio() call that you added, is declared
> in mux.h, that's included on the next line.
Correct, plat/mux.h should not be included for omap3 any longer.
It will also disappear for omap2 over next few weeks once I get
around fixing omap2 to use the new mux code.
Regards,
Tony
> >
> > #include "mux.h"
> > #include "sdram-hynix-h8mbx00u0mer-0em.h"
> > @@ -51,11 +53,25 @@ static struct omap_board_mux board_mux[] __initdata = {
> > #define board_mux NULL
> > #endif
> >
> > +static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
> > + .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
> > + .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
> > + .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
> > +
> > + .phy_reset = true,
> > + .reset_gpio_port[0] = -EINVAL,
> > + .reset_gpio_port[1] = 64,
> > + .reset_gpio_port[2] = -EINVAL
> > +};
> > +
> > static void __init omap_zoom_init(void)
> > {
> > omap3_mux_init(board_mux, OMAP_PACKAGE_CBP);
> > zoom_peripherals_init();
> > zoom_debugboard_init();
> > +
> > + omap_mux_init_gpio(64, OMAP_PIN_OUTPUT);
> > + usb_ehci_init(&ehci_pdata);
> > }
> >
> > MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")
> > --
> > 1.6.6.rc0.66.ge160d
> >
> > --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-12-29 0:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-18 19:41 [PATCH] omap: zoom3: enable ehci support Vikram Pandita
2009-12-19 11:13 ` Gadiyar, Anand
2009-12-29 0:04 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox