blob: cbee87802559b711806cc1a84c94c1fe947340f0 [file] [log] [blame]
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +02001# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/pci/hisilicon,kirin-pcie.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: HiSilicon Kirin SoCs PCIe host DT description
8
9maintainers:
10 - Xiaowei Song <songxiaowei@hisilicon.com>
11 - Binghui Wang <wangbinghui@hisilicon.com>
12
13description: |
14 Kirin PCIe host controller is based on the Synopsys DesignWare PCI core.
15 It shares common functions with the PCIe DesignWare core driver and
16 inherits common properties defined in
17 Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml.
18
19allOf:
20 - $ref: /schemas/pci/snps,dw-pcie.yaml#
21
22properties:
23 compatible:
24 contains:
25 enum:
26 - hisilicon,kirin960-pcie
Mauro Carvalho Chehabcfcf1262021-08-04 09:18:56 +020027 - hisilicon,kirin970-pcie
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +020028
29 reg:
30 description: |
31 Should contain dbi, apb, config registers location and length.
Mauro Carvalho Chehabcfcf1262021-08-04 09:18:56 +020032 For hisilicon,kirin960-pcie, it should also contain phy.
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +020033 minItems: 3
34 maxItems: 4
35
36 reg-names:
37 minItems: 3
38 maxItems: 4
39
Mauro Carvalho Chehabcfcf1262021-08-04 09:18:56 +020040 hisilicon,clken-gpios:
41 description: |
42 Clock input enablement GPIOs from PCI devices like Ethernet, M.2 and
43 mini-PCIe slots.
44
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +020045required:
46 - compatible
47 - reg
48 - reg-names
49
50unevaluatedProperties: false
51
52examples:
53 - |
54 #include <dt-bindings/interrupt-controller/arm-gic.h>
55 #include <dt-bindings/clock/hi3660-clock.h>
Mauro Carvalho Chehabcfcf1262021-08-04 09:18:56 +020056 #include <dt-bindings/clock/hi3670-clock.h>
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +020057
58 soc {
59 #address-cells = <2>;
60 #size-cells = <2>;
61
62 pcie@f4000000 {
63 compatible = "hisilicon,kirin960-pcie";
64 reg = <0x0 0xf4000000 0x0 0x1000>,
65 <0x0 0xff3fe000 0x0 0x1000>,
66 <0x0 0xf3f20000 0x0 0x40000>,
67 <0x0 0xf5000000 0x0 0x2000>;
68 reg-names = "dbi", "apb", "phy", "config";
69 bus-range = <0x0 0xff>;
70 #address-cells = <3>;
71 #size-cells = <2>;
72 device_type = "pci";
73 ranges = <0x02000000 0x0 0x00000000
74 0x0 0xf6000000
75 0x0 0x02000000>;
76 num-lanes = <1>;
77 #interrupt-cells = <1>;
78 interrupts = <0 283 4>;
79 interrupt-names = "msi";
80 interrupt-map-mask = <0xf800 0 0 7>;
81 interrupt-map = <0x0 0 0 1 &gic GIC_SPI 282 IRQ_TYPE_LEVEL_HIGH>,
82 <0x0 0 0 2 &gic GIC_SPI 283 IRQ_TYPE_LEVEL_HIGH>,
83 <0x0 0 0 3 &gic GIC_SPI 284 IRQ_TYPE_LEVEL_HIGH>,
84 <0x0 0 0 4 &gic GIC_SPI 285 IRQ_TYPE_LEVEL_HIGH>;
85 clocks = <&crg_ctrl HI3660_PCIEPHY_REF>,
86 <&crg_ctrl HI3660_CLK_GATE_PCIEAUX>,
87 <&crg_ctrl HI3660_PCLK_GATE_PCIE_PHY>,
88 <&crg_ctrl HI3660_PCLK_GATE_PCIE_SYS>,
89 <&crg_ctrl HI3660_ACLK_GATE_PCIE>;
90 clock-names = "pcie_phy_ref", "pcie_aux", "pcie_apb_phy",
91 "pcie_apb_sys", "pcie_aclk";
92 };
Mauro Carvalho Chehabcfcf1262021-08-04 09:18:56 +020093
94 pcie@f5000000 {
95 compatible = "hisilicon,kirin970-pcie";
96 reg = <0x0 0xf4000000 0x0 0x1000000>,
97 <0x0 0xfc180000 0x0 0x1000>,
98 <0x0 0xf5000000 0x0 0x2000>;
99 reg-names = "dbi", "apb", "config";
100 bus-range = <0x0 0xff>;
101 #address-cells = <3>;
102 #size-cells = <2>;
103 device_type = "pci";
104 phys = <&pcie_phy>;
105 ranges = <0x02000000 0x0 0x00000000
106 0x0 0xf6000000
107 0x0 0x02000000>;
108 num-lanes = <1>;
109 #interrupt-cells = <1>;
110 interrupts = <GIC_SPI 283 IRQ_TYPE_LEVEL_HIGH>;
111 interrupt-names = "msi";
112 interrupt-map-mask = <0 0 0 7>;
113 interrupt-map = <0x0 0 0 1 &gic GIC_SPI 282 IRQ_TYPE_LEVEL_HIGH>,
114 <0x0 0 0 2 &gic GIC_SPI 283 IRQ_TYPE_LEVEL_HIGH>,
115 <0x0 0 0 3 &gic GIC_SPI 284 IRQ_TYPE_LEVEL_HIGH>,
116 <0x0 0 0 4 &gic GIC_SPI 285 IRQ_TYPE_LEVEL_HIGH>;
117 reset-gpios = <&gpio7 0 0>;
118 hisilicon,clken-gpios = <&gpio27 3 0>, <&gpio17 0 0>, <&gpio20 6 0>;
119 pcie@0,0 { // Lane 0: PCIe switch: Bus 1, Device 0
120 reg = <0 0 0 0 0>;
121 compatible = "pciclass,0604";
122 device_type = "pci";
123 #address-cells = <3>;
124 #size-cells = <2>;
125 ranges;
126
127 pcie@0,0 { // Lane 0: upstream
128 reg = <0 0 0 0 0>;
129 compatible = "pciclass,0604";
130 device_type = "pci";
131 #address-cells = <3>;
132 #size-cells = <2>;
133 ranges;
134
135 pcie@1,0 { // Lane 4: M.2
136 reg = <0x0800 0 0 0 0>;
137 compatible = "pciclass,0604";
138 device_type = "pci";
139 reset-gpios = <&gpio3 1 0>;
140 #address-cells = <3>;
141 #size-cells = <2>;
142 ranges;
143 };
144
145 pcie@5,0 { // Lane 5: Mini PCIe
146 reg = <0x2800 0 0 0 0>;
147 compatible = "pciclass,0604";
148 device_type = "pci";
149 reset-gpios = <&gpio27 4 0 >;
150 #address-cells = <3>;
151 #size-cells = <2>;
152 ranges;
153 };
154
155 pcie@7,0 { // Lane 6: Ethernet
156 reg = <0x03800 0 0 0 0>;
157 compatible = "pciclass,0604";
158 device_type = "pci";
159 reset-gpios = <&gpio25 2 0 >;
160 #address-cells = <3>;
161 #size-cells = <2>;
162 ranges;
163 };
164 };
165 };
166 };
Mauro Carvalho Chehab78e29352021-08-04 09:18:55 +0200167 };