Kconfig 4.68 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
Linus Torvalds's avatar
Linus Torvalds committed
2 3 4
#
# PCI configuration
#
5 6 7

source "drivers/pci/pcie/Kconfig"

Linus Torvalds's avatar
Linus Torvalds committed
8 9 10
config PCI_MSI
	bool "Message Signaled Interrupts (MSI and MSI-X)"
	depends on PCI
11
	select GENERIC_MSI_IRQ
Linus Torvalds's avatar
Linus Torvalds committed
12 13 14 15 16 17
	help
	   This allows device drivers to enable MSI (Message Signaled
	   Interrupts).  Message Signaled Interrupts enable a device to
	   generate an interrupt using an inbound Memory Write on its
	   PCI bus instead of asserting a device IRQ pin.

18 19 20 21
	   Use of PCI MSI interrupts can be disabled at kernel boot time
	   by using the 'pci=nomsi' option.  This disables MSI for the
	   entire system.

22
	   If you don't know what to do here, say Y.
Linus Torvalds's avatar
Linus Torvalds committed
23

24
config PCI_MSI_IRQ_DOMAIN
25
	def_bool ARC || ARM || ARM64 || X86
26 27 28
	depends on PCI_MSI
	select GENERIC_MSI_IRQ_DOMAIN

29 30 31 32 33 34 35 36 37
config PCI_QUIRKS
	default y
	bool "Enable PCI quirk workarounds" if EXPERT
	depends on PCI
	help
	  This enables workarounds for various PCI chipset bugs/quirks.
	  Disable this only if your target machine is unaffected by PCI
	  quirks.

Linus Torvalds's avatar
Linus Torvalds committed
38 39 40 41 42 43 44 45 46 47
config PCI_DEBUG
	bool "PCI Debugging"
	depends on PCI && DEBUG_KERNEL
	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.

48 49 50
config PCI_REALLOC_ENABLE_AUTO
	bool "Enable PCI resource re-allocation detection"
	depends on PCI
51
	depends on PCI_IOV
52 53 54
	help
	  Say Y here if you want the PCI core to detect if PCI resource
	  re-allocation needs to be enabled. You can always use pci=realloc=on
55 56 57
	  or pci=realloc=off to override it.  It will automatically
	  re-allocate PCI resources if SR-IOV BARs have not been allocated by
	  the BIOS.
58 59 60

	  When in doubt, say N.

61 62 63 64 65 66 67 68 69
config PCI_STUB
	tristate "PCI Stub driver"
	depends on PCI
	help
	  Say Y or M here if you want be able to reserve a PCI device
	  when it is going to be assigned to a guest operating system.

	  When in doubt, say N.

70 71 72 73 74 75 76 77 78 79 80 81
config PCI_PF_STUB
	tristate "PCI PF Stub driver"
	depends on PCI
	depends on PCI_IOV
	help
	  Say Y or M here if you want to enable support for devices that
	  require SR-IOV support, while at the same time the PF itself is
	  not providing any actual services on the host itself such as
	  storage or networking.

	  When in doubt, say N.

82 83 84 85
config XEN_PCIDEV_FRONTEND
        tristate "Xen PCI Frontend"
        depends on PCI && X86 && XEN
        select PCI_XEN
86
	select XEN_XENBUS_FRONTEND
87 88 89 90 91
        default y
        help
          The PCI device frontend driver allows the kernel to import arbitrary
          PCI devices from a PCI backend to support PCI driver domains.

92 93 94
config PCI_ATS
	bool

95 96 97
config PCI_ECAM
	bool

98 99 100
config PCI_LOCKLESS_CONFIG
	bool

101 102
config PCI_BRIDGE_EMUL
	bool
103

104 105 106
config PCI_IOV
	bool "PCI IOV support"
	depends on PCI
107
	select PCI_ATS
108 109 110 111 112 113
	help
	  I/O Virtualization is a PCI feature supported by some devices
	  which allows them to create virtual devices which share their
	  physical resources.

	  If unsure, say N.
114

115 116
config PCI_PRI
	bool "PCI PRI support"
Joerg Roedel's avatar
Joerg Roedel committed
117
	depends on PCI
118 119 120 121 122 123 124
	select PCI_ATS
	help
	  PRI is the PCI Page Request Interface. It allows PCI devices that are
	  behind an IOMMU to recover from page faults.

	  If unsure, say N.

125 126 127 128 129 130 131 132 133 134 135 136 137
config PCI_PASID
	bool "PCI PASID support"
	depends on PCI
	select PCI_ATS
	help
	  Process Address Space Identifiers (PASIDs) can be used by PCI devices
	  to access more than one IO address space at the same time. To make
	  use of this feature an IOMMU is required which also supports PASIDs.
	  Select this option if you have such an IOMMU and want to compile the
	  driver for it into your kernel.

	  If unsure, say N.

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
config PCI_P2PDMA
	bool "PCI peer-to-peer transfer support"
	depends on PCI && ZONE_DEVICE
	select GENERIC_ALLOCATOR
	help
	  Enableѕ drivers to do PCI peer-to-peer transactions to and from
	  BARs that are exposed in other devices that are the part of
	  the hierarchy where peer-to-peer DMA is guaranteed by the PCI
	  specification to work (ie. anything below a single PCI bridge).

	  Many PCIe root complexes do not support P2P transactions and
	  it's hard to tell which support it at all, so at this time,
	  P2P DMA transations must be between devices behind the same root
	  port.

	  If unsure, say N.

155 156
config PCI_LABEL
	def_bool y if (DMI || ACPI)
157
	depends on PCI
158
	select NLS
159

160 161 162 163 164 165 166
config PCI_HYPERV
        tristate "Hyper-V PCI Frontend"
        depends on PCI && X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64
        help
          The PCI device frontend driver allows the kernel to import arbitrary
          PCI devices from a PCI backend to support PCI driver domains.

167
source "drivers/pci/hotplug/Kconfig"
168
source "drivers/pci/controller/Kconfig"
169
source "drivers/pci/endpoint/Kconfig"
170
source "drivers/pci/switch/Kconfig"