mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 17:31:27 +00:00
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From c3f7a8831587dfd2c1102d5c3b50d89b9612760f Mon Sep 17 00:00:00 2001
|
|
From: Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
Date: Wed, 22 Mar 2023 16:14:09 +0530
|
|
Subject: [PATCH 180/281] phy: qcom-qusb2: add QUSB2 support for IPQ9574
|
|
|
|
Add the phy init sequence for the Super Speed ports found
|
|
on IPQ9574.
|
|
|
|
Change-Id: Ifc469c920c2fe6e047e201664f094845a9a23d99
|
|
Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
Signed-off-by: Sridharan S N <quic_sridsn@quicinc.com>
|
|
---
|
|
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 2ef638b32e8f..bec6e40d5280 100644
|
|
--- a/drivers/phy/qualcomm/phy-qcom-qusb2.c
|
|
+++ b/drivers/phy/qualcomm/phy-qcom-qusb2.c
|
|
@@ -911,6 +911,9 @@ static const struct of_device_id qusb2_phy_of_match_table[] = {
|
|
}, {
|
|
.compatible = "qcom,ipq8074-qusb2-phy",
|
|
.data = &msm8996_phy_cfg,
|
|
+ }, {
|
|
+ .compatible = "qcom,ipq9574-qusb2-phy",
|
|
+ .data = &ipq6018_phy_cfg,
|
|
}, {
|
|
.compatible = "qcom,msm8953-qusb2-phy",
|
|
.data = &msm8996_phy_cfg,
|
|
--
|
|
2.17.1
|
|
|