Merge tag 'mmc-10-10-2019' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
[platform/kernel/u-boot.git] / drivers / pci / Kconfig
1 menuconfig PCI
2         bool "PCI support"
3         default y if PPC
4         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
9 if PCI
10
11 config DM_PCI
12         bool "Enable driver model for PCI"
13         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
20 config 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
29 config PCI_AARDVARK
30         bool "Enable Aardvark PCIe driver"
31         default n
32         depends on DM_PCI
33         depends on ARMADA_3700
34         help
35           Say Y here if you want to enable PCIe controller support on
36           Armada37x0 SoCs. The PCIe controller on Armada37x0 is based on
37           Aardvark hardware.
38
39 config PCI_PNP
40         bool "Enable Plug & Play support for PCI"
41         depends on PCI || DM_PCI
42         default y
43         help
44           Enable PCI memory and I/O space resource allocation and assignment.
45
46 config PCIE_ECAM_GENERIC
47         bool "Generic ECAM-based PCI host controller support"
48         default n
49         depends on DM_PCI
50         help
51           Say Y here if you want to enable support for generic ECAM-based
52           PCIe host controllers, such as the one emulated by QEMU.
53
54 config PCIE_DW_MVEBU
55         bool "Enable Armada-8K PCIe driver (DesignWare core)"
56         depends on DM_PCI
57         depends on ARMADA_8K
58         help
59           Say Y here if you want to enable PCIe controller support on
60           Armada-8K SoCs. The PCIe controller on Armada-8K is based on
61           DesignWare hardware.
62
63 config PCIE_FSL
64         bool "FSL PowerPC PCIe support"
65         depends on DM_PCI
66         help
67           Say Y here if you want to enable PCIe controller support on FSL
68           PowerPC MPC85xx, MPC86xx, B series, P series and T series SoCs.
69           This driver does not support SRIO_PCIE_BOOT feature.
70
71 config PCI_RCAR_GEN2
72         bool "Renesas RCar Gen2 PCIe driver"
73         depends on DM_PCI
74         depends on RCAR_32
75         help
76           Say Y here if you want to enable PCIe controller support on
77           Renesas RCar Gen2 SoCs. The PCIe controller on RCar Gen2 is
78           also used to access EHCI USB controller on the SoC.
79
80 config PCI_RCAR_GEN3
81         bool "Renesas RCar Gen3 PCIe driver"
82         depends on DM_PCI
83         depends on RCAR_GEN3
84         help
85           Say Y here if you want to enable PCIe controller support on
86           Renesas RCar Gen3 SoCs.
87
88 config PCI_SANDBOX
89         bool "Sandbox PCI support"
90         depends on SANDBOX && DM_PCI
91         help
92           Support PCI on sandbox, as an emulated bus. This permits testing of
93           PCI feature such as bus scanning, device configuration and device
94           access. The available (emulated) devices are defined statically in
95           the device tree but the normal PCI scan technique is used to find
96           then.
97
98 config PCI_TEGRA
99         bool "Tegra PCI support"
100         depends on TEGRA
101         depends on (TEGRA186 && POWER_DOMAIN) || (!TEGRA186)
102         help
103           Enable support for the PCIe controller found on some generations of
104           Tegra. Tegra20 has 2 root ports with a total of 4 lanes, Tegra30 has
105           3 root ports with a total of 6 lanes and Tegra124 has 2 root ports
106           with a total of 5 lanes. Some boards require this for Ethernet
107           support to work (e.g. beaver, jetson-tk1).
108
109 config PCI_XILINX
110         bool "Xilinx AXI Bridge for PCI Express"
111         depends on DM_PCI
112         help
113           Enable support for the Xilinx AXI bridge for PCI express, an IP block
114           which can be used on some generations of Xilinx FPGAs.
115
116 config PCIE_LAYERSCAPE
117         bool "Layerscape PCIe support"
118         depends on DM_PCI
119         help
120           Support Layerscape PCIe. The Layerscape SoC may have one or several
121           PCIe controllers. The PCIe may works in RC or EP mode according to
122           RCW[HOST_AGT_PEX] setting.
123
124 config PCIE_LAYERSCAPE_GEN4
125         bool "Layerscape Gen4 PCIe support"
126         depends on DM_PCI
127         help
128           Support PCIe Gen4 on NXP Layerscape SoCs, which may have one or
129           several PCIe controllers. The PCIe controller can work in RC or
130           EP mode according to RCW[HOST_AGT_PEX] setting.
131
132 config PCIE_INTEL_FPGA
133         bool "Intel FPGA PCIe support"
134         depends on DM_PCI
135         help
136           Say Y here if you want to enable PCIe controller support on Intel
137           FPGA, example Stratix 10.
138
139 config PCI_MVEBU
140         bool "Enable Armada XP/38x PCIe driver"
141         depends on ARCH_MVEBU
142         select DM_PCI
143         select MISC
144         help
145           Say Y here if you want to enable PCIe controller support on
146           Armada XP/38x SoCs.
147
148 config PCI_KEYSTONE
149         bool "TI Keystone PCIe controller"
150         depends on DM_PCI
151         help
152           Say Y here if you want to enable PCI controller support on AM654 SoC.
153
154 config PCIE_MEDIATEK
155         bool "MediaTek PCIe Gen2 controller"
156         depends on DM_PCI
157         depends on ARCH_MEDIATEK
158         help
159           Say Y here if you want to enable Gen2 PCIe controller,
160           which could be found on MT7623 SoC family.
161
162 endif