linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Add QUSB2 PHY support for QCM2290
@ 2021-09-19  3:11 Shawn Guo
  2021-09-19  3:11 ` [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible " Shawn Guo
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Shawn Guo @ 2021-09-19  3:11 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Bjorn Andersson, Rob Herring, Loic Poulain, Manu Gautam,
	linux-phy, devicetree, linux-arm-msm, linux-kernel, Shawn Guo

The series adds QUSB2 PHY support for QCM2290 platform, by documenting
the compatible and it into driver match table.

Shawn Guo (2):
  dt-bindings: phy: qcom,qusb2: Add compatible for QCM2290
  phy: qcom-qusb2: Add compatible for QCM2290

 Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml | 1 +
 drivers/phy/qualcomm/phy-qcom-qusb2.c                     | 3 +++
 2 files changed, 4 insertions(+)

-- 
2.17.1


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

* [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible for QCM2290
  2021-09-19  3:11 [PATCH 0/2] Add QUSB2 PHY support for QCM2290 Shawn Guo
@ 2021-09-19  3:11 ` Shawn Guo
  2021-09-22 20:53   ` Rob Herring
  2021-09-19  3:11 ` [PATCH 2/2] phy: qcom-qusb2: " Shawn Guo
  2021-10-01  9:49 ` [PATCH 0/2] Add QUSB2 PHY support " Vinod Koul
  2 siblings, 1 reply; 5+ messages in thread
From: Shawn Guo @ 2021-09-19  3:11 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Bjorn Andersson, Rob Herring, Loic Poulain, Manu Gautam,
	linux-phy, devicetree, linux-arm-msm, linux-kernel, Shawn Guo

Add compatible for QUSB2 PHY on QCM2290 platform.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
---
 Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml b/Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml
index ec9ccaaba098..48ae604b2194 100644
--- a/Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml
+++ b/Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml
@@ -21,6 +21,7 @@ properties:
               - qcom,ipq8074-qusb2-phy
               - qcom,msm8996-qusb2-phy
               - qcom,msm8998-qusb2-phy
+              - qcom,qcm2290-qusb2-phy
               - qcom,sdm660-qusb2-phy
               - qcom,ipq6018-qusb2-phy
               - qcom,sm4250-qusb2-phy
-- 
2.17.1


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

* [PATCH 2/2] phy: qcom-qusb2: Add compatible for QCM2290
  2021-09-19  3:11 [PATCH 0/2] Add QUSB2 PHY support for QCM2290 Shawn Guo
  2021-09-19  3:11 ` [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible " Shawn Guo
@ 2021-09-19  3:11 ` Shawn Guo
  2021-10-01  9:49 ` [PATCH 0/2] Add QUSB2 PHY support " Vinod Koul
  2 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2021-09-19  3:11 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Bjorn Andersson, Rob Herring, Loic Poulain, Manu Gautam,
	linux-phy, devicetree, linux-arm-msm, linux-kernel, Shawn Guo

Add compatible for QCM2290 QUSB2 device which reuses SM6115
configuration.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
---
 drivers/phy/qualcomm/phy-qcom-qusb2.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/phy/qualcomm/phy-qcom-qusb2.c b/drivers/phy/qualcomm/phy-qcom-qusb2.c
index 3c1d3b71c825..ae063a8b3e28 100644
--- a/drivers/phy/qualcomm/phy-qcom-qusb2.c
+++ b/drivers/phy/qualcomm/phy-qcom-qusb2.c
@@ -913,6 +913,9 @@ static const struct of_device_id qusb2_phy_of_match_table[] = {
 	}, {
 		.compatible	= "qcom,msm8998-qusb2-phy",
 		.data		= &msm8998_phy_cfg,
+	}, {
+		.compatible	= "qcom,qcm2290-qusb2-phy",
+		.data		= &sm6115_phy_cfg,
 	}, {
 		.compatible	= "qcom,sdm660-qusb2-phy",
 		.data		= &sdm660_phy_cfg,
-- 
2.17.1


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

* Re: [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible for QCM2290
  2021-09-19  3:11 ` [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible " Shawn Guo
@ 2021-09-22 20:53   ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2021-09-22 20:53 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Loic Poulain, linux-arm-msm, Rob Herring, Manu Gautam,
	devicetree, linux-kernel, linux-phy, Vinod Koul, Bjorn Andersson

On Sun, 19 Sep 2021 11:11:09 +0800, Shawn Guo wrote:
> Add compatible for QUSB2 PHY on QCM2290 platform.
> 
> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
> ---
>  Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH 0/2] Add QUSB2 PHY support for QCM2290
  2021-09-19  3:11 [PATCH 0/2] Add QUSB2 PHY support for QCM2290 Shawn Guo
  2021-09-19  3:11 ` [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible " Shawn Guo
  2021-09-19  3:11 ` [PATCH 2/2] phy: qcom-qusb2: " Shawn Guo
@ 2021-10-01  9:49 ` Vinod Koul
  2 siblings, 0 replies; 5+ messages in thread
From: Vinod Koul @ 2021-10-01  9:49 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Bjorn Andersson, Rob Herring, Loic Poulain, Manu Gautam,
	linux-phy, devicetree, linux-arm-msm, linux-kernel

On 19-09-21, 11:11, Shawn Guo wrote:
> The series adds QUSB2 PHY support for QCM2290 platform, by documenting
> the compatible and it into driver match table.

Applied, thanks

-- 
~Vinod

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

end of thread, other threads:[~2021-10-01  9:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-19  3:11 [PATCH 0/2] Add QUSB2 PHY support for QCM2290 Shawn Guo
2021-09-19  3:11 ` [PATCH 1/2] dt-bindings: phy: qcom,qusb2: Add compatible " Shawn Guo
2021-09-22 20:53   ` Rob Herring
2021-09-19  3:11 ` [PATCH 2/2] phy: qcom-qusb2: " Shawn Guo
2021-10-01  9:49 ` [PATCH 0/2] Add QUSB2 PHY support " Vinod Koul

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