PCI: consolidate the PCI_DOMAINS and PCI_DOMAINS_GENERIC config options
[sfrench/cifs-2.6.git] / drivers / pci / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # PCI configuration
4 #
5
6 # select this to offer the PCI prompt
7 config HAVE_PCI
8         bool
9
10 # select this to unconditionally force on PCI support
11 config FORCE_PCI
12         bool
13         select HAVE_PCI
14         select PCI
15
16 menuconfig PCI
17         bool "PCI support"
18         depends on HAVE_PCI
19         help
20           This option enables support for the PCI local bus, including
21           support for PCI-X and the foundations for PCI Express support.
22           Say 'Y' here unless you know what you are doing.
23
24 config PCI_DOMAINS
25         bool
26         depends on PCI
27
28 config PCI_DOMAINS_GENERIC
29         bool
30         depends on PCI
31         select PCI_DOMAINS
32
33 source "drivers/pci/pcie/Kconfig"
34
35 config PCI_MSI
36         bool "Message Signaled Interrupts (MSI and MSI-X)"
37         depends on PCI
38         select GENERIC_MSI_IRQ
39         help
40            This allows device drivers to enable MSI (Message Signaled
41            Interrupts).  Message Signaled Interrupts enable a device to
42            generate an interrupt using an inbound Memory Write on its
43            PCI bus instead of asserting a device IRQ pin.
44
45            Use of PCI MSI interrupts can be disabled at kernel boot time
46            by using the 'pci=nomsi' option.  This disables MSI for the
47            entire system.
48
49            If you don't know what to do here, say Y.
50
51 config PCI_MSI_IRQ_DOMAIN
52         def_bool ARC || ARM || ARM64 || X86
53         depends on PCI_MSI
54         select GENERIC_MSI_IRQ_DOMAIN
55
56 config PCI_QUIRKS
57         default y
58         bool "Enable PCI quirk workarounds" if EXPERT
59         depends on PCI
60         help
61           This enables workarounds for various PCI chipset bugs/quirks.
62           Disable this only if your target machine is unaffected by PCI
63           quirks.
64
65 config PCI_DEBUG
66         bool "PCI Debugging"
67         depends on PCI && DEBUG_KERNEL
68         help
69           Say Y here if you want the PCI core to produce a bunch of debug
70           messages to the system log.  Select this if you are having a
71           problem with PCI support and want to see more of what is going on.
72
73           When in doubt, say N.
74
75 config PCI_REALLOC_ENABLE_AUTO
76         bool "Enable PCI resource re-allocation detection"
77         depends on PCI
78         depends on PCI_IOV
79         help
80           Say Y here if you want the PCI core to detect if PCI resource
81           re-allocation needs to be enabled. You can always use pci=realloc=on
82           or pci=realloc=off to override it.  It will automatically
83           re-allocate PCI resources if SR-IOV BARs have not been allocated by
84           the BIOS.
85
86           When in doubt, say N.
87
88 config PCI_STUB
89         tristate "PCI Stub driver"
90         depends on PCI
91         help
92           Say Y or M here if you want be able to reserve a PCI device
93           when it is going to be assigned to a guest operating system.
94
95           When in doubt, say N.
96
97 config PCI_PF_STUB
98         tristate "PCI PF Stub driver"
99         depends on PCI
100         depends on PCI_IOV
101         help
102           Say Y or M here if you want to enable support for devices that
103           require SR-IOV support, while at the same time the PF itself is
104           not providing any actual services on the host itself such as
105           storage or networking.
106
107           When in doubt, say N.
108
109 config XEN_PCIDEV_FRONTEND
110         tristate "Xen PCI Frontend"
111         depends on PCI && X86 && XEN
112         select PCI_XEN
113         select XEN_XENBUS_FRONTEND
114         default y
115         help
116           The PCI device frontend driver allows the kernel to import arbitrary
117           PCI devices from a PCI backend to support PCI driver domains.
118
119 config PCI_ATS
120         bool
121
122 config PCI_ECAM
123         bool
124
125 config PCI_LOCKLESS_CONFIG
126         bool
127
128 config PCI_BRIDGE_EMUL
129         bool
130
131 config PCI_IOV
132         bool "PCI IOV support"
133         depends on PCI
134         select PCI_ATS
135         help
136           I/O Virtualization is a PCI feature supported by some devices
137           which allows them to create virtual devices which share their
138           physical resources.
139
140           If unsure, say N.
141
142 config PCI_PRI
143         bool "PCI PRI support"
144         depends on PCI
145         select PCI_ATS
146         help
147           PRI is the PCI Page Request Interface. It allows PCI devices that are
148           behind an IOMMU to recover from page faults.
149
150           If unsure, say N.
151
152 config PCI_PASID
153         bool "PCI PASID support"
154         depends on PCI
155         select PCI_ATS
156         help
157           Process Address Space Identifiers (PASIDs) can be used by PCI devices
158           to access more than one IO address space at the same time. To make
159           use of this feature an IOMMU is required which also supports PASIDs.
160           Select this option if you have such an IOMMU and want to compile the
161           driver for it into your kernel.
162
163           If unsure, say N.
164
165 config PCI_P2PDMA
166         bool "PCI peer-to-peer transfer support"
167         depends on PCI && ZONE_DEVICE
168         select GENERIC_ALLOCATOR
169         help
170           EnableŃ• drivers to do PCI peer-to-peer transactions to and from
171           BARs that are exposed in other devices that are the part of
172           the hierarchy where peer-to-peer DMA is guaranteed by the PCI
173           specification to work (ie. anything below a single PCI bridge).
174
175           Many PCIe root complexes do not support P2P transactions and
176           it's hard to tell which support it at all, so at this time,
177           P2P DMA transations must be between devices behind the same root
178           port.
179
180           If unsure, say N.
181
182 config PCI_LABEL
183         def_bool y if (DMI || ACPI)
184         depends on PCI
185         select NLS
186
187 config PCI_HYPERV
188         tristate "Hyper-V PCI Frontend"
189         depends on PCI && X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64
190         help
191           The PCI device frontend driver allows the kernel to import arbitrary
192           PCI devices from a PCI backend to support PCI driver domains.
193
194 source "drivers/pci/hotplug/Kconfig"
195 source "drivers/pci/controller/Kconfig"
196 source "drivers/pci/endpoint/Kconfig"
197 source "drivers/pci/switch/Kconfig"