linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board
@ 2014-05-20 11:59 Maxime Ripard
  2014-05-20 12:07 ` Hans de Goede
  2014-05-22  8:21 ` Maxime Ripard
  0 siblings, 2 replies; 5+ messages in thread
From: Maxime Ripard @ 2014-05-20 11:59 UTC (permalink / raw)
  To: linux-arm-kernel

The colombus board has a on-board USB hub, that is enabled through the pin
PH24, and wired to the first EHCI controller.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 arch/arm/boot/dts/sun6i-a31-colombus.dts | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/arch/arm/boot/dts/sun6i-a31-colombus.dts b/arch/arm/boot/dts/sun6i-a31-colombus.dts
index 3898a7bce831..a907c1d3e939 100644
--- a/arch/arm/boot/dts/sun6i-a31-colombus.dts
+++ b/arch/arm/boot/dts/sun6i-a31-colombus.dts
@@ -13,6 +13,7 @@
 
 /dts-v1/;
 /include/ "sun6i-a31.dtsi"
+/include/ "sunxi-common-regulators.dtsi"
 
 / {
 	model = "WITS A31 Colombus Evaluation Board";
@@ -23,6 +24,24 @@
 	};
 
 	soc at 01c00000 {
+		pio: pinctrl at 01c20800 {
+			usb2_vbus_pin_colombus: usb2_vbus_pin at 0 {
+				allwinner,pins = "PH24";
+				allwinner,function = "gpio_out";
+				allwinner,drive = <0>;
+				allwinner,pull = <0>;
+			};
+		};
+
+		usbphy: phy at 01c19400 {
+			usb2_vbus-supply = <&reg_usb2_vbus>;
+			status = "okay";
+		};
+
+		ehci1: usb at 01c1b000 {
+			status = "okay";
+		};
+
 		uart0: serial at 01c28000 {
 			pinctrl-names = "default";
 			pinctrl-0 = <&uart0_pins_a>;
@@ -47,4 +66,11 @@
 			status = "okay";
 		};
 	};
+
+	reg_usb2_vbus: usb2-vbus {
+		pinctrl-names = "default";
+		pinctrl-0 = <&usb2_vbus_pin_colombus>;
+		gpio = <&pio 7 24 0>;
+		status = "okay";
+	};
 };
-- 
1.9.3

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

* [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board
  2014-05-20 11:59 [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board Maxime Ripard
@ 2014-05-20 12:07 ` Hans de Goede
  2014-05-20 12:16   ` Maxime Ripard
  2014-05-22  8:21 ` Maxime Ripard
  1 sibling, 1 reply; 5+ messages in thread
From: Hans de Goede @ 2014-05-20 12:07 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On 05/20/2014 01:59 PM, Maxime Ripard wrote:
> The colombus board has a on-board USB hub, that is enabled through the pin
> PH24, and wired to the first EHCI controller.

ehci0 is not hooked up at all on this board ? I would expect it to go to
a usb wifi card for example.

Assuming that ehci0 is not hooked up, this is:

Reviewed-by: Hans de Goede <hdegoede@redhat.com>

If it is hooked up I believe both usb controllers should be enabled.

Regards,

Hans


> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> ---
>  arch/arm/boot/dts/sun6i-a31-colombus.dts | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/sun6i-a31-colombus.dts b/arch/arm/boot/dts/sun6i-a31-colombus.dts
> index 3898a7bce831..a907c1d3e939 100644
> --- a/arch/arm/boot/dts/sun6i-a31-colombus.dts
> +++ b/arch/arm/boot/dts/sun6i-a31-colombus.dts
> @@ -13,6 +13,7 @@
>  
>  /dts-v1/;
>  /include/ "sun6i-a31.dtsi"
> +/include/ "sunxi-common-regulators.dtsi"
>  
>  / {
>  	model = "WITS A31 Colombus Evaluation Board";
> @@ -23,6 +24,24 @@
>  	};
>  
>  	soc at 01c00000 {
> +		pio: pinctrl at 01c20800 {
> +			usb2_vbus_pin_colombus: usb2_vbus_pin at 0 {
> +				allwinner,pins = "PH24";
> +				allwinner,function = "gpio_out";
> +				allwinner,drive = <0>;
> +				allwinner,pull = <0>;
> +			};
> +		};
> +
> +		usbphy: phy at 01c19400 {
> +			usb2_vbus-supply = <&reg_usb2_vbus>;
> +			status = "okay";
> +		};
> +
> +		ehci1: usb at 01c1b000 {
> +			status = "okay";
> +		};
> +
>  		uart0: serial at 01c28000 {
>  			pinctrl-names = "default";
>  			pinctrl-0 = <&uart0_pins_a>;
> @@ -47,4 +66,11 @@
>  			status = "okay";
>  		};
>  	};
> +
> +	reg_usb2_vbus: usb2-vbus {
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&usb2_vbus_pin_colombus>;
> +		gpio = <&pio 7 24 0>;
> +		status = "okay";
> +	};
>  };
> 

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

* [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board
  2014-05-20 12:07 ` Hans de Goede
@ 2014-05-20 12:16   ` Maxime Ripard
  2014-05-20 12:22     ` Hans de Goede
  0 siblings, 1 reply; 5+ messages in thread
From: Maxime Ripard @ 2014-05-20 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Tue, May 20, 2014 at 02:07:35PM +0200, Hans de Goede wrote:
> Hi,
> 
> On 05/20/2014 01:59 PM, Maxime Ripard wrote:
> > The colombus board has a on-board USB hub, that is enabled through the pin
> > PH24, and wired to the first EHCI controller.
> 
> ehci0 is not hooked up at all on this board ? I would expect it to go to
> a usb wifi card for example.
> 
> Assuming that ehci0 is not hooked up, this is:
> 
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>

It's unclear, because the schematics say that we have two options,
either USB or SDIO wifi chips.

However, looking at the boards, it looks like it's the latter.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140520/8c74ab48/attachment.sig>

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

* [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board
  2014-05-20 12:16   ` Maxime Ripard
@ 2014-05-20 12:22     ` Hans de Goede
  0 siblings, 0 replies; 5+ messages in thread
From: Hans de Goede @ 2014-05-20 12:22 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On 05/20/2014 02:16 PM, Maxime Ripard wrote:
> Hi,
> 
> On Tue, May 20, 2014 at 02:07:35PM +0200, Hans de Goede wrote:
>> Hi,
>>
>> On 05/20/2014 01:59 PM, Maxime Ripard wrote:
>>> The colombus board has a on-board USB hub, that is enabled through the pin
>>> PH24, and wired to the first EHCI controller.
>>
>> ehci0 is not hooked up at all on this board ? I would expect it to go to
>> a usb wifi card for example.
>>
>> Assuming that ehci0 is not hooked up, this is:
>>
>> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
> 
> It's unclear, because the schematics say that we have two options,
> either USB or SDIO wifi chips.
> 
> However, looking at the boards, it looks like it's the latter.

Ok.

Regards,

Hans

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

* [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board
  2014-05-20 11:59 [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board Maxime Ripard
  2014-05-20 12:07 ` Hans de Goede
@ 2014-05-22  8:21 ` Maxime Ripard
  1 sibling, 0 replies; 5+ messages in thread
From: Maxime Ripard @ 2014-05-22  8:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, May 20, 2014 at 01:59:15PM +0200, Maxime Ripard wrote:
> The colombus board has a on-board USB hub, that is enabled through the pin
> PH24, and wired to the first EHCI controller.
> 
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Applied.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140522/d4989874/attachment.sig>

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

end of thread, other threads:[~2014-05-22  8:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-20 11:59 [PATCH] ARM: sun6i: Enable USB Host support on the Colombus board Maxime Ripard
2014-05-20 12:07 ` Hans de Goede
2014-05-20 12:16   ` Maxime Ripard
2014-05-20 12:22     ` Hans de Goede
2014-05-22  8:21 ` Maxime Ripard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).