diff options
author | Mrinmay Sarkar <[email protected]> | 2024-04-30 21:25:38 +0530 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2024-05-28 09:51:17 -0500 |
commit | 58d0d3e032b3679023afd0062d9ddfb7823c6e5d (patch) | |
tree | 7c1fb0af57585ad055bc39b692b2cc88d8f1a3ac | |
parent | 9d3d5e75f31ca43d038a63cf701b5af4eae4623b (diff) |
PCI: qcom-ep: Add support for SA8775P SOC
Add support for SA8775P SoC to the Qualcomm PCIe Endpoint Controller
driver. Adding new compatible string as it has different set of clocks
compared to other SoCs.
Link: https://lore.kernel.org/linux-pci/[email protected]
Signed-off-by: Mrinmay Sarkar <[email protected]>
Signed-off-by: Krzysztof WilczyĆski <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Manivannan Sadhasivam <[email protected]>
-rw-r--r-- | drivers/pci/controller/dwc/pcie-qcom-ep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/controller/dwc/pcie-qcom-ep.c b/drivers/pci/controller/dwc/pcie-qcom-ep.c index 2fb8c15e7a91..a95c755df0fa 100644 --- a/drivers/pci/controller/dwc/pcie-qcom-ep.c +++ b/drivers/pci/controller/dwc/pcie-qcom-ep.c @@ -875,6 +875,7 @@ static void qcom_pcie_ep_remove(struct platform_device *pdev) } static const struct of_device_id qcom_pcie_ep_match[] = { + { .compatible = "qcom,sa8775p-pcie-ep", }, { .compatible = "qcom,sdx55-pcie-ep", }, { .compatible = "qcom,sm8450-pcie-ep", }, { } |