mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 17:31:27 +00:00
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 99df044aa945fa54ee56a6ce452030ac383a2d0f Mon Sep 17 00:00:00 2001
|
|
From: Manikanta Mylavarapu <quic_mmanikan@quicinc.com>
|
|
Date: Thu, 26 Oct 2023 14:09:16 +0530
|
|
Subject: [PATCH] PCI: qcom: Add devsoc PCIe support
|
|
|
|
Devsoc comes with 4 Gen3 PCIe controllers.
|
|
Init sequence is similar to the controllers
|
|
found on IPQ5332 SoC, so re-use the same ops.
|
|
|
|
Change-Id: I04f858956408ec453309e0663c1773db64cb7a29
|
|
Signed-off-by: Manikanta Mylavarapu <quic_mmanikan@quicinc.com>
|
|
---
|
|
drivers/pci/controller/dwc/pcie-qcom.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/pci/controller/dwc/pcie-qcom.c b/drivers/pci/controller/dwc/pcie-qcom.c
|
|
index cac472290310..454a2339765f 100644
|
|
--- a/drivers/pci/controller/dwc/pcie-qcom.c
|
|
+++ b/drivers/pci/controller/dwc/pcie-qcom.c
|
|
@@ -1923,6 +1923,7 @@ static const struct of_device_id qcom_pcie_match[] = {
|
|
{ .compatible = "qcom,pcie-apq8084", .data = &cfg_1_0_0 },
|
|
{ .compatible = "qcom,pcie-ipq4019", .data = &cfg_2_4_0 },
|
|
{ .compatible = "qcom,pcie-ipq5332", .data = &cfg_1_27_0 },
|
|
+ { .compatible = "qcom,pcie-devsoc", .data = &cfg_1_27_0 },
|
|
{ .compatible = "qcom,pcie-ipq6018", .data = &cfg_2_9_0 },
|
|
{ .compatible = "qcom,pcie-ipq8064", .data = &cfg_2_1_0 },
|
|
{ .compatible = "qcom,pcie-ipq8064-v2", .data = &cfg_2_1_0 },
|
|
--
|
|
2.34.1
|
|
|