All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible
@ 2021-09-08 19:33 David Heidelberg
  2021-09-08 19:33 ` [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible David Heidelberg
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: David Heidelberg @ 2021-09-08 19:33 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Greg Kroah-Hartman, Rob Herring,
	Manu Gautam
  Cc: linux-usb, linux-arm-msm, devicetree, linux-kernel, David Heidelberg

Prequisite for getting rid of another warnings when building ipq4019.

Signed-off-by: David Heidelberg <david@ixit.cz>
---
 Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
index e70afc40edb2..19641380f922 100644
--- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
+++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
@@ -13,6 +13,7 @@ properties:
   compatible:
     items:
       - enum:
+          - qcom,ipq4019-dwc3
           - qcom,msm8996-dwc3
           - qcom,msm8998-dwc3
           - qcom,sc7180-dwc3
-- 
2.33.0


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

* [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible
  2021-09-08 19:33 [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible David Heidelberg
@ 2021-09-08 19:33 ` David Heidelberg
  2021-09-20  4:16   ` Bjorn Andersson
  2021-09-09  6:18 ` [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible Greg Kroah-Hartman
  2021-09-21 17:23 ` Rob Herring
  2 siblings, 1 reply; 5+ messages in thread
From: David Heidelberg @ 2021-09-08 19:33 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Greg Kroah-Hartman, Rob Herring,
	Manu Gautam
  Cc: linux-usb, linux-arm-msm, devicetree, linux-kernel, David Heidelberg

To be compilant with qcom,dwc3 definition
 - add compatible
 - rename dwc3@ to usb@

No functional changes intended.

Signed-off-by: David Heidelberg <david@ixit.cz>
---
 arch/arm/boot/dts/qcom-ipq4019.dtsi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi
index a3ae5458ac68..25b7e10537df 100644
--- a/arch/arm/boot/dts/qcom-ipq4019.dtsi
+++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi
@@ -637,7 +637,7 @@ usb3_hs_phy: hsphy@a6000 {
 		};
 
 		usb3: usb3@8af8800 {
-			compatible = "qcom,dwc3";
+			compatible = "qcom,ipq4019-dwc3", "qcom,dwc3";
 			reg = <0x8af8800 0x100>;
 			#address-cells = <1>;
 			#size-cells = <1>;
@@ -648,7 +648,7 @@ usb3: usb3@8af8800 {
 			ranges;
 			status = "disabled";
 
-			dwc3@8a00000 {
+			usb@8a00000 {
 				compatible = "snps,dwc3";
 				reg = <0x8a00000 0xf8000>;
 				interrupts = <GIC_SPI 132 IRQ_TYPE_LEVEL_HIGH>;
@@ -669,7 +669,7 @@ usb2_hs_phy: hsphy@a8000 {
 		};
 
 		usb2: usb2@60f8800 {
-			compatible = "qcom,dwc3";
+			compatible = "qcom,ipq4019-dwc3", "qcom,dwc3";
 			reg = <0x60f8800 0x100>;
 			#address-cells = <1>;
 			#size-cells = <1>;
@@ -680,7 +680,7 @@ usb2: usb2@60f8800 {
 			ranges;
 			status = "disabled";
 
-			dwc3@6000000 {
+			usb@6000000 {
 				compatible = "snps,dwc3";
 				reg = <0x6000000 0xf8000>;
 				interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
-- 
2.33.0


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

* Re: [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible
  2021-09-08 19:33 [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible David Heidelberg
  2021-09-08 19:33 ` [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible David Heidelberg
@ 2021-09-09  6:18 ` Greg Kroah-Hartman
  2021-09-21 17:23 ` Rob Herring
  2 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2021-09-09  6:18 UTC (permalink / raw)
  To: David Heidelberg
  Cc: Andy Gross, Bjorn Andersson, Rob Herring, Manu Gautam, linux-usb,
	linux-arm-msm, devicetree, linux-kernel

On Wed, Sep 08, 2021 at 09:33:28PM +0200, David Heidelberg wrote:
> Prequisite for getting rid of another warnings when building ipq4019.
> 
> Signed-off-by: David Heidelberg <david@ixit.cz>
> ---
>  Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> index e70afc40edb2..19641380f922 100644
> --- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> +++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> @@ -13,6 +13,7 @@ properties:
>    compatible:
>      items:
>        - enum:
> +          - qcom,ipq4019-dwc3
>            - qcom,msm8996-dwc3
>            - qcom,msm8998-dwc3
>            - qcom,sc7180-dwc3
> -- 
> 2.33.0
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You did not specify a description of why the patch is needed, or
  possibly, any description at all, in the email body.  Please read the
  section entitled "The canonical patch format" in the kernel file,
  Documentation/SubmittingPatches for what is needed in order to
  properly describe the change.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

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

* Re: [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible
  2021-09-08 19:33 ` [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible David Heidelberg
@ 2021-09-20  4:16   ` Bjorn Andersson
  0 siblings, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2021-09-20  4:16 UTC (permalink / raw)
  To: David Heidelberg
  Cc: Andy Gross, Greg Kroah-Hartman, Rob Herring, Manu Gautam,
	linux-usb, linux-arm-msm, devicetree, linux-kernel

On Wed 08 Sep 14:33 CDT 2021, David Heidelberg wrote:

> To be compilant with qcom,dwc3 definition
>  - add compatible
>  - rename dwc3@ to usb@
> 
> No functional changes intended.
> 
> Signed-off-by: David Heidelberg <david@ixit.cz>
> ---
>  arch/arm/boot/dts/qcom-ipq4019.dtsi | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi
> index a3ae5458ac68..25b7e10537df 100644
> --- a/arch/arm/boot/dts/qcom-ipq4019.dtsi
> +++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi
> @@ -637,7 +637,7 @@ usb3_hs_phy: hsphy@a6000 {
>  		};
>  
>  		usb3: usb3@8af8800 {
> -			compatible = "qcom,dwc3";
> +			compatible = "qcom,ipq4019-dwc3", "qcom,dwc3";
>  			reg = <0x8af8800 0x100>;
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> @@ -648,7 +648,7 @@ usb3: usb3@8af8800 {
>  			ranges;
>  			status = "disabled";
>  
> -			dwc3@8a00000 {
> +			usb@8a00000 {

As noted in a recent discussion, this causes the UDC name exposed in
sysfs to change. So even though it's contradicting the binding let's
keep it unchanged for now.

The compatible part looks good though, so can you please respin this
patch with that part only?

Thanks,
Bjorn

>  				compatible = "snps,dwc3";
>  				reg = <0x8a00000 0xf8000>;
>  				interrupts = <GIC_SPI 132 IRQ_TYPE_LEVEL_HIGH>;
> @@ -669,7 +669,7 @@ usb2_hs_phy: hsphy@a8000 {
>  		};
>  
>  		usb2: usb2@60f8800 {
> -			compatible = "qcom,dwc3";
> +			compatible = "qcom,ipq4019-dwc3", "qcom,dwc3";
>  			reg = <0x60f8800 0x100>;
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> @@ -680,7 +680,7 @@ usb2: usb2@60f8800 {
>  			ranges;
>  			status = "disabled";
>  
> -			dwc3@6000000 {
> +			usb@6000000 {
>  				compatible = "snps,dwc3";
>  				reg = <0x6000000 0xf8000>;
>  				interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
> -- 
> 2.33.0
> 

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

* Re: [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible
  2021-09-08 19:33 [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible David Heidelberg
  2021-09-08 19:33 ` [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible David Heidelberg
  2021-09-09  6:18 ` [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible Greg Kroah-Hartman
@ 2021-09-21 17:23 ` Rob Herring
  2 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2021-09-21 17:23 UTC (permalink / raw)
  To: David Heidelberg
  Cc: Andy Gross, Greg Kroah-Hartman, linux-usb, linux-kernel,
	Bjorn Andersson, Rob Herring, linux-arm-msm, devicetree,
	Manu Gautam

On Wed, 08 Sep 2021 21:33:28 +0200, David Heidelberg wrote:
> Prequisite for getting rid of another warnings when building ipq4019.
> 
> Signed-off-by: David Heidelberg <david@ixit.cz>
> ---
>  Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2021-09-21 17:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 19:33 [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible David Heidelberg
2021-09-08 19:33 ` [PATCH 2/2] ARM: dts: qcom: ipq4019: add dwc3 arch spec compatible David Heidelberg
2021-09-20  4:16   ` Bjorn Andersson
2021-09-09  6:18 ` [PATCH 1/2] dt-bindings: usb/qcom,dwc3: add ipq4019 compatible Greg Kroah-Hartman
2021-09-21 17:23 ` Rob Herring

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.