blob: c49cb6eac984e17f5bc9ad06d4b34642f61ec0e6 [file] [log] [blame]
Tom Riniaf273822016-10-26 17:15:37 -04001menuconfig PCI
2 bool "PCI support"
Bin Meng6bf89de2017-07-30 06:23:09 -07003 default y if PPC
Tom Riniaf273822016-10-26 17:15:37 -04004 help
5 Enable support for PCI (Peripheral Interconnect Bus), a type of bus
6 used on some devices to allow the CPU to communicate with its
7 peripherals.
8
9if PCI
Simon Glassff3e0772015-03-05 12:25:25 -070010
11config DM_PCI
Marcel Ziswilere090fdb2016-12-19 15:38:05 +010012 bool "Enable driver model for PCI"
Simon Glassff3e0772015-03-05 12:25:25 -070013 depends on DM
14 help
15 Use driver model for PCI. Driver model is the new method for
16 orgnising devices in U-Boot. For PCI, driver model keeps track of
17 available PCI devices, allows scanning of PCI buses and provides
18 device configuration support.
19
Simon Glass3ba5f742015-11-26 19:51:30 -070020config DM_PCI_COMPAT
21 bool "Enable compatible functions for PCI"
22 depends on DM_PCI
23 help
24 Enable compatibility functions for PCI so that old code can be used
25 with CONFIG_DM_PCI enabled. This should be used as an interim
26 measure when porting a board to use driver model for PCI. Once the
27 board is fully supported, this option should be disabled.
28
Wilson Dinge51f2b12018-03-26 15:57:29 +080029config PCI_AARDVARK
30 bool "Enable Aardvark PCIe driver"
31 default n
32 depends on DM_PCI
Pali Rohár835d9692020-08-25 10:45:04 +020033 depends on DM_GPIO
Wilson Dinge51f2b12018-03-26 15:57:29 +080034 depends on ARMADA_3700
35 help
36 Say Y here if you want to enable PCIe controller support on
37 Armada37x0 SoCs. The PCIe controller on Armada37x0 is based on
38 Aardvark hardware.
39
Bin Mengc4762152016-10-16 23:35:18 -070040config PCI_PNP
41 bool "Enable Plug & Play support for PCI"
42 depends on PCI || DM_PCI
43 default y
44 help
45 Enable PCI memory and I/O space resource allocation and assignment.
46
Suneel Garapati4cf56ec2019-10-19 17:10:20 -070047config PCI_REGION_MULTI_ENTRY
48 bool "Enable Multiple entries of region type MEMORY in ranges for PCI"
49 depends on PCI || DM_PCI
50 default n
51 help
52 Enable PCI memory regions to be of multiple entry. Multiple entry
53 here refers to allow more than one count of address ranges for MEMORY
54 region type. This helps to add support for SoC's like OcteonTX/TX2
55 where every peripheral is on the PCI bus.
56
Daniel Schwierzecka45343a2021-07-15 20:53:56 +020057config PCI_MAP_SYSTEM_MEMORY
58 bool "Map local system memory from a virtual base address"
59 depends on PCI || DM_PCI
60 depends on MIPS
61 default n
62 help
63 Say Y if base address of system memory is being used as a virtual address
64 instead of a physical address (e.g. on MIPS). The PCI core will then remap
65 the virtual memory base address to a physical address when adding the PCI
66 region of type PCI_REGION_SYS_MEMORY.
67 This should only be required on MIPS where CONFIG_SYS_SDRAM_BASE is still
68 being used as virtual address.
69
Suneel Garapatib8852dc2019-10-19 16:07:20 -070070config PCI_SRIOV
71 bool "Enable Single Root I/O Virtualization support for PCI"
72 depends on PCI || DM_PCI
73 default n
74 help
75 Say Y here if you want to enable PCI Single Root I/O Virtualization
76 capability support. This helps to enumerate Virtual Function devices
77 if available on a PCI Physical Function device and probe for
78 applicable drivers.
79
Suneel Garapatia3fac3f2019-10-23 18:40:36 -070080config PCI_ARID
81 bool "Enable Alternate Routing-ID support for PCI"
82 depends on PCI || DM_PCI
83 default n
84 help
85 Say Y here if you want to enable Alternate Routing-ID capability
86 support on PCI devices. This helps to skip some devices in BDF
87 scan that are not present.
88
Tuomas Tynkkynen3675cb02017-09-19 23:18:06 +030089config PCIE_ECAM_GENERIC
90 bool "Generic ECAM-based PCI host controller support"
91 default n
92 depends on DM_PCI
93 help
94 Say Y here if you want to enable support for generic ECAM-based
95 PCIe host controllers, such as the one emulated by QEMU.
96
Masami Hiramatsu3296d522021-06-04 18:44:06 +090097config PCIE_ECAM_SYNQUACER
98 bool "SynQuacer ECAM-based PCI host controller support"
99 default n
100 depends on DM_PCI
101 select PCI_INIT_R
102 select PCI_REGION_MULTI_ENTRY
103 help
104 Say Y here if you want to enable support for Socionext
105 SynQuacer SoC's ECAM-based PCIe host controllers.
106 Note that this must be configured when boot because Linux driver
107 expects the PCIe RC has been configured in the bootloader.
108
liu haoe3aafef2019-10-31 07:51:08 +0000109config PCI_PHYTIUM
110 bool "Phytium PCIe support"
111 depends on DM_PCI
112 help
113 Say Y here if you want to enable PCIe controller support on
114 Phytium SoCs.
115
Shadi Ammouri182ba1a2016-10-27 13:29:41 +0200116config PCIE_DW_MVEBU
117 bool "Enable Armada-8K PCIe driver (DesignWare core)"
Shadi Ammouri182ba1a2016-10-27 13:29:41 +0200118 depends on DM_PCI
119 depends on ARMADA_8K
120 help
121 Say Y here if you want to enable PCIe controller support on
122 Armada-8K SoCs. The PCIe controller on Armada-8K is based on
123 DesignWare hardware.
124
Green Wan416395c2021-05-27 06:52:10 -0700125config PCIE_DW_SIFIVE
126 bool "Enable SiFive FU740 PCIe"
127 depends on CLK_SIFIVE_PRCI
128 depends on RESET_SIFIVE
129 depends on SIFIVE_GPIO
130 select PCIE_DW_COMMON
131 help
132 Say Y here if you want to enable PCIe controller support on
133 FU740.
134
Hou Zhiqiangb89e3d92019-04-24 22:33:02 +0800135config PCIE_FSL
136 bool "FSL PowerPC PCIe support"
137 depends on DM_PCI
138 help
139 Say Y here if you want to enable PCIe controller support on FSL
140 PowerPC MPC85xx, MPC86xx, B series, P series and T series SoCs.
141 This driver does not support SRIO_PCIE_BOOT feature.
142
Heiko Schocherb61cbbd2019-10-14 11:29:39 +0200143config PCI_MPC85XX
144 bool "MPC85XX PowerPC PCI support"
145 depends on DM_PCI
146 help
147 Say Y here if you want to enable PCI controller support on FSL
148 PowerPC MPC85xx SoC.
149
Marek Vasut5f14f7d2018-01-18 14:35:35 +0100150config PCI_RCAR_GEN2
151 bool "Renesas RCar Gen2 PCIe driver"
152 depends on DM_PCI
153 depends on RCAR_32
154 help
155 Say Y here if you want to enable PCIe controller support on
156 Renesas RCar Gen2 SoCs. The PCIe controller on RCar Gen2 is
157 also used to access EHCI USB controller on the SoC.
158
Marek Vasut776abed2018-10-16 12:49:19 +0200159config PCI_RCAR_GEN3
160 bool "Renesas RCar Gen3 PCIe driver"
161 depends on DM_PCI
162 depends on RCAR_GEN3
163 help
164 Say Y here if you want to enable PCIe controller support on
165 Renesas RCar Gen3 SoCs.
166
Simon Glass537849a2015-03-05 12:25:27 -0700167config PCI_SANDBOX
168 bool "Sandbox PCI support"
169 depends on SANDBOX && DM_PCI
170 help
171 Support PCI on sandbox, as an emulated bus. This permits testing of
172 PCI feature such as bus scanning, device configuration and device
173 access. The available (emulated) devices are defined statically in
174 the device tree but the normal PCI scan technique is used to find
175 then.
176
Simon Glassfde7e182015-11-19 20:26:55 -0700177config PCI_TEGRA
178 bool "Tegra PCI support"
Trevor Woerner18138ab2020-05-06 08:02:41 -0400179 depends on ARCH_TEGRA
Stephen Warrenbbc5b362016-08-05 16:10:34 -0600180 depends on (TEGRA186 && POWER_DOMAIN) || (!TEGRA186)
Simon Glassfde7e182015-11-19 20:26:55 -0700181 help
182 Enable support for the PCIe controller found on some generations of
183 Tegra. Tegra20 has 2 root ports with a total of 4 lanes, Tegra30 has
184 3 root ports with a total of 6 lanes and Tegra124 has 2 root ports
185 with a total of 5 lanes. Some boards require this for Ethernet
186 support to work (e.g. beaver, jetson-tk1).
187
Suneel Garapati638d7052019-10-19 17:28:01 -0700188config PCI_OCTEONTX
189 bool "OcteonTX PCI support"
190 depends on (ARCH_OCTEONTX || ARCH_OCTEONTX2)
191 help
192 Enable support for the OcteonTX/TX2 SoC family ECAM/PEM controllers.
193 These controllers provide PCI configuration access to all on-board
194 peripherals so it should only be disabled for testing purposes
195
Stefan Roeseddafdb92021-04-07 08:43:35 +0200196config PCIE_OCTEON
197 bool "MIPS Octeon PCIe support"
198 depends on ARCH_OCTEON
199 help
200 Enable support for the MIPS Octeon SoC family PCIe controllers.
201
Paul Burtona29e45a2016-09-08 07:47:31 +0100202config PCI_XILINX
203 bool "Xilinx AXI Bridge for PCI Express"
204 depends on DM_PCI
205 help
206 Enable support for the Xilinx AXI bridge for PCI express, an IP block
207 which can be used on some generations of Xilinx FPGAs.
208
Minghuan Lian80afc632016-12-13 14:54:17 +0800209config PCIE_LAYERSCAPE
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800210 bool
211 default n
212
213config PCIE_LAYERSCAPE_RC
214 bool "Layerscape PCIe Root Complex mode support"
Minghuan Lian80afc632016-12-13 14:54:17 +0800215 depends on DM_PCI
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800216 select PCIE_LAYERSCAPE
Minghuan Lian80afc632016-12-13 14:54:17 +0800217 help
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800218 Enable Layerscape PCIe Root Complex mode driver support. The Layerscape
219 SoC may have one or several PCIe controllers. Each controller can be
220 configured to Root Complex mode by clearing the corresponding bit of
221 RCW[HOST_AGT_PEX].
222
Laurentiu Tudor2a5bbb12020-09-10 12:42:19 +0300223config PCI_IOMMU_EXTRA_MAPPINGS
224 bool "Support for specifying extra IOMMU mappings for PCI"
225 depends on PCIE_LAYERSCAPE_RC
226 help
227 Enable support for specifying extra IOMMU mappings for PCI
228 controllers through a special env var called "pci_iommu_extra" or
229 through a device tree property named "pci-iommu-extra" placed in
230 the node describing the PCI controller.
231 The intent is to cover SR-IOV scenarios which need mappings for VFs
232 and PCI hot-plug scenarios. More documentation can be found under:
233 arch/arm/cpu/armv8/fsl-layerscape/doc/README.pci_iommu_extra
234
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800235config PCIE_LAYERSCAPE_EP
236 bool "Layerscape PCIe Endpoint mode support"
237 depends on DM_PCI
238 select PCIE_LAYERSCAPE
239 select PCI_ENDPOINT
240 help
241 Enable Layerscape PCIe Endpoint mode driver support. The Layerscape
242 SoC may have one or several PCIe controllers. Each controller can be
243 configured to Endpoint mode by setting the corresponding bit of
244 RCW[HOST_AGT_PEX].
Minghuan Lian80afc632016-12-13 14:54:17 +0800245
Hou Zhiqiang07ce19f2019-04-08 10:15:46 +0000246config PCIE_LAYERSCAPE_GEN4
247 bool "Layerscape Gen4 PCIe support"
248 depends on DM_PCI
249 help
250 Support PCIe Gen4 on NXP Layerscape SoCs, which may have one or
251 several PCIe controllers. The PCIe controller can work in RC or
252 EP mode according to RCW[HOST_AGT_PEX] setting.
253
Pankaj Bansalba7c9662019-11-30 13:14:00 +0000254config FSL_PCIE_COMPAT
255 string "PCIe compatible of Kernel DT"
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800256 depends on PCIE_LAYERSCAPE_RC || PCIE_LAYERSCAPE_GEN4
Pankaj Bansalba7c9662019-11-30 13:14:00 +0000257 default "fsl,ls1012a-pcie" if ARCH_LS1012A
258 default "fsl,ls1028a-pcie" if ARCH_LS1028A
259 default "fsl,ls1043a-pcie" if ARCH_LS1043A
260 default "fsl,ls1046a-pcie" if ARCH_LS1046A
261 default "fsl,ls2080a-pcie" if ARCH_LS2080A
262 default "fsl,ls1088a-pcie" if ARCH_LS1088A
Hou Zhiqiangd1676672021-01-29 13:22:02 +0800263 default "fsl,lx2160a-pcie" if ARCH_LX2160A
264 default "fsl,ls2088a-pcie" if ARCH_LX2162A
Pankaj Bansalba7c9662019-11-30 13:14:00 +0000265 default "fsl,ls1021a-pcie" if ARCH_LS1021A
266 help
267 This compatible is used to find pci controller node in Kernel DT
268 to complete fixup.
269
Pankaj Bansal63618e72019-11-30 13:14:10 +0000270config FSL_PCIE_EP_COMPAT
271 string "PCIe EP compatible of Kernel DT"
Hou Zhiqianged188aa2020-07-09 23:31:42 +0800272 depends on PCIE_LAYERSCAPE_RC || PCIE_LAYERSCAPE_GEN4
Hou Zhiqiangd1676672021-01-29 13:22:02 +0800273 default "fsl,lx2160a-pcie-ep" if ARCH_LX2160A
Pankaj Bansal63618e72019-11-30 13:14:10 +0000274 default "fsl,ls-pcie-ep"
275 help
276 This compatible is used to find pci controller ep node in Kernel DT
277 to complete fixup.
278
Ley Foon Tan7c458622018-04-20 21:55:45 +0800279config PCIE_INTEL_FPGA
280 bool "Intel FPGA PCIe support"
281 depends on DM_PCI
282 help
283 Say Y here if you want to enable PCIe controller support on Intel
284 FPGA, example Stratix 10.
285
Srinath Mannam48487042020-05-12 13:29:50 +0530286config PCIE_IPROC
287 bool "Iproc PCIe support"
288 depends on DM_PCI
289 help
290 Broadcom iProc PCIe controller driver.
291 Say Y here if you want to enable Broadcom iProc PCIe controller,
292
Stefan Roese94f453e2019-01-25 11:52:43 +0100293config PCI_MVEBU
294 bool "Enable Armada XP/38x PCIe driver"
295 depends on ARCH_MVEBU
296 select DM_PCI
297 select MISC
298 help
299 Say Y here if you want to enable PCIe controller support on
300 Armada XP/38x SoCs.
301
Neil Armstrongdfadb942021-03-25 15:49:18 +0100302config PCIE_DW_COMMON
303 bool
304 select DM_PCI
305
Sekhar Nori03c396b2019-08-01 19:12:57 +0530306config PCI_KEYSTONE
307 bool "TI Keystone PCIe controller"
Neil Armstrong1a031822021-03-25 15:49:19 +0100308 select PCIE_DW_COMMON
Sekhar Nori03c396b2019-08-01 19:12:57 +0530309 help
310 Say Y here if you want to enable PCI controller support on AM654 SoC.
311
Ryder Lee42d37452019-08-22 12:26:49 +0200312config PCIE_MEDIATEK
313 bool "MediaTek PCIe Gen2 controller"
314 depends on DM_PCI
315 depends on ARCH_MEDIATEK
316 help
317 Say Y here if you want to enable Gen2 PCIe controller,
318 which could be found on MT7623 SoC family.
319
Neil Armstrong2c32c702021-03-25 15:49:21 +0100320config PCIE_DW_MESON
321 bool "Amlogic Meson DesignWare based PCIe controller"
322 depends on ARCH_MESON
323 select PCIE_DW_COMMON
324 help
325 Say Y here if you want to enable DW PCIe controller support on
326 Amlogic SoCs.
327
Jagan Teki99d59062020-05-09 22:26:21 +0530328config PCIE_ROCKCHIP
329 bool "Enable Rockchip PCIe driver"
Michal Simeka261fdc2020-08-19 10:44:15 +0200330 depends on ARCH_ROCKCHIP
Jagan Teki99d59062020-05-09 22:26:21 +0530331 select DM_PCI
Jagan Tekice920e02020-07-09 23:41:02 +0530332 select PHY_ROCKCHIP_PCIE
Jagan Teki99d59062020-05-09 22:26:21 +0530333 default y if ROCKCHIP_RK3399
334 help
335 Say Y here if you want to enable PCIe controller support on
336 Rockchip SoCs.
337
Shawn Lin9ddc0782021-01-15 18:01:22 +0800338config PCIE_DW_ROCKCHIP
339 bool "Rockchip DesignWare based PCIe controller"
340 depends on ARCH_ROCKCHIP
Neil Armstrongc90f3d02021-03-25 15:49:20 +0100341 select PCIE_DW_COMMON
Shawn Lin9ddc0782021-01-15 18:01:22 +0800342 select PHY_ROCKCHIP_SNPS_PCIE3
343 help
344 Say Y here if you want to enable DW PCIe controller support on
345 Rockchip SoCs.
346
Sylwester Nawrocki7b1c3f62020-05-25 13:39:58 +0200347config PCI_BRCMSTB
348 bool "Broadcom STB PCIe controller"
349 depends on DM_PCI
350 depends on ARCH_BCM283X
351 help
352 Say Y here if you want to enable support for PCIe controller
353 on Broadcom set-top-box (STB) SoCs.
354 This driver currently supports only BCM2711 SoC and RC mode
355 of the controller.
Kunihiko Hayashie22c2562021-07-06 19:01:09 +0900356
357config PCIE_UNIPHIER
358 bool "Socionext UniPhier PCIe driver"
359 depends on DM_PCI
360 depends on ARCH_UNIPHIER
361 select PHY_UNIPHIER_PCIE
362 help
363 Say Y here if you want to enable PCIe controller support on
364 UniPhier SoCs.
365
Tom Riniaf273822016-10-26 17:15:37 -0400366endif