summaryrefslogtreecommitdiffstats
path: root/drivers/pci/Kconfig
blob: 44a89d005f712379c59ac3e1c9736683545ba2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
config HW_HAS_PCI
	bool

if HW_HAS_PCI

menu "PCI bus options"

config PCI
	bool "Support for PCI controller"
	depends on HW_HAS_PCI
	help
	  Find out whether you have a PCI motherboard. PCI is the name of a
	  bus system, i.e. the way the CPU talks to the other stuff inside
	  your box. If you have PCI, say Y, otherwise N.


config PCI_DEBUG
	bool "PCI Debugging"
	depends on PCI
	help
	  Say Y here if you want the PCI core to produce a bunch of debug
	  messages to the system log.  Select this if you are having a
	  problem with PCI support and want to see more of what is going on.

	  When in doubt, say N.

config PCIE_DW
	bool

config PCI_MVEBU
	bool "Marvell EBU PCIe driver"
	depends on ARCH_MVEBU
	select OF_PCI
	select PCI

config PCI_TEGRA
	bool "NVDIA Tegra PCIe driver"
	depends on ARCH_TEGRA
	select OF_ADDRESS_PCI
	select OF_PCI
	select PCI

config PCI_IMX6
	bool "Freescale i.MX6/7/8 PCIe controller"
	depends on ARCH_IMX6 || ARCH_IMX7 || ARCH_IMX8MQ
	select PCIE_DW
	select OF_PCI
	select PCI

endmenu

endif