2024-03-01 17:03:47

by Abel Vesa

[permalink] [raw]
Subject: [PATCH v4 0/2] PCI: qcom: Add PCIe support for X1E80100

Add support for PCIe controllers found on X1E80100 platform.

Signed-off-by: Abel Vesa <[email protected]>
---
Changes in v4:
- Added dedicated schema as Krzysztof's work that splits the rest has been merged.
- Link to v3: https://lore.kernel.org/r/[email protected]

Changes in v3:
- Added Krzysztof's Reviewed-by tag to the bindings patch
- Added Mani's Acked-by tag to the bindings patch
- Added Mani's Reviewed-by tag to the driver patch
- Re-worded the commit message of the driver patch to include
things like the core version, the max link width and speeds.
- Link to v2: https://lore.kernel.org/r/[email protected]

Changes in v2:
- Documented the compatible
- Link to v1: https://lore.kernel.org/r/[email protected]

---
Abel Vesa (2):
dt-bindings: PCI: qcom: Document the X1E80100 PCIe Controller
PCI: qcom: Add X1E80100 PCIe support

.../bindings/pci/qcom,pcie-x1e80100.yaml | 165 +++++++++++++++++++++
drivers/pci/controller/dwc/pcie-qcom.c | 1 +
2 files changed, 166 insertions(+)
---
base-commit: 1870cdc0e8dee32e3c221704a2977898ba4c10e8
change-id: 20231201-x1e80100-pci-e3ad9158bb24

Best regards,
--
Abel Vesa <[email protected]>



2024-03-01 17:08:07

by Abel Vesa

[permalink] [raw]
Subject: [PATCH v4 2/2] PCI: qcom: Add X1E80100 PCIe support

Add the compatible and the driver data for X1E80100 PCIe controller.
There are 5 controller instances found on this platform, out of which
2 are Gen3 with speeds of up to 8.0GT/s, while the other 3 are Gen4
with speeds of up to 16GT/s. The version of the controller is
1.38.0 for all instances, but they are compatible with 1.9.0 config.
The max link width is x8 for one controller, x4 for two of others and
x2 for the two left.

Reviewed-by: Manivannan Sadhasivam <[email protected]>
Signed-off-by: Abel Vesa <[email protected]>
---
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 2ce2a3bd932b..b7467f9dfea9 100644
--- a/drivers/pci/controller/dwc/pcie-qcom.c
+++ b/drivers/pci/controller/dwc/pcie-qcom.c
@@ -1642,6 +1642,7 @@ static const struct of_device_id qcom_pcie_match[] = {
{ .compatible = "qcom,pcie-sm8450-pcie0", .data = &cfg_1_9_0 },
{ .compatible = "qcom,pcie-sm8450-pcie1", .data = &cfg_1_9_0 },
{ .compatible = "qcom,pcie-sm8550", .data = &cfg_1_9_0 },
+ { .compatible = "qcom,pcie-x1e80100", .data = &cfg_1_9_0 },
{ }
};


--
2.34.1


2024-03-10 18:13:18

by Krzysztof Wilczyński

[permalink] [raw]
Subject: Re: [PATCH v4 0/2] PCI: qcom: Add PCIe support for X1E80100

Hello,

> Add support for PCIe controllers found on X1E80100 platform.

Applied to controller/qcom, thank you!

[01/02] dt-bindings: PCI: qcom: Document the X1E80100 PCIe Controller
https://git.kernel.org/pci/pci/c/692eadd51698
[02/02] PCI: qcom: Add X1E80100 PCIe support
https://git.kernel.org/pci/pci/c/6d0c39324c5f

Krzysztof