blob: 4d060bce6f9d7766ff887f0e1a0595e2f96fd33d [file] [log] [blame]
Tom Rini6bb92fc2024-05-20 09:54:58 -06001# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/pci/qcom,pcie-sm8250.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm SM8250 PCI Express Root Complex
8
9maintainers:
10 - Bjorn Andersson <andersson@kernel.org>
11 - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12
13description:
14 Qualcomm SM8250 SoC PCIe root complex controller is based on the Synopsys
15 DesignWare PCIe IP.
16
17properties:
18 compatible:
19 const: qcom,pcie-sm8250
20
21 reg:
22 minItems: 5
23 maxItems: 6
24
25 reg-names:
26 minItems: 5
27 items:
28 - const: parf # Qualcomm specific registers
29 - const: dbi # DesignWare PCIe registers
30 - const: elbi # External local bus interface registers
31 - const: atu # ATU address space
32 - const: config # PCIe configuration space
33 - const: mhi # MHI registers
34
35 clocks:
36 minItems: 8
37 maxItems: 9
38
39 clock-names:
40 # Unfortunately the "optional" ref clock is used in the middle of the list
41 oneOf:
42 - items:
43 - const: pipe # PIPE clock
44 - const: aux # Auxiliary clock
45 - const: cfg # Configuration clock
46 - const: bus_master # Master AXI clock
47 - const: bus_slave # Slave AXI clock
48 - const: slave_q2a # Slave Q2A clock
49 - const: ref # REFERENCE clock
50 - const: tbu # PCIe TBU clock
51 - const: ddrss_sf_tbu # PCIe SF TBU clock
52 - items:
53 - const: pipe # PIPE clock
54 - const: aux # Auxiliary clock
55 - const: cfg # Configuration clock
56 - const: bus_master # Master AXI clock
57 - const: bus_slave # Slave AXI clock
58 - const: slave_q2a # Slave Q2A clock
59 - const: tbu # PCIe TBU clock
60 - const: ddrss_sf_tbu # PCIe SF TBU clock
61
62 interrupts:
63 minItems: 8
64 maxItems: 8
65
66 interrupt-names:
67 items:
68 - const: msi0
69 - const: msi1
70 - const: msi2
71 - const: msi3
72 - const: msi4
73 - const: msi5
74 - const: msi6
75 - const: msi7
76
77 resets:
78 maxItems: 1
79
80 reset-names:
81 items:
82 - const: pci
83
84allOf:
85 - $ref: qcom,pcie-common.yaml#
86
87unevaluatedProperties: false
88
89examples:
90 - |
91 #include <dt-bindings/clock/qcom,gcc-sm8250.h>
92 #include <dt-bindings/gpio/gpio.h>
93 #include <dt-bindings/interconnect/qcom,sm8250.h>
94 #include <dt-bindings/interrupt-controller/arm-gic.h>
95
96 soc {
97 #address-cells = <2>;
98 #size-cells = <2>;
99
100 pcie@1c00000 {
101 compatible = "qcom,pcie-sm8250";
102 reg = <0 0x01c00000 0 0x3000>,
103 <0 0x60000000 0 0xf1d>,
104 <0 0x60000f20 0 0xa8>,
105 <0 0x60001000 0 0x1000>,
106 <0 0x60100000 0 0x100000>,
107 <0 0x01c03000 0 0x1000>;
108 reg-names = "parf", "dbi", "elbi", "atu", "config", "mhi";
109 ranges = <0x01000000 0x0 0x00000000 0x0 0x60200000 0x0 0x100000>,
110 <0x02000000 0x0 0x60300000 0x0 0x60300000 0x0 0x3d00000>;
111
112 bus-range = <0x00 0xff>;
113 device_type = "pci";
114 linux,pci-domain = <0>;
115 num-lanes = <1>;
116
117 #address-cells = <3>;
118 #size-cells = <2>;
119
120 clocks = <&gcc GCC_PCIE_0_PIPE_CLK>,
121 <&gcc GCC_PCIE_0_AUX_CLK>,
122 <&gcc GCC_PCIE_0_CFG_AHB_CLK>,
123 <&gcc GCC_PCIE_0_MSTR_AXI_CLK>,
124 <&gcc GCC_PCIE_0_SLV_AXI_CLK>,
125 <&gcc GCC_PCIE_0_SLV_Q2A_AXI_CLK>,
126 <&gcc GCC_AGGRE_NOC_PCIE_TBU_CLK>,
127 <&gcc GCC_DDRSS_PCIE_SF_TBU_CLK>;
128 clock-names = "pipe",
129 "aux",
130 "cfg",
131 "bus_master",
132 "bus_slave",
133 "slave_q2a",
134 "tbu",
135 "ddrss_sf_tbu";
136
137 dma-coherent;
138
139 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>,
140 <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>,
141 <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>,
142 <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>,
143 <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>,
144 <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>,
145 <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>,
146 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
147 interrupt-names = "msi0", "msi1", "msi2", "msi3",
148 "msi4", "msi5", "msi6", "msi7";
149 #interrupt-cells = <1>;
150 interrupt-map-mask = <0 0 0 0x7>;
151 interrupt-map = <0 0 0 1 &intc 0 149 IRQ_TYPE_LEVEL_HIGH>, /* int_a */
152 <0 0 0 2 &intc 0 150 IRQ_TYPE_LEVEL_HIGH>, /* int_b */
153 <0 0 0 3 &intc 0 151 IRQ_TYPE_LEVEL_HIGH>, /* int_c */
154 <0 0 0 4 &intc 0 152 IRQ_TYPE_LEVEL_HIGH>; /* int_d */
155
156 iommu-map = <0x0 &apps_smmu 0x1c00 0x1>,
157 <0x100 &apps_smmu 0x1c01 0x1>;
158
159 phys = <&pcie0_phy>;
160 phy-names = "pciephy";
161
162 pinctrl-0 = <&pcie0_default_state>;
163 pinctrl-names = "default";
164
165 power-domains = <&gcc PCIE_0_GDSC>;
166
167 resets = <&gcc GCC_PCIE_0_BCR>;
168 reset-names = "pci";
169
170 perst-gpios = <&tlmm 79 GPIO_ACTIVE_LOW>;
171 wake-gpios = <&tlmm 81 GPIO_ACTIVE_HIGH>;
172 };
173 };