All of lore.kernel.org
 help / color / mirror / Atom feed
* ARM: OMAP3: Beagleboard: Fix EHCI initialization
@ 2009-09-01 21:55 Steve Sakoman
  2009-09-08  1:17 ` Eric Witcher
  0 siblings, 1 reply; 3+ messages in thread
From: Steve Sakoman @ 2009-09-01 21:55 UTC (permalink / raw)
  To: linux-omap

Enable USB power, use correct gpio for usb_ehci_init

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

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c
b/arch/arm/mach-omap2/board-omap3beagle.c
index 07aee90..65934ea 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -161,7 +161,7 @@ static int beagle_twl_gpio_setup(struct device *dev,

 	/* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low) */
 	gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
-	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 1);
+	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);

 	/* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
 	gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
@@ -412,7 +412,8 @@ static void __init omap3_beagle_init(void)
 	gpio_direction_output(170, true);

 	usb_musb_init();
-	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, true, true, 57, 61);
+	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, false, true,
+			-EINVAL, 147);
 	omap3beagle_flash_init();

 	/* Ensure SDRC pins are mux'd for self-refresh */
-- 
1.6.0.4

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

* Re: ARM: OMAP3: Beagleboard: Fix EHCI initialization
  2009-09-01 21:55 ARM: OMAP3: Beagleboard: Fix EHCI initialization Steve Sakoman
@ 2009-09-08  1:17 ` Eric Witcher
  2009-09-22  1:35   ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Witcher @ 2009-09-08  1:17 UTC (permalink / raw)
  To: Steve Sakoman; +Cc: linux-omap


On Sep 1, 2009, at 5:55 PM, Steve Sakoman wrote:

> Enable USB power, use correct gpio for usb_ehci_init
>
> Signed-off-by: Steve Sakoman <steve@sakoman.com>

Tested-by: Eric Witcher <ewitcher@mindspring.com>
This patch worked at commit
3dff8750255bf5a1e9a69931b1d8739a65a933d0
of linux-omap-2.6.git master

I also needed

[PATCH 4/8] ehci: fix phy_reset init in ehci probe
[PATCH] omapfb: Reorder Register_framebuffer call

to get a clean boot.

Build configuration was omap3_beagle_defconfig.


> ---
> arch/arm/mach-omap2/board-omap3beagle.c |    5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c
> b/arch/arm/mach-omap2/board-omap3beagle.c
> index 07aee90..65934ea 100644
> --- a/arch/arm/mach-omap2/board-omap3beagle.c
> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
> @@ -161,7 +161,7 @@ static int beagle_twl_gpio_setup(struct device  
> *dev,
>
> 	/* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low)  
> */
> 	gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
> -	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 1);
> +	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);
>
> 	/* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
> 	gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
> @@ -412,7 +412,8 @@ static void __init omap3_beagle_init(void)
> 	gpio_direction_output(170, true);
>
> 	usb_musb_init();
> -	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, true, true, 57, 61);
> +	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, false, true,
> +			-EINVAL, 147);
> 	omap3beagle_flash_init();
>
> 	/* Ensure SDRC pins are mux'd for self-refresh */
> -- 
> 1.6.0.4
> --
> 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

* Re: ARM: OMAP3: Beagleboard: Fix EHCI initialization
  2009-09-08  1:17 ` Eric Witcher
@ 2009-09-22  1:35   ` Tony Lindgren
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2009-09-22  1:35 UTC (permalink / raw)
  To: Eric Witcher; +Cc: Steve Sakoman, linux-omap

* Eric Witcher <ewitcher@mindspring.com> [090907 18:17]:
>
> On Sep 1, 2009, at 5:55 PM, Steve Sakoman wrote:
>
>> Enable USB power, use correct gpio for usb_ehci_init
>>
>> Signed-off-by: Steve Sakoman <steve@sakoman.com>
>
> Tested-by: Eric Witcher <ewitcher@mindspring.com>
> This patch worked at commit
> 3dff8750255bf5a1e9a69931b1d8739a65a933d0
> of linux-omap-2.6.git master

This one should also be updated to pass the configuration
in the platform data unless already done with what's in
the linux-omap ehci and master branches. Can you please
check?

> I also needed
>
> [PATCH 4/8] ehci: fix phy_reset init in ehci probe
> [PATCH] omapfb: Reorder Register_framebuffer call
>
> to get a clean boot.

I've added this into omap-fixes queue and merged it
also into the linux-omap master branch.

Regards,

Tony


> Build configuration was omap3_beagle_defconfig.
>
>
>> ---
>> arch/arm/mach-omap2/board-omap3beagle.c |    5 +++--
>> 1 files changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c
>> b/arch/arm/mach-omap2/board-omap3beagle.c
>> index 07aee90..65934ea 100644
>> --- a/arch/arm/mach-omap2/board-omap3beagle.c
>> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
>> @@ -161,7 +161,7 @@ static int beagle_twl_gpio_setup(struct device  
>> *dev,
>>
>> 	/* TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, active low)  
>> */
>> 	gpio_request(gpio + TWL4030_GPIO_MAX, "nEN_USB_PWR");
>> -	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 1);
>> +	gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);
>>
>> 	/* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
>> 	gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
>> @@ -412,7 +412,8 @@ static void __init omap3_beagle_init(void)
>> 	gpio_direction_output(170, true);
>>
>> 	usb_musb_init();
>> -	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, true, true, 57, 61);
>> +	usb_ehci_init(EHCI_HCD_OMAP_MODE_PHY, false, true,
>> +			-EINVAL, 147);
>> 	omap3beagle_flash_init();
>>
>> 	/* Ensure SDRC pins are mux'd for self-refresh */
>> -- 
>> 1.6.0.4
>> --
>> 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
>
> --
> 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-09-22  1:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-01 21:55 ARM: OMAP3: Beagleboard: Fix EHCI initialization Steve Sakoman
2009-09-08  1:17 ` Eric Witcher
2009-09-22  1:35   ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.