linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY
@ 2014-11-10 18:55 Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 1/5] phy: sun4i: add support for USB phy0 Roman Byshko
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Hi,

There is already support for two USB phys, which are used for
USB host controllers on Allwinner SoC aka sunxi.

This patch series add support for the USB OTG phy (aka phy0).

The code has been tested on Allwinner A20 aka sun7i (Cubietruck).

Best regards,
Roman Byshko

Changes since v1:
	* Improved comment about 45 Ohm resistor calibration
	* Added Signed-off-by to all patches

Roman Byshko (5):
  phy: sun4i: add support for USB phy0
  ARM: dtsi: sunxi: add common VBUS regulator
  ARM: sun7i: dtsi: add support for usbphy0
  ARM: dts: sun7i: Cubietruck: override regulator pin
  ARM: dts: sun7i: Cubietruck: add power supply regulator for USB OTG
    VBUS

 arch/arm/boot/dts/sun7i-a20-cubietruck.dts     | 14 ++++++++++++++
 arch/arm/boot/dts/sun7i-a20.dtsi               |  4 ++--
 arch/arm/boot/dts/sunxi-common-regulators.dtsi | 19 +++++++++++++++++++
 drivers/phy/phy-sun4i-usb.c                    |  9 ++++++---
 4 files changed, 41 insertions(+), 5 deletions(-)

-- 
2.1.2


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

* [PATCH v2 1/5] phy: sun4i: add support for USB phy0
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
@ 2014-11-10 18:55 ` Roman Byshko
  2014-11-12 20:29   ` Maxime Ripard
  2014-11-10 18:55 ` [PATCH v2 2/5] ARM: dtsi: sunxi: add common VBUS regulator Roman Byshko
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

The driver for sun4i USB phys currently supports
only phy1 and phy2 which are used for USB host
controllers. This patch adds support for USB phy0,
which is used by the musb hdrc USB controller.

Signed-off-by: Roman Byshko <rbyshko@gmail.com>
---
 drivers/phy/phy-sun4i-usb.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/phy/phy-sun4i-usb.c b/drivers/phy/phy-sun4i-usb.c
index 0baf5ef..6bd2b0c 100644
--- a/drivers/phy/phy-sun4i-usb.c
+++ b/drivers/phy/phy-sun4i-usb.c
@@ -157,6 +157,10 @@ static int sun4i_usb_phy_init(struct phy *_phy)
 		return ret;
 	}
 
+	/* Enable USB 45 Ohm resistor calibration */
+	if (phy->index == 0)
+		sun4i_usb_phy_write(phy, PHY_RES45_CAL_EN, 0x01, 1);
+
 	/* Adjust PHY's magnitude and rate */
 	sun4i_usb_phy_write(phy, PHY_TX_AMPLITUDE_TUNE, 0x14, 5);
 
@@ -213,7 +217,7 @@ static struct phy *sun4i_usb_phy_xlate(struct device *dev,
 {
 	struct sun4i_usb_phy_data *data = dev_get_drvdata(dev);
 
-	if (WARN_ON(args->args[0] == 0 || args->args[0] >= data->num_phys))
+	if (args->args[0] >= data->num_phys)
 		return ERR_PTR(-ENODEV);
 
 	return data->phys[args->args[0]].phy;
@@ -255,8 +259,7 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
 	if (IS_ERR(data->base))
 		return PTR_ERR(data->base);
 
-	/* Skip 0, 0 is the phy for otg which is not yet supported. */
-	for (i = 1; i < data->num_phys; i++) {
+	for (i = 0; i < data->num_phys; i++) {
 		struct sun4i_usb_phy *phy = data->phys + i;
 		char name[16];
 
-- 
2.1.2


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

* [PATCH v2 2/5] ARM: dtsi: sunxi: add common VBUS regulator
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 1/5] phy: sun4i: add support for USB phy0 Roman Byshko
@ 2014-11-10 18:55 ` Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 3/5] ARM: sun7i: dtsi: add support for usbphy0 Roman Byshko
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Until now the regulator nodes for powering USB VBUS
existed only for the two host controllers. Now the regulator
is added for USB OTG too.

Signed-off-by: Roman Byshko <rbyshko@gmail.com>
---
 arch/arm/boot/dts/sunxi-common-regulators.dtsi | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/arch/arm/boot/dts/sunxi-common-regulators.dtsi b/arch/arm/boot/dts/sunxi-common-regulators.dtsi
index c9c5b10..f521672 100644
--- a/arch/arm/boot/dts/sunxi-common-regulators.dtsi
+++ b/arch/arm/boot/dts/sunxi-common-regulators.dtsi
@@ -21,6 +21,13 @@
 				allwinner,pull = <0>;
 			};
 
+			usb0_vbus_pin_a: usb0_vbus_pin@0 {
+				allwinner,pins = "PB9";
+				allwinner,function = "gpio_out";
+				allwinner,drive = <0>;
+				allwinner,pull = <0>;
+			};
+
 			usb1_vbus_pin_a: usb1_vbus_pin@0 {
 				allwinner,pins = "PH6";
 				allwinner,function = "gpio_out";
@@ -49,6 +56,18 @@
 		status = "disabled";
 	};
 
+	reg_usb0_vbus: usb0-vbus {
+		compatible = "regulator-fixed";
+		pinctrl-names = "default";
+		pinctrl-0 = <&usb0_vbus_pin_a>;
+		regulator-name = "usb0-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&pio 1 9 0>;
+		status = "disabled";
+	};
+
 	reg_usb1_vbus: usb1-vbus {
 		compatible = "regulator-fixed";
 		pinctrl-names = "default";
-- 
2.1.2


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

* [PATCH v2 3/5] ARM: sun7i: dtsi: add support for usbphy0
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 1/5] phy: sun4i: add support for USB phy0 Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 2/5] ARM: dtsi: sunxi: add common VBUS regulator Roman Byshko
@ 2014-11-10 18:55 ` Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 4/5] ARM: dts: sun7i: Cubietruck: override regulator pin Roman Byshko
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Signed-off-by: Roman Byshko <rbyshko@gmail.com>
---
 arch/arm/boot/dts/sun7i-a20.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/boot/dts/sun7i-a20.dtsi
index 82097c9..f787ccb 100644
--- a/arch/arm/boot/dts/sun7i-a20.dtsi
+++ b/arch/arm/boot/dts/sun7i-a20.dtsi
@@ -552,8 +552,8 @@
 			reg-names = "phy_ctrl", "pmu1", "pmu2";
 			clocks = <&usb_clk 8>;
 			clock-names = "usb_phy";
-			resets = <&usb_clk 1>, <&usb_clk 2>;
-			reset-names = "usb1_reset", "usb2_reset";
+			resets = <&usb_clk 0>, <&usb_clk 1>, <&usb_clk 2>;
+			reset-names = "usb0_reset", "usb1_reset", "usb2_reset";
 			status = "disabled";
 		};
 
-- 
2.1.2


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

* [PATCH v2 4/5] ARM: dts: sun7i: Cubietruck: override regulator pin
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
                   ` (2 preceding siblings ...)
  2014-11-10 18:55 ` [PATCH v2 3/5] ARM: sun7i: dtsi: add support for usbphy0 Roman Byshko
@ 2014-11-10 18:55 ` Roman Byshko
  2014-11-10 18:55 ` [PATCH v2 5/5] ARM: dts: sun7i: Cubietruck: add power supply regulator for USB OTG VBUS Roman Byshko
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Cubietruck uses different pin for the USB OTG VBUS that
is why we override the one defined in sunxi-common-regulators.dtsi

Signed-off-by: Roman Byshko <rbyshko@gmail.com>
---
 arch/arm/boot/dts/sun7i-a20-cubietruck.dts | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/arch/arm/boot/dts/sun7i-a20-cubietruck.dts b/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
index a6c1a3c..1682307 100644
--- a/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
+++ b/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
@@ -92,6 +92,13 @@
 				allwinner,drive = <0>;
 				allwinner,pull = <0>;
 			};
+
+			usb0_vbus_pin_a: usb0_vbus_pin@0 {
+				allwinner,pins = "PH17";
+				allwinner,function = "gpio_out";
+				allwinner,drive = <0>;
+				allwinner,pull = <0>;
+			};
 		};
 
 		pwm: pwm@01c20e00 {
@@ -185,6 +192,12 @@
 		status = "okay";
 	};
 
+	reg_usb0_vbus: usb0-vbus {
+		pinctrl-0 = <&usb0_vbus_pin_a>;
+		gpio = <&pio 7 17 0>;
+		status = "okay";
+	};
+
 	reg_usb1_vbus: usb1-vbus {
 		status = "okay";
 	};
-- 
2.1.2


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

* [PATCH v2 5/5] ARM: dts: sun7i: Cubietruck: add power supply regulator for USB OTG VBUS
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
                   ` (3 preceding siblings ...)
  2014-11-10 18:55 ` [PATCH v2 4/5] ARM: dts: sun7i: Cubietruck: override regulator pin Roman Byshko
@ 2014-11-10 18:55 ` Roman Byshko
  2014-11-11  9:11 ` [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Hans de Goede
  2014-11-12 20:32 ` Maxime Ripard
  6 siblings, 0 replies; 11+ messages in thread
From: Roman Byshko @ 2014-11-10 18:55 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Signed-off-by: Roman Byshko <rbyshko@gmail.com>
---
 arch/arm/boot/dts/sun7i-a20-cubietruck.dts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/sun7i-a20-cubietruck.dts b/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
index 1682307..a281d25 100644
--- a/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
+++ b/arch/arm/boot/dts/sun7i-a20-cubietruck.dts
@@ -40,6 +40,7 @@
 		};
 
 		usbphy: phy@01c13400 {
+			usb0_vbus-supply = <&reg_usb0_vbus>;
 			usb1_vbus-supply = <&reg_usb1_vbus>;
 			usb2_vbus-supply = <&reg_usb2_vbus>;
 			status = "okay";
-- 
2.1.2


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

* Re: [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
                   ` (4 preceding siblings ...)
  2014-11-10 18:55 ` [PATCH v2 5/5] ARM: dts: sun7i: Cubietruck: add power supply regulator for USB OTG VBUS Roman Byshko
@ 2014-11-11  9:11 ` Hans de Goede
  2014-11-11 16:50   ` Chen-Yu Tsai
  2014-12-02 13:01   ` Roman Byshko
  2014-11-12 20:32 ` Maxime Ripard
  6 siblings, 2 replies; 11+ messages in thread
From: Hans de Goede @ 2014-11-11  9:11 UTC (permalink / raw)
  To: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree
  Cc: Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring

Hi,

On 11/10/2014 07:55 PM, Roman Byshko wrote:
> Hi,
> 
> There is already support for two USB phys, which are used for
> USB host controllers on Allwinner SoC aka sunxi.
> 
> This patch series add support for the USB OTG phy (aka phy0).
> 
> The code has been tested on Allwinner A20 aka sun7i (Cubietruck).
> 
> Best regards,
> Roman Byshko

First of all very cool that you're working on this, I somehow missed
v1, but I'm very happy to see this.

Second some questions, this series seems to only add support for
initializing the phy, without adding the necessary magic for
switching from app to host mode, and without actually hooking up musb,
I assume you've a follow up series adding musb support, which actually
uses the phy ?

Also have you coordinated your work with ChenYu? ATM ChenYu is mostly
working on other stuff, but AFAIk he has been working on musb support
in the past.

Regards,

Hans

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

* Re: [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY
  2014-11-11  9:11 ` [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Hans de Goede
@ 2014-11-11 16:50   ` Chen-Yu Tsai
  2014-12-02 13:01   ` Roman Byshko
  1 sibling, 0 replies; 11+ messages in thread
From: Chen-Yu Tsai @ 2014-11-11 16:50 UTC (permalink / raw)
  To: Hans De Goede
  Cc: linux-kernel, linux-arm-kernel, devicetree,
	Kishon Vijay Abraham I, Maxime Ripard, Russell King, Kumar Gala,
	Ian Campbell, Mark Rutland, Pawel Moll, Rob Herring, linux-sunxi,
	Roman Byshko

On Tue, Nov 11, 2014 at 5:11 PM, Hans de Goede <hdegoede@redhat.com> wrote:
> Hi,
>
> On 11/10/2014 07:55 PM, Roman Byshko wrote:
>> Hi,
>>
>> There is already support for two USB phys, which are used for
>> USB host controllers on Allwinner SoC aka sunxi.
>>
>> This patch series add support for the USB OTG phy (aka phy0).
>>
>> The code has been tested on Allwinner A20 aka sun7i (Cubietruck).
>>
>> Best regards,
>> Roman Byshko
>
> First of all very cool that you're working on this, I somehow missed
> v1, but I'm very happy to see this.
>
> Second some questions, this series seems to only add support for
> initializing the phy, without adding the necessary magic for
> switching from app to host mode, and without actually hooking up musb,
> I assume you've a follow up series adding musb support, which actually
> uses the phy ?
>
> Also have you coordinated your work with ChenYu? ATM ChenYu is mostly
> working on other stuff, but AFAIk he has been working on musb support
> in the past.

I'm happy that someone has taken over. I was mostly just exploring what
OTG is, not much code actually made it into my working branch, which is
available on github.

ChenYu

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

* Re: [PATCH v2 1/5] phy: sun4i: add support for USB phy0
  2014-11-10 18:55 ` [PATCH v2 1/5] phy: sun4i: add support for USB phy0 Roman Byshko
@ 2014-11-12 20:29   ` Maxime Ripard
  0 siblings, 0 replies; 11+ messages in thread
From: Maxime Ripard @ 2014-11-12 20:29 UTC (permalink / raw)
  To: Roman Byshko
  Cc: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree,
	Kishon Vijay Abraham I, Russell King, Kumar Gala, Ian Campbell,
	Mark Rutland, Pawel Moll, Rob Herring

[-- Attachment #1: Type: text/plain, Size: 518 bytes --]

On Mon, Nov 10, 2014 at 07:55:06PM +0100, Roman Byshko wrote:
> The driver for sun4i USB phys currently supports
> only phy1 and phy2 which are used for USB host
> controllers. This patch adds support for USB phy0,
> which is used by the musb hdrc USB controller.
> 
> Signed-off-by: Roman Byshko <rbyshko@gmail.com>

Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY
  2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
                   ` (5 preceding siblings ...)
  2014-11-11  9:11 ` [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Hans de Goede
@ 2014-11-12 20:32 ` Maxime Ripard
  6 siblings, 0 replies; 11+ messages in thread
From: Maxime Ripard @ 2014-11-12 20:32 UTC (permalink / raw)
  To: Roman Byshko
  Cc: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree,
	Kishon Vijay Abraham I, Russell King, Kumar Gala, Ian Campbell,
	Mark Rutland, Pawel Moll, Rob Herring

[-- Attachment #1: Type: text/plain, Size: 522 bytes --]

On Mon, Nov 10, 2014 at 07:55:05PM +0100, Roman Byshko wrote:
> Hi,
> 
> There is already support for two USB phys, which are used for
> USB host controllers on Allwinner SoC aka sunxi.
> 
> This patch series add support for the USB OTG phy (aka phy0).
> 
> The code has been tested on Allwinner A20 aka sun7i (Cubietruck).
> 
> Best regards,
> Roman Byshko

Merged patches 2-5. Thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY
  2014-11-11  9:11 ` [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Hans de Goede
  2014-11-11 16:50   ` Chen-Yu Tsai
@ 2014-12-02 13:01   ` Roman Byshko
  1 sibling, 0 replies; 11+ messages in thread
From: Roman Byshko @ 2014-12-02 13:01 UTC (permalink / raw)
  To: Hans de Goede
  Cc: linux-sunxi, linux-kernel, linux-arm-kernel, devicetree,
	Mark Rutland, Russell King, Pawel Moll, Ian Campbell,
	Kishon Vijay Abraham I, Rob Herring, Kumar Gala, Maxime Ripard

On Tue, Nov 11, 2014 at 10:11 AM, Hans de Goede <hdegoede@redhat.com> wrote:
> Hi,
>
> On 11/10/2014 07:55 PM, Roman Byshko wrote:
>> Hi,
>>
>> There is already support for two USB phys, which are used for
>> USB host controllers on Allwinner SoC aka sunxi.
>>
>> This patch series add support for the USB OTG phy (aka phy0).
>>
>> The code has been tested on Allwinner A20 aka sun7i (Cubietruck).
>>
>> Best regards,
>> Roman Byshko
>
> First of all very cool that you're working on this, I somehow missed
> v1, but I'm very happy to see this.
>
> Second some questions, this series seems to only add support for
> initializing the phy, without adding the necessary magic for
> switching from app to host mode, and without actually hooking up musb,
> I assume you've a follow up series adding musb support, which actually
> uses the phy ?

Yes, there will be follow ups.

> Also have you coordinated your work with ChenYu? ATM ChenYu is mostly
> working on other stuff, but AFAIk he has been working on musb support
> in the past.

Yes.

Best,
Roman
>
> Regards,
>
> Hans
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2014-12-02 13:02 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-10 18:55 [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Roman Byshko
2014-11-10 18:55 ` [PATCH v2 1/5] phy: sun4i: add support for USB phy0 Roman Byshko
2014-11-12 20:29   ` Maxime Ripard
2014-11-10 18:55 ` [PATCH v2 2/5] ARM: dtsi: sunxi: add common VBUS regulator Roman Byshko
2014-11-10 18:55 ` [PATCH v2 3/5] ARM: sun7i: dtsi: add support for usbphy0 Roman Byshko
2014-11-10 18:55 ` [PATCH v2 4/5] ARM: dts: sun7i: Cubietruck: override regulator pin Roman Byshko
2014-11-10 18:55 ` [PATCH v2 5/5] ARM: dts: sun7i: Cubietruck: add power supply regulator for USB OTG VBUS Roman Byshko
2014-11-11  9:11 ` [linux-sunxi] [PATCH v2 0/5] ARM: sunxi: Add support for USB OTG PHY Hans de Goede
2014-11-11 16:50   ` Chen-Yu Tsai
2014-12-02 13:01   ` Roman Byshko
2014-11-12 20:32 ` 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).