public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* ARM: OMAP3: Overo: Fix EHCI initialization
@ 2009-08-16 21:30 Steve Sakoman
  2009-09-22  1:29 ` Tony Lindgren
  0 siblings, 1 reply; 2+ messages in thread
From: Steve Sakoman @ 2009-08-16 21:30 UTC (permalink / raw)
  To: linux-arm-kernel, linux-omap

Overo uses port 2, not port 1.  Use OVERO_GPIO_USBH_NRESET rather than
hard coded value

Note: this alone will not give functional EHCI.  Also required is:

[PATCH 4/9] ehci: fix phy_reset init in ehci probe
from Ajay Kumar Gupta

Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
 arch/arm/mach-omap2/board-overo.c |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/arch/arm/mach-omap2/board-overo.c
b/arch/arm/mach-omap2/board-overo.c
index a9d7c2e..a220a54 100644
--- a/arch/arm/mach-omap2/board-overo.c
+++ b/arch/arm/mach-omap2/board-overo.c
@@ -394,7 +394,8 @@ static void __init overo_init(void)
 	omap_serial_init(&overo_uart_config);
 	overo_flash_init();
 	usb_musb_init();
-	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, false, true, 183, -EINVAL);
+	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, false, true,
+			-EINVAL, OVERO_GPIO_USBH_NRESET);
 	overo_ads7846_init();
 	overo_init_smsc911x();

@@ -437,14 +438,6 @@ static void __init overo_init(void)
 	else
 		printk(KERN_ERR "could not obtain gpio for "
 					"OVERO_GPIO_USBH_CPEN\n");
-
-	if ((gpio_request(OVERO_GPIO_USBH_NRESET,
-			  "OVERO_GPIO_USBH_NRESET") == 0) &&
-	    (gpio_direction_output(OVERO_GPIO_USBH_NRESET, 1) == 0))
-		gpio_export(OVERO_GPIO_USBH_NRESET, 0);
-	else
-		printk(KERN_ERR "could not obtain gpio for "
-					"OVERO_GPIO_USBH_NRESET\n");
 }

 static void __init overo_map_io(void)
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-09-22  1:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-16 21:30 ARM: OMAP3: Overo: Fix EHCI initialization Steve Sakoman
2009-09-22  1:29 ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox