All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM64: dts: a7040: add regulator nodes to enable USB host VBUS
@ 2017-08-09  8:19 Miquel Raynal
  2017-08-09 12:05 ` Thomas Petazzoni
  0 siblings, 1 reply; 7+ messages in thread
From: Miquel Raynal @ 2017-08-09  8:19 UTC (permalink / raw)
  To: linux-arm-kernel

From: Hanna Hawa <hannah@marvell.com>

Add I2C expander and USB host PHY (host 0 and host 1) to enable
USB VBUS on USB ports of type A on Armada-7040-DB.

Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
---
 arch/arm64/boot/dts/marvell/armada-7040-db.dts | 41 ++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/arch/arm64/boot/dts/marvell/armada-7040-db.dts b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
index 92c761c380d3..b14df53dda9d 100644
--- a/arch/arm64/boot/dts/marvell/armada-7040-db.dts
+++ b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
@@ -44,6 +44,7 @@
  * Device Tree file for Marvell Armada 7040 Development board platform
  */
 
+#include <dt-bindings/gpio/gpio.h>
 #include "armada-7040.dtsi"
 
 / {
@@ -59,6 +60,36 @@
 		device_type = "memory";
 		reg = <0x0 0x0 0x0 0x80000000>;
 	};
+
+	exp_usb3h0_vbus: usb3-0-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "usb3-0-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		regulator-always-on;
+		gpio = <&expander0 0 GPIO_ACTIVE_HIGH>;
+	};
+
+	exp_usb3h1_vbus: usb3-1-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "usb3-1-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		regulator-always-on;
+		gpio = <&expander0 1 GPIO_ACTIVE_HIGH>;
+	};
+
+	cpm_usb3_0_phy: cpm-usb3-0-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&exp_usb3h0_vbus>;
+	};
+
+	cpm_usb3_1_phy: cpm-usb3-1-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&exp_usb3h1_vbus>;
+	};
 };
 
 &i2c0 {
@@ -105,6 +136,14 @@
 &cpm_i2c0 {
 	status = "okay";
 	clock-frequency = <100000>;
+
+	expander0: pca9555 at 21 {
+		compatible = "nxp,pca9555";
+		pinctrl-names = "default";
+		gpio-controller;
+		#gpio-cells = <2>;
+		reg = <0x21>;
+	};
 };
 
 &cpm_spi1 {
@@ -140,10 +179,12 @@
 };
 
 &cpm_usb3_0 {
+	usb-phy = <&cpm_usb3_0_phy>;
 	status = "okay";
 };
 
 &cpm_usb3_1 {
+	usb-phy = <&cpm_usb3_1_phy>;
 	status = "okay";
 };
 
-- 
2.11.0

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

* [PATCH] ARM64: dts: a7040: add regulator nodes to enable USB host VBUS
  2017-08-09  8:19 [PATCH] ARM64: dts: a7040: add regulator nodes to enable USB host VBUS Miquel Raynal
@ 2017-08-09 12:05 ` Thomas Petazzoni
  2017-08-09 12:31   ` Miquel RAYNAL
                     ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2017-08-09 12:05 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

On Wed,  9 Aug 2017 10:19:49 +0200, Miquel Raynal wrote:
> From: Hanna Hawa <hannah@marvell.com>
> 
> Add I2C expander and USB host PHY (host 0 and host 1) to enable
> USB VBUS on USB ports of type A on Armada-7040-DB.
> 
> Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>

You should have kept Hanna's Signed-off-by here and add your own below
it.

The author of the patch should always match the first person signing
off on the patch.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [PATCH] ARM64: dts: a7040: add regulator nodes to enable USB host VBUS
  2017-08-09 12:05 ` Thomas Petazzoni
@ 2017-08-09 12:31   ` Miquel RAYNAL
  2017-08-09 14:44   ` [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB Miquel Raynal
  2017-08-09 14:44   ` [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB Miquel Raynal
  2 siblings, 0 replies; 7+ messages in thread
From: Miquel RAYNAL @ 2017-08-09 12:31 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, 9 Aug 2017 14:05:38 +0200
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote:

> Hello,
> 
> On Wed,  9 Aug 2017 10:19:49 +0200, Miquel Raynal wrote:
> > From: Hanna Hawa <hannah@marvell.com>
> > 
> > Add I2C expander and USB host PHY (host 0 and host 1) to enable
> > USB VBUS on USB ports of type A on Armada-7040-DB.
> > 
> > Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>  
> 
> You should have kept Hanna's Signed-off-by here and add your own below
> it.
> 
> The author of the patch should always match the first person signing
> off on the patch.

Right, I will correct that, thank you.

Regards,
Miquel

> 
> Best regards,
> 
> Thomas



-- 
Miquel Raynal, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB
  2017-08-09 12:05 ` Thomas Petazzoni
  2017-08-09 12:31   ` Miquel RAYNAL
@ 2017-08-09 14:44   ` Miquel Raynal
  2017-08-14 14:31     ` Gregory CLEMENT
  2017-08-09 14:44   ` [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB Miquel Raynal
  2 siblings, 1 reply; 7+ messages in thread
From: Miquel Raynal @ 2017-08-09 14:44 UTC (permalink / raw)
  To: linux-arm-kernel

From: Hanna Hawa <hannah@marvell.com>

Add I2C expander and USB host PHY (host 0 and host 1) to enable
USB VBUS on USB ports of type A on Armada-7040-DB.

Signed-off-by: Hanna Hawa <hannah@marvell.com>
Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
---
 arch/arm64/boot/dts/marvell/armada-7040-db.dts | 39 ++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/arch/arm64/boot/dts/marvell/armada-7040-db.dts b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
index 92c761c380d3..9c3bdf87e543 100644
--- a/arch/arm64/boot/dts/marvell/armada-7040-db.dts
+++ b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
@@ -44,6 +44,7 @@
  * Device Tree file for Marvell Armada 7040 Development board platform
  */
 
+#include <dt-bindings/gpio/gpio.h>
 #include "armada-7040.dtsi"
 
 / {
@@ -59,6 +60,34 @@
 		device_type = "memory";
 		reg = <0x0 0x0 0x0 0x80000000>;
 	};
+
+	cpm_reg_usb3_0_vbus: cpm-usb3-0-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "usb3h0-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&expander0 0 GPIO_ACTIVE_HIGH>;
+	};
+
+	cpm_reg_usb3_1_vbus: cpm-usb3-1-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "usb3h1-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&expander0 1 GPIO_ACTIVE_HIGH>;
+	};
+
+	cpm_usb3_0_phy: cpm-usb3-0-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&cpm_reg_usb3_0_vbus>;
+	};
+
+	cpm_usb3_1_phy: cpm-usb3-1-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&cpm_reg_usb3_1_vbus>;
+	};
 };
 
 &i2c0 {
@@ -105,6 +134,14 @@
 &cpm_i2c0 {
 	status = "okay";
 	clock-frequency = <100000>;
+
+	expander0: pca9555 at 21 {
+		compatible = "nxp,pca9555";
+		pinctrl-names = "default";
+		gpio-controller;
+		#gpio-cells = <2>;
+		reg = <0x21>;
+	};
 };
 
 &cpm_spi1 {
@@ -140,10 +177,12 @@
 };
 
 &cpm_usb3_0 {
+	usb-phy = <&cpm_usb3_0_phy>;
 	status = "okay";
 };
 
 &cpm_usb3_1 {
+	usb-phy = <&cpm_usb3_1_phy>;
 	status = "okay";
 };
 
-- 
2.11.0

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

* [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB
  2017-08-09 12:05 ` Thomas Petazzoni
  2017-08-09 12:31   ` Miquel RAYNAL
  2017-08-09 14:44   ` [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB Miquel Raynal
@ 2017-08-09 14:44   ` Miquel Raynal
  2017-08-14 14:32     ` Gregory CLEMENT
  2 siblings, 1 reply; 7+ messages in thread
From: Miquel Raynal @ 2017-08-09 14:44 UTC (permalink / raw)
  To: linux-arm-kernel

From: Grzegorz Jaszczyk <jaz@semihalf.com>

Enable USB host on Armada-8040-DB by adding USB PHY nodes for the
following ports:
  - host 0 and 1 of CPM
  - host 0 of CPS

These PHY are enabled by lanes coming from regulators based on two
I2C expanders.

Signed-off-by: Grzegorz Jaszczyk <jaz@semihalf.com>
Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
---
 arch/arm64/boot/dts/marvell/armada-8040-db.dts | 65 ++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/arch/arm64/boot/dts/marvell/armada-8040-db.dts b/arch/arm64/boot/dts/marvell/armada-8040-db.dts
index 1e8f7242ed6f..0d7b2ae46610 100644
--- a/arch/arm64/boot/dts/marvell/armada-8040-db.dts
+++ b/arch/arm64/boot/dts/marvell/armada-8040-db.dts
@@ -44,6 +44,7 @@
  * Device Tree file for Marvell Armada 8040 Development board platform
  */
 
+#include <dt-bindings/gpio/gpio.h>
 #include "armada-8040.dtsi"
 
 / {
@@ -59,6 +60,48 @@
 		device_type = "memory";
 		reg = <0x0 0x0 0x0 0x80000000>;
 	};
+
+	cpm_reg_usb3_0_vbus: cpm-usb3-0-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "cpm-usb3h0-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&expander0 0 GPIO_ACTIVE_HIGH>;
+	};
+
+	cpm_reg_usb3_1_vbus: cpm-usb3-1-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "cpm-usb3h1-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&expander0 1 GPIO_ACTIVE_HIGH>;
+	};
+
+	cpm_usb3_0_phy: cpm-usb3-0-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&cpm_reg_usb3_0_vbus>;
+	};
+
+	cpm_usb3_1_phy: cpm-usb3-1-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&cpm_reg_usb3_1_vbus>;
+	};
+
+	cps_reg_usb3_0_vbus: cps-usb3-0-vbus {
+		compatible = "regulator-fixed";
+		regulator-name = "cps-usb3h0-vbus";
+		regulator-min-microvolt = <5000000>;
+		regulator-max-microvolt = <5000000>;
+		enable-active-high;
+		gpio = <&expander1 0 GPIO_ACTIVE_HIGH>;
+	};
+
+	cps_usb3_0_phy: cps-usb3-0-phy {
+		compatible = "usb-nop-xceiv";
+		vcc-supply = <&cps_reg_usb3_0_vbus>;
+	};
 };
 
 &i2c0 {
@@ -107,6 +150,25 @@
 &cpm_i2c0 {
 	status = "okay";
 	clock-frequency = <100000>;
+
+	/* U31 */
+	expander0: pca9555 at 21 {
+		compatible = "nxp,pca9555";
+		pinctrl-names = "default";
+		gpio-controller;
+		#gpio-cells = <2>;
+		reg = <0x21>;
+	};
+
+	/* U25 */
+	expander1: pca9555 at 25 {
+		compatible = "nxp,pca9555";
+		pinctrl-names = "default";
+		gpio-controller;
+		#gpio-cells = <2>;
+		reg = <0x25>;
+	};
+
 };
 
 /* CON4 on CP0 expansion */
@@ -116,11 +178,13 @@
 
 /* CON9 on CP0 expansion */
 &cpm_usb3_0 {
+	usb-phy = <&cpm_usb3_0_phy>;
 	status = "okay";
 };
 
 /* CON10 on CP0 expansion */
 &cpm_usb3_1 {
+	usb-phy = <&cpm_usb3_1_phy>;
 	status = "okay";
 };
 
@@ -159,6 +223,7 @@
 
 /* CON9 on CP1 expansion */
 &cps_usb3_0 {
+	usb-phy = <&cps_usb3_0_phy>;
 	status = "okay";
 };
 
-- 
2.11.0

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

* [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB
  2017-08-09 14:44   ` [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB Miquel Raynal
@ 2017-08-14 14:31     ` Gregory CLEMENT
  0 siblings, 0 replies; 7+ messages in thread
From: Gregory CLEMENT @ 2017-08-14 14:31 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Miquel,
 
 On mer., ao?t 09 2017, Miquel Raynal <miquel.raynal@free-electrons.com> wrote:

> From: Hanna Hawa <hannah@marvell.com>
>
> Add I2C expander and USB host PHY (host 0 and host 1) to enable
> USB VBUS on USB ports of type A on Armada-7040-DB.
>

Applied on mvebu/dt64

Thanks,

Gregory

> Signed-off-by: Hanna Hawa <hannah@marvell.com>
> Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
> ---
>  arch/arm64/boot/dts/marvell/armada-7040-db.dts | 39 ++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/marvell/armada-7040-db.dts b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
> index 92c761c380d3..9c3bdf87e543 100644
> --- a/arch/arm64/boot/dts/marvell/armada-7040-db.dts
> +++ b/arch/arm64/boot/dts/marvell/armada-7040-db.dts
> @@ -44,6 +44,7 @@
>   * Device Tree file for Marvell Armada 7040 Development board platform
>   */
>  
> +#include <dt-bindings/gpio/gpio.h>
>  #include "armada-7040.dtsi"
>  
>  / {
> @@ -59,6 +60,34 @@
>  		device_type = "memory";
>  		reg = <0x0 0x0 0x0 0x80000000>;
>  	};
> +
> +	cpm_reg_usb3_0_vbus: cpm-usb3-0-vbus {
> +		compatible = "regulator-fixed";
> +		regulator-name = "usb3h0-vbus";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		enable-active-high;
> +		gpio = <&expander0 0 GPIO_ACTIVE_HIGH>;
> +	};
> +
> +	cpm_reg_usb3_1_vbus: cpm-usb3-1-vbus {
> +		compatible = "regulator-fixed";
> +		regulator-name = "usb3h1-vbus";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		enable-active-high;
> +		gpio = <&expander0 1 GPIO_ACTIVE_HIGH>;
> +	};
> +
> +	cpm_usb3_0_phy: cpm-usb3-0-phy {
> +		compatible = "usb-nop-xceiv";
> +		vcc-supply = <&cpm_reg_usb3_0_vbus>;
> +	};
> +
> +	cpm_usb3_1_phy: cpm-usb3-1-phy {
> +		compatible = "usb-nop-xceiv";
> +		vcc-supply = <&cpm_reg_usb3_1_vbus>;
> +	};
>  };
>  
>  &i2c0 {
> @@ -105,6 +134,14 @@
>  &cpm_i2c0 {
>  	status = "okay";
>  	clock-frequency = <100000>;
> +
> +	expander0: pca9555 at 21 {
> +		compatible = "nxp,pca9555";
> +		pinctrl-names = "default";
> +		gpio-controller;
> +		#gpio-cells = <2>;
> +		reg = <0x21>;
> +	};
>  };
>  
>  &cpm_spi1 {
> @@ -140,10 +177,12 @@
>  };
>  
>  &cpm_usb3_0 {
> +	usb-phy = <&cpm_usb3_0_phy>;
>  	status = "okay";
>  };
>  
>  &cpm_usb3_1 {
> +	usb-phy = <&cpm_usb3_1_phy>;
>  	status = "okay";
>  };
>  
> -- 
> 2.11.0
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB
  2017-08-09 14:44   ` [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB Miquel Raynal
@ 2017-08-14 14:32     ` Gregory CLEMENT
  0 siblings, 0 replies; 7+ messages in thread
From: Gregory CLEMENT @ 2017-08-14 14:32 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Miquel,
 
 On mer., ao?t 09 2017, Miquel Raynal <miquel.raynal@free-electrons.com> wrote:

> From: Grzegorz Jaszczyk <jaz@semihalf.com>
>
> Enable USB host on Armada-8040-DB by adding USB PHY nodes for the
> following ports:
>   - host 0 and 1 of CPM
>   - host 0 of CPS
>
> These PHY are enabled by lanes coming from regulators based on two
> I2C expanders.
>
> Signed-off-by: Grzegorz Jaszczyk <jaz@semihalf.com>
> Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>

Applied on mvebu/dt64

Thanks,

Gregory

> ---
>  arch/arm64/boot/dts/marvell/armada-8040-db.dts | 65 ++++++++++++++++++++++++++
>  1 file changed, 65 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/marvell/armada-8040-db.dts b/arch/arm64/boot/dts/marvell/armada-8040-db.dts
> index 1e8f7242ed6f..0d7b2ae46610 100644
> --- a/arch/arm64/boot/dts/marvell/armada-8040-db.dts
> +++ b/arch/arm64/boot/dts/marvell/armada-8040-db.dts
> @@ -44,6 +44,7 @@
>   * Device Tree file for Marvell Armada 8040 Development board platform
>   */
>  
> +#include <dt-bindings/gpio/gpio.h>
>  #include "armada-8040.dtsi"
>  
>  / {
> @@ -59,6 +60,48 @@
>  		device_type = "memory";
>  		reg = <0x0 0x0 0x0 0x80000000>;
>  	};
> +
> +	cpm_reg_usb3_0_vbus: cpm-usb3-0-vbus {
> +		compatible = "regulator-fixed";
> +		regulator-name = "cpm-usb3h0-vbus";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		enable-active-high;
> +		gpio = <&expander0 0 GPIO_ACTIVE_HIGH>;
> +	};
> +
> +	cpm_reg_usb3_1_vbus: cpm-usb3-1-vbus {
> +		compatible = "regulator-fixed";
> +		regulator-name = "cpm-usb3h1-vbus";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		enable-active-high;
> +		gpio = <&expander0 1 GPIO_ACTIVE_HIGH>;
> +	};
> +
> +	cpm_usb3_0_phy: cpm-usb3-0-phy {
> +		compatible = "usb-nop-xceiv";
> +		vcc-supply = <&cpm_reg_usb3_0_vbus>;
> +	};
> +
> +	cpm_usb3_1_phy: cpm-usb3-1-phy {
> +		compatible = "usb-nop-xceiv";
> +		vcc-supply = <&cpm_reg_usb3_1_vbus>;
> +	};
> +
> +	cps_reg_usb3_0_vbus: cps-usb3-0-vbus {
> +		compatible = "regulator-fixed";
> +		regulator-name = "cps-usb3h0-vbus";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		enable-active-high;
> +		gpio = <&expander1 0 GPIO_ACTIVE_HIGH>;
> +	};
> +
> +	cps_usb3_0_phy: cps-usb3-0-phy {
> +		compatible = "usb-nop-xceiv";
> +		vcc-supply = <&cps_reg_usb3_0_vbus>;
> +	};
>  };
>  
>  &i2c0 {
> @@ -107,6 +150,25 @@
>  &cpm_i2c0 {
>  	status = "okay";
>  	clock-frequency = <100000>;
> +
> +	/* U31 */
> +	expander0: pca9555 at 21 {
> +		compatible = "nxp,pca9555";
> +		pinctrl-names = "default";
> +		gpio-controller;
> +		#gpio-cells = <2>;
> +		reg = <0x21>;
> +	};
> +
> +	/* U25 */
> +	expander1: pca9555 at 25 {
> +		compatible = "nxp,pca9555";
> +		pinctrl-names = "default";
> +		gpio-controller;
> +		#gpio-cells = <2>;
> +		reg = <0x25>;
> +	};
> +
>  };
>  
>  /* CON4 on CP0 expansion */
> @@ -116,11 +178,13 @@
>  
>  /* CON9 on CP0 expansion */
>  &cpm_usb3_0 {
> +	usb-phy = <&cpm_usb3_0_phy>;
>  	status = "okay";
>  };
>  
>  /* CON10 on CP0 expansion */
>  &cpm_usb3_1 {
> +	usb-phy = <&cpm_usb3_1_phy>;
>  	status = "okay";
>  };
>  
> @@ -159,6 +223,7 @@
>  
>  /* CON9 on CP1 expansion */
>  &cps_usb3_0 {
> +	usb-phy = <&cps_usb3_0_phy>;
>  	status = "okay";
>  };
>  
> -- 
> 2.11.0
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2017-08-14 14:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-09  8:19 [PATCH] ARM64: dts: a7040: add regulator nodes to enable USB host VBUS Miquel Raynal
2017-08-09 12:05 ` Thomas Petazzoni
2017-08-09 12:31   ` Miquel RAYNAL
2017-08-09 14:44   ` [PATCH 1/2] ARM64: dts: marvell: enable USB host on Armada-7040-DB Miquel Raynal
2017-08-14 14:31     ` Gregory CLEMENT
2017-08-09 14:44   ` [PATCH 2/2] ARM64: dts: marvell: enable USB host on Armada-8040-DB Miquel Raynal
2017-08-14 14:32     ` Gregory CLEMENT

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.