blob: 8af2470268375d4b63f2e093848d08ec1b9f84f7 [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
Bin Mengc4762152016-10-16 23:35:18 -070029config PCI_PNP
30 bool "Enable Plug & Play support for PCI"
31 depends on PCI || DM_PCI
32 default y
33 help
34 Enable PCI memory and I/O space resource allocation and assignment.
35
Shadi Ammouri182ba1a2016-10-27 13:29:41 +020036config PCIE_DW_MVEBU
37 bool "Enable Armada-8K PCIe driver (DesignWare core)"
Shadi Ammouri182ba1a2016-10-27 13:29:41 +020038 depends on DM_PCI
39 depends on ARMADA_8K
40 help
41 Say Y here if you want to enable PCIe controller support on
42 Armada-8K SoCs. The PCIe controller on Armada-8K is based on
43 DesignWare hardware.
44
Simon Glass537849a2015-03-05 12:25:27 -070045config PCI_SANDBOX
46 bool "Sandbox PCI support"
47 depends on SANDBOX && DM_PCI
48 help
49 Support PCI on sandbox, as an emulated bus. This permits testing of
50 PCI feature such as bus scanning, device configuration and device
51 access. The available (emulated) devices are defined statically in
52 the device tree but the normal PCI scan technique is used to find
53 then.
54
Simon Glassfde7e182015-11-19 20:26:55 -070055config PCI_TEGRA
56 bool "Tegra PCI support"
57 depends on TEGRA
Stephen Warrenbbc5b362016-08-05 16:10:34 -060058 depends on (TEGRA186 && POWER_DOMAIN) || (!TEGRA186)
Simon Glassfde7e182015-11-19 20:26:55 -070059 help
60 Enable support for the PCIe controller found on some generations of
61 Tegra. Tegra20 has 2 root ports with a total of 4 lanes, Tegra30 has
62 3 root ports with a total of 6 lanes and Tegra124 has 2 root ports
63 with a total of 5 lanes. Some boards require this for Ethernet
64 support to work (e.g. beaver, jetson-tk1).
65
Paul Burtona29e45a2016-09-08 07:47:31 +010066config PCI_XILINX
67 bool "Xilinx AXI Bridge for PCI Express"
68 depends on DM_PCI
69 help
70 Enable support for the Xilinx AXI bridge for PCI express, an IP block
71 which can be used on some generations of Xilinx FPGAs.
72
Minghuan Lian80afc632016-12-13 14:54:17 +080073config PCIE_LAYERSCAPE
74 bool "Layerscape PCIe support"
75 depends on DM_PCI
76 help
77 Support Layerscape PCIe. The Layerscape SoC may have one or several
78 PCIe controllers. The PCIe may works in RC or EP mode according to
79 RCW[HOST_AGT_PEX] setting.
80
Tom Riniaf273822016-10-26 17:15:37 -040081endif