Loading...
1# SPDX-License-Identifier: GPL-2.0
2
3menu "DesignWare PCI Core Support"
4 depends on PCI
5
6config PCIE_DW
7 bool
8
9config PCIE_DW_HOST
10 bool
11 depends on PCI_MSI_IRQ_DOMAIN
12 select PCIE_DW
13
14config PCIE_DW_EP
15 bool
16 depends on PCI_ENDPOINT
17 select PCIE_DW
18
19config PCI_DRA7XX
20 bool
21
22config PCI_DRA7XX_HOST
23 bool "TI DRA7xx PCIe controller Host Mode"
24 depends on SOC_DRA7XX || COMPILE_TEST
25 depends on PCI_MSI_IRQ_DOMAIN
26 depends on OF && HAS_IOMEM && TI_PIPE3
27 select PCIE_DW_HOST
28 select PCI_DRA7XX
29 default y if SOC_DRA7XX
30 help
31 Enables support for the PCIe controller in the DRA7xx SoC to work in
32 host mode. There are two instances of PCIe controller in DRA7xx.
33 This controller can work either as EP or RC. In order to enable
34 host-specific features PCI_DRA7XX_HOST must be selected and in order
35 to enable device-specific features PCI_DRA7XX_EP must be selected.
36 This uses the DesignWare core.
37
38config PCI_DRA7XX_EP
39 bool "TI DRA7xx PCIe controller Endpoint Mode"
40 depends on SOC_DRA7XX || COMPILE_TEST
41 depends on PCI_ENDPOINT
42 depends on OF && HAS_IOMEM && TI_PIPE3
43 select PCIE_DW_EP
44 select PCI_DRA7XX
45 help
46 Enables support for the PCIe controller in the DRA7xx SoC to work in
47 endpoint mode. There are two instances of PCIe controller in DRA7xx.
48 This controller can work either as EP or RC. In order to enable
49 host-specific features PCI_DRA7XX_HOST must be selected and in order
50 to enable device-specific features PCI_DRA7XX_EP must be selected.
51 This uses the DesignWare core.
52
53config PCIE_DW_PLAT
54 bool
55
56config PCIE_DW_PLAT_HOST
57 bool "Platform bus based DesignWare PCIe Controller - Host mode"
58 depends on PCI && PCI_MSI_IRQ_DOMAIN
59 select PCIE_DW_HOST
60 select PCIE_DW_PLAT
61 help
62 Enables support for the PCIe controller in the Designware IP to
63 work in host mode. There are two instances of PCIe controller in
64 Designware IP.
65 This controller can work either as EP or RC. In order to enable
66 host-specific features PCIE_DW_PLAT_HOST must be selected and in
67 order to enable device-specific features PCI_DW_PLAT_EP must be
68 selected.
69
70config PCIE_DW_PLAT_EP
71 bool "Platform bus based DesignWare PCIe Controller - Endpoint mode"
72 depends on PCI && PCI_MSI_IRQ_DOMAIN
73 depends on PCI_ENDPOINT
74 select PCIE_DW_EP
75 select PCIE_DW_PLAT
76 help
77 Enables support for the PCIe controller in the Designware IP to
78 work in endpoint mode. There are two instances of PCIe controller
79 in Designware IP.
80 This controller can work either as EP or RC. In order to enable
81 host-specific features PCIE_DW_PLAT_HOST must be selected and in
82 order to enable device-specific features PCI_DW_PLAT_EP must be
83 selected.
84
85config PCI_EXYNOS
86 bool "Samsung Exynos PCIe controller"
87 depends on SOC_EXYNOS5440 || COMPILE_TEST
88 depends on PCI_MSI_IRQ_DOMAIN
89 select PCIE_DW_HOST
90
91config PCI_IMX6
92 bool "Freescale i.MX6/7/8 PCIe controller"
93 depends on ARCH_MXC || COMPILE_TEST
94 depends on PCI_MSI_IRQ_DOMAIN
95 select PCIE_DW_HOST
96
97config PCIE_SPEAR13XX
98 bool "STMicroelectronics SPEAr PCIe controller"
99 depends on ARCH_SPEAR13XX || COMPILE_TEST
100 depends on PCI_MSI_IRQ_DOMAIN
101 select PCIE_DW_HOST
102 help
103 Say Y here if you want PCIe support on SPEAr13XX SoCs.
104
105config PCI_KEYSTONE
106 bool
107
108config PCI_KEYSTONE_HOST
109 bool "PCI Keystone Host Mode"
110 depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
111 depends on PCI_MSI_IRQ_DOMAIN
112 select PCIE_DW_HOST
113 select PCI_KEYSTONE
114 help
115 Enables support for the PCIe controller in the Keystone SoC to
116 work in host mode. The PCI controller on Keystone is based on
117 DesignWare hardware and therefore the driver re-uses the
118 DesignWare core functions to implement the driver.
119
120config PCI_KEYSTONE_EP
121 bool "PCI Keystone Endpoint Mode"
122 depends on ARCH_KEYSTONE || ARCH_K3 || ((ARM || ARM64) && COMPILE_TEST)
123 depends on PCI_ENDPOINT
124 select PCIE_DW_EP
125 select PCI_KEYSTONE
126 help
127 Enables support for the PCIe controller in the Keystone SoC to
128 work in endpoint mode. The PCI controller on Keystone is based
129 on DesignWare hardware and therefore the driver re-uses the
130 DesignWare core functions to implement the driver.
131
132config PCI_LAYERSCAPE
133 bool "Freescale Layerscape PCIe controller - Host mode"
134 depends on OF && (ARM || ARCH_LAYERSCAPE || COMPILE_TEST)
135 depends on PCI_MSI_IRQ_DOMAIN
136 select MFD_SYSCON
137 select PCIE_DW_HOST
138 help
139 Say Y here if you want to enable PCIe controller support on Layerscape
140 SoCs to work in Host mode.
141 This controller can work either as EP or RC. The RCW[HOST_AGT_PEX]
142 determines which PCIe controller works in EP mode and which PCIe
143 controller works in RC mode.
144
145config PCI_LAYERSCAPE_EP
146 bool "Freescale Layerscape PCIe controller - Endpoint mode"
147 depends on OF && (ARM || ARCH_LAYERSCAPE || COMPILE_TEST)
148 depends on PCI_ENDPOINT
149 select PCIE_DW_EP
150 help
151 Say Y here if you want to enable PCIe controller support on Layerscape
152 SoCs to work in Endpoint mode.
153 This controller can work either as EP or RC. The RCW[HOST_AGT_PEX]
154 determines which PCIe controller works in EP mode and which PCIe
155 controller works in RC mode.
156
157config PCI_HISI
158 depends on OF && (ARM64 || COMPILE_TEST)
159 bool "HiSilicon Hip05 and Hip06 SoCs PCIe controllers"
160 depends on PCI_MSI_IRQ_DOMAIN
161 select PCIE_DW_HOST
162 select PCI_HOST_COMMON
163 help
164 Say Y here if you want PCIe controller support on HiSilicon
165 Hip05 and Hip06 SoCs
166
167config PCIE_QCOM
168 bool "Qualcomm PCIe controller"
169 depends on OF && (ARCH_QCOM || COMPILE_TEST)
170 depends on PCI_MSI_IRQ_DOMAIN
171 select PCIE_DW_HOST
172 help
173 Say Y here to enable PCIe controller support on Qualcomm SoCs. The
174 PCIe controller uses the DesignWare core plus Qualcomm-specific
175 hardware wrappers.
176
177config PCIE_ARMADA_8K
178 bool "Marvell Armada-8K PCIe controller"
179 depends on ARCH_MVEBU || COMPILE_TEST
180 depends on PCI_MSI_IRQ_DOMAIN
181 select PCIE_DW_HOST
182 help
183 Say Y here if you want to enable PCIe controller support on
184 Armada-8K SoCs. The PCIe controller on Armada-8K is based on
185 DesignWare hardware and therefore the driver re-uses the
186 DesignWare core functions to implement the driver.
187
188config PCIE_ARTPEC6
189 bool
190
191config PCIE_ARTPEC6_HOST
192 bool "Axis ARTPEC-6 PCIe controller Host Mode"
193 depends on MACH_ARTPEC6 || COMPILE_TEST
194 depends on PCI_MSI_IRQ_DOMAIN
195 select PCIE_DW_HOST
196 select PCIE_ARTPEC6
197 help
198 Enables support for the PCIe controller in the ARTPEC-6 SoC to work in
199 host mode. This uses the DesignWare core.
200
201config PCIE_ARTPEC6_EP
202 bool "Axis ARTPEC-6 PCIe controller Endpoint Mode"
203 depends on MACH_ARTPEC6 || COMPILE_TEST
204 depends on PCI_ENDPOINT
205 select PCIE_DW_EP
206 select PCIE_ARTPEC6
207 help
208 Enables support for the PCIe controller in the ARTPEC-6 SoC to work in
209 endpoint mode. This uses the DesignWare core.
210
211config PCIE_INTEL_GW
212 bool "Intel Gateway PCIe host controller support"
213 depends on OF && (X86 || COMPILE_TEST)
214 depends on PCI_MSI_IRQ_DOMAIN
215 select PCIE_DW_HOST
216 help
217 Say 'Y' here to enable PCIe Host controller support on Intel
218 Gateway SoCs.
219 The PCIe controller uses the DesignWare core plus Intel-specific
220 hardware wrappers.
221
222config PCIE_KIRIN
223 depends on OF && (ARM64 || COMPILE_TEST)
224 bool "HiSilicon Kirin series SoCs PCIe controllers"
225 depends on PCI_MSI_IRQ_DOMAIN
226 select PCIE_DW_HOST
227 help
228 Say Y here if you want PCIe controller support
229 on HiSilicon Kirin series SoCs.
230
231config PCIE_HISI_STB
232 bool "HiSilicon STB SoCs PCIe controllers"
233 depends on ARCH_HISI || COMPILE_TEST
234 depends on PCI_MSI_IRQ_DOMAIN
235 select PCIE_DW_HOST
236 help
237 Say Y here if you want PCIe controller support on HiSilicon STB SoCs
238
239config PCI_MESON
240 bool "MESON PCIe controller"
241 depends on PCI_MSI_IRQ_DOMAIN
242 select PCIE_DW_HOST
243 help
244 Say Y here if you want to enable PCI controller support on Amlogic
245 SoCs. The PCI controller on Amlogic is based on DesignWare hardware
246 and therefore the driver re-uses the DesignWare core functions to
247 implement the driver.
248
249config PCIE_TEGRA194
250 tristate
251
252config PCIE_TEGRA194_HOST
253 tristate "NVIDIA Tegra194 (and later) PCIe controller - Host Mode"
254 depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
255 depends on PCI_MSI_IRQ_DOMAIN
256 select PCIE_DW_HOST
257 select PHY_TEGRA194_P2U
258 select PCIE_TEGRA194
259 help
260 Enables support for the PCIe controller in the NVIDIA Tegra194 SoC to
261 work in host mode. There are two instances of PCIe controllers in
262 Tegra194. This controller can work either as EP or RC. In order to
263 enable host-specific features PCIE_TEGRA194_HOST must be selected and
264 in order to enable device-specific features PCIE_TEGRA194_EP must be
265 selected. This uses the DesignWare core.
266
267config PCIE_TEGRA194_EP
268 tristate "NVIDIA Tegra194 (and later) PCIe controller - Endpoint Mode"
269 depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
270 depends on PCI_ENDPOINT
271 select PCIE_DW_EP
272 select PHY_TEGRA194_P2U
273 select PCIE_TEGRA194
274 help
275 Enables support for the PCIe controller in the NVIDIA Tegra194 SoC to
276 work in host mode. There are two instances of PCIe controllers in
277 Tegra194. This controller can work either as EP or RC. In order to
278 enable host-specific features PCIE_TEGRA194_HOST must be selected and
279 in order to enable device-specific features PCIE_TEGRA194_EP must be
280 selected. This uses the DesignWare core.
281
282config PCIE_UNIPHIER
283 bool "Socionext UniPhier PCIe host controllers"
284 depends on ARCH_UNIPHIER || COMPILE_TEST
285 depends on OF && HAS_IOMEM
286 depends on PCI_MSI_IRQ_DOMAIN
287 select PCIE_DW_HOST
288 help
289 Say Y here if you want PCIe host controller support on UniPhier SoCs.
290 This driver supports LD20 and PXs3 SoCs.
291
292config PCIE_UNIPHIER_EP
293 bool "Socionext UniPhier PCIe endpoint controllers"
294 depends on ARCH_UNIPHIER || COMPILE_TEST
295 depends on OF && HAS_IOMEM
296 depends on PCI_ENDPOINT
297 select PCIE_DW_EP
298 help
299 Say Y here if you want PCIe endpoint controller support on
300 UniPhier SoCs. This driver supports Pro5 SoC.
301
302config PCIE_AL
303 bool "Amazon Annapurna Labs PCIe controller"
304 depends on OF && (ARM64 || COMPILE_TEST)
305 depends on PCI_MSI_IRQ_DOMAIN
306 select PCIE_DW_HOST
307 help
308 Say Y here to enable support of the Amazon's Annapurna Labs PCIe
309 controller IP on Amazon SoCs. The PCIe controller uses the DesignWare
310 core plus Annapurna Labs proprietary hardware wrappers. This is
311 required only for DT-based platforms. ACPI platforms with the
312 Annapurna Labs PCIe controller don't need to enable this.
313
314endmenu
1# SPDX-License-Identifier: GPL-2.0
2
3menu "DesignWare-based PCIe controllers"
4 depends on PCI
5
6config PCIE_DW
7 bool
8
9config PCIE_DW_HOST
10 bool
11 select PCIE_DW
12
13config PCIE_DW_EP
14 bool
15 select PCIE_DW
16
17config PCIE_AL
18 bool "Amazon Annapurna Labs PCIe controller"
19 depends on OF && (ARM64 || COMPILE_TEST)
20 depends on PCI_MSI
21 select PCIE_DW_HOST
22 select PCI_ECAM
23 help
24 Say Y here to enable support of the Amazon's Annapurna Labs PCIe
25 controller IP on Amazon SoCs. The PCIe controller uses the DesignWare
26 core plus Annapurna Labs proprietary hardware wrappers. This is
27 required only for DT-based platforms. ACPI platforms with the
28 Annapurna Labs PCIe controller don't need to enable this.
29
30config PCI_MESON
31 tristate "Amlogic Meson PCIe controller"
32 default m if ARCH_MESON
33 depends on PCI_MSI
34 select PCIE_DW_HOST
35 help
36 Say Y here if you want to enable PCI controller support on Amlogic
37 SoCs. The PCI controller on Amlogic is based on DesignWare hardware
38 and therefore the driver re-uses the DesignWare core functions to
39 implement the driver.
40
41config PCIE_ARTPEC6
42 bool
43
44config PCIE_ARTPEC6_HOST
45 bool "Axis ARTPEC-6 PCIe controller (host mode)"
46 depends on MACH_ARTPEC6 || COMPILE_TEST
47 depends on PCI_MSI
48 select PCIE_DW_HOST
49 select PCIE_ARTPEC6
50 help
51 Enables support for the PCIe controller in the ARTPEC-6 SoC to work in
52 host mode. This uses the DesignWare core.
53
54config PCIE_ARTPEC6_EP
55 bool "Axis ARTPEC-6 PCIe controller (endpoint mode)"
56 depends on MACH_ARTPEC6 || COMPILE_TEST
57 depends on PCI_ENDPOINT
58 select PCIE_DW_EP
59 select PCIE_ARTPEC6
60 help
61 Enables support for the PCIe controller in the ARTPEC-6 SoC to work in
62 endpoint mode. This uses the DesignWare core.
63
64config PCIE_BT1
65 tristate "Baikal-T1 PCIe controller"
66 depends on MIPS_BAIKAL_T1 || COMPILE_TEST
67 depends on PCI_MSI
68 select PCIE_DW_HOST
69 help
70 Enables support for the PCIe controller in the Baikal-T1 SoC to work
71 in host mode. It's based on the Synopsys DWC PCIe v4.60a IP-core.
72
73config PCI_IMX6
74 bool
75
76config PCI_IMX6_HOST
77 bool "Freescale i.MX6/7/8 PCIe controller (host mode)"
78 depends on ARCH_MXC || COMPILE_TEST
79 depends on PCI_MSI
80 select PCIE_DW_HOST
81 select PCI_IMX6
82 help
83 Enables support for the PCIe controller in the i.MX SoCs to
84 work in Root Complex mode. The PCI controller on i.MX is based
85 on DesignWare hardware and therefore the driver re-uses the
86 DesignWare core functions to implement the driver.
87
88config PCI_IMX6_EP
89 bool "Freescale i.MX6/7/8 PCIe controller (endpoint mode)"
90 depends on ARCH_MXC || COMPILE_TEST
91 depends on PCI_ENDPOINT
92 select PCIE_DW_EP
93 select PCI_IMX6
94 help
95 Enables support for the PCIe controller in the i.MX SoCs to
96 work in endpoint mode. The PCI controller on i.MX is based
97 on DesignWare hardware and therefore the driver re-uses the
98 DesignWare core functions to implement the driver.
99
100config PCI_LAYERSCAPE
101 bool "Freescale Layerscape PCIe controller (host mode)"
102 depends on OF && (ARM || ARCH_LAYERSCAPE || COMPILE_TEST)
103 depends on PCI_MSI
104 select PCIE_DW_HOST
105 select MFD_SYSCON
106 help
107 Say Y here if you want to enable PCIe controller support on Layerscape
108 SoCs to work in Host mode.
109 This controller can work either as EP or RC. The RCW[HOST_AGT_PEX]
110 determines which PCIe controller works in EP mode and which PCIe
111 controller works in RC mode.
112
113config PCI_LAYERSCAPE_EP
114 bool "Freescale Layerscape PCIe controller (endpoint mode)"
115 depends on OF && (ARM || ARCH_LAYERSCAPE || COMPILE_TEST)
116 depends on PCI_ENDPOINT
117 select PCIE_DW_EP
118 help
119 Say Y here if you want to enable PCIe controller support on Layerscape
120 SoCs to work in Endpoint mode.
121 This controller can work either as EP or RC. The RCW[HOST_AGT_PEX]
122 determines which PCIe controller works in EP mode and which PCIe
123 controller works in RC mode.
124
125config PCI_HISI
126 depends on OF && (ARM64 || COMPILE_TEST)
127 bool "HiSilicon Hip05 and Hip06 SoCs PCIe controller"
128 depends on PCI_MSI
129 select PCIE_DW_HOST
130 select PCI_HOST_COMMON
131 help
132 Say Y here if you want PCIe controller support on HiSilicon
133 Hip05 and Hip06 SoCs
134
135config PCIE_KIRIN
136 depends on OF && (ARM64 || COMPILE_TEST)
137 tristate "HiSilicon Kirin PCIe controller"
138 depends on PCI_MSI
139 select PCIE_DW_HOST
140 select REGMAP_MMIO
141 help
142 Say Y here if you want PCIe controller support
143 on HiSilicon Kirin series SoCs.
144
145config PCIE_HISI_STB
146 bool "HiSilicon STB PCIe controller"
147 depends on ARCH_HISI || COMPILE_TEST
148 depends on PCI_MSI
149 select PCIE_DW_HOST
150 help
151 Say Y here if you want PCIe controller support on HiSilicon STB SoCs
152
153config PCIE_INTEL_GW
154 bool "Intel Gateway PCIe controller "
155 depends on OF && (X86 || COMPILE_TEST)
156 depends on PCI_MSI
157 select PCIE_DW_HOST
158 help
159 Say 'Y' here to enable PCIe Host controller support on Intel
160 Gateway SoCs.
161 The PCIe controller uses the DesignWare core plus Intel-specific
162 hardware wrappers.
163
164config PCIE_KEEMBAY
165 bool
166
167config PCIE_KEEMBAY_HOST
168 bool "Intel Keem Bay PCIe controller (host mode)"
169 depends on ARCH_KEEMBAY || COMPILE_TEST
170 depends on PCI_MSI
171 select PCIE_DW_HOST
172 select PCIE_KEEMBAY
173 help
174 Say 'Y' here to enable support for the PCIe controller in Keem Bay
175 to work in host mode.
176 The PCIe controller is based on DesignWare Hardware and uses
177 DesignWare core functions.
178
179config PCIE_KEEMBAY_EP
180 bool "Intel Keem Bay PCIe controller (endpoint mode)"
181 depends on ARCH_KEEMBAY || COMPILE_TEST
182 depends on PCI_MSI
183 depends on PCI_ENDPOINT
184 select PCIE_DW_EP
185 select PCIE_KEEMBAY
186 help
187 Say 'Y' here to enable support for the PCIe controller in Keem Bay
188 to work in endpoint mode.
189 The PCIe controller is based on DesignWare Hardware and uses
190 DesignWare core functions.
191
192config PCIE_ARMADA_8K
193 bool "Marvell Armada-8K PCIe controller"
194 depends on ARCH_MVEBU || COMPILE_TEST
195 depends on PCI_MSI
196 select PCIE_DW_HOST
197 help
198 Say Y here if you want to enable PCIe controller support on
199 Armada-8K SoCs. The PCIe controller on Armada-8K is based on
200 DesignWare hardware and therefore the driver re-uses the
201 DesignWare core functions to implement the driver.
202
203config PCIE_TEGRA194
204 tristate
205
206config PCIE_TEGRA194_HOST
207 tristate "NVIDIA Tegra194 (and later) PCIe controller (host mode)"
208 depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
209 depends on PCI_MSI
210 select PCIE_DW_HOST
211 select PHY_TEGRA194_P2U
212 select PCIE_TEGRA194
213 help
214 Enables support for the PCIe controller in the NVIDIA Tegra194 SoC to
215 work in host mode. There are two instances of PCIe controllers in
216 Tegra194. This controller can work either as EP or RC. In order to
217 enable host-specific features PCIE_TEGRA194_HOST must be selected and
218 in order to enable device-specific features PCIE_TEGRA194_EP must be
219 selected. This uses the DesignWare core.
220
221config PCIE_TEGRA194_EP
222 tristate "NVIDIA Tegra194 (and later) PCIe controller (endpoint mode)"
223 depends on ARCH_TEGRA_194_SOC || COMPILE_TEST
224 depends on PCI_ENDPOINT
225 select PCIE_DW_EP
226 select PHY_TEGRA194_P2U
227 select PCIE_TEGRA194
228 help
229 Enables support for the PCIe controller in the NVIDIA Tegra194 SoC to
230 work in endpoint mode. There are two instances of PCIe controllers in
231 Tegra194. This controller can work either as EP or RC. In order to
232 enable host-specific features PCIE_TEGRA194_HOST must be selected and
233 in order to enable device-specific features PCIE_TEGRA194_EP must be
234 selected. This uses the DesignWare core.
235
236config PCIE_DW_PLAT
237 bool
238
239config PCIE_DW_PLAT_HOST
240 bool "Platform bus based DesignWare PCIe controller (host mode)"
241 depends on PCI_MSI
242 select PCIE_DW_HOST
243 select PCIE_DW_PLAT
244 help
245 Enables support for the PCIe controller in the Designware IP to
246 work in host mode. There are two instances of PCIe controller in
247 Designware IP.
248 This controller can work either as EP or RC. In order to enable
249 host-specific features PCIE_DW_PLAT_HOST must be selected and in
250 order to enable device-specific features PCI_DW_PLAT_EP must be
251 selected.
252
253config PCIE_DW_PLAT_EP
254 bool "Platform bus based DesignWare PCIe controller (endpoint mode)"
255 depends on PCI && PCI_MSI
256 depends on PCI_ENDPOINT
257 select PCIE_DW_EP
258 select PCIE_DW_PLAT
259 help
260 Enables support for the PCIe controller in the Designware IP to
261 work in endpoint mode. There are two instances of PCIe controller
262 in Designware IP.
263 This controller can work either as EP or RC. In order to enable
264 host-specific features PCIE_DW_PLAT_HOST must be selected and in
265 order to enable device-specific features PCI_DW_PLAT_EP must be
266 selected.
267
268config PCIE_QCOM_COMMON
269 bool
270
271config PCIE_QCOM
272 bool "Qualcomm PCIe controller (host mode)"
273 depends on OF && (ARCH_QCOM || COMPILE_TEST)
274 depends on PCI_MSI
275 select PCIE_DW_HOST
276 select CRC8
277 select PCIE_QCOM_COMMON
278 help
279 Say Y here to enable PCIe controller support on Qualcomm SoCs. The
280 PCIe controller uses the DesignWare core plus Qualcomm-specific
281 hardware wrappers.
282
283config PCIE_QCOM_EP
284 tristate "Qualcomm PCIe controller (endpoint mode)"
285 depends on OF && (ARCH_QCOM || COMPILE_TEST)
286 depends on PCI_ENDPOINT
287 select PCIE_DW_EP
288 select PCIE_QCOM_COMMON
289 help
290 Say Y here to enable support for the PCIe controllers on Qualcomm SoCs
291 to work in endpoint mode. The PCIe controller uses the DesignWare core
292 plus Qualcomm-specific hardware wrappers.
293
294config PCIE_RCAR_GEN4
295 tristate
296
297config PCIE_RCAR_GEN4_HOST
298 tristate "Renesas R-Car Gen4 PCIe controller (host mode)"
299 depends on ARCH_RENESAS || COMPILE_TEST
300 depends on PCI_MSI
301 select PCIE_DW_HOST
302 select PCIE_RCAR_GEN4
303 help
304 Say Y here if you want PCIe controller (host mode) on R-Car Gen4 SoCs.
305 To compile this driver as a module, choose M here: the module will be
306 called pcie-rcar-gen4.ko. This uses the DesignWare core.
307
308config PCIE_RCAR_GEN4_EP
309 tristate "Renesas R-Car Gen4 PCIe controller (endpoint mode)"
310 depends on ARCH_RENESAS || COMPILE_TEST
311 depends on PCI_ENDPOINT
312 select PCIE_DW_EP
313 select PCIE_RCAR_GEN4
314 help
315 Say Y here if you want PCIe controller (endpoint mode) on R-Car Gen4
316 SoCs. To compile this driver as a module, choose M here: the module
317 will be called pcie-rcar-gen4.ko. This uses the DesignWare core.
318
319config PCIE_ROCKCHIP_DW
320 bool
321
322config PCIE_ROCKCHIP_DW_HOST
323 bool "Rockchip DesignWare PCIe controller (host mode)"
324 depends on PCI_MSI
325 depends on ARCH_ROCKCHIP || COMPILE_TEST
326 depends on OF
327 select PCIE_DW_HOST
328 select PCIE_ROCKCHIP_DW
329 help
330 Enables support for the DesignWare PCIe controller in the
331 Rockchip SoC (except RK3399) to work in host mode.
332
333config PCIE_ROCKCHIP_DW_EP
334 bool "Rockchip DesignWare PCIe controller (endpoint mode)"
335 depends on ARCH_ROCKCHIP || COMPILE_TEST
336 depends on OF
337 depends on PCI_ENDPOINT
338 select PCIE_DW_EP
339 select PCIE_ROCKCHIP_DW
340 help
341 Enables support for the DesignWare PCIe controller in the
342 Rockchip SoC (except RK3399) to work in endpoint mode.
343
344config PCI_EXYNOS
345 tristate "Samsung Exynos PCIe controller"
346 depends on ARCH_EXYNOS || COMPILE_TEST
347 depends on PCI_MSI
348 select PCIE_DW_HOST
349 help
350 Enables support for the PCIe controller in the Samsung Exynos SoCs
351 to work in host mode. The PCI controller is based on the DesignWare
352 hardware and therefore the driver re-uses the DesignWare core
353 functions to implement the driver.
354
355config PCIE_FU740
356 bool "SiFive FU740 PCIe controller"
357 depends on PCI_MSI
358 depends on ARCH_SIFIVE || COMPILE_TEST
359 select PCIE_DW_HOST
360 help
361 Say Y here if you want PCIe controller support for the SiFive
362 FU740.
363
364config PCIE_UNIPHIER
365 bool "Socionext UniPhier PCIe controller (host mode)"
366 depends on ARCH_UNIPHIER || COMPILE_TEST
367 depends on OF && HAS_IOMEM
368 depends on PCI_MSI
369 select PCIE_DW_HOST
370 help
371 Say Y here if you want PCIe host controller support on UniPhier SoCs.
372 This driver supports LD20 and PXs3 SoCs.
373
374config PCIE_UNIPHIER_EP
375 bool "Socionext UniPhier PCIe controller (endpoint mode)"
376 depends on ARCH_UNIPHIER || COMPILE_TEST
377 depends on OF && HAS_IOMEM
378 depends on PCI_ENDPOINT
379 select PCIE_DW_EP
380 help
381 Say Y here if you want PCIe endpoint controller support on
382 UniPhier SoCs. This driver supports Pro5 SoC.
383
384config PCIE_SPEAR13XX
385 bool "STMicroelectronics SPEAr PCIe controller"
386 depends on ARCH_SPEAR13XX || COMPILE_TEST
387 depends on PCI_MSI
388 select PCIE_DW_HOST
389 help
390 Say Y here if you want PCIe support on SPEAr13XX SoCs.
391
392config PCI_DRA7XX
393 tristate
394
395config PCI_DRA7XX_HOST
396 tristate "TI DRA7xx PCIe controller (host mode)"
397 depends on SOC_DRA7XX || COMPILE_TEST
398 depends on OF && HAS_IOMEM && TI_PIPE3
399 depends on PCI_MSI
400 select PCIE_DW_HOST
401 select PCI_DRA7XX
402 default y if SOC_DRA7XX
403 help
404 Enables support for the PCIe controller in the DRA7xx SoC to work in
405 host mode. There are two instances of PCIe controller in DRA7xx.
406 This controller can work either as EP or RC. In order to enable
407 host-specific features PCI_DRA7XX_HOST must be selected and in order
408 to enable device-specific features PCI_DRA7XX_EP must be selected.
409 This uses the DesignWare core.
410
411config PCI_DRA7XX_EP
412 tristate "TI DRA7xx PCIe controller (endpoint mode)"
413 depends on SOC_DRA7XX || COMPILE_TEST
414 depends on OF && HAS_IOMEM && TI_PIPE3
415 depends on PCI_ENDPOINT
416 select PCIE_DW_EP
417 select PCI_DRA7XX
418 help
419 Enables support for the PCIe controller in the DRA7xx SoC to work in
420 endpoint mode. There are two instances of PCIe controller in DRA7xx.
421 This controller can work either as EP or RC. In order to enable
422 host-specific features PCI_DRA7XX_HOST must be selected and in order
423 to enable device-specific features PCI_DRA7XX_EP must be selected.
424 This uses the DesignWare core.
425
426config PCI_KEYSTONE
427 bool
428
429config PCI_KEYSTONE_HOST
430 bool "TI Keystone PCIe controller (host mode)"
431 depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
432 depends on PCI_MSI
433 select PCIE_DW_HOST
434 select PCI_KEYSTONE
435 help
436 Enables support for the PCIe controller in the Keystone SoC to
437 work in host mode. The PCI controller on Keystone is based on
438 DesignWare hardware and therefore the driver re-uses the
439 DesignWare core functions to implement the driver.
440
441config PCI_KEYSTONE_EP
442 bool "TI Keystone PCIe controller (endpoint mode)"
443 depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
444 depends on PCI_ENDPOINT
445 select PCIE_DW_EP
446 select PCI_KEYSTONE
447 help
448 Enables support for the PCIe controller in the Keystone SoC to
449 work in endpoint mode. The PCI controller on Keystone is based
450 on DesignWare hardware and therefore the driver re-uses the
451 DesignWare core functions to implement the driver.
452
453config PCIE_VISCONTI_HOST
454 bool "Toshiba Visconti PCIe controller"
455 depends on ARCH_VISCONTI || COMPILE_TEST
456 depends on PCI_MSI
457 select PCIE_DW_HOST
458 help
459 Say Y here if you want PCIe controller support on Toshiba Visconti SoC.
460 This driver supports TMPV7708 SoC.
461
462endmenu