linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Add USB DWC3 support for SC7180
@ 2019-10-24 12:48 Sandeep Maheswaram
  2019-10-24 12:48 ` [PATCH 1/2] usb: dwc3: Add support for SC7180 SOC Sandeep Maheswaram
  2019-10-24 12:48 ` [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180 Sandeep Maheswaram
  0 siblings, 2 replies; 4+ messages in thread
From: Sandeep Maheswaram @ 2019-10-24 12:48 UTC (permalink / raw)
  To: agross, balbi, robh+dt, mark.rutland
  Cc: linux-arm-msm, linux-usb, devicetree, mgautam, Sandeep Maheswaram

Adding compatible for SC7180 in USB DWC3 driver and devicetree bindings

Sandeep Maheswaram (2):
  usb: dwc3: Add support for SC7180 SOC
  dt-bindings: usb: qcom,dwc3: Add compatible for SC7180

 Documentation/devicetree/bindings/usb/qcom,dwc3.txt | 1 +
 drivers/usb/dwc3/dwc3-qcom.c                        | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


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

* [PATCH 1/2] usb: dwc3: Add support for SC7180 SOC
  2019-10-24 12:48 [PATCH 0/2] Add USB DWC3 support for SC7180 Sandeep Maheswaram
@ 2019-10-24 12:48 ` Sandeep Maheswaram
  2019-10-24 12:48 ` [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180 Sandeep Maheswaram
  1 sibling, 0 replies; 4+ messages in thread
From: Sandeep Maheswaram @ 2019-10-24 12:48 UTC (permalink / raw)
  To: agross, balbi, robh+dt, mark.rutland
  Cc: linux-arm-msm, linux-usb, devicetree, mgautam, Sandeep Maheswaram

Add compatible for SC7180 SOC in USB DWC3 driver

Signed-off-by: Sandeep Maheswaram <sanm@codeaurora.org>
---
 drivers/usb/dwc3/dwc3-qcom.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 261af9e..841763f 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -1,5 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0
-/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  *
  * Inspired by dwc3-of-simple.c
  */
@@ -754,6 +754,7 @@ static const struct of_device_id dwc3_qcom_of_match[] = {
 	{ .compatible = "qcom,msm8996-dwc3" },
 	{ .compatible = "qcom,msm8998-dwc3" },
 	{ .compatible = "qcom,sdm845-dwc3" },
+	{ .compatible = "qcom,sc7180-dwc3" },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, dwc3_qcom_of_match);
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


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

* [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180
  2019-10-24 12:48 [PATCH 0/2] Add USB DWC3 support for SC7180 Sandeep Maheswaram
  2019-10-24 12:48 ` [PATCH 1/2] usb: dwc3: Add support for SC7180 SOC Sandeep Maheswaram
@ 2019-10-24 12:48 ` Sandeep Maheswaram
  2019-10-29 16:29   ` Stephen Boyd
  1 sibling, 1 reply; 4+ messages in thread
From: Sandeep Maheswaram @ 2019-10-24 12:48 UTC (permalink / raw)
  To: agross, balbi, robh+dt, mark.rutland
  Cc: linux-arm-msm, linux-usb, devicetree, mgautam, Sandeep Maheswaram

Add compatible for SC7180 SOC in device tree bindings

Signed-off-by: Sandeep Maheswaram <sanm@codeaurora.org>
---
 Documentation/devicetree/bindings/usb/qcom,dwc3.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.txt b/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
index cb695aa..c27c58d 100644
--- a/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
+++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
@@ -6,6 +6,7 @@ Required properties:
 			"qcom,msm8996-dwc3" for msm8996 SOC.
 			"qcom,msm8998-dwc3" for msm8998 SOC.
 			"qcom,sdm845-dwc3" for sdm845 SOC.
+			"qcom,sc7180-dwc3" for sc7180 SOC.
 - reg:			Offset and length of register set for QSCRATCH wrapper
 - power-domains:	specifies a phandle to PM domain provider node
 - clocks:		A list of phandle + clock-specifier pairs for the
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


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

* Re: [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180
  2019-10-24 12:48 ` [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180 Sandeep Maheswaram
@ 2019-10-29 16:29   ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2019-10-29 16:29 UTC (permalink / raw)
  To: Sandeep Maheswaram, agross, balbi, mark.rutland, robh+dt
  Cc: linux-arm-msm, linux-usb, devicetree, mgautam, Sandeep Maheswaram

Quoting Sandeep Maheswaram (2019-10-24 05:48:48)
> Add compatible for SC7180 SOC in device tree bindings
> 
> Signed-off-by: Sandeep Maheswaram <sanm@codeaurora.org>
> ---
>  Documentation/devicetree/bindings/usb/qcom,dwc3.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.txt b/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
> index cb695aa..c27c58d 100644
> --- a/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
> +++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.txt
> @@ -6,6 +6,7 @@ Required properties:
>                         "qcom,msm8996-dwc3" for msm8996 SOC.
>                         "qcom,msm8998-dwc3" for msm8998 SOC.
>                         "qcom,sdm845-dwc3" for sdm845 SOC.
> +                       "qcom,sc7180-dwc3" for sc7180 SOC.

Can this be sorted? And can this binding be converted to yaml?


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

end of thread, other threads:[~2019-10-29 16:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-24 12:48 [PATCH 0/2] Add USB DWC3 support for SC7180 Sandeep Maheswaram
2019-10-24 12:48 ` [PATCH 1/2] usb: dwc3: Add support for SC7180 SOC Sandeep Maheswaram
2019-10-24 12:48 ` [PATCH 2/2] dt-bindings: usb: qcom,dwc3: Add compatible for SC7180 Sandeep Maheswaram
2019-10-29 16:29   ` Stephen Boyd

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).